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

« back to all changes in this revision

Viewing changes to docs/releases/1.0-beta.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
 
 
3
1
===============================
4
2
Django 1.0 beta 1 release notes
5
3
===============================
20
18
 
21
19
Django's development trunk has been the site of nearly constant activity over
22
20
the past year, with several major new features landing since the 0.96 release.
23
 
For features which were new as of Django 1.0 alpha 1, see :ref:`the 1.0 alpha 1
24
 
release notes <releases-1.0-alpha-1>`. For features which were new as of Django
25
 
1.0 alpha 2, see :ref:`the 1.0 alpha 2 release notes <releases-1.0-alpha-2>`.
 
21
For features which were new as of Django 1.0 alpha 1, see :doc:`the 1.0 alpha 1
 
22
release notes </releases/1.0-alpha-1>`. For features which were new as of Django
 
23
1.0 alpha 2, see :doc:`the 1.0 alpha 2 release notes </releases/1.0-alpha-2>`.
26
24
 
27
25
This beta release does not contain any major new features, but does
28
26
include several smaller updates and improvements to Django:
38
36
    interface (``django.contrib.admin``), introduced in Django 1.0
39
37
    alpha 1, two new hooks have been added to allow customized pre-
40
38
    and post-save handling of model instances in the admin. Full
41
 
    details are in :ref:`the admin documentation <ref-contrib-admin>`.
 
39
    details are in :doc:`the admin documentation </ref/contrib/admin/index>`.
42
40
 
43
41
``INSERT``/``UPDATE`` distinction
44
42
    Although Django's default behavior of having a model's ``save()``
59
57
   flexibility for situations where combining these functions into a
60
58
   single middleware posed problems. Full details, including updated
61
59
   notes on appropriate use, are in 
62
 
   :ref:`the caching documentation <topics-cache>`.
 
60
   :doc:`the caching documentation </topics/cache>`.
63
61
 
64
62
Removal of deprecated features
65
63
    A number of features and methods which had previously been marked
148
146
Django's online documentation also includes pointers on how to
149
147
contribute to Django:
150
148
 
151
 
    :ref:`contributing to Django <internals-contributing>`
 
149
    :doc:`contributing to Django </internals/contributing>`
152
150
 
153
151
Contributions on any level -- developing code, writing
154
152
documentation or simply triaging tickets and helping to test proposed