
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3685 fd906abe-77d9-0310-91a1-e0d9ade77398
13 lines
324 B
Python
13 lines
324 B
Python
"""
|
|
five.localsitemanager/PersistentComponents compatibility support.
|
|
"""
|
|
|
|
try:
|
|
from five.localsitemanager import (
|
|
make_objectmanager_site as make_site, )
|
|
except ImportError:
|
|
USE_LSM = False
|
|
from Products.Five.site.localsite import (
|
|
enableLocalSiteHook as make_site, )
|
|
else:
|
|
USE_LSM = True
|