├── .gitignore ├── .project ├── .pydevproject ├── .twext.sublime-project ├── CONTRIBUTING.md ├── LICENSE.txt ├── PULL_REQUEST_TEMPLATE.md ├── README.rst ├── bin ├── _build.sh ├── _py.sh ├── develop ├── environment ├── gendocs ├── pyflakes ├── python ├── test ├── test_opendirectory_auth ├── test_opendirectory_lookup ├── trial ├── twistd └── update_copyrights ├── requirements-dev.txt ├── setup.py ├── twext ├── __init__.py ├── application │ ├── __init__.py │ ├── masterchild.py │ └── service.py ├── enterprise │ ├── __init__.py │ ├── adbapi2.py │ ├── dal │ │ ├── __init__.py │ │ ├── model.py │ │ ├── parseschema.py │ │ ├── record.py │ │ ├── syntax.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_parseschema.py │ │ │ ├── test_record.py │ │ │ └── test_sqlsyntax.py │ ├── fixtures.py │ ├── ienterprise.py │ ├── jobs │ │ ├── __init__.py │ │ ├── jobitem.py │ │ ├── queue.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ └── test_jobs.py │ │ ├── utils.py │ │ └── workitem.py │ ├── locking.py │ ├── queue.py │ ├── test │ │ ├── __init__.py │ │ ├── test_adbapi2.py │ │ ├── test_fixtures.py │ │ ├── test_locking.py │ │ ├── test_queue.py │ │ └── test_util.py │ └── util.py ├── internet │ ├── __init__.py │ ├── adaptendpoint.py │ ├── decorate.py │ ├── fswatch.py │ ├── gaiendpoint.py │ ├── sendfdport.py │ ├── socketfile.py │ ├── spawnsvc.py │ ├── ssl.py │ ├── tcp.py │ ├── test │ │ ├── __init__.py │ │ ├── test_adaptendpoint.py │ │ ├── test_fswatch.py │ │ ├── test_gaiendpoint.py │ │ └── test_sendfdport.py │ └── threadutils.py ├── protocols │ ├── __init__.py │ ├── echo.py │ └── test │ │ └── __init__.py ├── python │ ├── __init__.py │ ├── clsprop.py │ ├── filepath.py │ ├── launchd.py │ ├── log.py │ ├── parallel.py │ ├── sacl.py │ ├── sendfd.py │ ├── test │ │ ├── __init__.py │ │ ├── pullpipe.py │ │ ├── test_filepath.py │ │ ├── test_launchd.py │ │ ├── test_log.py │ │ └── test_parallel.py │ ├── types.py │ └── usage.py └── who │ ├── __init__.py │ ├── aggregate.py │ ├── checker.py │ ├── directory.py │ ├── expression.py │ ├── idirectory.py │ ├── index.py │ ├── ldap │ ├── __init__.py │ ├── _constants.py │ ├── _service.py │ ├── _util.py │ └── test │ │ ├── __init__.py │ │ ├── test_service.py │ │ └── test_util.py │ ├── opendirectory │ ├── __init__.py │ ├── _constants.py │ ├── _odframework.py │ ├── _scripts.py │ ├── _service.py │ └── test │ │ ├── __init__.py │ │ └── test_service.py │ ├── test │ ├── __init__.py │ ├── auth_resource.rpy │ ├── test_aggregate.py │ ├── test_concurrency.py │ ├── test_directory.py │ ├── test_expression.py │ ├── test_index.py │ ├── test_util.py │ └── test_xml.py │ ├── util.py │ └── xml.py └── twisted └── plugins └── masterchild.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/.pydevproject -------------------------------------------------------------------------------- /.twext.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/.twext.sublime-project -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/README.rst -------------------------------------------------------------------------------- /bin/_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/_build.sh -------------------------------------------------------------------------------- /bin/_py.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/_py.sh -------------------------------------------------------------------------------- /bin/develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/develop -------------------------------------------------------------------------------- /bin/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/environment -------------------------------------------------------------------------------- /bin/gendocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/gendocs -------------------------------------------------------------------------------- /bin/pyflakes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/pyflakes -------------------------------------------------------------------------------- /bin/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/python -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/test -------------------------------------------------------------------------------- /bin/test_opendirectory_auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/test_opendirectory_auth -------------------------------------------------------------------------------- /bin/test_opendirectory_lookup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/test_opendirectory_lookup -------------------------------------------------------------------------------- /bin/trial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/trial -------------------------------------------------------------------------------- /bin/twistd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/twistd -------------------------------------------------------------------------------- /bin/update_copyrights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/bin/update_copyrights -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/setup.py -------------------------------------------------------------------------------- /twext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/__init__.py -------------------------------------------------------------------------------- /twext/application/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/application/__init__.py -------------------------------------------------------------------------------- /twext/application/masterchild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/application/masterchild.py -------------------------------------------------------------------------------- /twext/application/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/application/service.py -------------------------------------------------------------------------------- /twext/enterprise/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/__init__.py -------------------------------------------------------------------------------- /twext/enterprise/adbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/adbapi2.py -------------------------------------------------------------------------------- /twext/enterprise/dal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/dal/__init__.py -------------------------------------------------------------------------------- /twext/enterprise/dal/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/dal/model.py -------------------------------------------------------------------------------- /twext/enterprise/dal/parseschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/dal/parseschema.py -------------------------------------------------------------------------------- /twext/enterprise/dal/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/dal/record.py -------------------------------------------------------------------------------- /twext/enterprise/dal/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/dal/syntax.py -------------------------------------------------------------------------------- /twext/enterprise/dal/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/dal/test/__init__.py -------------------------------------------------------------------------------- /twext/enterprise/dal/test/test_parseschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/dal/test/test_parseschema.py -------------------------------------------------------------------------------- /twext/enterprise/dal/test/test_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/dal/test/test_record.py -------------------------------------------------------------------------------- /twext/enterprise/dal/test/test_sqlsyntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/dal/test/test_sqlsyntax.py -------------------------------------------------------------------------------- /twext/enterprise/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/fixtures.py -------------------------------------------------------------------------------- /twext/enterprise/ienterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/ienterprise.py -------------------------------------------------------------------------------- /twext/enterprise/jobs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/jobs/__init__.py -------------------------------------------------------------------------------- /twext/enterprise/jobs/jobitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/jobs/jobitem.py -------------------------------------------------------------------------------- /twext/enterprise/jobs/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/jobs/queue.py -------------------------------------------------------------------------------- /twext/enterprise/jobs/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/jobs/test/__init__.py -------------------------------------------------------------------------------- /twext/enterprise/jobs/test/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/jobs/test/test_jobs.py -------------------------------------------------------------------------------- /twext/enterprise/jobs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/jobs/utils.py -------------------------------------------------------------------------------- /twext/enterprise/jobs/workitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/jobs/workitem.py -------------------------------------------------------------------------------- /twext/enterprise/locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/locking.py -------------------------------------------------------------------------------- /twext/enterprise/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/queue.py -------------------------------------------------------------------------------- /twext/enterprise/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/test/__init__.py -------------------------------------------------------------------------------- /twext/enterprise/test/test_adbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/test/test_adbapi2.py -------------------------------------------------------------------------------- /twext/enterprise/test/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/test/test_fixtures.py -------------------------------------------------------------------------------- /twext/enterprise/test/test_locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/test/test_locking.py -------------------------------------------------------------------------------- /twext/enterprise/test/test_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/test/test_queue.py -------------------------------------------------------------------------------- /twext/enterprise/test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/test/test_util.py -------------------------------------------------------------------------------- /twext/enterprise/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/enterprise/util.py -------------------------------------------------------------------------------- /twext/internet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/__init__.py -------------------------------------------------------------------------------- /twext/internet/adaptendpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/adaptendpoint.py -------------------------------------------------------------------------------- /twext/internet/decorate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/decorate.py -------------------------------------------------------------------------------- /twext/internet/fswatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/fswatch.py -------------------------------------------------------------------------------- /twext/internet/gaiendpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/gaiendpoint.py -------------------------------------------------------------------------------- /twext/internet/sendfdport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/sendfdport.py -------------------------------------------------------------------------------- /twext/internet/socketfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/socketfile.py -------------------------------------------------------------------------------- /twext/internet/spawnsvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/spawnsvc.py -------------------------------------------------------------------------------- /twext/internet/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/ssl.py -------------------------------------------------------------------------------- /twext/internet/tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/tcp.py -------------------------------------------------------------------------------- /twext/internet/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/test/__init__.py -------------------------------------------------------------------------------- /twext/internet/test/test_adaptendpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/test/test_adaptendpoint.py -------------------------------------------------------------------------------- /twext/internet/test/test_fswatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/test/test_fswatch.py -------------------------------------------------------------------------------- /twext/internet/test/test_gaiendpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/test/test_gaiendpoint.py -------------------------------------------------------------------------------- /twext/internet/test/test_sendfdport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/test/test_sendfdport.py -------------------------------------------------------------------------------- /twext/internet/threadutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/internet/threadutils.py -------------------------------------------------------------------------------- /twext/protocols/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/protocols/__init__.py -------------------------------------------------------------------------------- /twext/protocols/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/protocols/echo.py -------------------------------------------------------------------------------- /twext/protocols/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/protocols/test/__init__.py -------------------------------------------------------------------------------- /twext/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/__init__.py -------------------------------------------------------------------------------- /twext/python/clsprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/clsprop.py -------------------------------------------------------------------------------- /twext/python/filepath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/filepath.py -------------------------------------------------------------------------------- /twext/python/launchd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/launchd.py -------------------------------------------------------------------------------- /twext/python/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/log.py -------------------------------------------------------------------------------- /twext/python/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/parallel.py -------------------------------------------------------------------------------- /twext/python/sacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/sacl.py -------------------------------------------------------------------------------- /twext/python/sendfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/sendfd.py -------------------------------------------------------------------------------- /twext/python/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/test/__init__.py -------------------------------------------------------------------------------- /twext/python/test/pullpipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/test/pullpipe.py -------------------------------------------------------------------------------- /twext/python/test/test_filepath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/test/test_filepath.py -------------------------------------------------------------------------------- /twext/python/test/test_launchd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/test/test_launchd.py -------------------------------------------------------------------------------- /twext/python/test/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/test/test_log.py -------------------------------------------------------------------------------- /twext/python/test/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/test/test_parallel.py -------------------------------------------------------------------------------- /twext/python/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/types.py -------------------------------------------------------------------------------- /twext/python/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/python/usage.py -------------------------------------------------------------------------------- /twext/who/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/__init__.py -------------------------------------------------------------------------------- /twext/who/aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/aggregate.py -------------------------------------------------------------------------------- /twext/who/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/checker.py -------------------------------------------------------------------------------- /twext/who/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/directory.py -------------------------------------------------------------------------------- /twext/who/expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/expression.py -------------------------------------------------------------------------------- /twext/who/idirectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/idirectory.py -------------------------------------------------------------------------------- /twext/who/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/index.py -------------------------------------------------------------------------------- /twext/who/ldap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/ldap/__init__.py -------------------------------------------------------------------------------- /twext/who/ldap/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/ldap/_constants.py -------------------------------------------------------------------------------- /twext/who/ldap/_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/ldap/_service.py -------------------------------------------------------------------------------- /twext/who/ldap/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/ldap/_util.py -------------------------------------------------------------------------------- /twext/who/ldap/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/ldap/test/__init__.py -------------------------------------------------------------------------------- /twext/who/ldap/test/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/ldap/test/test_service.py -------------------------------------------------------------------------------- /twext/who/ldap/test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/ldap/test/test_util.py -------------------------------------------------------------------------------- /twext/who/opendirectory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/opendirectory/__init__.py -------------------------------------------------------------------------------- /twext/who/opendirectory/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/opendirectory/_constants.py -------------------------------------------------------------------------------- /twext/who/opendirectory/_odframework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/opendirectory/_odframework.py -------------------------------------------------------------------------------- /twext/who/opendirectory/_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/opendirectory/_scripts.py -------------------------------------------------------------------------------- /twext/who/opendirectory/_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/opendirectory/_service.py -------------------------------------------------------------------------------- /twext/who/opendirectory/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/opendirectory/test/__init__.py -------------------------------------------------------------------------------- /twext/who/opendirectory/test/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/opendirectory/test/test_service.py -------------------------------------------------------------------------------- /twext/who/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/test/__init__.py -------------------------------------------------------------------------------- /twext/who/test/auth_resource.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/test/auth_resource.rpy -------------------------------------------------------------------------------- /twext/who/test/test_aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/test/test_aggregate.py -------------------------------------------------------------------------------- /twext/who/test/test_concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/test/test_concurrency.py -------------------------------------------------------------------------------- /twext/who/test/test_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/test/test_directory.py -------------------------------------------------------------------------------- /twext/who/test/test_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/test/test_expression.py -------------------------------------------------------------------------------- /twext/who/test/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/test/test_index.py -------------------------------------------------------------------------------- /twext/who/test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/test/test_util.py -------------------------------------------------------------------------------- /twext/who/test/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/test/test_xml.py -------------------------------------------------------------------------------- /twext/who/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/util.py -------------------------------------------------------------------------------- /twext/who/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twext/who/xml.py -------------------------------------------------------------------------------- /twisted/plugins/masterchild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-twistedextensions/HEAD/twisted/plugins/masterchild.py --------------------------------------------------------------------------------