diff options
author | Deryck Hodge <deryck@samba.org> | 2005-08-19 12:02:30 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:33:34 -0500 |
commit | d9c4ff9ef044b04ec52cea99b8005e71f632ce3e (patch) | |
tree | 6a967c96c956cbc3e7e019e5c087bb5e85ab9e06 /swat/scripting | |
parent | bfe1ea62446594885a027d13fc9caa29b17793ad (diff) | |
download | samba-d9c4ff9ef044b04ec52cea99b8005e71f632ce3e.tar.gz samba-d9c4ff9ef044b04ec52cea99b8005e71f632ce3e.tar.bz2 samba-d9c4ff9ef044b04ec52cea99b8005e71f632ce3e.zip |
r9397: Playing with qooxdoo a bit and saving my work, so I
can get to it later today at work. Not much to see yet,
and not linked to from SWAT yet.
Playing with the idea of a web-based desktop, and just
seeing how widgets can be used.
deryck
(This used to be commit 435467f90d809899c3d0efeaf991fb659d97202d)
Diffstat (limited to 'swat/scripting')
-rw-r--r-- | swat/scripting/footer_desktop.esp | 6 | ||||
-rw-r--r-- | swat/scripting/header_desktop.esp | 34 |
2 files changed, 40 insertions, 0 deletions
diff --git a/swat/scripting/footer_desktop.esp b/swat/scripting/footer_desktop.esp new file mode 100644 index 0000000000..5e563dab88 --- /dev/null +++ b/swat/scripting/footer_desktop.esp @@ -0,0 +1,6 @@ +<% + /* footer for desktop page type */ +%> + +</body> +</html> diff --git a/swat/scripting/header_desktop.esp b/swat/scripting/header_desktop.esp new file mode 100644 index 0000000000..a21ee733bb --- /dev/null +++ b/swat/scripting/header_desktop.esp @@ -0,0 +1,34 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<meta http-equiv="Content-Language" content="en-us" /> + + <title>@@global.page.title</title> + +<link rel="stylesheet" href="/style/qooxdoo/layouts/application.css" type="text/css" media="all" /> +<link rel="shortcut icon" href="/images/favicon.ico" /> + +<script type="text/javascript" src="/style/qooxdoo/widgets/qooxdoo.js"></script> + +<style type="text/css" media="screen"> +body { + background-color:#3A6EA5; +} +#toolbar { + background-color:ThreeDFace; + position:fixed; + bottom:0; + height:25px; + width:100%; + line-height:25px; + border-top:1px outset #000; +} +</style> + +</head> + +<body> + |