Changeset 4171
- Timestamp:
- 12/06/06 22:59:36 (2 years ago)
- Files:
-
- django/trunk/docs/newforms.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/newforms.txt
r4168 r4171 4 4 5 5 ``django.newforms`` is a new replacement for ``django.forms``, the old Django 6 form/manipulator/validation framework. This functionality is new in the Django 7 development version -- i.e., it's not available in the Django 0.95 release. 8 9 This document explains how to use this new form library. 6 form/manipulator/validation framework. This document explains how to use this 7 new form library. 10 8 11 9 Migration plan … … 26 24 27 25 * We will remove ``django.oldforms`` in the release *after* the next Django 28 release -- i.e.,the release that comes after the release in which we're26 release -- the release that comes after the release in which we're 29 27 creating ``django.oldforms``. 30 28 … … 56 54 57 55 * **Widget** -- A class that corresponds to an HTML form widget, e.g. 58 ``<input type="text">`` or ``<textarea>``. 56 ``<input type="text">`` or ``<textarea>``. This handles rendering of the 57 widget as HTML. 58 59 59 * **Field** -- A class that is responsible for doing validation, e.g. 60 60 an ``EmailField`` that makes sure its data is a valid e-mail address. 61 61 62 * **Form** -- A collection of fields that knows how to validate itself and 62 63 display itself as HTML.
