summaryrefslogtreecommitdiff
path: root/source4/scripting/bin/winreg
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r11458: fixed our ejs smbscript interfaces to use arrays where appropriate. InAndrew Tridgell1-3/+10
js arrays are a special type of object where the length property is automatic, and cannot be modified manually. Our code was manually setting length, which made it abort when someone passed in a real ejs array. To fix this we need to create real arrays instead of objects, and remove the code that manually sets the length (This used to be commit ebdd1393fde44a0a35446d1a922d29a7c1769ba7)
2007-10-10r9580: put the libinclude() after the GetOptions so the smb.conf is loaded toAndrew Tridgell1-4/+4
get the libjs path (This used to be commit ee0b693ffaf02e75d3d740c36fffb9ea75e54431)
2007-10-10r9568: updated the winreg js library for CreateKey, and add a --createkeyAndrew Tridgell1-3/+15
option to the winreg tool (This used to be commit 881452c7b7cc00222328f743c2c0c4ece39f4c96)
2007-10-10r9497: - converted the winreg library to a more OO style of interfaceAndrew Tridgell1-5/+20
- added a reg.typestring() method that returns a string representation of a type (This used to be commit 47cf409cdf501fc3e2b0c65688a9ef1d702278a5)
2007-10-10r9491: fixed up a few scripts that need to be updated for the new GetOptions ↵Andrew Tridgell1-8/+6
syntax. Mimir, its a good idea to use grep -r to find places that need fixing when you change the syntax of a call :-) (This used to be commit 1ead49f8e823a69dbd9cd3df3f5be04dc17e0d1f)
2007-10-10r9377: made winreg a user tool (I find it quite useful). I expect it to get ↵Andrew Tridgell1-0/+75
the ability to add/remove keys and values in the future. add it to the standard tests, ensuring that we know if winreg breaks. This is particularly important as winreg uses such unusual IDL constructs (This used to be commit e4ca36bda34cf5e6fecaef5fe60e5dd397ebee3c)