Clean up skeleton and remove easyshop stuff into extra branch
[zope-bootstrap.git] / src / koehsel.policy / koehsel / policy / __init__.py
diff --git a/src/koehsel.policy/koehsel/policy/__init__.py b/src/koehsel.policy/koehsel/policy/__init__.py
deleted file mode 100644 (file)
index 885066c..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-import setuphandlers
-import OFS.Application
-from App.Product import doInstall
-import transaction
-
-orig_install_standards = None
-
-def install_standards(app):
-    orig_install_standards(app)
-    setuphandlers.appInit(app)
-
-def initialize(context):
-    """Initializer called when used as a Zope 2 product."""
-    global orig_install_standards
-
-    if doInstall():
-        orig_install_standards = OFS.Application.install_standards
-        OFS.Application.install_standards = install_standards