[Zope3-checkins]
SVN: Zope3/trunk/src/zope/app/registration/factories.py
Deleted unused module.
Garrett Smith
garrett at mojave-corp.com
Wed Nov 24 17:02:22 EST 2004
Log message for revision 28501:
Deleted unused module.
Changed:
D Zope3/trunk/src/zope/app/registration/factories.py
-=-
Deleted: Zope3/trunk/src/zope/app/registration/factories.py
===================================================================
--- Zope3/trunk/src/zope/app/registration/factories.py 2004-11-24 18:57:40 UTC (rev 28500)
+++ Zope3/trunk/src/zope/app/registration/factories.py 2004-11-24 22:02:21 UTC (rev 28501)
@@ -1,39 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2003 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""A collection of factory functions for various registration classes.
-
-See method factory() in class ComponentRegistrationAdapter in file
-registration.py.
-
-The functions here may create invalid objects; a subsequent setBody()
-call to the adapter's setBody() method will make the object valid.
-
-$Id$
-"""
-
-def CacheRegistration():
- from zope.app.services.cache import CacheRegistration
- return CacheRegistration("", "") # name, componentPath
-
-def ConnectionRegistration():
- from zope.app.services.connection import ConnectionRegistration
- return ConnectionRegistration("", "") # name, componentPath
-
-def ServiceRegistration():
- from zope.app.site.service import ServiceRegistration
- return ServiceRegistration("", "") # name, componentPath
-
-def UtilityRegistration():
- from zope.app.services.utility import UtilityRegistration
- return UtilityRegistration("", None, "") # name, interface, componentPath
More information about the Zope3-Checkins
mailing list