From: jlaine Date: Mon, 11 Apr 2011 10:45:25 +0000 (+0000) Subject: register LDAP router X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fdjango-ldapdb.git;a=commitdiff_plain;h=9a3c42aac1ccc9b34c4ec4b300d07b003c439248;hp=9c4c98c24a7c0300ba09218b12833426d9bbb88f register LDAP router git-svn-id: https://svn.bolloretelecom.eu/opensource/django-ldapdb/trunk@1025 e071eeec-0327-468d-9b6a-08194a12b294 --- diff --git a/ldapdb/__init__.py b/ldapdb/__init__.py index 7dde301..cfa1dd3 100644 --- a/ldapdb/__init__.py +++ b/ldapdb/__init__.py @@ -32,8 +32,10 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # +from django import db from django.conf import settings -from django.db import connections + +from ldapdb.router import Router def escape_ldap_filter(value): value = unicode(value) @@ -43,11 +45,13 @@ def escape_ldap_filter(value): .replace(')', '\\29') \ .replace('\0', '\\00') -# Add the LDAP backend to the configured databases +# Add the LDAP backend settings.DATABASES['ldap'] = { 'ENGINE': 'ldapdb.backends.ldap', 'NAME': settings.LDAPDB_SERVER_URI, 'USER': settings.LDAPDB_BIND_DN, 'PASSWORD': settings.LDAPDB_BIND_PASSWORD} -connection = connections['ldap'] +connection = db.connections['ldap'] +# Add the LDAP router +db.router.routers.append(Router())