..
__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
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 #8491 -- Allow settings.LOCALE_PATH to be any sequence, not just a tuple.
2008-08-25 03:26:37 +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
Fixed #8978 -- We now print a helpful error message for 'manage.py dbshell' if the client executable is not found. Previously we were displaying a traceback
2008-09-09 02:18:06 +00:00
diffsettings.py
Final piece (he says, hopefully) of r9945 changes.
2009-03-03 02:48:02 +00:00
dumpdata.py
Fixed #10381 -- Fixed some a machine-dependent test failure after r9921.
2009-03-04 04:53:15 +00:00
flush.py
Promoted --verbosity to be a top level option for all management commands. Also added -v as a consistent short form of --verbosity. This is mostly to save Malcolm's poor arthritic fingers.
2008-10-02 12:57:13 +00:00
inspectdb.py
Fixed #8573 -- Fixed bug in 'inspectdb' regarding case-sensitivity of field names. It was automatically lowercasing the column name to create the Field name, which was inaccurate in the case of column names that contained a capital letter. Thanks for reporting and detective work, ramiro
2008-09-17 05:12:53 +00:00
loaddata.py
Fixed #8055 : Replaced use of traceback.format_exc (new in Python 2.4) with something that works as far back as 2.3.
2009-01-17 22:15:07 +00:00
makemessages.py
Fixed #9212 : Added code to check the xgettext version, and if it is lower than 0.15, undo an incorrect encoding to utf-8 done by xgettext. This bug was fixed in xgettext 0.15, but the most-easily-installed Windows gettext binaries are older (0.13.1), so we work around it.
2008-10-06 01:36:35 +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
Fixed #8702 -- Set up the initial locale correctly for the development server.
2008-08-30 20:17:58 +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 #7589 -- Added a way for post-table-creation SQL modifications to be done for custom fields (needed by geo-django, but useful in other situations, too).
2008-07-29 05:53:44 +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
Promoted --verbosity to be a top level option for all management commands. Also added -v as a consistent short form of --verbosity. This is mostly to save Malcolm's poor arthritic fingers.
2008-10-02 12:57:13 +00:00
test.py
Fixed #10165 -- Use settings.TEST_RUNNER in runtests.py
2009-02-28 04:46:38 +00:00
testserver.py
Promoted --verbosity to be a top level option for all management commands. Also added -v as a consistent short form of --verbosity. This is mostly to save Malcolm's poor arthritic fingers.
2008-10-02 12:57:13 +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