django1/django/core/management/commands
Luke Plant 01acd99947 Fixed #6961 - loaddata fails if models is a package instead of a module
Thanks to pmd for report, zhaoz, mmalone and justinlilly for patch



git-svn-id: http://code.djangoproject.com/svn/django/trunk@11914 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-12-19 14:27:26 +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
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 #12384: fixed a Python 2.4 incompatibility introduced in [11863]. 2009-12-16 23:47: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 Fixed #6961 - loaddata fails if models is a package instead of a module 2009-12-19 14:27:26 +00:00
makemessages.py Fixed #10867: make the makemessages command ignore files and only process directories. Thanks, diegobz. 2009-05-20 20:05:14 +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 a misplaced parenthesis. 2009-11-18 21:39:07 +00:00
test.py Fixed #11613: Added a failfast option for test running. Thanks jukvalim and Randy Barlow. 2009-12-13 16:24:36 +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