diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2008-09-02 03:40:42 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2008-09-02 03:40:42 +0000 |
| commit | 64a94691277db17e87614f125d8da78a9995076b (patch) | |
| tree | 8850007d024ada1901a8965c01e7c6f74ebe0172 /docs/ref/django-admin.txt | |
| parent | c435975cc779a4549591a1c2b32e91f409c33757 (diff) | |
Fixed #8753: converted "new in ..." callouts to proper Sphinx "versionadded/versionchanged" directives. Thanks to Marc Fargas for all the heavy lifting here.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8843 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/django-admin.txt')
| -rw-r--r-- | docs/ref/django-admin.txt | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 26f136b2f7..d53b0d8a55 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -98,7 +98,7 @@ Available subcommands cleanup ------- -**New in Django development version** +.. versionadded:: 1.0 Can be run as a cronjob or directly to clean out old data from the database (only expired sessions at the moment). @@ -106,7 +106,8 @@ Can be run as a cronjob or directly to clean out old data from the database compilemessages --------------- -**New in Django development version** +.. versionchanged:: 1.0 + Before 1.0 this was the "bin/compile-messages.py" command. Compiles .po files created with ``makemessages`` to .mo files for use with the builtin gettext support. See :ref:`topics-i18n`. @@ -134,7 +135,7 @@ createsuperuser .. django-admin:: createsuperuser -**New in Django development version** +.. versionadded:: 1.0 Creates a superuser account (a user who has all permissions). This is useful if you need to create an initial superuser account but did not @@ -209,7 +210,7 @@ objects will be dumped. .. django-admin-option:: --exclude -**New in Django development version** +.. versionadded:: 1.0 Exclude a specific application from the applications whose contents is output. For example, to specifically exclude the `auth` application from @@ -383,7 +384,8 @@ Example usage:: makemessages ------------ -**New in Django development version** +.. versionchanged:: 1.0 + Before 1.0 this was the "bin/make-messages.py" command. Runs over the entire source tree of the current directory and pulls out all strings marked for translation. It creates (or updates) a message file in the @@ -734,7 +736,7 @@ Example usage:: testserver <fixture fixture ...> -------------------------------- -**New in Django development version** +.. versionadded:: 1.0 Runs a Django development server (as in ``runserver``) using data from the given fixture(s). |
