~ubuntu-branches/debian/squeeze/python-django/squeeze

« back to all changes in this revision

Viewing changes to docs/faq/admin.txt

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb, Chris Lamb, David Spreen, Sandro Tosi
  • Date: 2008-11-19 21:31:00 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20081119213100-gp0lqhxl1qxa6dgl
Tags: 1.0.2-1
[ Chris Lamb ]
* New upstream bugfix release. Closes: #505783
* Add myself to Uploaders with ACK from Brett.

[ David Spreen ]
* Remove python-pysqlite2 from Recommends because Python 2.5 includes
  sqlite library used by Django. Closes: 497886

[ Sandro Tosi ]
* debian/control
  - switch Vcs-Browser field to viewsvn

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
How can I prevent the cache middleware from caching the admin site?
32
32
-------------------------------------------------------------------
33
33
 
34
 
Set the :setting:``CACHE_MIDDLEWARE_ANONYMOUS_ONLY`` setting to ``True``. See the
 
34
Set the :setting:`CACHE_MIDDLEWARE_ANONYMOUS_ONLY` setting to ``True``. See the
35
35
:ref:`cache documentation <topics-cache>` for more information.
36
36
 
37
37
How do I automatically set a field's value to the user who last edited the object in the admin?
94
94
like to make should be possible by editing the stylesheet. We've got a
95
95
:ref:`guide to the CSS used in the admin <obsolete-admin-css>` to get you started.
96
96
 
97
 
How do I create users without having to edit password hashes?
98
 
-------------------------------------------------------------
99
 
 
100
 
If you'd like to use the admin site to create users, upgrade to the Django
101
 
development version, where this problem was fixed on Aug. 4, 2006.
102
 
 
103
 
You can also use the Python API. See :ref:`creating users <topics-auth-creating-users>` for full info.