summaryrefslogtreecommitdiff
path: root/django/core/management/base.py
AgeCommit message (Expand)Author
2014-01-28Fixed #21849 -- Included the count of silenced system checks in output.Tim Graham
2014-01-26Fixed #21866 -- Replaced "COMMIT" in managmement command SQL with backend hook.Wojciech Banaś
2014-01-25Fixed #21873 -- Removed duplicate import.Aymeric Augustin
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
2013-12-30Removed the only_with_models_module argument of get_model[s].Aymeric Augustin
2013-12-30Populated the app registry earlier at startup.Aymeric Augustin
2013-12-29Changed get_validation_errors to use an app config.Aymeric Augustin
2013-12-28Updated the AppCommand API to support apps without a models module.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-22Populated models only when necessary in get_app_config[s].Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Made it possible to create apps without a models module.Aymeric Augustin
2013-12-17Deprecated get_app().Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-14Fixed #21269 -- Don't crash when CommandError contains non-asciiClaude Paroz
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-07-30Fixed #19877 -- Added `--no-color` option to `BaseCommand` to avoid using out...Jose L. Patino
2013-05-20Fixed #20445 -- Raised original exception after command errorJorge Bastida
2013-05-17Replaced an antiquated pattern.Aymeric Augustin
2013-03-09Fixed #19923 -- Display tracebacks for non-CommandError exceptionsClaude Paroz
2013-02-04Enhanced docs and docctrings added in 869c9ba.Ramiro Morales
2013-02-03Fixed #19730 -- Don't validate importability of settings by using i18n in man...Ramiro Morales
2013-01-25Fixed #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