File: __init__.py

package info (click to toggle)
zope-cmfplone 2.5.1-4etch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 7,752 kB
  • ctags: 5,237
  • sloc: python: 28,264; xml: 3,723; php: 129; makefile: 99; sh: 2
file content (11 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
import os

if not os.environ.get('ZOPETESTCASE'):
    import dependencies

from Products.CMFPlone import MigrationTool
from customization_policy import CustomizationPolicySetup
from ConfigurationMethods import GeneralSetup

MigrationTool.registerSetupWidget(CustomizationPolicySetup)
MigrationTool.registerSetupWidget(GeneralSetup)