summaryrefslogtreecommitdiff
path: root/source4
AgeCommit message (Collapse)AuthorFilesLines
2008-12-21Fix more tests, improve repr() functions for various Python types.Jelmer Vernooij9-60/+32
2008-12-21Remove infrastructure for (no longer used) SWIG.Jelmer Vernooij3-141/+0
2008-12-21Simplify customization of pidl-generated Python modules.Jelmer Vernooij3-64/+129
2008-12-21Allow providing extra module-level Python functions.Jelmer Vernooij1-1/+6
2008-12-21Merge the rest of security.i into samba.dcerpc.security.Jelmer Vernooij5-3701/+35
2008-12-21Remove duplicate Python bindings for dom_sid, security_descriptor andJelmer Vernooij4-1022/+254
security_token.
2008-12-21Remove libcli_smb SWIG bindings - only one (useless on its own) function was ↵Jelmer Vernooij4-3365/+0
wrapped anyway.
2008-12-21Move tests for ParamFile.Jelmer Vernooij5-24/+38
2008-12-21Convert param Python module to "manual" C.Jelmer Vernooij5-5666/+20
2008-12-21Provide simple Python replacement for ParamFile, which currently existsJelmer Vernooij1-2/+51
with a lot of overhead.
2008-12-21Fix various Python-related bugs.Jelmer Vernooij9-247/+753
2008-12-21Include errors.i verbatim in security.i, as it's the only file still using it.Jelmer Vernooij3-59/+35
2008-12-21Convert credentials Python module to "manual" C - no SWIG used to generateJelmer Vernooij6-4719/+350
the C code.
2008-12-21Remove remaining fragments of SWIG code in pyldb.Jelmer Vernooij1-91/+0
2008-12-21Fix more introduced regressions in new bindings.Jelmer Vernooij5-95/+116
2008-12-21Convert auth python module to "plain" C rather than using SWIG.Jelmer Vernooij8-3350/+139
2008-12-21py: Fix initialisation of subtypes, fix segfaults.Jelmer Vernooij11-81/+96
2008-12-21Avoid linking in all Python modules to the samba binaries - we can just let ↵Jelmer Vernooij3-3/+3
Python dlopen() them.
2008-12-21Implement some of the stubs in misc python module.Jelmer Vernooij2-12/+48
2008-12-20Use plain C implementation for misc Python module rather than SWIG.Jelmer Vernooij9-4238/+293
2008-12-20Support subtypes of ldb.Ldb.Jelmer Vernooij2-13/+68
2008-12-20Fix all pyldb tests except for modules.Jelmer Vernooij2-315/+368
2008-12-20Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij8-48/+328
2008-12-20Corrections to Microsoft's schema and the OpenLDAP mapping fileAndrew Bartlett2-0/+63
2008-12-20Treat DN+STring as a binary string for nowAndrew Bartlett1-4/+4
This matches the way we work with DN+Binary. We need this for the OpenLDAP backend. Andrew Bartlett
2008-12-20Now store the GUID and SID from a DN over DRSUAPI into ldb.Andrew Bartlett4-43/+162
Until the extended DN work was compleated, there was no way to store the additional metadata. Andrew Bartlett
2008-12-20Fix compiler warning when parsing a SID in a data blobAndrew Bartlett1-1/+1
2008-12-19Add torture test for bug #5986 - streams rename, so we don't regress.Jeremy Allison1-0/+98
Jeremy.
2008-12-19Merge branch 'pyregistry' of git://git.samba.org/jelmer/sambaJelmer Vernooij12-9357/+2033
Conflicts: source4/lib/ldb/ldb_wrap.c
2008-12-19Reprocess LDB SWIG file.Jelmer Vernooij1-0/+2
2008-12-19Depend on specific version of LDB, as the API seems to unstableJelmer Vernooij1-1/+1
to predict that newer versions (even minor versions) are going to be be backwards compatible :-(
2008-12-19Specify explicit path to tevent.h, compilation breaks without it for me.Jelmer Vernooij1-1/+1
2008-12-19Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij151-14703/+4999
2008-12-19Avoid use of parentheses in Python import statements, as it's not supported ↵Jelmer Vernooij4-10/+8
by Python2.3.
2008-12-19Fix more tests.Jelmer Vernooij4-104/+297
2008-12-19s4:cosmetic: Remove trailing tabs and spacesSimo Sorce1-59/+59
2008-12-19Small cosmetic LDB patch regarding return values.Matthias Dieter Wallnöfer3-7/+7
It changes some "return 0" in "return LDB_SUCCESS"
2008-12-19Port over more functionality to new SWIGless Python module.Jelmer Vernooij1-290/+337
2008-12-19Merge branch 'master' of ssh://git.samba.org/data/git/samba into pyregistryJelmer Vernooij8-43/+25
2008-12-19Remove swig support from standalone ldb build.Jelmer Vernooij6-21/+7
2008-12-19Initial work using manual Python bindings for LDB, rather than ↵Jelmer Vernooij6-9331/+1783
SWIG-generated ones.
2008-12-19Fix errors in MS-AD_Schema_Attributes_v20080618.txtSreepathi Pai2-36/+9
- Remove spurious line breaks - Add missing attributeId from docs - Remove incorrect multiple values of systemFlags - Fix duplicate attributeId - Fix schemaIdGuid syntax Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2008-12-19Here's the prefixMap from w2k8.Stefan (metze) Metzmacher1-2/+9
We need to move 1.3.6.1.4.1.7165.4.1 and 1.3.6.1.4.1.7165.4.2 to the end...(if we still need them, which we should avoid) metze Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2008-12-18s4: Fix include path to work with teventTim Prouty1-1/+1
2008-12-19Move aggregate schema stub to it's own fileAndrew Bartlett3-3/+5
This should make it easier to import just the schema entries from the WSPP docs. Andrew Bartlett
2008-12-19Fix failures setting a random passwordAndrew Bartlett1-1/+1
The test in extract_pw_from_buffer was incorrect: It tested if the first byte of the new password was 0 (a 1/256 chance for the random passwords), not if the password was allocated. Andrew Bartlett
2008-12-18Cope with slight changes in tdb API.Jelmer Vernooij1-31/+46
2008-12-18Fix Python event tests after rename to tevent.Jelmer Vernooij1-1/+1
2008-12-18Fix samba3sam test after removal of dom_sid IDL file.Jelmer Vernooij1-2/+2
2008-12-18Use plain Python C API for registry module, rather than SWIG.Jelmer Vernooij4-20/+323