summaryrefslogtreecommitdiffstats
path: root/source/scripting/libjs/base.js
Commit message (Collapse)AuthorAgeFilesLines
* r11500: fixed a bug in the variable substition code using the new limit ↵Andrew Tridgell2005-11-041-1/+1
| | | | argument to split()
* r8638: continue the trend of maknig our C functions true ejs objects by ↵Andrew Tridgell2005-07-201-0/+3
| | | | | | | | | | | making the string functions into an object. To keep existing code working I have added: string_init(global); into base.js. That brings the functions into the global scope for our existing scripts
* r8590: added server status utility functions for checking on the status of a ↵Andrew Tridgell2005-07-191-0/+11
| | | | | | | | | | task via irpc - for stream tasks, returns the number of connections - for non-stream tasks, returns "RUNNING" For both, return "DISABLED" or "NOT RESPONDING" appropriately
* r8355: - added a vsprintf() functionAndrew Tridgell2005-07-121-0/+8
| | | | | - removed the --outputdir option from provision, as its not used any more (as ejs knows the real paths)
* r8338: - added a substitute_var() js library function for doing hash drivenAndrew Tridgell2005-07-121-0/+29
| | | | | | substitution of variables in strings - the js provision script now correctly processes provision.ldif
* r8318: added a bunch more ejs calls.Andrew Tridgell2005-07-111-1/+0
| | | | | | | | getgr*() getpw*() strlower() strupper() IfaceList()
* r8298: - started building a library of js routines in scripting/libjs/Andrew Tridgell2005-07-111-0/+53
- switched the existing test programs over to using the library - added install of js lib