├── .gitignore ├── .travis.yml ├── COPYING ├── MANIFEST.in ├── README.md ├── dev-requirements.txt ├── ldapom ├── __init__.py ├── attribute.py ├── cdef.py ├── compat.py ├── connection.py ├── entry.py └── error.py ├── pavement.py ├── requirements.txt ├── setup.py ├── test_server ├── __init__.py ├── schema │ ├── core.ldif │ ├── core.schema │ ├── cosine.ldif │ ├── cosine.schema │ ├── inetorgperson.ldif │ ├── inetorgperson.schema │ ├── nis.ldif │ └── nis.schema ├── slapd.conf └── testdata.ldif └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | Paver>=1.0.0 3 | -------------------------------------------------------------------------------- /ldapom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/ldapom/__init__.py -------------------------------------------------------------------------------- /ldapom/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/ldapom/attribute.py -------------------------------------------------------------------------------- /ldapom/cdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/ldapom/cdef.py -------------------------------------------------------------------------------- /ldapom/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/ldapom/compat.py -------------------------------------------------------------------------------- /ldapom/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/ldapom/connection.py -------------------------------------------------------------------------------- /ldapom/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/ldapom/entry.py -------------------------------------------------------------------------------- /ldapom/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/ldapom/error.py -------------------------------------------------------------------------------- /pavement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/pavement.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cffi 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/setup.py -------------------------------------------------------------------------------- /test_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/__init__.py -------------------------------------------------------------------------------- /test_server/schema/core.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/schema/core.ldif -------------------------------------------------------------------------------- /test_server/schema/core.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/schema/core.schema -------------------------------------------------------------------------------- /test_server/schema/cosine.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/schema/cosine.ldif -------------------------------------------------------------------------------- /test_server/schema/cosine.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/schema/cosine.schema -------------------------------------------------------------------------------- /test_server/schema/inetorgperson.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/schema/inetorgperson.ldif -------------------------------------------------------------------------------- /test_server/schema/inetorgperson.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/schema/inetorgperson.schema -------------------------------------------------------------------------------- /test_server/schema/nis.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/schema/nis.ldif -------------------------------------------------------------------------------- /test_server/schema/nis.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/schema/nis.schema -------------------------------------------------------------------------------- /test_server/slapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/slapd.conf -------------------------------------------------------------------------------- /test_server/testdata.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/test_server/testdata.ldif -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaDiNet/ldapom/HEAD/tests.py --------------------------------------------------------------------------------