Changeset 7844 for django/trunk/docs/man
- Timestamp:
- 07/06/08 01:39:44 (5 months ago)
- Files:
-
- django/trunk/docs/man/compile-messages.1 (deleted)
- django/trunk/docs/man/django-admin.1 (modified) (4 diffs)
- django/trunk/docs/man/make-messages.1 (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/man/django-admin.1
r7294 r7844 1 .TH "django-admin.py" "1" " June 2007" "Django Project" ""1 .TH "django-admin.py" "1" "March 2008" "Django Project" "" 2 2 .SH "NAME" 3 3 django\-admin.py \- Utility script for the Django web framework … … 22 22 Prints the admin\-index template snippet for the given app name(s). 23 23 .TP 24 .BI cleanup 25 Cleans out old data from the database (only expired sessions at the moment). 26 .TP 27 .BI "compilemessages [" "\-\-locale=LOCALE" "]" 28 Compiles .po files to .mo files for use with builtin gettext support. 29 .TP 24 30 .BI "createcachetable [" "tablename" "]" 25 31 Creates the table needed to use the SQL cache backend … … 43 49 .B sqlall 44 50 for the given app(s) in the current database. 51 .TP 52 .BI "makemessages [" "\-\-locale=LOCALE" "] [" "\-\-domain=DOMAIN" "] [" "\-\-all" "]" 53 Runs over the entire source tree of the current directory and pulls out all 54 strings marked for translation. It creates (or updates) a message file in the 55 conf/locale (in the django tree) or locale (for project and application) directory. 45 56 .TP 46 57 .BI "reset [" "appname ..." "]" … … 137 148 .I \-\-adminmedia=ADMIN_MEDIA_PATH 138 149 Specifies the directory from which to serve admin media when using the development server. 139 150 .TP 151 .I \-l, \-\-locale=LOCALE 152 The locale to process when using makemessages or compilemessages. 153 .TP 154 .I \-d, \-\-domain=DOMAIN 155 The domain of the message files (default: "django") when using makemessages. 156 .TP 157 .I \-a, \-\-all 158 Process all available locales when using makemessages. 140 159 .SH "ENVIRONMENT" 141 160 .TP
