diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-05-30 12:21:30 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:17 -0500 |
commit | 419598e1d1043eb254e3c0af43c76d798fdb2b3b (patch) | |
tree | a2e783c9cd509019141a8389a12c17c0f38782c3 /swat/esptest | |
parent | 0d00eba376b1bfae6ecdad500d2cb23305f6a349 (diff) | |
download | samba-419598e1d1043eb254e3c0af43c76d798fdb2b3b.tar.gz samba-419598e1d1043eb254e3c0af43c76d798fdb2b3b.tar.bz2 samba-419598e1d1043eb254e3c0af43c76d798fdb2b3b.zip |
r7106: the web interface now works completely with or without cookies. If you have cookies
they will be used, otherwise you will see URLs with ?SwatSessionId=XXX on the end.
(This used to be commit 104d47a7458ecf03c0d5f969eaf2a98346928679)
Diffstat (limited to 'swat/esptest')
-rw-r--r-- | swat/esptest/menu.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/swat/esptest/menu.js b/swat/esptest/menu.js index 3792d30943..b78ca68ee8 100644 --- a/swat/esptest/menu.js +++ b/swat/esptest/menu.js @@ -1,11 +1,11 @@ /* show a menu for the esp test pages */ simple_menu( "ESP Tests", - "ldb database", "/esptest/ldb.esp", - "html forms", "/esptest/formtest.esp", - "esp includes", "/esptest/include.esp", - "session variables", "/esptest/session.esp", - "loadparm access", "/esptest/loadparm.esp", - "exception handling", "/esptest/exception.esp", - "environment variables", "/esptest/showvars.esp"); + "ldb database", session_uri("/esptest/ldb.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")); |