summaryrefslogtreecommitdiff
path: root/django/core/management/base.py
AgeCommit message (Expand)Author
2013-01-25[1.5.x] Fixed #19665 -- Ensured proper stderr output for Command.run_from_argvClaude Paroz
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
2012-08-07[py3] Applied minor fixes so the test suite startsAymeric Augustin
2012-05-27Fixed #18387 -- Do not call sys.exit during call_command.Claude Paroz
2012-05-26Fixed #5423 -- Made dumpdata output one row at a time.Claude Paroz
2012-05-19Fixed #18325 -- Wrapped self.stdout/stderr in OutputWrapper classClaude Paroz
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
2012-05-01Skip model validation when models are known good.Anssi Kääriäinen
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-03-30Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...Claude Paroz
2012-03-29Fixed #17947 -- Fixed language restore after management command even when exc...Claude Paroz
2011-12-22Fixed #17042 -- Extended startproject and startapp management commands to bet...Jannis Leidel
2011-12-11Fixed #16397 -- Respected the --traceback flag in BaseCommand. This should ma...Aymeric Augustin
2011-12-03Fixed a couple of typos.Ramiro Morales
2011-11-07Fixed #11118 -- Made management command BaseCommand restore locale after exec...Ramiro Morales
2011-10-29Fixed #16849 -- Updated management command verbosity option help text.Ramiro Morales
2011-10-24Fixed #17099 -- Removed an out-of-date warning and some unused code, now that...Carl Meyer
2010-10-06Fixed the ugly spacing of 'BEGIN;' and 'COMMIT;' in the output of the sql/sql...Adrian Holovaty
2010-08-30Fixed #14145 - undeterministic behavior when project or app template contains...Luke Plant
2010-08-07Rationalized the verbosity levels (including introducing a new super-verbose ...Russell Keith-Magee
2010-06-05Fixed #13636 -- Migrated fixtures tests to use unittests, eliminating another...Russell Keith-Magee
2010-05-28Fixed #13656 -- Ensure that the management commands use the right database fo...Russell Keith-Magee
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-03-18Fixed #12849 -- Corrected the way strings are encoded for display by the colo...Russell Keith-Magee
2009-09-10Fixed #11621 - don't copy .pyo and .py.class files from example app/projectLuke Plant
2009-03-31Fixed #10018 -- Fixed typo in `BaseCommand` docstring, patch from dswistowski.Gary Wilson Jr
2008-10-02Promoted --verbosity to be a top level option for all management commands. Al...Russell Keith-Magee
2008-09-22Add some docstrings to the base classes for management commands. Refs #9170.James Bennett
2008-09-16Fixed #9092 -- Improved validation of app/project names by startapp/startproj...Adrian Holovaty
2008-08-10Fixed #5943 -- Modified django-admin to behave like manage.py if settings are...Russell Keith-Magee
2008-07-06Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into d...Malcolm Tredinnick
2007-12-17Fixed #4431 -- Added a --traceback option for dumpdata and loaddata (whichMalcolm Tredinnick
2007-11-30Edited docstring changes from [6480] -- moved the intense parameter definitio...Adrian Holovaty
2007-10-13Removed unneeded use of `len()` in a couple expressions.Gary Wilson Jr
2007-10-13Removed an unused import and a duplicate import.Gary Wilson Jr
2007-10-13Removed trailing whitespace.Gary Wilson Jr
2007-10-13Added docstring to `copy_helper` function.Gary Wilson Jr
2007-10-13Removed unused itertools import and organized imports to adhere to PEP 8.Gary Wilson Jr
2007-09-21Fixed #5516 -- Added the ability for applications to define their own managem...Russell Keith-Magee
2007-09-15Fixed #5443 -- Handle lack of os.access() and os.chmod() in Jython. Thanks, L...Malcolm Tredinnick
2007-09-11Got runserver auto-reloading working again by removing what appeared to be de...Adrian Holovaty
2007-09-11Refactored some small parts of core.management -- ManagementUtility.execute()...Adrian Holovaty
2007-09-11Changed core.management print_help() methods to accept a prog_name argument i...Adrian Holovaty
2007-09-11Renamed 'args' variables in django.core.management to 'argv' to be more clear...Adrian Holovaty
2007-09-09Fixed #5369 -- Refactored the django-admin.py help system, allowing each subc...Adrian Holovaty
2007-08-31Fixed #5307 -- startproject/startapp now makes sure all files it creates are ...Adrian Holovaty
2007-08-27Changed 'validate' and 'runserver' management commands to display the number ...Adrian Holovaty
2007-08-20Refactored get_start_transaction_sql() to DatabaseOperations.start_transactio...Adrian Holovaty
2007-08-16Fixed bug in django.core.management.base.copy_helper, related to refactoring ...Adrian Holovaty
2007-08-16Improved error handling for management.py commands, especially for no argumen...Russell Keith-Magee