summaryrefslogtreecommitdiff
path: root/webapps/menu.js
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-09-10 03:44:47 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:05:50 -0500
commit15c1801a5c13479f1bf67e0e3c1ad7c0af8e3af7 (patch)
treec5bcb824e04cb1de4cccb07a148c113ff1831298 /webapps/menu.js
parent37de963f67a1331b6402f901d2bda79b7119a155 (diff)
downloadsamba-15c1801a5c13479f1bf67e0e3c1ad7c0af8e3af7.tar.gz
samba-15c1801a5c13479f1bf67e0e3c1ad7c0af8e3af7.tar.bz2
samba-15c1801a5c13479f1bf67e0e3c1ad7c0af8e3af7.zip
r25051: Move SWAT back to the old-style form-submit modal.
The Web 2.0, async client tools were really interesting, but without developer backing they remain impossible to support into a release. The most interesting app was the LDB browser, and I intend to replace this with phpLdapAdmin, preconfigured for Apache during provision. This also removes the need to 'compile' SWAT on SVN checkouts. Andrew Bartlett (This used to be commit cda965e908055d45b1c05bc29cc791f7238d2fae)
Diffstat (limited to 'webapps/menu.js')
-rw-r--r--webapps/menu.js57
1 files changed, 0 insertions, 57 deletions
diff --git a/webapps/menu.js b/webapps/menu.js
deleted file mode 100644
index e7aa1891ff..0000000000
--- a/webapps/menu.js
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- the menu hierarchy for SWAT
-*/
-
-include("/scripting/menus.js");
-
-swat_menus = new Object();
-
-swat_menus.main = simple_menu(
- "Main Menu",
- "Installation", session_uri("/install/"),
- "ESP Tests", session_uri("/esptest/"),
- "Preview of new SWAT",session_uri("/index.html"));
-
-swat_menus.esptest = simple_menu(
- "ESP Tests",
- "ldb database", session_uri("/esptest/ldb.esp"),
- "samr calls", session_uri("/esptest/samr.esp"),
- "html forms", session_uri("/esptest/formtest.esp"),
- "esp includes", session_uri("/esptest/include.esp"),
- "session variables", session_uri("/esptest/session.esp"),
- "loadparm access", session_uri("/esptest/loadparm.esp"),
- "exception handling", session_uri("/esptest/exception.esp"),
- "environment variables", session_uri("/esptest/showvars.esp"),
- "registry", session_uri("/esptest/registry.esp"));
-
-swat_menus.json = simple_menu(
- "JSON Tests",
- "ldb browser", session_uri("/apps/samba/utils/ldbbrowse.html"),
- "admin console", session_uri("/apps/samba/utils/admin_console.html"));
-
-
-swat_menus.install = simple_menu(
- "Installation",
- "Provisioning", session_uri("/install/provision.esp"),
- "New User", session_uri("/install/newuser.esp"),
- "Import from Samba3", session_uri("/install/samba3.esp"),
- "Import from Windows", session_uri("/install/vampire.esp"));
-
-
-swat_menus.nbt_server = simple_menu(
- "NBT Server",
- "Statistics", session_uri("/nbt_server/index.esp"));
-
-
-swat_menus.docs = simple_menu(
- "Links",
- "Samba4 development", "http://devel.samba.org/",
- "Recent Checkins", "http://build.samba.org/?tree=samba4;function=Recent+Checkins",
- "Recent Builds", "http://build.samba.org/?tree=samba4;function=Recent+Builds",
- "EJS Information", "http://www.appwebserver.org/products/ejs/ejs.html",
- "ESP Information", "http://www.appwebserver.org/products/esp/esp.html",
- "XHTML Spec", "http://www.w3.org/TR/xhtml1/",
- "JavaScript Spec", "http://www.ecma-international.org/publications/files/ecma-st/ECMA-262.pdf",
- "CSS Specs", "http://www.w3.org/Style/CSS/#specs",
- "CSS1/2 Reference", "http://www.w3schools.com/css/css_reference.asp");
-