~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to docs/ref/forms/api.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (1.1.12 upstream) (29.1.1 maverick-security)
  • Revision ID: james.westby@ubuntu.com-20101012113435-yy57c8tx6g9anf3e
Tags: 1.2.3-1ubuntu0.1
* SECURITY UPDATE: XSS in CSRF protections. New upstream release
  - CVE-2010-3082
* debian/patches/01_disable_url_verify_regression_tests.diff:
  - updated to disable another test that fails without internet connection
  - patch based on work by Kai Kasurinen and Krzysztof Klimonda
* debian/control: don't Build-Depends on locales-all, which doesn't exist
  in maverick

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.. _ref-forms-api:
2
 
 
3
1
=============
4
2
The Forms API
5
3
=============
11
9
.. admonition:: About this document
12
10
 
13
11
    This document covers the gritty details of Django's forms API. You should
14
 
    read the :ref:`introduction to working with forms <topics-forms-index>`
 
12
    read the :doc:`introduction to working with forms </topics/forms/index>`
15
13
    first.
16
14
 
17
15
.. _ref-forms-api-bound-unbound:
262
260
 
263
261
You can write code to perform validation for particular form fields (based on
264
262
their name) or for the form as a whole (considering combinations of various
265
 
fields). More information about this is in :ref:`ref-forms-validation`.
 
263
fields). More information about this is in :doc:`/ref/forms/validation`.
266
264
 
267
265
Outputting forms as HTML
268
266
------------------------