diff options
author | Derrell Lipman <derrell@samba.org> | 2007-01-03 19:57:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:36:06 -0500 |
commit | 2e7c59c24470766e37309c7a8bfa4c7b81c57614 (patch) | |
tree | c44c89911868c52f25ca66bdefa68e13248db8e6 /webapps/scripting/header_columns.esp | |
parent | 57f5bf78fa9fc9d190c3cb25251e686a1488f790 (diff) | |
download | samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.gz samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.bz2 samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.zip |
r20515: Continued work on the Web Application Framework. Until we get all of the
functionality of the old scripts incorporated into the new framework, the old
scripts need to still be available. I've reverted to having the old scripts
be the default pages, and added an option to access the preview of the new
SWAT.
(This used to be commit b43620d4b8eff815f4a6dc02522a8dfc9fdcaef4)
Diffstat (limited to 'webapps/scripting/header_columns.esp')
-rw-r--r-- | webapps/scripting/header_columns.esp | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/webapps/scripting/header_columns.esp b/webapps/scripting/header_columns.esp deleted file mode 100644 index a8ffed984e..0000000000 --- a/webapps/scripting/header_columns.esp +++ /dev/null @@ -1,81 +0,0 @@ -<!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> - - <title>@@global.page.title</title> - -<link rel="stylesheet" href="/style/common.css" type="text/css" media="all" /> -<link rel="stylesheet" href="/style/columns.css" type="text/css" media="all" /> -<link rel="stylesheet" href="/style/swat.css" type="text/css" media="all" /> - -<!--[if gte IE 5.5]> - <style type="text/css"> - /*<![CDATA[*/ - .logo_hack { -filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/logo.png',sizingMethod='scale'); - } - /*]]>*/ - </style> -<![endif]--> - -<!--[if lte IE 5]> - <style type="text/css"> - /*<![CDATA[*/ - .logo_hack { - background-image:url(/images/logo.gif); - background-position:center; - background-repeat:no-repeat; - top:23.5px; - left:-10px; - } - /*]]>*/ - </style> -<![endif]--> - -<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -<meta http-equiv="Content-Language" content="en-us" /> - -</head> - - -<body> - -<div id="banner"> - <div class="stripe"></div> - <div class="logout"> - <b>logged in as @@session.authinfo.username</b> - <form method="post" action="/logout.esp@@global.SESSIONURI"> - <input type="submit" value="Logout" /> - </form> - </div> -</div> - -<div id="logo"> - <div class="logo_hack"><a href="/@@global.SESSIONURI"><img src="/images/linkpad.gif" alt="SWAT" /></a></div> -</div> - -<div class="slogan"> - <h4>Samba Web Administration Tool</h4> -</div> - -<div id="nav"> - <% - include("/menu.js"); - if (form['menu']) { - global.page.menu = form['menu']; - } - swat_menus[global.page.menu].display(); - if (global.page.menu != "main") { - write('<a href="/">Main Menu</a>'); - } - %> -</div> - -<div id="links"> - <% swat_menus.docs.display(); %> -</div> - - -<div id="content"> - <div id="middle" class="center"> |