~ubuntu-branches/ubuntu/oneiric/python-django/oneiric-201108291626

« back to all changes in this revision

Viewing changes to docs/releases/1.0-beta-2.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
 
.. _releases-1.0-beta-2:
2
 
 
3
1
===============================
4
2
Django 1.0 beta 2 release notes
5
3
===============================
21
19
Django's development trunk has been the site of nearly constant
22
20
activity over the past year, with several major new features landing
23
21
since the 0.96 release.  For features which were new as of Django 1.0
24
 
alpha 1, see :ref:`the 1.0 alpha 1 release notes
25
 
<releases-1.0-alpha-1>`. For features which were new as of Django 1.0
26
 
alpha 2, see :ref:`the 1.0 alpha 2 release notes
27
 
<releases-1.0-alpha-2>`. For features which were new as of Django 1.0
28
 
beta 1, see :ref:`the 1.0 beta 1 release notes <releases-1.0-beta>`.
 
22
alpha 1, see :doc:`the 1.0 alpha 1 release notes
 
23
</releases/1.0-alpha-1>`. For features which were new as of Django 1.0
 
24
alpha 2, see :doc:`the 1.0 alpha 2 release notes
 
25
</releases/1.0-alpha-2>`. For features which were new as of Django 1.0
 
26
beta 1, see :doc:`the 1.0 beta 1 release notes </releases/1.0-beta>`.
29
27
 
30
28
This beta release includes two major features:
31
29
 
33
31
    As part of a Google Summer of Code project, Thejaswi Puthraya
34
32
    carried out a major rewrite and refactoring of Django's bundled
35
33
    comment system, greatly increasing its flexibility and
36
 
    customizability. :ref:`Full documentation
37
 
    <ref-contrib-comments-index>` is available, as well as :ref:`an
38
 
    upgrade guide <ref-contrib-comments-upgrade>` if you were using
 
34
    customizability. :doc:`Full documentation
 
35
    </ref/contrib/comments/index>` is available, as well as :doc:`an
 
36
    upgrade guide </ref/contrib/comments/upgrade>` if you were using
39
37
    the previous incarnation of the comments application..
40
38
 
41
39
Refactored documentation
59
57
form-handling system has been removed; this means ``django.oldforms``
60
58
no longer exists, and its various API hooks (such as automatic
61
59
manipulators) are no longer present in Django. This system has been
62
 
completely replaced by :ref:`the new form-handling system
63
 
<topics-forms-index>` in ``django.forms``.
 
60
completely replaced by :doc:`the new form-handling system
 
61
</topics/forms/index>` in ``django.forms``.
64
62
 
65
63
 
66
64
The Django 1.0 roadmap
114
112
Django's online documentation also includes pointers on how to
115
113
contribute to Django:
116
114
 
117
 
    :ref:`contributing to Django <internals-contributing>`
 
115
    :doc:`contributing to Django </internals/contributing>`
118
116
 
119
117
Contributions on any level -- developing code, writing
120
118
documentation or simply triaging tickets and helping to test proposed