summaryrefslogtreecommitdiff
path: root/swat/scripting/server
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2006-12-31 20:12:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:35:23 -0500
commitd1e09e2e6f9db62bbab84abb53e23ee73764178a (patch)
tree18e57f756611c9d3e10fb41bf7c09eeb795028dd /swat/scripting/server
parent710dfce70ca9024d2f026518638bb193e914f4a0 (diff)
downloadsamba-d1e09e2e6f9db62bbab84abb53e23ee73764178a.tar.gz
samba-d1e09e2e6f9db62bbab84abb53e23ee73764178a.tar.bz2
samba-d1e09e2e6f9db62bbab84abb53e23ee73764178a.zip
r20446: rename swat directory to swat.obsolete; keeping it around since there is lots of useful info in it.
(This used to be commit 5f9f72a9cfab80561b23284001b67c4ea961757b)
Diffstat (limited to 'swat/scripting/server')
-rw-r--r--swat/scripting/server/regedit.esp51
-rw-r--r--swat/scripting/server/status.esp27
2 files changed, 0 insertions, 78 deletions
diff --git a/swat/scripting/server/regedit.esp b/swat/scripting/server/regedit.esp
deleted file mode 100644
index 58ba695c47..0000000000
--- a/swat/scripting/server/regedit.esp
+++ /dev/null
@@ -1,51 +0,0 @@
-<%
-/*
- server side AJAJ functions for registry editing. These go along
- with scripting/client/regedit.js
-*/
-libinclude("base.js");
-libinclude("winreg.js");
-libinclude("server_call.js");
-
-/*
- server side call to return a listing of keys in a winreg path
-*/
-function enum_keys(binding, path) {
- printf("enum_keys(%s, %s)\n", binding, path);
- var reg = winregObj();
-
- reg.credentials = session.authinfo.credentials;
-
- var status = reg.connect(binding);
- if (status.is_ok != true) {
- printVars(status);
- return undefined;
- }
- return reg.enum_path(path);
-}
-
-/*
- server side call to return a listing of values in a winreg path
-*/
-function enum_values(binding, path) {
- printf("enum_values(%s, %s)\n", binding, path);
- var reg = winregObj();
-
- reg.credentials = session.authinfo.credentials;
-
- var status = reg.connect(binding);
- if (status.is_ok != true) {
- printVars(status);
- return undefined;
- }
- return reg.enum_values(path);
-}
-
-/* register a call for clients to make */
-var call = servCallObj();
-call.add('enum_keys', enum_keys);
-call.add('enum_values', enum_values);
-
-/* run the function that was asked for */
-call.run();
-%>
diff --git a/swat/scripting/server/status.esp b/swat/scripting/server/status.esp
deleted file mode 100644
index 8ca2067d49..0000000000
--- a/swat/scripting/server/status.esp
+++ /dev/null
@@ -1,27 +0,0 @@
-<%
-
-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();
-
-%>