summaryrefslogtreecommitdiff
path: root/django/core/management.py
AgeCommit message (Expand)Author
2006-06-05Small refactoring of django.core.management to allow a custom argv to be pass...Jacob Kaplan-Moss
2006-06-02Fixed #2073 -- Improved 'manage.py shell' not to pass argv to IPython if it's...Adrian Holovaty
2006-05-30Fixed #2015 -- Fixed sqlinitialdata regexp to handle empty string insertions....Adrian Holovaty
2006-05-26Fixed #1935 -- Initial SQL data now works in SQLite if there are multiple sta...Adrian Holovaty
2006-05-19Prevent people from using "startapp" to create apps with the same name as the...Malcolm Tredinnick
2006-05-09Fixed #1819 -- inspectdb no longer puts null=True for TextField and CharField...Adrian Holovaty
2006-05-06Improved runserver to display 'CONTROL-C' vs. 'CTRL-BREAK' based on the curre...Adrian Holovaty
2006-05-05Fixed #1762 -- Fixed Windows error in django.core.management. Thanks, ross.la...Adrian Holovaty
2006-05-05Fixed #1719 -- Added rlcompleter autocompletion to 'manage.py shell' if IPyth...Adrian Holovaty
2006-05-05Fixed #1766 -- Fixed bug in syncdb where it allowed two models to have the sa...Adrian Holovaty
2006-05-02MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty
2006-04-10Fixed #1600 -- Renamed ManyToMany to ManyToManyRel so people get a clearer er...Adrian Holovaty
2006-02-18Changed 'runserver' to display the Django version, and massaged the wording a...Adrian Holovaty
2006-02-18Fixed #1289 -- Improved 'inspectdb' to introspect decimal_places and max_digi...Adrian Holovaty
2006-02-18Reworded comment atop inspectdb-generated models to imply primary_key may now...Adrian Holovaty
2006-02-18Changed get_indexes() hook from [2346] to return 'primary_key' instead of 'ke...Adrian Holovaty
2006-02-18Fixed #1286 -- Improved 'inspectdb' so that it introspects primary_key=True a...Adrian Holovaty
2006-02-17Fixed #1177 -- Added django.VERSION and '--version' command to django-admin.p...Adrian Holovaty
2006-02-04Improved 'inspectdb' handling of Python keywords from [2271] to use the 'keyw...Adrian Holovaty
2006-02-04Fixed #1328 -- Improved 'inspectdb' to handle Python reserved words as field ...Adrian Holovaty
2006-02-02Fixed #1311 -- manage.py sqlclear no longer assumes database connection is av...Adrian Holovaty
2006-01-15Fixed #1165 -- Fixed bug in generated CREATE TABLE statements where a primary...Adrian Holovaty
2006-01-15Fixed #1218 -- Improved model validator to complain for non True/False values...Adrian Holovaty
2006-01-12Fixed #1202 -- Changed 'manage.py shell' to use IPython if present. Also adde...Adrian Holovaty
2006-01-11Added 'shell' option to django-admin.py and manage.pyAdrian Holovaty
2006-01-08Fixed #1187 -- Added field name to error message for missing PIL. Thanks, aka...Adrian Holovaty
2005-12-06Added conf/project_template/manage.py, which is a light wrapper around django...Adrian Holovaty
2005-12-06Negligible capitalization change in django.core.managementAdrian Holovaty
2005-12-06Factored out django.core.management ACTION_MAPPING into DEFAULT_ACTION_MAPPIN...Adrian Holovaty
2005-12-06Moved all logic from django-admin.py into django.core.management, into a new ...Adrian Holovaty
2005-12-01Fixed #971 -- inspectdb for SQLite now introspects field types.Adrian Holovaty
2005-12-01Fixed #965 -- 'django-admin.py sqlsequencereset' now includes m2m tables. Tha...Adrian Holovaty
2005-12-01Improved model validator to throw error if a model has two ManyToMany relatio...Adrian Holovaty
2005-11-29Fixed #460 -- Added 'django-admin.py inspectdb' support for SQLite. Thanks, S...Adrian Holovaty
2005-11-29Fixed #490 -- Fixed incorrect handling of cursor.rowcount in yet-unused datab...Adrian Holovaty
2005-11-28Fixed #798 and #715 -- Added optional arguments to createsuperuser, for each ...Adrian Holovaty
2005-11-25MERGED NEW-ADMIN BRANCH (except for po/mo files, which will come in a separat...Adrian Holovaty
2005-11-25Fixed #882 -- Fixed bug when doing django-admin.py sqlclear with SQLite. Than...Adrian Holovaty
2005-11-21Fixed #861 -- Model validator now validates unique_togetherAdrian Holovaty
2005-11-20Fixed #484 -- Model validator now raises an error for FloatFields without max...Adrian Holovaty
2005-11-14Fixed #121 -- Django now quotes all names in SQL queries. Also added unit tes...Adrian Holovaty
2005-11-09Fixed #686 -- django-admin.py sqlreset and sqlclear no longer assume the admi...Adrian Holovaty
2005-10-23Added 'django-admin.py installperms' commandAdrian Holovaty
2005-10-20Fixed #668 -- Changed default site from mysite.com to example.com. Thanks, IanAdrian Holovaty
2005-10-19Fixed #627 -- BACKWARDS-INCOMPATIBLE CHANGE. Admin is now an app, not a middl...Adrian Holovaty
2005-10-10Improved django.core.management.get_sql_delete to close database connection e...Adrian Holovaty
2005-10-06Changed django.core.management to remove a couple of hard-coded slashes from ...Adrian Holovaty
2005-10-06Improved model validator to check admin.list_filter and type-check admin.list...Adrian Holovaty
2005-09-29Changed [735] so that database-agnostic SQL always gets executed, even if dat...Adrian Holovaty
2005-09-29Fixed #363 - django-admin sqlall now uses database-specific initial data file...Jacob Kaplan-Moss