[Zope3-checkins] CVS: Zope3/src/zope/app/form - utility.py:1.1.2.2 widget.py:1.1.2.2

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


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

Modified Files:
      Tag: NameGeddon-branch
	utility.py widget.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/app/form/utility.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/form/utility.py:1.1.2.1	Mon Dec 23 14:31:35 2002
+++ Zope3/src/zope/app/form/utility.py	Tue Dec 24 07:51:04 2002
@@ -18,7 +18,7 @@
 them, especially editing interfaces.
 
 In Zope 3, formulator's forms are replaced by Schema (See
-Zope.Schema). In addition, the Formulator fields have been replaced by
+zope.schema). In addition, the Formulator fields have been replaced by
 schema fields and form widgets. Schema fields just express the sematics
 of data values. They contain no presentation logic or parameters.
 Widgets are views on fields that take care of presentation. The widget


=== Zope3/src/zope/app/form/widget.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/form/widget.py:1.1.2.1	Mon Dec 23 14:31:35 2002
+++ Zope3/src/zope/app/form/widget.py	Tue Dec 24 07:51:04 2002
@@ -34,11 +34,11 @@
         self.request = request
         self.name = self._prefix + context.__name__
 
-    # See Zope.App.Forms.IWidget.IWidget
+    # See IWidget
     propertyNames = []
 
     def getValue(self, name):
-        'See Zope.App.Forms.IWidget.IWidget'
+        'See IWidget'
         if name in self.propertyNames:
             return getattr(self, name, None)