[Zope3-checkins] CVS: Zope3/src/zope/configuration - __init__.py:1.1.2.2 meta.zcml:1.1.2.2 metametaconfigurefordocgen.py:1.1.2.2

Jim Fulton jim@zope.com
Tue, 24 Dec 2002 07:51:56 -0500


Update of /cvs-repository/Zope3/src/zope/configuration
In directory cvs.zope.org:/tmp/cvs-serv1158/src/zope/configuration

Modified Files:
      Tag: NameGeddon-branch
	__init__.py meta.zcml metametaconfigurefordocgen.py 
Log Message:
Searched for and changed over 1200 references to Zope.something.

Most of these were either comments, doc strings, or permission ids.

Many were imports or ids in zcml.  (much zcml fixup is still needed.



=== Zope3/src/zope/configuration/__init__.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/configuration/__init__.py:1.1.2.1	Mon Dec 23 14:32:42 2002
+++ Zope3/src/zope/configuration/__init__.py	Tue Dec 24 07:51:25 2002
@@ -14,7 +14,7 @@
 """Zope configuration support
 
 Software that wants to provide new config directives calls
-Zope.Configuration.meta.register.
+zope.configuration.meta.register.
 """
 
 def namespace(suffix):


=== Zope3/src/zope/configuration/meta.zcml 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/configuration/meta.zcml:1.1.2.1	Mon Dec 23 14:32:42 2002
+++ Zope3/src/zope/configuration/meta.zcml	Tue Dec 24 07:51:25 2002
@@ -1,6 +1,6 @@
 <zopeConfigure xmlns='http://namespaces.zope.org/zope'>
 
-  <!-- Zope.Configure -->
+  <!-- zope.configure -->
   <directives namespace="http://namespaces.zope.org/zope">
     <directive name="hookable" attributes="name module"
        handler="zope.configuration.metaconfigure.provideHookable" />


=== Zope3/src/zope/configuration/metametaconfigurefordocgen.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/configuration/metametaconfigurefordocgen.py:1.1.2.1	Mon Dec 23 14:32:42 2002
+++ Zope3/src/zope/configuration/metametaconfigurefordocgen.py	Tue Dec 24 07:51:25 2002
@@ -57,7 +57,8 @@
 be extracted and made human accessible by a zope-independent program
 and/or a zope-based introspection tool.
 """
-_metadataKey = "__Zope.Configuration.metadataKey__"
+
+_metadataKey = "__zope.configuration.metadataKey__"
 
 def _recordCommandMetadata(subs, description, handler=None):
         if _metadataKey not in subs: subs[_metadataKey] = {}