summaryrefslogtreecommitdiff
path: root/docs/ref/django-admin.txt
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2010-12-26 00:46:36 +0000
committerTimo Graham <timograham@gmail.com>2010-12-26 00:46:36 +0000
commit89cb543f9e4f823fe53140c3b597e2d4b6418562 (patch)
tree5152a46990fe4fe8833484096a973a725803a051 /docs/ref/django-admin.txt
parent40f2bb37c9e3c5f11716f513a4739a88bc82ca34 (diff)
[1.2.X] Fixed #14000 - Remove versionadded/changed tags for 1.0. thanks ramiro!
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15056 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/django-admin.txt')
-rw-r--r--docs/ref/django-admin.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 70faa3c90d..11f62fb958 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -88,8 +88,6 @@ cleanup
.. django-admin:: cleanup
-.. 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).
@@ -98,9 +96,6 @@ compilemessages
.. django-admin:: compilemessages
-.. 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 :doc:`/topics/i18n/index`.
@@ -191,8 +186,6 @@ By default, ``dumpdata`` will output all data on a single line. This isn't
easy for humans to read, so you can use the ``--indent`` option to
pretty-print the output with a number of indentation spaces.
-.. versionadded:: 1.0
-
The :djadminopt:`--exclude` option may be provided to prevent specific
applications from being dumped.
@@ -396,9 +389,6 @@ makemessages
.. django-admin:: makemessages
-.. 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
conf/locale (in the django tree) or locale (for project and application)
@@ -910,8 +900,6 @@ testserver <fixture fixture ...>
.. django-admin:: testserver
-.. versionadded:: 1.0
-
Runs a Django development server (as in ``runserver``) using data from the
given fixture(s).
@@ -1009,8 +997,6 @@ createsuperuser
.. django-admin:: createsuperuser
-.. versionadded:: 1.0
-
This command is only available if Django's :doc:`authentication system
</topics/auth>` (``django.contrib.auth``) is installed.