summaryrefslogtreecommitdiff
path: root/django/core/management/commands
AgeCommit message (Expand)Author
2012-08-08[py3] Replaced raw_input by inputClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-07-24Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables.Ramiro Morales
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-18Fixed #18479 -- Stopped makemessages raising error on gettext warningsClaude Paroz
2012-07-17Fixed #18547 -- Improved error message when gettext is missingClaude Paroz
2012-07-17Adds interpreter option to shell command as per ticket #18639Mike Grouchy
2012-07-10Changed `manage.py shell`'s help text to reflect that it can invoke bpython.Alex Gaynor
2012-06-24Fixed #16317 -- Fixed dumpdata for self-referencing models and natural keysClaude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-06-07Fixed #10200 -- Raised CommandError when errors happen in loaddata.Claude Paroz
2012-06-06Made TestNoInitialDataLoading pass with MySQL (Refs #15926)Claude Paroz
2012-06-05Fixed #15926 -- Added option --no-initial-data to syncdb and flush.Honza Kral
2012-06-01Made inspectdb tests deal with a smaller generated models.py file.Ramiro Morales
2012-05-27Used CommandError in createcachetable command.Claude Paroz
2012-05-26Removed unneeded sys import added in previous commitClaude Paroz
2012-05-26Fixed #5423 -- Made dumpdata output one row at a time.Claude Paroz
2012-05-25Specified when open should use binary mode.Claude Paroz
2012-05-19Fixed #18325 -- Wrapped self.stdout/stderr in OutputWrapper classClaude Paroz
2012-05-15Fixed #18019 -- Use threaded runserver only when database supports it.Claude Paroz
2012-05-05Made more extensive usage of context managers with open.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-04-29Made table_names() output sorted.Anssi Kääriäinen
2012-04-27Updated compilemessages and makemessages management commands to change SVN->G...Adrian Holovaty
2012-04-27Fixed #15076 -- Quoted ForeignKey target class names in inspectdb when class ...Claude Paroz
2012-04-26Removed direct print statements from django management commands.Claude Paroz
2012-04-08Fixed #18035 -- Removed deprecated AdminMediaHandler, as per official depreca...Claude Paroz
2012-03-31Removed the deprecated reset and sqlreset management commands.Aymeric Augustin
2012-03-31Fixed #17965 -- Definitely dropped support for Python 2.5. Thanks jonash for ...Claude Paroz
2012-03-30Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...Claude Paroz
2012-03-10Fixed #17820 -- Fixed more occurrences of redundant handling of management co...Ramiro Morales
2012-03-02Added missing newline to makemessages output. Thanks Florian Apolloner for re...Carl Meyer
2012-02-23Cleanup to use get_random_string consistently.Paul McMillan
2012-02-11Fixed #17676 -- Fixed introspection of column names that start with digit(s).Ramiro Morales
2012-02-05Fixed #8317 -- Corrected the inspectdb management command to properly set `pr...Julien Phalip
2012-02-04Made a couple of idiomatic changes in makemessages.Ramiro Morales
2012-02-04Removed hard-coded root tree path in makemessages.Ramiro Morales
2012-02-04Fixed undefined variable name in makemessages command code.Ramiro Morales
2012-02-04Fixed #17628 -- Extended makemessages command to also ignore directories when...Jannis Leidel
2012-01-19Fixed #17078: properly invoke IPython 0.12.Jacob Kaplan-Moss
2012-01-14Fixed #17530 - Fixture loading with deferred constraints broken for Postgres ...Luke Plant
2012-01-08Fixed #17300 -- Prevented createcachetable from crashing when the cache table...Aymeric Augustin
2011-12-29Made sure `manage.py help test` works.Ramiro Morales
2011-12-23Refactored the internals of makemessages management command for better readab...Ramiro Morales
2011-12-22Fixed #17042 -- Extended startproject and startapp management commands to bet...Jannis Leidel
2011-12-22Fixed #2879 -- Added support for the integration with Selenium and other in-b...Julien Phalip
2011-12-21Ensured that `makemessages` doesn't leave any temporary file over if the pars...Julien Phalip
2011-12-11Fixed #16397 -- Respected the --traceback flag in BaseCommand. This should ma...Aymeric Augustin