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