summaryrefslogtreecommitdiff
path: root/django/core/management.py
AgeCommit message (Expand)Author
2006-10-03Altered the order of arguments to the test function to match common practice ...Russell Keith-Magee
2006-09-27Fixed Python 2.3 compatibility problem in [3872].Malcolm Tredinnick
2006-09-27Reintroduced the changes from [3855] with more flexible handling of versionMalcolm Tredinnick
2006-09-26Fixed #2827 -- Reverted [3855]Adrian Holovaty
2006-09-26Fixed #2188 -- Raise an error when using long CharFields in combination withMalcolm Tredinnick
2006-09-26Fixed #2783 -- Fixed one-to-one fields to work with any primary key data typeMalcolm Tredinnick
2006-09-25Proofread new django-admin 'adminmedia' option from [3811] and [3812]Adrian Holovaty
2006-09-25Fixed #2729 -- Handle initial SQL with different line-ending styles (WindowsMalcolm Tredinnick
2006-09-24Fixed #2600 -- Added an option to allow serving admin media from a custom pathMalcolm Tredinnick
2006-09-23Fixed #2425 -- Call validate() as part of generating SQL in order to catch aMalcolm Tredinnick
2006-09-22Fixed #2578 -- Give a more accurate error message for admin.list_display_linksMalcolm Tredinnick
2006-09-11Fixed #2689 -- Got 'manage.py diffsettings' working again. Thanks for the pat...Adrian Holovaty
2006-09-07Fixes #2653 -- Modified related field utility methods to return None as the r...Russell Keith-Magee
2006-08-28Fixed verbosity check in installing initial dataJacob Kaplan-Moss
2006-08-27Refs #2333 - Added 'test' target to django-admin script. Includes addition of...Russell Keith-Magee
2006-08-12Fixed #2372 -- manage.py runfcgi no longer ignore LANGUAGE_CODE. Thanks, ludo...Adrian Holovaty
2006-08-11Changed inspectdb to *not* trim trailing 's' from database table name to crea...Adrian Holovaty
2006-08-11Moved the space check from r3549 to before the Python keyword check so thatMalcolm Tredinnick
2006-08-10Fixed #2517 -- Improved inspectdb to handle table column names that contain s...Adrian Holovaty
2006-08-10Fixed #2469 -- Fixed the constraint names in the sqlreset output (again!).Malcolm Tredinnick
2006-08-09Fixed #2469 -- Made the "drop index" constraint names match those we create i...Malcolm Tredinnick
2006-08-09Fixed #2260 -- fixed a problem where some foreign key references were beingMalcolm Tredinnick
2006-08-06Fixed #2491 -- Pass the project directory back from setup_environ so that weMalcolm Tredinnick
2006-08-06Moved the environment setup into a method that can be called from other scripts.Malcolm Tredinnick
2006-08-02Fixed #2467 -- Improved model validator to check date_hierarchy. Thanks, Simo...Adrian Holovaty
2006-08-01Fixed #2257 -- make constraint names unique across all table/columnMalcolm Tredinnick
2006-07-27Changed output of django-admin.py --version to use a hyphen instead of parent...Adrian Holovaty
2006-07-21Second half of little cleanup tweaks suggested by pyflakes.Jacob Kaplan-Moss
2006-07-21Fixed a bunch of spurious imports, typos, and other small errors turned up by...Jacob Kaplan-Moss
2006-07-21Fixed keyboard slip that was accidentally committedRussell Keith-Magee
2006-07-21Cleanup of management.py; replaced uses of 'klass' with 'model', and normaliz...Russell Keith-Magee
2006-07-19Fixed #2257 -- MySQL wants constraint names to be unique per-database, so fixedMalcolm Tredinnick
2006-07-14Added command line flag to disable use of auto-reloader on development server.Russell Keith-Magee
2006-07-14Disable use of terminal colors when django-admin is run on a Pocket PC.Russell Keith-Magee
2006-07-10Fixed #2301 -- Added list_display_links option to 'class Admin', which regula...Adrian Holovaty
2006-07-05Fixed #2285 -- Tweaked the error message after model errors at "syncdb" time soMalcolm Tredinnick
2006-07-04Fixed #1578 -- fixed a corner-case where we still wanting core=True attributesMalcolm Tredinnick
2006-06-27Fixes #2216 -- Added extra tests for model validity, and cleaned up warning m...Russell Keith-Magee
2006-06-25Fixes #1812 -- Added model validity checks to ensure that models.py exists, a...Russell Keith-Magee
2006-06-23Fixed #1662 -- Added resolver for string-form model references for models tha...Russell Keith-Magee
2006-06-21Fixed #1928 -- Correctly create foreign key references when there are multipleMalcolm Tredinnick
2006-06-20Fixed #2119 -- fixed problems with splitting SQL statements into separateMalcolm Tredinnick
2006-06-20Fixed #2161 -- handle trailing newlines in initial SQL data. IncludesMalcolm Tredinnick
2006-06-20Added django/core/servers/fastcgi.py and manage.py 'runfcgi' option. Thanks, ...Adrian Holovaty
2006-06-16Added generic foreign key support to Django. Much thanks to Ian Holsman and Jacob Kaplan-Moss
2006-06-07Fixed #1503 -- Improved model validator to throw an error if a model doesn't ...Adrian Holovaty
2006-06-07Removed legacy deprecated_args check from django.core.managementAdrian Holovaty
2006-06-07Fixed #2098 -- Loosened validation for model 'ordering' parameter by allowing...Adrian Holovaty
2006-06-07Fixed #1697 and #2095 -- Made 'choices' parameter accept any iterableAdrian Holovaty
2006-06-05Fixed stupid bug in [3802] Jacob Kaplan-Moss