summaryrefslogtreecommitdiff
path: root/testprogs/ejs/ldb.js
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r8481: switched ldb ejs called over to an OO interface, so you do:Andrew Tridgell1-3/+4
var ldb = ldb_init(); res = ldb.search(dbfile, "(objectClass=user)"); you can also do: ldbSearch = ldb.search; res = ldbSearch(dbfile, "(objectClass=user)"); if you want the old interface (ie. you can use this to import functions into the global or local namespace). (This used to be commit 3093057d9735cbb62f57e7159264d5a28b85320f)
2007-10-10r7073: added some simple example scripts for use with smbscriptAndrew Tridgell1-0/+24
(This used to be commit f1d0c006600d6d57bce2ede87a1aae0ccfc2c412)