~ubuntu-branches/ubuntu/utopic/python-django/utopic

« back to all changes in this revision

Viewing changes to docs/ref/class-based-views/mixins-editing.txt

  • Committer: Package Import Robot
  • Author(s): Luke Faraone
  • Date: 2013-08-13 16:49:39 UTC
  • mfrom: (1.1.22) (4.4.28 sid)
  • Revision ID: package-import@ubuntu.com-20130813164939-ct6oweybhkuyq4tt
* New upstream security release.
  https://www.djangoproject.com/weblog/2013/aug/13/security-releases-issued/
  - Cross-site scripting (XSS) in admin interface
  - Possible XSS via is_safe_url

Show diffs side-by-side

added added

removed removed

Lines of Context:
193
193
        Constructs a form, checks the form for validity, and handles it
194
194
        accordingly.
195
195
 
196
 
    The PUT action is also handled, as an analog of POST.
 
196
    .. method:: put(*args, **kwargs)
 
197
 
 
198
        The ``PUT`` action is also handled and just passes all parameters
 
199
        through to :meth:`post`.
197
200
 
198
201
.. class:: django.views.generic.edit.DeletionMixin
199
202