Author: adrian
Date: 2007-09-19 20:48:47 -0500 (Wed, 19 Sep 2007)
New Revision: 6381

Modified:
   django/trunk/docs/model-api.txt
Log:
Fixed errors in docs/model-api.txt changes from [6378]

Modified: django/trunk/docs/model-api.txt
===================================================================
--- django/trunk/docs/model-api.txt     2007-09-20 00:24:42 UTC (rev 6380)
+++ django/trunk/docs/model-api.txt     2007-09-20 01:48:47 UTC (rev 6381)
@@ -293,12 +293,10 @@
 
 .. _`strftime formatting`: http://docs.python.org/lib/module-time.html#l2h-1941
 
-**New in development version:**
+**New in development version:**  By default, ``FileField`` instances are
+created as ``varchar(100)`` columns in your database. As with other fields, you
+can change the maximum length using the ``max_length`` argument.
 
-By default, file fields are created as ``varchar(100)`` database fields. Like
-other fields, you can change the maximum length using the ``max_length``
-argument.
-
 ``FilePathField``
 ~~~~~~~~~~~~~~~~~
 
@@ -336,12 +334,10 @@
 because the ``match`` applies to the base filename (``foo.gif`` and
 ``bar.gif``).
 
-**New in development version:** 
+**New in development version:**  By default, ``FilePathField`` instances are
+created as ``varchar(100)`` columns in your database. As with other fields, you
+can change the maximum length using the ``max_length`` argument.
 
-By default, file fields are created as ``varchar(100)`` database fields. Like
-other fields, you can change the maximum length using the ``max_length``
-argument.
-
 ``FloatField``
 ~~~~~~~~~~~~~~
 
@@ -373,11 +369,10 @@
 .. _Python Imaging Library: http://www.pythonware.com/products/pil/
 .. _elsewhere: ../db-api/#get-foo-height-and-get-foo-width
 
-**New in development version:** 
+**New in development version:**  By default, ``ImageField`` instances are
+created as ``varchar(100)`` columns in your database. As with other fields, you
+can change the maximum length using the ``max_length`` argument.
 
-By default, file fields are created as ``varchar(100)`` database fields. Like
-other fields, you can change the maximum length using the ``max_length``
-argument.
 
 ``IntegerField``
 ~~~~~~~~~~~~~~~~


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to