1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/webapps/menu.js
Andrew Bartlett 8e292c6429 r23325: Remove items from menu that have been removed from SVN long ago, with
the start of the transition to the new SWAT.

Andrew Bartlett
(This used to be commit 96df61e3a8)
2007-10-10 14:53:11 -05:00

58 lines
2.1 KiB
JavaScript

/*
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");