Django

Code

Changeset 4171

Show
Ignore:
Timestamp:
12/06/06 22:59:36 (2 years ago)
Author:
adrian
Message:

Small tweak to docs/newforms.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/newforms.txt

    r4168 r4171  
    44 
    55``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. 
     6form/manipulator/validation framework. This document explains how to use this 
     7new form library. 
    108 
    119Migration plan 
     
    2624 
    2725    * 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're 
     26      release -- the release that comes after the release in which we're 
    2927      creating ``django.oldforms``. 
    3028 
     
    5654 
    5755    * **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 
    5959    * **Field** -- A class that is responsible for doing validation, e.g. 
    6060      an ``EmailField`` that makes sure its data is a valid e-mail address. 
     61 
    6162    * **Form** -- A collection of fields that knows how to validate itself and 
    6263      display itself as HTML.