[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/File - FileFields.py:1.1.2.4 __init__.py:1.1.2.4
Guido van Rossum
guido@python.org
Tue, 4 Jun 2002 14:59:50 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/File
In directory cvs.zope.org:/tmp/cvs-serv1575/lib/python/Zope/App/OFS/Content/File
Modified Files:
Tag: Zope-3x-branch
FileFields.py __init__.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/File/FileFields.py 1.1.2.3 => 1.1.2.4 ===
#
##############################################################################
-"""
-
+"""
+
$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 = 'text/plain',
- )
-
-
-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 = 'text/plain',
+ )
+
+
+DataField = getField('FileField')(
+ id = 'data',
+ title = 'Data',
+ description = 'The actual content of the object.',
+ )
=== Zope3/lib/python/Zope/App/OFS/Content/File/__init__.py 1.1.2.3 => 1.1.2.4 ===
#
##############################################################################
-"""
-
+"""
+
$Id$
"""