summaryrefslogtreecommitdiff
path: root/source4/scripting/bin
AgeCommit message (Collapse)AuthorFilesLines
2008-02-12Fix subunit runner exit codes.Jelmer Vernooij1-1/+2
(This used to be commit 7911308dbc1233838e44c533302f77b03ea41148)
2008-02-12Correctly increment counters in Subunit test runner.Jelmer Vernooij1-3/+1
(This used to be commit c474a2bb83a3e28a0b83f3b8ca1b646742dfca3d)
2008-02-10More syntax fixes, use more standard python functions.Jelmer Vernooij1-328/+247
(This used to be commit ea07509b4a9335a3b3fe6f6da1124fd1aab33c96)
2008-02-10Start working on python conversion of minschema.Jelmer Vernooij1-0/+660
(This used to be commit 239a1616644321e2d1e64985ea3f3c4971997228)
2008-01-23python: Add convenience function for getting command line loadparm contextJelmer Vernooij1-2/+3
and default to using system smb.conf. (This used to be commit b3afde0f00ab5093b577b139a062c233d4db2524)
2008-01-14python: Enable building of the wkssvc python bindings.Jelmer Vernooij1-0/+24
(This used to be commit 7a00d48a478be84e9f38c5e6cb57739063d0d613)
2008-01-14python: Convert winreg.py completely to rpc, use new RPC Python bindings.Jelmer Vernooij1-72/+61
(This used to be commit 9c21773737ea941b623105352b4625dcb8437706)
2007-12-26r26607: Fix reading of values and subkeys in Samba 3 registry files.Jelmer Vernooij1-5/+6
(This used to be commit e3d7454ef70d6fe9a1ce34eaf57268bd5b713ccf)
2007-12-26r26598: Simplify the way Python tests are run.Jelmer Vernooij1-1/+2
(This used to be commit d649f73431fc993e31522e7fc8e1e35e0a4421d8)
2007-12-26r26593: - More work on the python versions of samba3dump and the samba3sam ↵Jelmer Vernooij1-3/+0
tests. - Initial work converting the upgrade code to Python. - Removed the old EJS upgrade code because it has been broken for a long time. (This used to be commit 150cf39fbd4fe088546870fb0d8f20c0d9eb4aca)
2007-12-26r26592: Finish fixing the samba3dump script.Jelmer Vernooij1-123/+117
(This used to be commit 85679f3fc98238f90280f9f10d42550d71eeb918)
2007-12-26r26591: Get the first bits of samba3dump to work again.Jelmer Vernooij1-54/+69
(This used to be commit 3511027515f8ea860fbe46639d9169999646a297)
2007-12-24r26570: - Trim size of the swig-generated Python bindings by removing a ↵Jelmer Vernooij2-232/+248
bunch of {}'s. - Start working on Python equivalents for various EJS tests. - Fix regression in argument order for reg_diff_apply() in EJS bindings. (This used to be commit c550c03372cb260b78f6a6c132e70571bc4cb852)
2007-12-21r26191: Import custom test runner for subunit, rather than using trial, ↵Jelmer Vernooij1-0/+25
which is part of twisted. (This used to be commit b0f808345f948c49ad46f34ba306ca8354393850)
2007-12-21r26079: Some cleanups in the old SWIG wrappers: - remove old torture tests ↵Jelmer Vernooij1-0/+301
for LDB (replaced by a much more extensive test) - moved tool to bin directory (This used to be commit d6d3b0ad7a789441c82cf30a640033a052921c37)
2007-10-10r12445: Fix header in manpage, make script executableJelmer Vernooij1-0/+0
(This used to be commit 7ca00cd918760dccc51e56234126ead8535a22ef)
2007-10-10r12012: fix renaming smbsrv_trees -> smbsrv_tconsStefan Metzmacher1-6/+6
metze (This used to be commit e5654f9791a2786e45108216344b2daea3ad9d91)
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-10r9735: More work on generating a valid Samba4 configuration using theJelmer Vernooij1-2/+1
Samba3 data (both console and SWAT) (This used to be commit d569465dc4def55c27878028f2fc762960f453d8)
2007-10-10r9725: Fix full output mode of samba3dump as well. Thanks to tridge forJelmer Vernooij1-20/+38
a bit for explanation about js. (This used to be commit 765a30a0493cbd150f53335c6648e8e56ef6dc23)
2007-10-10r9724: Rewrite samba3dump in JS. The summary works now, but the full outputJelmer Vernooij1-64/+61
is triggering some obscure EJS assert.. (This used to be commit 42605f4444998e3063ffd1bea17425ff825f6132)
2007-10-10r9722: Initial attempt at converting samba3dump to EJS..Jelmer Vernooij1-0/+220
(This used to be commit 7e3b94dfb9c421793dab7813b96ca63da4b33960)
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-10r9477: Convert popt options to an ejs object. Doesn't seem to break anythingRafal Szczesniak1-2/+2
except of popt help (-h) option (unexpected ?). rafal (This used to be commit 1990793b23d6198a85ce1bdf6ad43e12015db203)
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)
2007-10-10r8639: moved loadparm calls into an ejs objectAndrew Tridgell1-1/+3
(This used to be commit 2dc493eea6f9d87c40ad0dc755f528ce0b33ca47)
2007-10-10r8589: - support --version option to smbstatusAndrew Tridgell1-0/+2
- print samba version at startup (This used to be commit eb3e4bbe7f4a8f48c9246275ad6ef21ed0b4d357)
2007-10-10r8584: added --nbt option to smbstatus for nbt server statisticsAndrew Tridgell1-3/+26
(This used to be commit 26a676a4e3596d34aee391bf132f2525972c81df)
2007-10-10r8583: nicer smbstatus outputAndrew Tridgell1-13/+45
(This used to be commit 0578bcdf7f8919509a78a5c64f94aa5de7e90416)
2007-10-10r8577: added management calls to list current tree connectsAndrew Tridgell1-0/+11
(This used to be commit 658befc1e4df44bee1f365a730951001f0f36640)
2007-10-10r8575: the beginnings of a smbstatus commandAndrew Tridgell1-0/+26
(This used to be commit 4ecaf72a31cde2722315a61cbe823d44f0c14586)