Commit 6c1faa28 authored by Hanno Schlichting's avatar Hanno Schlichting

Adjusted Five.zcml to new skel location. I had an instance created in my buildout :(

parent c9aabe01
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
$Id$ $Id$
""" """
import os import os
import os.path
from zope.configuration import xmlconfig from zope.configuration import xmlconfig
_initialized = False _initialized = False
...@@ -30,9 +31,15 @@ def load_site(): ...@@ -30,9 +31,15 @@ def load_site():
return return
_initialized = True _initialized = True
import Globals
Globals.INSTANCE_HOME
# load instance site configuration file # load instance site configuration file
site_zcml = os.path.join(INSTANCE_HOME, "etc", "site.zcml") site_zcml = os.path.join(Globals.INSTANCE_HOME, "etc", "site.zcml")
skel_site_zcml = os.path.join(INSTANCE_HOME, "skel", "etc", "site.zcml")
import Zope2.utilities
zope_utilities = os.path.dirname(Zope2.utilities.__file__)
skel_site_zcml = os.path.join(zope_utilities, "skel", "etc", "site.zcml")
if os.path.exists(site_zcml): if os.path.exists(site_zcml):
file = site_zcml file = site_zcml
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment