summaryrefslogtreecommitdiff
path: root/swat/scripting/server/status.esp
diff options
context:
space:
mode:
authorDeryck Hodge <deryck@samba.org>2005-08-24 11:53:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:34:31 -0500
commit9dfffdf4c0e228d988f55cf4e80f838aa7320ecb (patch)
tree9d1fad44a9c8225cb92e72c058ef5ea0c931467b /swat/scripting/server/status.esp
parent782fd6946f3ed9d0c68bb6391e504910ec7ca1d8 (diff)
downloadsamba-9dfffdf4c0e228d988f55cf4e80f838aa7320ecb.tar.gz
samba-9dfffdf4c0e228d988f55cf4e80f838aa7320ecb.tar.bz2
samba-9dfffdf4c0e228d988f55cf4e80f838aa7320ecb.zip
r9579: Desktop SWAT opens now with a little server status window.
This includes a table layout that can be reused (see QxListView in status.js). Some formatting fixes, too. deryck (This used to be commit f95bf0adf760b8799ec02ec68ce42516ca40b6d2)
Diffstat (limited to 'swat/scripting/server/status.esp')
-rw-r--r--swat/scripting/server/status.esp27
1 files changed, 27 insertions, 0 deletions
diff --git a/swat/scripting/server/status.esp b/swat/scripting/server/status.esp
new file mode 100644
index 0000000000..8ca2067d49
--- /dev/null
+++ b/swat/scripting/server/status.esp
@@ -0,0 +1,27 @@
+<%
+
+libinclude("management.js");
+libinclude("server_call.js");
+
+function serverInfo()
+{
+ var info = new Object();
+ info["NBT Server"] = server_status("nbt");
+ info["WINS Server"] = server_status("wins");
+ info["CLDAP Server"] = server_status("cldap");
+ info["Kerberos Server"] = server_status("kdc");
+ info["SMB Server"] = stream_server_status("smb");
+ info["LDAP Server"] = stream_server_status("ldap");
+ info["RPC Server"] = stream_server_status("rpc");
+
+ return info;
+}
+
+/* register a call for clients to make */
+var call = servCallObj();
+call.add('serverInfo', serverInfo);
+
+/* run the function that was asked for */
+call.run();
+
+%>