diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-07-19 11:06:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:29:43 -0500 |
commit | 325edaa66a5b3a8c907a3a521b4ceea26ea0210c (patch) | |
tree | db149f1887b56a6f2d2171700ea32bb0ceda9769 /swat | |
parent | 6c38e3324a3d2dc92c6456e2bfb3f3f62d98c77a (diff) | |
download | samba-325edaa66a5b3a8c907a3a521b4ceea26ea0210c.tar.gz samba-325edaa66a5b3a8c907a3a521b4ceea26ea0210c.tar.bz2 samba-325edaa66a5b3a8c907a3a521b4ceea26ea0210c.zip |
r8598: move provisioning to /install/ directory from /esptest/
(This used to be commit 318402ee4e8900e0d8ed1dce1e201f63ac4a908f)
Diffstat (limited to 'swat')
-rw-r--r-- | swat/install/index.esp | 6 | ||||
-rw-r--r-- | swat/install/menu.js | 5 | ||||
-rw-r--r-- | swat/install/newuser.esp (renamed from swat/esptest/newuser.esp) | 2 | ||||
-rw-r--r-- | swat/install/provision.esp (renamed from swat/esptest/provision.esp) | 2 | ||||
-rw-r--r-- | swat/menu.js | 1 |
5 files changed, 14 insertions, 2 deletions
diff --git a/swat/install/index.esp b/swat/install/index.esp new file mode 100644 index 0000000000..ee16bec34a --- /dev/null +++ b/swat/install/index.esp @@ -0,0 +1,6 @@ +<% page_header("columns", "Server Installation", "/install/menu.js"); +%> + +<h1>Installation</h1> + +<% page_footer(); %> diff --git a/swat/install/menu.js b/swat/install/menu.js new file mode 100644 index 0000000000..e8f99f7cac --- /dev/null +++ b/swat/install/menu.js @@ -0,0 +1,5 @@ +/* show a menu for the esp test pages */ +simple_menu( + "Installation", + "Provisioning", session_uri("/install/provision.esp"), + "New User", session_uri("/install/newuser.esp")); diff --git a/swat/esptest/newuser.esp b/swat/install/newuser.esp index 4c54a969e7..21a2cb361b 100644 --- a/swat/esptest/newuser.esp +++ b/swat/install/newuser.esp @@ -1,4 +1,4 @@ -<% page_header("columns", "Add a user", "/esptest/menu.js"); +<% page_header("columns", "Add a user", "/install/menu.js"); libinclude("base.js"); libinclude("provision.js"); diff --git a/swat/esptest/provision.esp b/swat/install/provision.esp index edb65469df..5c0aa4e77e 100644 --- a/swat/esptest/provision.esp +++ b/swat/install/provision.esp @@ -1,4 +1,4 @@ -<% page_header("columns", "Server provisioning", "/esptest/menu.js"); +<% page_header("columns", "Provisioning", "/install/menu.js"); libinclude("base.js"); libinclude("provision.js"); diff --git a/swat/menu.js b/swat/menu.js index 406bba0a56..3f926dc7a2 100644 --- a/swat/menu.js +++ b/swat/menu.js @@ -8,4 +8,5 @@ simple_menu( "NBT Server", session_uri("/nbt_server/"), "WINS Server", session_uri("/wins_server/"), "Kerberos Server", session_uri("/kdc_server/"), + "Installation", session_uri("/install/"), "ESP Tests", session_uri("/esptest/")); |