~ubuntu-branches/ubuntu/utopic/python-django/utopic

« back to all changes in this revision

Viewing changes to docs/ref/django-admin.txt

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2012-08-02 10:44:02 UTC
  • mfrom: (1.1.17) (4.4.20 sid)
  • Revision ID: package-import@ubuntu.com-20120802104402-x26ethgm9s21la1y
* New upstream security and maintenance release. Closes: #683364
  Fixes: CVE-2012-3442 CVE-2012-3443 CVE-2012-3444
* Drop 01_disable_broken_test.diff and 04_hyphen-manpage.diff which
  have been merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
215
215
.. versionadded:: 1.2
216
216
 
217
217
The :djadminopt:`--database` option can be used to specify the database
218
 
onto which the data will be loaded.
 
218
from which data will be dumped.
219
219
 
220
220
.. django-admin-option:: --natural
221
221
 
232
232
 
233
233
.. django-admin:: flush
234
234
 
235
 
Returns the database to the state it was in immediately after syncdb was
236
 
executed. This means that all data will be removed from the database, any
 
235
Returns the database to the state it was in immediately after :djadmin:`syncdb`
 
236
was executed. This means that all data will be removed from the database, any
237
237
post-synchronization handlers will be re-executed, and the ``initial_data``
238
238
fixture will be re-installed.
239
239
 
707
707
 
708
708
.. versionadded:: 1.4
709
709
 
 
710
Since version 1.4, the development server is multithreaded by default.
710
711
Use the ``--nothreading`` option to disable the use of threading in the
711
712
development server.
712
713
 
956
957
with the ``--name`` option. The :class:`template context
957
958
<django.template.Context>` used is:
958
959
 
959
 
- Any option passed to the startapp command
 
960
- Any option passed to the startapp command (among the command's supported
 
961
  options)
960
962
- ``app_name`` -- the app name as passed to the command
961
963
- ``app_directory`` -- the full path of the newly created app
962
964