Negligible change to docs/newforms.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4245 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-12-27 05:14:34 +00:00
parent 252606c711
commit 99723ac65a
1 changed files with 8 additions and 4 deletions

View File

@ -22,7 +22,7 @@ release, our plan is to do the following:
from django import oldforms as forms # new from django import oldforms as forms # new
* At an undecided future date, we will move the current ``django.newforms`` * At an undecided future date, we will move the current ``django.newforms``
to ``django.forms``. This will be a backwards-incompatible change, and to ``django.forms``. This will be a backwards-incompatible change, and
anybody who is still using the old version of ``django.forms`` at that anybody who is still using the old version of ``django.forms`` at that
time will need to change their import statements, as described in the time will need to change their import statements, as described in the
previous bullet. previous bullet.
@ -282,6 +282,13 @@ example, in the ``ContactForm`` example, the fields are defined in the order
``subject``, ``message``, ``sender``, ``cc_myself``. To reorder the HTML ``subject``, ``message``, ``sender``, ``cc_myself``. To reorder the HTML
output, just change the order in which those fields are listed in the class. output, just change the order in which those fields are listed in the class.
Using forms to validate data
----------------------------
In addition to HTML form display, a ``Form`` class is responsible for
validating data.
More coming soon More coming soon
================ ================
@ -290,9 +297,6 @@ http://code.djangoproject.com/browser/django/trunk/tests/regressiontests/forms/t
-- the unit tests for ``django.newforms``. This can give you a good idea of -- the unit tests for ``django.newforms``. This can give you a good idea of
what's possible. what's possible.
Using forms to validate data
----------------------------
Using forms with templates Using forms with templates
========================== ==========================