summaryrefslogtreecommitdiff
path: root/django/core/management/commands
AgeCommit message (Expand)Author
2008-10-06Fixed #9212: Added code to check the xgettext version, and if it is lower tha...Karen Tracey
2008-10-05Fixed #9283 -- Deliberately silence one deprecation warning raised by python ...Malcolm Tredinnick
2008-10-02Promoted --verbosity to be a top level option for all management commands. Al...Russell Keith-Magee
2008-09-17Fixed #8573 -- Fixed bug in 'inspectdb' regarding case-sensitivity of field n...Adrian Holovaty
2008-09-09Fixed #8978 -- We now print a helpful error message for 'manage.py dbshell' i...Adrian Holovaty
2008-08-30Fixed #8702 -- Set up the initial locale correctly for the development server.Malcolm Tredinnick
2008-08-26Fixed #7084 -- Fixed the "makemessages" command to handle line endingsMalcolm Tredinnick
2008-08-25Removed outdated "adminindex" command -- the same behavior is now far easier ...Jacob Kaplan-Moss
2008-08-25Fixed #8491 -- Allow settings.LOCALE_PATH to be any sequence, not just a tuple.Malcolm Tredinnick
2008-08-16Fixed #7285: Improved inspectdb handling of dashes in table and field names. ...Russell Keith-Magee
2008-08-16Fixed #6935: Modified inspectdb to provide better handling for table names wi...Russell Keith-Magee
2008-08-13Refs #8138 -- Added a stealth option to the loaddata command so that the use ...Russell Keith-Magee
2008-08-11Fixed #5461 -- Refactored the database backend code to use classes for the cr...Russell Keith-Magee
2008-08-08Fixed #5463 -- Allow alternate file extensions on files that are translated.Malcolm Tredinnick
2008-08-06Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss
2008-07-29Fixed #7589 -- Added a way for post-table-creation SQL modifications to be do...Malcolm Tredinnick
2008-07-26Fix #7910 -- Added a missing import used when "django-admin.py compilemessages"Malcolm Tredinnick
2008-07-22Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...Adrian Holovaty
2008-07-11Fixed #7421 -- Corrected the condition used during syncdb to establish that a...Russell Keith-Magee
2008-07-11Fixed #7597 -- Added code to force the re-opening of the cursor connection, j...Russell Keith-Magee
2008-07-06Fixed #7643 -- Fixed an oversight from [7844].Malcolm Tredinnick
2008-07-06Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into d...Malcolm Tredinnick
2008-06-30Fixed #7572 -- Force the closure of the database connection at the end of fi...Russell Keith-Magee
2008-06-30Make sure we only create the minimum number of table indexes for MySQL.Malcolm Tredinnick
2008-06-19Fixed #6650 -- Added UTF-8 encoding to SQL output provided by management comm...Russell Keith-Magee
2008-06-19Fixed #6719 -- Added a --traceback option to syncdb to provide a stack trace ...Russell Keith-Magee
2008-06-16Fixed #6497 -- Improved fixture error reporting by displaying the entire trac...Adrian Holovaty
2008-06-16Fixed #6654 -- Slightly refactored the way 'startproject' and 'startapp' chec...Adrian Holovaty
2008-06-13Fixed #7436 -- Corrected a fix from [7615] that broke some test cases. Don't ...Russell Keith-Magee
2008-06-12Fixed #7421 -- Improved syncdb implementation not to check for exact exceptio...Adrian Holovaty
2008-06-11Fixed #7254 -- Added an '--exclude' option to dumpdata, allowing specific app...Russell Keith-Magee
2008-06-08Fixed #4371 -- Improved error checking when loading fixtures. Code now catche...Russell Keith-Magee
2008-05-31Fixed #6820: flush no longer fails under PostgreSQL 8.3. WARNING: In the proc...Jacob Kaplan-Moss
2008-03-19Fixed #6789 -- Added some small amount of extra protection for learners tryingMalcolm Tredinnick
2008-03-10Fixed #6374: cross-app and circular FK constraints are now detected and added...Jacob Kaplan-Moss
2008-03-07Fixed #6420 -- Corrected the handling of the --traceback option in loaddata. ...Russell Keith-Magee
2008-02-22Fixed #6436 -- Added check for absolute paths in fixture loading. Fixtures sp...Russell Keith-Magee
2008-02-12Further clarification of help message for ./manage.py sqlall, this time using...Russell Keith-Magee
2008-02-12Clarified help message for ./manage.py sqlallRussell Keith-Magee
2008-01-28Fixed #6419 -- Fixed verbosity level checks in loaddata command that were rai...Gary Wilson Jr
2007-12-17Fixed [6932] so that "django-admin.py help dumpdata" works again.Malcolm Tredinnick
2007-12-17Fixed #4431 -- Added a --traceback option for dumpdata and loaddata (whichMalcolm Tredinnick
2007-12-17Fixed #6155 -- Fixed dumpdata to work with the default model manager (necessaryMalcolm Tredinnick
2007-12-17Fixed #6110 -- Mark the python format serializer as for internal use only. T...Malcolm Tredinnick
2007-12-04Changed loaddata to display 'No fixtures found' and 'Loading XXX fixtures' on...Adrian Holovaty
2007-12-02Fixed #6038 -- Don't hide some types of errors in syncdb. Thanks, Thomas Güt...Malcolm Tredinnick
2007-10-27Wrapped some long lines and orginized imports.Gary Wilson Jr
2007-10-27Fixed #5824 -- For the `startapp` command, pass the true project name to the ...Gary Wilson Jr
2007-10-13Removed unneeded use of `len()` in a couple expressions.Gary Wilson Jr
2007-10-06Refs #5690 -- Changed path joining to use `os.pardir` instead of `'..'`.Gary Wilson Jr