summaryrefslogtreecommitdiff
path: root/django/core/management/commands
AgeCommit message (Expand)Author
2012-12-08[1.5.x] Fixed #19357 -- Allow non-ASCII chars in filesystem pathsClaude Paroz
2012-10-27[1.5.x] Fixed #18978 -- Moved cleanup command to sessions.Aymeric Augustin
2012-10-10Fixed error output from runserverClaude Paroz
2012-10-01Cleaned up loaddata command options help textPreston Holmes
2012-09-30Fixed #9279 -- Added ignorenonexistent option to loaddataPreston Holmes
2012-09-26Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee
2012-09-10Fixed #18611 -- Display current date/time when running runserverMike Grouchy
2012-08-29[py3] Ported the 'shell' management command.Aymeric Augustin
2012-08-23Fixed #18843 -- Replaced more special chars in column names (inspectdb)Claude Paroz
2012-08-23Fixed #12460 -- Improved inspectdb handling of special field namesClaude Paroz
2012-08-21Fixed #18196 -- Improved loaddata error messages.Claude Paroz
2012-08-21Merge walk and find_files in makemessages commandClaude Paroz
2012-08-18[py3] Removed gratuitous use of map/lambdaAymeric Augustin
2012-08-14[py3] Replace filter/lambda by list comprehensionsAymeric Augustin
2012-08-13Removed binary flag to open files for writing text contentClaude Paroz
2012-08-08[py3] Fixed compilemessages testsClaude Paroz
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