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

« back to all changes in this revision

Viewing changes to docs/releases/1.0-alpha-2.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
 
.. _releases-1.0-alpha-2:
2
 
 
3
1
================================
4
2
Django 1.0 alpha 2 release notes
5
3
================================
21
19
 
22
20
Django's development trunk has been the site of nearly constant activity over
23
21
the past year, with several major new features landing since the 0.96 release.
24
 
For features which were new as of Django 1.0 alpha 1, see :ref:`the 1.0 alpha 1
25
 
release notes <releases-1.0-alpha-1`. Since the 1.0 alpha 1 release several new
 
22
For features which were new as of Django 1.0 alpha 1, see :doc:`the 1.0 alpha 1
 
23
release notes </releases/1.0-alpha-1>`. Since the 1.0 alpha 1 release several new
26
24
features have landed, including:
27
25
 
28
26
``django.contrib.gis`` (`GeoDjango`_)
37
35
Pluggable file storage
38
36
    Django's built-in ``FileField`` and ``ImageField`` now can take advantage of
39
37
    pluggable file-storage backends, allowing extensive customization of where
40
 
    and how uploaded files get stored by Django. For details, see :ref:`the
41
 
    files documentation <topics-files>`; big thanks go to Marty Alchin for
 
38
    and how uploaded files get stored by Django. For details, see :doc:`the
 
39
    files documentation </topics/files>`; big thanks go to Marty Alchin for
42
40
    putting in the hard work to get this completed.
43
41
 
44
42
Jython compatibility
51
49
 
52
50
There are many other new features and improvements in this release, including
53
51
two major performance boosts: strings marked for translation using
54
 
:ref:`Django's internationalization system <topics-i18n>` now consume far less
 
52
:doc:`Django's internationalization system </topics/i18n/index>` now consume far less
55
53
memory, and Django's internal dispatcher -- which is invoked frequently during
56
54
request/response processing and when working with Django's object-relational
57
55
mapper -- is now significantly faster.
58
 
    
 
56
 
59
57
.. _GeoDjango: http://geodjango.org/
60
58
.. _Geographic Information Systems: http://en.wikipedia.org/wiki/Geographic_information_system
61
59
.. _Its documentation: http://geodjango.org/docs/
131
129
Django's online documentation also includes pointers on how to
132
130
contribute to Django:
133
131
 
134
 
    :ref:`contributing to Django <internals-contributing>`
 
132
    :doc:`contributing to Django </internals/contributing>`
135
133
 
136
134
Contributions on any level -- developing code, writing
137
135
documentation or simply triaging tickets and helping to test proposed