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

« back to all changes in this revision

Viewing changes to docs/internals/svn.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (4.4.9 sid)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: james.westby@ubuntu.com-20101012113435-5rk3p18nyanuhj6g
* 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
 
.. _internals-svn:
2
 
 
3
1
=================================
4
2
The Django source code repository
5
3
=================================
87
85
 
88
86
If you're going to be working on Django's code (say, to fix a bug or
89
87
develop a new feature), you can probably stop reading here and move
90
 
over to :ref:`the documentation for contributing to Django
91
 
<internals-contributing>`, which covers things like the preferred
 
88
over to :doc:`the documentation for contributing to Django
 
89
</internals/contributing>`, which covers things like the preferred
92
90
coding style and how to generate and submit a patch.
93
91
 
94
92
 
129
127
  object-relational mapper. This has been part of Django since the 1.0
130
128
  release, as the bundled application ``django.contrib.gis``.
131
129
 
132
 
* ``i18n``: Added :ref:`internationalization support <topics-i18n>` to
 
130
* ``i18n``: Added :doc:`internationalization support </topics/i18n/index>` to
133
131
  Django. This has been part of Django since the 0.90 release.
134
132
 
135
133
* ``magic-removal``: A major refactoring of both the internals and
136
134
  public APIs of Django's object-relational mapper. This has been part
137
135
  of Django since the 0.95 release.
138
136
 
139
 
* ``multi-auth``: A refactoring of :ref:`Django's bundled
140
 
  authentication framework <topics-auth>` which added support for
 
137
* ``multi-auth``: A refactoring of :doc:`Django's bundled
 
138
  authentication framework </topics/auth>` which added support for
141
139
  :ref:`authentication backends <authentication-backends>`. This has
142
140
  been part of Django since the 0.95 release.
143
141
 
144
 
* ``new-admin``: A refactoring of :ref:`Django's bundled
145
 
  administrative application <ref-contrib-admin>`. This became part of
 
142
* ``new-admin``: A refactoring of :doc:`Django's bundled
 
143
  administrative application </ref/contrib/admin/index>`. This became part of
146
144
  Django as of the 0.91 release, but was superseded by another
147
145
  refactoring (see next listing) prior to the Django 1.0 release.
148
146