~ubuntu-branches/ubuntu/saucy/python-django/saucy-updates

« back to all changes in this revision

Viewing changes to docs/ref/class-based-views/index.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
Tags: 1.5.2-1
* 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:
32
32
.. admonition:: Thread safety with view arguments
33
33
 
34
34
    Arguments passed to a view are shared between every instance of a view.
35
 
    This means that you shoudn't use a list, dictionary, or any other
 
35
    This means that you shouldn't use a list, dictionary, or any other
36
36
    mutable object as an argument to a view. If you do and the shared object
37
37
    is modified, the actions of one user visiting your view could have an
38
38
    effect on subsequent users visiting the same view.