[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/Image - ImageFields.py:1.1.2.4

Guido van Rossum guido@python.org
Tue, 4 Jun 2002 14:59:53 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/Image
In directory cvs.zope.org:/tmp/cvs-serv1575/lib/python/Zope/App/OFS/Content/Image

Modified Files:
      Tag: Zope-3x-branch
	ImageFields.py 
Log Message:
Whoever (not Jeremy :-) checks in files from Windows with the CRLF
markers still left in, please stop doing this.  It screws up the
checkouts for everyone else (including Windows users who use the
command line cvs tools).  Hint: some wincvs do this.



=== Zope3/lib/python/Zope/App/OFS/Content/Image/ImageFields.py 1.1.2.3 => 1.1.2.4 ===
 # 
 ##############################################################################
-"""
-Revision information: 
+"""
+Revision information: 
 $Id$
-"""
+"""
 
-from Zope.App.Formulator.FieldRegistry import getField
-from Zope.App.Formulator.ValidatorRegistry import getValidator
-
-
-ContentTypeField = getField('StringField')(
-    id = 'contentType',
-    title = 'Content Type',
-    description = 'The content type identifies the type of data.',
-    default = 'image/gif',
-    )
-
-
-DataField = getField('FileField')(
-    id = 'data',
-    title = 'Data',
-    description = 'The actual content of the object.'
-    )
+from Zope.App.Formulator.FieldRegistry import getField
+from Zope.App.Formulator.ValidatorRegistry import getValidator
+
+
+ContentTypeField = getField('StringField')(
+    id = 'contentType',
+    title = 'Content Type',
+    description = 'The content type identifies the type of data.',
+    default = 'image/gif',
+    )
+
+
+DataField = getField('FileField')(
+    id = 'data',
+    title = 'Data',
+    description = 'The actual content of the object.'
+    )