Changeset 1172
- Timestamp:
- 07/22/08 13:47:06
- Files:
-
- qPloneSkinDump/branches/plone_3.0/HISTORY.txt (modified) (1 diff)
- qPloneSkinDump/branches/plone_3.0/skin_template/Extensions/Install.py (modified) (2 diffs)
- qPloneSkinDump/branches/plone_3.0/skin_template/config.py (modified) (1 diff)
- qPloneSkinDump/branches/plone_3.0/version.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
qPloneSkinDump/branches/plone_3.0/HISTORY.txt
r1171 r1172 1 qPloneSkinDump 0.8. 81 qPloneSkinDump 0.8.9 2 2 3 - fixed bug with erasing imported with objects on 4 on unistallation SkinProduct. 3 5 - fixed bug of exporting objects into SkinProduct with 4 6 'backup' policy qPloneSkinDump/branches/plone_3.0/skin_template/Extensions/Install.py
r1096 r1172 4 4 from Products.%(product_name)s.config import GS_AFTERINSTALL_PROFILE 5 5 from Products.%(product_name)s.config import GS_UNINSTALL_PROFILE 6 from Products.%(product_name)s.config import GS_AFTERINSTALL_STEPS 7 6 8 7 9 def install(self, reinstall=False): … … 16 18 """ 17 19 ps = getToolByName(self, 'portal_setup') 18 (ps.aq_base).__of__(self).runAllImportStepsFromProfile(GS_AFTERINSTALL_PROFILE) 20 for step in GS_AFTERINSTALL_STEPS: 21 (ps.aq_base).__of__(self).runImportStepFromProfile( 22 profile_id=GS_AFTERINSTALL_PROFILE, step_id = step, 23 run_dependencies=False) 19 24 20 25 def uninstall(self, reinstall=False): qPloneSkinDump/branches/plone_3.0/skin_template/config.py
r1124 r1172 116 116 GS_AFTERINSTALL_PROFILE = "profile-Products.%(product_name)s:installafter" 117 117 GS_UNINSTALL_PROFILE = "profile-Products.%(product_name)s:uninstall" 118 GS_AFTERINSTALL_STEPS = ["%(skin_name)s_zexps", "%(skin_name)s_customviews", 119 "%(skin_name)s_portlets", "%(skin_name)s_various"] qPloneSkinDump/branches/plone_3.0/version.txt
r1171 r1172 1 0.8. 81 0.8.9
