Changeset 1320
- Timestamp:
- 05/27/08 18:34:35 (6 months ago)
- Files:
-
- pleiades.policy/trunk/pleiades/policy/Extensions/Install.py (modified) (1 diff)
- pleiades.policy/trunk/pleiades/policy/configure.zcml (modified) (1 diff)
- pleiades.policy/trunk/pleiades/policy/tests/base.py (modified) (2 diffs)
- pleiades.policy/trunk/pleiades/policy/tests/test_setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pleiades.policy/trunk/pleiades/policy/Extensions/Install.py
r1286 r1320 5 5 'ATVocabularyManager', 6 6 'PleiadesEntity', 7 'zgeo.plone.geographer', 8 'zgeo.plone.kml', 7 9 'pleiades.workspace', 8 10 'pleiades.vocabulary', pleiades.policy/trunk/pleiades/policy/configure.zcml
r1286 r1320 6 6 > 7 7 8 <include package="zgeo.plone.geographer"/> 9 <include package="zgeo.plone.kml"/> 8 10 <include package="pleiades.workspace"/> 9 11 <include package="pleiades.theme"/> pleiades.policy/trunk/pleiades/policy/tests/base.py
r1286 r1320 18 18 """ 19 19 20 fiveconfigure.debug_mode = True21 import pleiades.policy22 zcml.load_config('configure.zcml', pleiades.policy)23 fiveconfigure.debug_mode = False20 #fiveconfigure.debug_mode = True 21 #import pleiades.policy 22 #zcml.load_config('configure.zcml', pleiades.policy) 23 #fiveconfigure.debug_mode = False 24 24 25 25 # We need to tell the testing framework that these products … … 27 27 # the ZCML. 28 28 29 ztc.installProduct('pleiades.policy') 30 ztc.installProduct('pleiades.vocabulary') 31 ztc.installProduct('pleiades.theme') 32 ztc.installProduct('pleiades.workspace') 29 ztc.installPackage('pleiades.policy') 30 ztc.installPackage('pleiades.vocabulary') 31 ztc.installPackage('pleiades.theme') 32 ztc.installPackage('pleiades.workspace') 33 ztc.installPackage('pleiades.plone.geographer') 34 ztc.installPackage('pleiades.plone.kml') 35 33 36 34 37 # The order here is important: We first call the (deferred) function which pleiades.policy/trunk/pleiades/policy/tests/test_setup.py
r1279 r1320 46 46 skins = getToolByName(self.portal, 'portal_skins') 47 47 layer = skins.getSkinPath('Pleiades Theme') 48 import pdb; pdb.set_trace() 48 49 self.failUnless('pleiades_theme_custom_images' in layer) 49 50 self.failUnless('pleiades_theme_custom_templates' in layer)
