[Zope3-checkins] CVS: Zope3/src/zope/app/services - servicenames.py:1.1 adapter.py:1.9 auth.py:1.12 event.py:1.11
R. Sean Bowman
sean.bowman@acm.org
Tue, 11 Feb 2003 21:18:05 -0500
Update of /cvs-repository/Zope3/src/zope/app/services
In directory cvs.zope.org:/tmp/cvs-serv21737/zope/app/services
Modified Files:
adapter.py auth.py event.py
Added Files:
servicenames.py
Log Message:
moved non core CA service names to zope/app/services/servicenames.py,
renamed ResourceService to Resources
=== Added File Zope3/src/zope/app/services/servicenames.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (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.
#
##############################################################################
"""
Default service names
$Id: servicenames.py,v 1.1 2003/02/12 02:17:34 seanb Exp $
"""
from zope.component.servicenames import *
HubIds = 'HubIds'
Events = 'Events'
Subscription = 'Subscription'
ErrorReports = 'ErrorReportingService'
Roles = 'Roles'
Permissions = 'Permissions'
Authentication = 'Authentication'
Workflows = 'Workflows'
=== Zope3/src/zope/app/services/adapter.py 1.8 => 1.9 ===
--- Zope3/src/zope/app/services/adapter.py:1.8 Tue Feb 11 10:59:56 2003
+++ Zope3/src/zope/app/services/adapter.py Tue Feb 11 21:17:34 2003
@@ -23,7 +23,7 @@
from zope.component.interfaces import IAdapterService
from zope.component.exceptions import ComponentLookupError
from zope.component import getServiceManager
-from zope.component.servicenames import Adapters
+from zope.app.services.servicenames import Adapters
from zope.app.interfaces.services.configuration import IConfigurable
from zope.app.services.configuration import ConfigurationRegistry
from zope.app.services.configuration import SimpleConfiguration
=== Zope3/src/zope/app/services/auth.py 1.11 => 1.12 ===
--- Zope3/src/zope/app/services/auth.py:1.11 Tue Feb 11 10:59:56 2003
+++ Zope3/src/zope/app/services/auth.py Tue Feb 11 21:17:34 2003
@@ -23,7 +23,7 @@
from zope.exceptions import NotFoundError
from zope.component import getAdapter, queryAdapter
-from zope.component.servicenames import Authentication
+from zope.app.services.servicenames import Authentication
from zope.app.interfaces.container import IContainer
=== Zope3/src/zope/app/services/event.py 1.10 => 1.11 ===
--- Zope3/src/zope/app/services/event.py:1.10 Tue Feb 11 10:59:56 2003
+++ Zope3/src/zope/app/services/event.py Tue Feb 11 21:17:34 2003
@@ -28,7 +28,7 @@
from zope.component import getAdapter, queryAdapter, getService, queryService
from zope.component import ComponentLookupError
-from zope.component.servicenames import HubIds, Events, Subscription
+from zope.app.services.servicenames import HubIds, Events, Subscription
from zope.app.component.nextservice import getNextService, queryNextService
from zope.proxy.context import ContextMethod, ContextSuper