Changeset 6362 for main/waeup.sirp/trunk/src
- Timestamp:
- 12 Jun 2011, 23:17:47 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/app.py
r6361 r6362 2 2 import logging 3 3 import os 4 try: 5 from zope.authentication.interfaces import IAuthentication 6 except: 7 # BBB 8 from zope.app.security.interfaces import IAuthentication 4 from zope.authentication.interfaces import IAuthentication 9 5 from zope.component import createObject, getUtilitiesFor 10 6 from zope.component.interfaces import ObjectEvent 11 try: 12 from zope.pluggableauth import PluggableAuthentication 13 except ImportError: 14 # BBB 15 from zope.app.authentication.authentication import PluggableAuthentication 16 7 from zope.pluggableauth import PluggableAuthentication 17 8 from waeup.sirp.authentication import setup_authentication 18 9 from waeup.sirp.datacenter import DataCenter
Note: See TracChangeset for help on using the changeset viewer.