summaryrefslogtreecommitdiff
path: root/django/core/management.py
AgeCommit message (Expand)Author
2007-08-16Major refactoring of django.core.management -- it's now a package rather than...Adrian Holovaty
2007-08-14Made some negligible formatting changes to django/core/management.pyAdrian Holovaty
2007-08-11Fixed #4827 -- Fixed a problem when converting Unicode table names to upper-c...Malcolm Tredinnick
2007-08-06Fixed #5082 -- Enabled tab completion in 'django-admin.py shell' for objects ...Adrian Holovaty
2007-08-05Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `For...Gary Wilson Jr
2007-07-28Fixed #4460 -- Added the ability to be more specific in the test cases that a...Russell Keith-Magee
2007-07-23Fixed #3771 -- Modified the test runner to observe the --noinput argument con...Russell Keith-Magee
2007-07-21Fixed #4304 -- Modified sys.exit to os._exit to make sure development server ...Russell Keith-Magee
2007-07-20Simplified the indent level in management.py _get_sql_model_create() by using...Adrian Holovaty
2007-07-20Added a db_type() method to the database Field class. This is a hook for calc...Adrian Holovaty
2007-07-14Fixed #4731 -- Changed management.setup_environ() so that it no longer assumesMalcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-07-03Fixed #4688 -- startproject no longer breaks when Django files are read-only....Adrian Holovaty
2007-06-23Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick
2007-06-23Fixed #4607 -- Tweaked checks for features missing in Python 2.3 to not assumeMalcolm Tredinnick
2007-06-10Fixed #4517 -- Made sure that URL_VALIDATOR_USER_AGENT includes the up-to-dateMalcolm Tredinnick
2007-05-26Fixed #4372 -- Fixed a small typo in an error message. Thanks, John Shaffer.Malcolm Tredinnick
2007-05-21Fixed #2365, #3324 -- Renamed FloatField to DecimalField and changed the codeMalcolm Tredinnick
2007-05-15Fixed some documentation strings in django-admin, and updated the bash comple...Russell Keith-Magee
2007-05-14Added check to prevent sequence reset if no fixtures are loaded.Russell Keith-Magee
2007-05-14Fixed #4288 -- Modified serializers to pay attention to the to_field attribut...Russell Keith-Magee
2007-05-08Moved generic relations into django.contrib.contenttypes, since it depends onMalcolm Tredinnick
2007-05-01Fixed #3905 -- Report app_name correctly in errors during custom SQLMalcolm Tredinnick
2007-04-27Fixed #2608 -- Generate correct SQL for multi-level foreign key relations.Malcolm Tredinnick
2007-04-27Fixed #3954 -- Disabled termcolors when loading fixtures. Well spotted, Vijay...Russell Keith-Magee
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2007-04-09Fixed #3846 -- Fixed misleading variable name in 'startapp' code. Thanks, Mar...Adrian Holovaty
2007-04-06Fixed #3790 -- Fixed a problem with sequence resetting during fixture loads w...Russell Keith-Magee
2007-03-27Fixed #3822 -- Changed get_indexes_for_model() in django.core.management to q...Adrian Holovaty
2007-03-27Improved error reporting when fixture files are provided in an unknown serial...Russell Keith-Magee
2007-03-23Fixed #3779 -- Resolved problem with order of creation of m2m tables during s...Russell Keith-Magee
2007-03-13Modified the internal dumpdata implementation to return the dumped data, rath...Russell Keith-Magee
2007-03-07Removed rsplit() usage for python2.3 compatibility. Refs #3625.Malcolm Tredinnick
2007-03-02Added option to pretty-print dumped fixture outputRussell Keith-Magee
2007-03-01Fixes #2333 -- Added test fixtures framework.Russell Keith-Magee
2007-02-26Fixed #3390: the serializer can now contain forward references. Thanks, Russ.Jacob Kaplan-Moss
2007-02-26Fixed #3253 -- Exposed the number of failed tests as a return code in manage....Russell Keith-Magee
2007-02-17Added workaround for loading duplicate model classes in management shell. PatchMalcolm Tredinnick
2007-01-25Fixed #3299 -- Added 'site' to the list of INVALID_PROJECT_NAMES and improved...Adrian Holovaty
2006-11-07Fixed #2452: comments can now be put within initial SQL files. Thanks, Pawel...Jacob Kaplan-Moss
2006-10-30Fixed #2968 -- Changed arguments to __import__ to use empty dictionary instea...Adrian Holovaty
2006-10-27Fixed #2956 -- Made 'django-admin.py startproject' tolerant of filesystem arr...Adrian Holovaty
2006-10-24Fixed #2932 -- Added more details to the warning message in 'manage.py reset'...Adrian Holovaty
2006-10-09Fixed problem with debug message arguments.Russell Keith-Magee
2006-10-03Modified sql_index function names to match pattern established by initial_dat...Russell Keith-Magee
2006-10-03Refs #1828 -- Added creation of indexes as a step in syncdb. This is an inter...Russell Keith-Magee
2006-10-03Cleaned up and clarified some log messages and docstrings.Russell Keith-Magee
2006-10-03Factored out per-model index generation code.Russell Keith-Magee
2006-10-03Modified the default verbosity to be 1 (normal), and added some syncdb messag...Russell Keith-Magee
2006-10-03Added ability to use --noinput flag for application reset.Russell Keith-Magee