.. |
__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
|
[1.1.X] Fixed #11623 -- Corrected table name quoting in db cache backend. Thanks to Fraser Nevett for the report and fix.
|
2010-02-11 13:11:47 +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
|
[1.1.X] Fixed #12655 - diffsettings command now returns the diff instead of printing. Thanks, jobscry.
|
2010-02-22 00:43:29 +00:00 |
dumpdata.py
|
Fixed #11428 -- Ensured that SQL generating commands and dumpdata don't include proxy models in their output. Thanks to Anssi Kaariainen for the report.
|
2009-07-27 14:32:30 +00:00 |
flush.py
|
Fixed #8193: all dynamic imports in Django are now done correctly. I know this because Brett Cannon borrowed the time machine and brought Python 2.7's '`importlib` back for inclusion in Django. Thanks for the patch-from-the-future, Brett!
|
2009-03-18 16:55:59 +00:00 |
inspectdb.py
|
Fixed #11049: introspection on Oracle now identifies IntegerFields correctly.
|
2009-08-21 21:42:39 +00:00 |
loaddata.py
|
[1.1.X] Fixed #6961 - loaddata fails if models is a package instead of a module
|
2009-12-19 15:27:50 +00:00 |
makemessages.py
|
[1.1.X] Fixed #4695 - Worked around a problem of xgettext ignoring some translation strings in JavaScript files. Thanks, Ramiro Morales.
|
2010-02-16 12:51:43 +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
|
SECURITY ALERT: Corrected a problem with the Admin media handler that could lead to the exposure of system files. Thanks to Gary Wilson for the patch.
|
2009-07-29 02:40:14 +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 #8193: all dynamic imports in Django are now done correctly. I know this because Brett Cannon borrowed the time machine and brought Python 2.7's '`importlib` back for inclusion in Django. Thanks for the patch-from-the-future, Brett!
|
2009-03-18 16:55:59 +00:00 |
startproject.py
|
Fixed #8193: all dynamic imports in Django are now done correctly. I know this because Brett Cannon borrowed the time machine and brought Python 2.7's '`importlib` back for inclusion in Django. Thanks for the patch-from-the-future, Brett!
|
2009-03-18 16:55:59 +00:00 |
syncdb.py
|
Fixed #8193: all dynamic imports in Django are now done correctly. I know this because Brett Cannon borrowed the time machine and brought Python 2.7's '`importlib` back for inclusion in Django. Thanks for the patch-from-the-future, Brett!
|
2009-03-18 16:55:59 +00:00 |
test.py
|
[1.1.X] Fixed #11615 -- Changed test runners to use an exit status code of 1 for any number of failed tests. The previous behavior of using an exit status code equal to the number of failed tests produced incorrect exit status codes when the number of test failures was 256 or greater. Thanks to lamby for the report and patch.
|
2010-01-03 18:57:15 +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 |