[Zope-Checkins] CVS: Zope3/lib/python/Zope/ComponentArchitecture - ContextDependent.py:1.1.2.2 IAdapterService.py:1.1.2.2 IComponentArchitecture.py:1.1.2.10 IFactoryService.py:1.1.2.2 IResourceService.py:1.1.2.2 IServiceManagerContainer.py:1.1.2.2 IServiceService.py:1.1.2.3 ISkinService.py:1.1.2.2 IUtilityService.py:1.1.2.2 IViewService.py:1.1.2.6 ResourceService.py:1.1.2.2 Service.py:1.1.6.5 SkinService.py:1.1.2.3 ViewService.py:1.1.2.10 __init__.py:1.1.6.15

Tres Seaver tseaver@zope.com
Tue, 12 Feb 2002 15:56:37 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/ComponentArchitecture
In directory cvs.zope.org:/tmp/cvs-serv19744/Zope/ComponentArchitecture

Modified Files:
      Tag: Zope-3x-branch
	ContextDependent.py IAdapterService.py 
	IComponentArchitecture.py IFactoryService.py 
	IResourceService.py IServiceManagerContainer.py 
	IServiceService.py ISkinService.py IUtilityService.py 
	IViewService.py ResourceService.py Service.py SkinService.py 
	ViewService.py __init__.py 
Log Message:


  - Normalize file headers.

  - Fix violations of "80 character" rule.


=== Zope3/lib/python/Zope/ComponentArchitecture/ContextDependent.py 1.1.2.1 => 1.1.2.2 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 class ContextDependent:


=== Zope3/lib/python/Zope/ComponentArchitecture/IAdapterService.py 1.1.2.1 => 1.1.2.2 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from Interface import Interface


=== Zope3/lib/python/Zope/ComponentArchitecture/IComponentArchitecture.py 1.1.2.9 => 1.1.2.10 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from IServiceService import IServiceService


=== Zope3/lib/python/Zope/ComponentArchitecture/IFactoryService.py 1.1.2.1 => 1.1.2.2 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from Interface import Interface


=== Zope3/lib/python/Zope/ComponentArchitecture/IResourceService.py 1.1.2.1 => 1.1.2.2 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from Interface import Interface


=== Zope3/lib/python/Zope/ComponentArchitecture/IServiceManagerContainer.py 1.1.2.1 => 1.1.2.2 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from Interface import Interface


=== Zope3/lib/python/Zope/ComponentArchitecture/IServiceService.py 1.1.2.2 => 1.1.2.3 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from Interface import Interface


=== Zope3/lib/python/Zope/ComponentArchitecture/ISkinService.py 1.1.2.1 => 1.1.2.2 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from Interface import Interface


=== Zope3/lib/python/Zope/ComponentArchitecture/IUtilityService.py 1.1.2.1 => 1.1.2.2 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from Interface import Interface


=== Zope3/lib/python/Zope/ComponentArchitecture/IViewService.py 1.1.2.5 => 1.1.2.6 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from Interface import Interface


=== Zope3/lib/python/Zope/ComponentArchitecture/ResourceService.py 1.1.2.1 => 1.1.2.2 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from IToIRegistry import IRegistry


=== Zope3/lib/python/Zope/ComponentArchitecture/Service.py 1.1.6.4 => 1.1.6.5 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from Zope.Exceptions import DuplicationError, NotFoundError
@@ -26,7 +26,8 @@
     """
 
 class InvalidService(Exception):
-    """An attempt to register a service that doesn't implement the required interface
+    """An attempt to register a service that doesn't implement
+       the required interface
     """
     
 class ServiceManager:


=== Zope3/lib/python/Zope/ComponentArchitecture/SkinService.py 1.1.2.2 => 1.1.2.3 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from IToIRegistry import IToIRegistry


=== Zope3/lib/python/Zope/ComponentArchitecture/ViewService.py 1.1.2.9 => 1.1.2.10 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 from IToIRegistry import IToIRegistry, IToIDataRegistry


=== Zope3/lib/python/Zope/ComponentArchitecture/__init__.py 1.1.6.14 => 1.1.6.15 ===
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
+#
 # This software is subject to the provisions of the Zope Public License,
 # Version 1.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.
+##############################################################################
+"""
+
+$Id$
+"""
 
 # XXX We really shouldn't have the mutators here. 
 
@@ -13,7 +22,8 @@
 from hooks import provideAdapter, getAdapter
 from hooks import provideUtility, getUtility
 from hooks import provideFactory, createObject
-from Service import defineService, provideService, getService, getServiceDefinitions
+from Service import defineService, provideService
+from Service import getService, getServiceDefinitions
 from SkinService import getSkin, defineSkin
 from ViewService import getView, provideView, getRequestView
 from ViewService import getDefaultViewName, getRequestDefaultViewName, \