summaryrefslogtreecommitdiff
path: root/source4/scripting/libjs/samr.js
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r8822: fixed number of arguments in samr libAndrew Tridgell1-2/+2
(This used to be commit 8eee26bb85472aa45bd42fd28f968a38730e286c)
2007-10-10r8821: continue the trend to move to a more OO style of interface for our jsAndrew Tridgell1-16/+15
calls. This changes the generated RPC and IRPC calls to use the 'this' object pointer instead of requiring the passing of the object on each call. So typical usage is now: var echo = echo_init(); var io = irpcObj(); status = echo.connect("ncacn_np:server"); assert(status.is_ok); io.input.in_data = 7; status = echo.AddOne(io); assert(status.is_ok); (This used to be commit f7b49ecd0868c1f0fec75b371f132bbf357ad8c6)
2007-10-10r8483: switched our generated ejs rpc code over to the new OO interface. ThisAndrew Tridgell1-14/+15
means we don't pollute the name space, and also makes for faster startup times as we only create variables for the pipes that we use, not all pipes (This used to be commit 57d7a585e8162d21c7152952aa0cc7471968784f)
2007-10-10r8298: - started building a library of js routines in scripting/libjs/Andrew Tridgell1-0/+170
- switched the existing test programs over to using the library - added install of js lib (This used to be commit 2a444dedbe44347268affc6458196f93ca7d372b)