diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-04-12 12:49:19 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-04-12 12:49:19 +0200 |
commit | 143d3f1d90b1d8e35f03e03aa7d39c4090fe0296 (patch) | |
tree | 56b438c6ade0dd323e6a882a9071cfe5f069a86a /swat2/scripting/server | |
parent | 6ccf2321cef9203bb80cb091700ea798095d094b (diff) | |
download | samba-143d3f1d90b1d8e35f03e03aa7d39c4090fe0296.tar.gz samba-143d3f1d90b1d8e35f03e03aa7d39c4090fe0296.tar.bz2 samba-143d3f1d90b1d8e35f03e03aa7d39c4090fe0296.zip |
Remove unused swat2 code
metze
Diffstat (limited to 'swat2/scripting/server')
-rw-r--r-- | swat2/scripting/server/regedit.esp | 51 | ||||
-rw-r--r-- | swat2/scripting/server/status.esp | 27 |
2 files changed, 0 insertions, 78 deletions
diff --git a/swat2/scripting/server/regedit.esp b/swat2/scripting/server/regedit.esp deleted file mode 100644 index 58ba695c47..0000000000 --- a/swat2/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/swat2/scripting/server/status.esp b/swat2/scripting/server/status.esp deleted file mode 100644 index 8ca2067d49..0000000000 --- a/swat2/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(); - -%> |