summaryrefslogtreecommitdiff
path: root/docs/django-admin.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-03-23 00:55:30 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-03-23 00:55:30 +0000
commitcb5e2764be48ef22398e51a6956e21995297df83 (patch)
treedd039a7a7a9781ed3dcbaf4f2a8363db130463f2 /docs/django-admin.txt
parent17a4401f4c2d71a82a8420e62029945a2f570bcd (diff)
magic-removal: Removed app-specific stuff from django.core.management.syncdb, in favor of an event-based system. Permissions, superusers and the example.com site are now all done via a management.py file within the appropriate contrib app. This also means 'createsuperuser' is no longer a django-admin command...We'll probably want to restore that somehow, or add another utility that does it from the command line.
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2551 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/django-admin.txt')
-rw-r--r--docs/django-admin.txt25
1 files changed, 0 insertions, 25 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index 45cc2363dc..efdb4ae95c 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -64,24 +64,6 @@ backend. See the `cache documentation`_ for more information.
.. _cache documentation: http://www.djangoproject.com/documentation/cache/
-createsuperuser
----------------
-
-Creates a superuser account interactively. It asks you for a username, e-mail
-address and password.
-
-You can specify ``username email password`` on the command line, for convenient
-use in shell scripts. Example::
-
- django-admin.py createsuperuser john john@example.com mypassword
-
-init
-----
-
-Initializes the database with the tables and data Django needs by default.
-Specifically, these are the database tables from the ``auth`` and ``core``
-models.
-
inspectdb [dbname]
------------------
@@ -128,13 +110,6 @@ install [modelmodule modelmodule ...]
Executes the equivalent of ``sqlall`` for the given model module(s).
-installperms [modelmodule modelmodule ...]
-------------------------------------------
-
-Installs any admin permissions for the given model module(s) that aren't
-already installed in the database. Outputs a message telling how many
-permissions were added, if any.
-
runserver [optional port number, or ipaddr:port]
------------------------------------------------