2010-11-14 02:42:11 +08:00
|
|
|
================================
|
2010-12-19 23:02:13 +08:00
|
|
|
Django 1.3 beta 1 release notes
|
2010-11-14 02:42:11 +08:00
|
|
|
================================
|
|
|
|
|
2010-12-19 23:02:13 +08:00
|
|
|
Welcome to Django 1.3 beta 1!
|
2010-11-14 02:42:11 +08:00
|
|
|
|
|
|
|
This is the second in a series of preview/development releases leading
|
|
|
|
up to the eventual release of Django 1.3. This release is primarily
|
|
|
|
targeted at developers who are interested in trying out new features
|
|
|
|
and testing the Django codebase to help identify and resolve bugs
|
|
|
|
prior to the final 1.3 release.
|
|
|
|
|
|
|
|
As such, this release is *not* intended for production use, and any such use
|
|
|
|
is discouraged.
|
|
|
|
|
2010-12-19 23:02:13 +08:00
|
|
|
What's new in Django 1.3 beta 1
|
|
|
|
===============================
|
2010-11-14 02:42:11 +08:00
|
|
|
|
|
|
|
Further tweaks to the staticfiles app
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2010-11-22 14:08:38 +08:00
|
|
|
Django 1.3 ships with a new contrib app :mod:`django.contrib.staticfiles`
|
|
|
|
to help developers handle the static media files (images, CSS, JavaScript,
|
2010-11-14 02:42:11 +08:00
|
|
|
etc.) that are needed to render a complete web page.
|
|
|
|
|
2010-11-22 14:08:38 +08:00
|
|
|
The :mod:`~django.contrib.staticfiles` app ships with the ability to
|
|
|
|
automatically serve static files during development (if the :setting:`DEBUG`
|
|
|
|
setting is ``True``) when using the :djadmin:`runserver` management command.
|
|
|
|
Based on feedback from the community this release adds two new options to the
|
|
|
|
:djadmin:`runserver` command to modify this behaviour:
|
2010-11-14 02:42:11 +08:00
|
|
|
|
2010-11-22 14:08:38 +08:00
|
|
|
* ``--nostatic``: prevents the :djadmin:`runserver` command from serving
|
|
|
|
files completely.
|
2010-11-14 02:42:11 +08:00
|
|
|
|
2010-11-22 14:08:38 +08:00
|
|
|
* ``--insecure``: enables serving of static files even if running with
|
|
|
|
:setting:`DEBUG` set to False. (This is **not** recommended!)
|
2010-11-14 02:42:11 +08:00
|
|
|
|
2010-11-22 14:08:38 +08:00
|
|
|
See the :doc:`staticfiles reference documentation </ref/contrib/staticfiles>`
|
|
|
|
for more details, or learn :doc:`how to manage static files
|
2010-11-14 02:42:11 +08:00
|
|
|
</howto/static-files>`.
|
|
|
|
|
2010-11-17 23:37:33 +08:00
|
|
|
Translation comments
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
If you would like to give translators hints about a translatable string, you
|
|
|
|
can add a comment prefixed with the ``Translators`` keyword on the line
|
|
|
|
preceding the string, e.g.::
|
|
|
|
|
|
|
|
def my_view(request):
|
|
|
|
# Translators: This message appears on the home page only
|
|
|
|
output = ugettext("Welcome to my site.")
|
|
|
|
|
|
|
|
The comment will appear in the resulting .po file and should also be
|
|
|
|
displayed by most translation tools.
|
|
|
|
|
|
|
|
For more information, see :ref:`translator-comments`.
|
|
|
|
|
2010-12-22 03:18:12 +08:00
|
|
|
Permissions for inactive users
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
If you provide a custom auth backend with ``supports_inactive_user`` set to
|
|
|
|
``True``, an inactive user model will check the backend for permissions.
|
|
|
|
This is useful for further centralizing the permission handling. See the
|
|
|
|
:ref:`authentication docs <topics-auth>` for more details.
|
|
|
|
|
2010-11-17 23:36:26 +08:00
|
|
|
Backwards-incompatible changes in 1.3 alpha 2
|
|
|
|
=============================================
|
|
|
|
|
|
|
|
Introduction of STATIC_URL and STATIC_ROOT settings
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2010-11-22 14:08:38 +08:00
|
|
|
The newly introduced :mod:`~django.contrib.staticfiles` app -- which extends
|
|
|
|
Django's abilities to handle static files for apps and projects -- required the
|
|
|
|
additon of two new settings to refer to those files in templates and code,
|
|
|
|
especially in contrast to the :setting:`MEDIA_URL` and :setting:`MEDIA_ROOT`
|
|
|
|
settings that refer to user-uploaded files.
|
2010-11-17 23:36:26 +08:00
|
|
|
|
|
|
|
Prior to 1.3 alpha 2 these settings were called ``STATICFILES_URL`` and
|
2010-11-22 14:08:38 +08:00
|
|
|
``STATICFILES_ROOT`` to follow the naming scheme for app-centric settings.
|
2010-11-17 23:36:26 +08:00
|
|
|
Based on feedback from the community it became apparent that those settings
|
2010-11-22 14:08:38 +08:00
|
|
|
created confusion, especially given the fact that handling static files is also
|
|
|
|
desired outside the use of the optional :mod:`~django.contrib.staticfiles` app.
|
2010-11-17 23:36:26 +08:00
|
|
|
|
2010-11-22 14:08:38 +08:00
|
|
|
As a result, we took the following steps to rectify the issue:
|
2010-11-17 23:36:26 +08:00
|
|
|
|
2010-11-22 14:08:38 +08:00
|
|
|
* Two new global settings were added that will be used by, **but are not
|
|
|
|
limited to**, the :doc:`staticfiles</ref/contrib/staticfiles>` app:
|
2010-11-17 23:36:26 +08:00
|
|
|
|
|
|
|
* :setting:`STATIC_ROOT` (formally ``STATICFILES_ROOT``)
|
|
|
|
|
|
|
|
* :setting:`STATIC_URL` (formally ``STATICFILES_URL``)
|
|
|
|
|
2010-11-22 14:08:38 +08:00
|
|
|
* The ``django.contrib.staticfiles.templatetags.staticfiles.get_staticfiles_prefix``
|
|
|
|
template tag was moved to Django's core (``django.templatetags.static``) and
|
|
|
|
renamed to :ttag:`get_static_prefix`.
|
2010-11-17 23:36:26 +08:00
|
|
|
|
2010-12-19 23:02:13 +08:00
|
|
|
* The ``django.contrib.staticfiles.context_processors.staticfiles``
|
2010-11-22 14:08:38 +08:00
|
|
|
context processor was moved to Django's core
|
|
|
|
(``django.core.context_processors.static``) and renamed to
|
2010-11-17 23:36:26 +08:00
|
|
|
:func:`~django.core.context_processors.static`.
|
|
|
|
|
2010-11-22 14:08:38 +08:00
|
|
|
* :ref:`form-media-paths` now uses :setting:`STATIC_URL` as the prefix
|
2010-11-17 23:36:26 +08:00
|
|
|
**if the value is not None**, and falls back to the previously used
|
2010-11-22 14:08:38 +08:00
|
|
|
:setting:`MEDIA_URL` setting otherwise.
|
2010-11-17 23:36:26 +08:00
|
|
|
|
2010-12-02 08:44:35 +08:00
|
|
|
Changes to the login methods of the admin
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
In previous version the admin app defined login methods in multiple locations
|
|
|
|
and ignored the almost identical implementation in the already used auth app.
|
|
|
|
A side effect of this duplication was the missing adoption of the changes made
|
|
|
|
in r12634_ to support a broader set of characters for usernames.
|
|
|
|
|
2010-12-19 23:02:13 +08:00
|
|
|
This release refactors the admin's login mechanism to use a subclass of the
|
2010-12-02 08:44:35 +08:00
|
|
|
:class:`~django.contrib.auth.forms.AuthenticationForm` instead of a manual
|
|
|
|
form validation. The previously undocumented method
|
|
|
|
``'django.contrib.admin.sites.AdminSite.display_login_form'`` has been removed
|
|
|
|
in favor of a new :attr:`~django.contrib.admin.AdminSite.login_form`
|
|
|
|
attribute.
|
|
|
|
|
|
|
|
.. _r12634: http://code.djangoproject.com/changeset/12634
|
|
|
|
|
2010-11-14 02:42:11 +08:00
|
|
|
The Django 1.3 roadmap
|
|
|
|
======================
|
|
|
|
|
|
|
|
Before the final Django 1.3 release, several other preview/development
|
|
|
|
releases will be made available. The current schedule consists of at
|
|
|
|
least the following:
|
|
|
|
|
2010-12-19 23:02:13 +08:00
|
|
|
* Week of **January 24, 2011**: First Django 1.3 release
|
2010-11-14 02:42:11 +08:00
|
|
|
candidate. String freeze for translations.
|
|
|
|
|
2010-12-19 23:02:13 +08:00
|
|
|
* Week of **January 31, 2011**: Django 1.3 final release.
|
2010-11-14 02:42:11 +08:00
|
|
|
|
2010-12-19 23:02:13 +08:00
|
|
|
If necessary, additional beta or release-candidate packages
|
2010-11-14 02:42:11 +08:00
|
|
|
will be issued prior to the final 1.3 release. Django 1.3 will be
|
|
|
|
released approximately one week after the final release candidate.
|
|
|
|
|
|
|
|
|
|
|
|
What you can do to help
|
|
|
|
=======================
|
|
|
|
|
|
|
|
In order to provide a high-quality 1.3 release, we need your help. Although this
|
2010-12-19 23:02:13 +08:00
|
|
|
beta release is, again, *not* intended for production use, you can help the
|
|
|
|
Django team by trying out the beta codebase in a safe test environment and
|
2010-11-14 02:42:11 +08:00
|
|
|
reporting any bugs or issues you encounter. The Django ticket tracker is the
|
|
|
|
central place to search for open issues:
|
|
|
|
|
|
|
|
* http://code.djangoproject.com/timeline
|
|
|
|
|
|
|
|
Please open new tickets if no existing ticket corresponds to a problem you're
|
|
|
|
running into.
|
|
|
|
|
|
|
|
Additionally, discussion of Django development, including progress toward the
|
|
|
|
1.3 release, takes place daily on the django-developers mailing list:
|
|
|
|
|
|
|
|
* http://groups.google.com/group/django-developers
|
|
|
|
|
|
|
|
... and in the ``#django-dev`` IRC channel on ``irc.freenode.net``. If you're
|
|
|
|
interested in helping out with Django's development, feel free to join the
|
|
|
|
discussions there.
|
|
|
|
|
|
|
|
Django's online documentation also includes pointers on how to contribute to
|
|
|
|
Django:
|
|
|
|
|
|
|
|
* :doc:`How to contribute to Django </internals/contributing>`
|
|
|
|
|
|
|
|
Contributions on any level -- developing code, writing documentation or simply
|
|
|
|
triaging tickets and helping to test proposed bugfixes -- are always welcome and
|
|
|
|
appreciated.
|