diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-09-10 03:44:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:05:50 -0500 |
commit | 15c1801a5c13479f1bf67e0e3c1ad7c0af8e3af7 (patch) | |
tree | c5bcb824e04cb1de4cccb07a148c113ff1831298 /webapps/scripting/menus.js | |
parent | 37de963f67a1331b6402f901d2bda79b7119a155 (diff) | |
download | samba-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/scripting/menus.js')
-rw-r--r-- | webapps/scripting/menus.js | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/webapps/scripting/menus.js b/webapps/scripting/menus.js deleted file mode 100644 index ddd97c4ca3..0000000000 --- a/webapps/scripting/menus.js +++ /dev/null @@ -1,53 +0,0 @@ -/* - menu object for SWAT -*/ - -/* - display a menu object. Currently only the "simple", "vertical" menu style - is supported -*/ -function menu_display() { - var i, m = this; - assert(m.style == "simple" && m.orientation == "vertical"); - write('<div class="' + m.class + '">\n'); - write("<i>" + m.name + "</i><br /><ul>\n"); - for (i = 0; i < m.element.length; i++) { - var e = m.element[i]; - write("<li><a href=\"" + e.link + "\">" + e.label + "</a></li>\n"); - } - write("</ul></div>\n"); -} - - -/* - create a menu object with the defaults filled in, ready for display_menu() - */ -function MenuObj(name, num_elements) -{ - var i, o = new Object(); - o.name = name; - o.class = "menu"; - o.style = "simple"; - o.orientation = "vertical" - o.element = new Array(num_elements); - for (i in o.element) { - o.element[i] = new Object(); - } - o.display = menu_display; - return o; -} - -/* - return a menu object created using a title, followed by - a set of label/link pairs -*/ -function simple_menu() { - var i, m = MenuObj(arguments[0], (arguments.length-1)/2); - for (i=0;i<m.element.length;i++) { - var ndx = i*2; - m.element[i].label = arguments[ndx+1]; - m.element[i].link = arguments[ndx+2]; - } - return m; -} - |