[Zope3-checkins] CVS: zopeproducts/zwiki - metaconfigure.py:1.6

Philipp von Weitershausen philikon@philikon.de
Wed, 30 Jul 2003 00:28:56 -0400


Update of /cvs-repository/zopeproducts/zwiki
In directory cvs.zope.org:/tmp/cvs-serv32520

Modified Files:
	metaconfigure.py 
Log Message:
Correct description strings and improve line wrapping.


=== zopeproducts/zwiki/metaconfigure.py 1.5 => 1.6 ===
--- zopeproducts/zwiki/metaconfigure.py:1.5	Wed Jul 30 00:22:12 2003
+++ zopeproducts/zwiki/metaconfigure.py	Wed Jul 30 00:28:50 2003
@@ -35,13 +35,14 @@
 
     interface = GlobalObject(
         title=u"Interface",
-        description=u"The for attribute specifies a interface for specifying the particular source type.",
+        description=u"Specifies an interface for of a particular source type.",
         required=True
         )
 
     class_ = GlobalObject(
         title=u"Class",
-        description=u"The for attribute specifies the class that is implementing this source type.",
+        description=u"Specifies the class that is implementing this " \
+                     "source type.",
         required=True
         )
 
@@ -59,13 +60,15 @@
 
     for_ = GlobalObject(
         title=u"Interface of the output type",
-        description=u"Specifies the interface of the output type (i.e. browser) for which this view is being registered.",
+        description=u"Specifies the interface of the output type (i.e. " \
+                     "browser) for which this view is being registered.",
         required=True
         )
 
     factory = GlobalObject(
         title=u"Factory",
-        description=u"Specifies the factory that is used to create the view on the source.",
+        description=u"Specifies the factory that is used to create the " \
+                     "view on the source.",
         required=True
         )