django1/django/core/management/commands
Malcolm Tredinnick 3cfa3cbd07 Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into django-admin.py.
They are now called  "makemessages", "compilemessages" and "cleanup". This is
backwards incompatible for make-messages.py and compile-messages.py, although
the old executables still exist for now and print an error pointing the caller
to the right command to call.

This reduces the number of binaries and man pages Django needs to install.

Patch from Janis Leidel.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7844 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-06 06:39:44 +00:00
..
__init__.py Major refactoring of django.core.management -- it's now a package rather than a 1730-line single module. All django-admin/manage.py commands are now stored in separate modules. This is backwards-incompatible for people who used django.core.management functions directly 2007-08-16 06:06:55 +00:00
adminindex.py Fixed #5286 -- Fixed non-HTML output bug in adminindex command. Thanks, dan.fairs@gmail.com and piranha 2007-09-14 18:29:34 +00:00
cleanup.py Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into django-admin.py. 2008-07-06 06:39:44 +00:00
compilemessages.py Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into django-admin.py. 2008-07-06 06:39:44 +00:00
createcachetable.py Make sure we only create the minimum number of table indexes for MySQL. 2008-06-30 04:46:59 +00:00
dbshell.py Improved error handling for management.py commands, especially for no argument or non-applabel argument commands. 2007-08-16 14:34:01 +00:00
diffsettings.py Improved error handling for management.py commands, especially for no argument or non-applabel argument commands. 2007-08-16 14:34:01 +00:00
dumpdata.py Fixed #7436 -- Corrected a fix from [7615] that broke some test cases. Don't you just love unintended consequences? Thanks to telenieko for the report, and the buildbot for pointing out my mistake. 2008-06-13 00:08:50 +00:00
flush.py Fixed #5369 -- Refactored the django-admin.py help system, allowing each subcommand to register its own options. Thanks for the patch, Todd O'Bryan 2007-09-09 21:57:59 +00:00
inspectdb.py Improved error handling for management.py commands, especially for no argument or non-applabel argument commands. 2007-08-16 14:34:01 +00:00
loaddata.py Fixed #7572 -- Force the closure of the database connection at the end of fixture loading as a workaround for MySQL bug #37735. Thanks to Simon Litchfield for his help in narrowing down this issue. 2008-06-30 12:18:29 +00:00
makemessages.py Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into django-admin.py. 2008-07-06 06:39:44 +00:00
reset.py Fixed #5369 -- Refactored the django-admin.py help system, allowing each subcommand to register its own options. Thanks for the patch, Todd O'Bryan 2007-09-09 21:57:59 +00:00
runfcgi.py Updated runfcgi management command to include 'subcommand' argument to usage() 2007-09-11 04:25:55 +00:00
runserver.py Removed unneeded use of `len()` in a couple expressions. 2007-10-13 18:45:49 +00:00
shell.py Fixed #3381 - manage.py shell now respects PYTHONSTARTUP/.pythonrc.py. 2007-09-14 22:16:14 +00:00
sql.py Fixed #6650 -- Added UTF-8 encoding to SQL output provided by management commands. Thanks to farcaller for the suggestion. 2008-06-19 14:38:56 +00:00
sqlall.py Fixed #6650 -- Added UTF-8 encoding to SQL output provided by management commands. Thanks to farcaller for the suggestion. 2008-06-19 14:38:56 +00:00
sqlclear.py Fixed #6650 -- Added UTF-8 encoding to SQL output provided by management commands. Thanks to farcaller for the suggestion. 2008-06-19 14:38:56 +00:00
sqlcustom.py Fixed #6650 -- Added UTF-8 encoding to SQL output provided by management commands. Thanks to farcaller for the suggestion. 2008-06-19 14:38:56 +00:00
sqlflush.py Fixed #6650 -- Added UTF-8 encoding to SQL output provided by management commands. Thanks to farcaller for the suggestion. 2008-06-19 14:38:56 +00:00
sqlindexes.py Fixed #6650 -- Added UTF-8 encoding to SQL output provided by management commands. Thanks to farcaller for the suggestion. 2008-06-19 14:38:56 +00:00
sqlinitialdata.py Major refactoring of django.core.management -- it's now a package rather than a 1730-line single module. All django-admin/manage.py commands are now stored in separate modules. This is backwards-incompatible for people who used django.core.management functions directly 2007-08-16 06:06:55 +00:00
sqlreset.py Fixed #6650 -- Added UTF-8 encoding to SQL output provided by management commands. Thanks to farcaller for the suggestion. 2008-06-19 14:38:56 +00:00
sqlsequencereset.py Fixed #6650 -- Added UTF-8 encoding to SQL output provided by management commands. Thanks to farcaller for the suggestion. 2008-06-19 14:38:56 +00:00
startapp.py Fixed #6654 -- Slightly refactored the way 'startproject' and 'startapp' check for existing Python modules. Thanks, i_i 2008-06-16 03:56:48 +00:00
startproject.py Fixed #6654 -- Slightly refactored the way 'startproject' and 'startapp' check for existing Python modules. Thanks, i_i 2008-06-16 03:56:48 +00:00
syncdb.py Fixed #6719 -- Added a --traceback option to syncdb to provide a stack trace when custom SQL loading fails. Also added documentation for the --traceback option. Thanks to guettli for the patch. 2008-06-19 13:24:39 +00:00
test.py Fixed #5369 -- Refactored the django-admin.py help system, allowing each subcommand to register its own options. Thanks for the patch, Todd O'Bryan 2007-09-09 21:57:59 +00:00
testserver.py Fixed #5376 -- Added --addrport option to the 'testserver' command. Thanks, toddobryan 2007-09-14 19:17:15 +00:00
validate.py Changed 'validate' and 'runserver' management commands to display the number of errors. This was previous behavior before the management.py refactoring 2007-08-27 00:30:37 +00:00