summaryrefslogtreecommitdiff
path: root/source4/scripting/libjs
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-05-26 02:05:11 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-05-26 02:05:11 +0200
commit1aeb4cc04f9dae45b2029739c5f855ae4e1ffbab (patch)
treeb70824f51bde175a0469d377a1783f7fc6eb8823 /source4/scripting/libjs
parentc17166fb3d9260d0c02e3f9f559413acde5ce048 (diff)
downloadsamba-1aeb4cc04f9dae45b2029739c5f855ae4e1ffbab.tar.gz
samba-1aeb4cc04f9dae45b2029739c5f855ae4e1ffbab.tar.bz2
samba-1aeb4cc04f9dae45b2029739c5f855ae4e1ffbab.zip
Remove unused EJS code.
(This used to be commit 3b70a3de4aa63bd6c325fd620c71bd6111d3d2b8)
Diffstat (limited to 'source4/scripting/libjs')
-rw-r--r--source4/scripting/libjs/auth.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/source4/scripting/libjs/auth.js b/source4/scripting/libjs/auth.js
deleted file mode 100644
index 3fe81d0ea7..0000000000
--- a/source4/scripting/libjs/auth.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- auth js library functions
- Copyright Andrew Tridgell 2005
- released under the GNU GPL version 3 or later
-*/
-
-
-/*
- get a list of domains for SWAT authentication
-*/
-function getDomainList()
-{
- var ret = new Array(2);
- var lp = loadparm_init();
- ret[0] = "System User";
- ret[1] = lp.get("workgroup");
- return ret;
-}