summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
2006-03-28Fixed #1500 -- Changed MySQL AutoField to be integer, not mediumint. Thanks, ...Adrian Holovaty
2006-03-28Fixed #1442 -- Fixed multithreading problem with various database backends. T...Adrian Holovaty
2006-03-28Fixed #1548 -- Improved caching of related objects, so when clist = poll.get_...Adrian Holovaty
2006-03-24Removed stray 'print' statement in ManyToManyField.flatten_data(). Thanks, bu...Adrian Holovaty
2006-03-22Fixed #1529 -- Added support for authenticated SMTP to django.core.mail. Than...Adrian Holovaty
2006-03-20Fixed bug in [2531]. Thanks, NedAdrian Holovaty
2006-03-19Simplified two unnecessary list comprehensions in core/meta/__init__.py. Than...Adrian Holovaty
2006-03-02Fixed #1058 -- Fixed typo in wordwrap filter documentation. Thanks, kieranhol...Adrian Holovaty
2006-03-01Fixed #1213 -- Changed value of NOT_PROVIDED so that it's not a string, to pr...Adrian Holovaty
2006-03-01Added note to mysql backend about DATE_FORMAT not working. Refs #1423Adrian Holovaty
2006-02-27Fixed #1336 -- made USStateField work correctly when data is None (thanks, ch...Jacob Kaplan-Moss
2006-02-25Changed get_object() not to use 'ordering' parameter from the model. Thanks, ...Adrian Holovaty
2006-02-25Rolled back [2390] temporarily to test against some other edge casesAdrian Holovaty
2006-02-25Changed get_object() not to use 'ordering' parameter from the model. Thanks, ...Adrian Holovaty
2006-02-24Refactored cache from django/core/cache.py into django/core/cache package, wi...Adrian Holovaty
2006-02-22Fixed #1275 and #1288 -- Change e-mail address validator regular expression t...Adrian Holovaty
2006-02-20Fixed #1376 -- Undid [2358], which broke flatpages. Thanks, Tom TobinAdrian Holovaty
2006-02-18Changed 'runserver' to display the Django version, and massaged the wording a...Adrian Holovaty
2006-02-18Fixed #894 -- Moved response middleware call to base.py so that exceptions in...Adrian Holovaty
2006-02-18Fixed #1289 -- Improved 'inspectdb' to introspect decimal_places and max_digi...Adrian Holovaty
2006-02-18Fixed #721 -- isAlphaNumericURL validator now allows dashesAdrian Holovaty
2006-02-18Reworded comment atop inspectdb-generated models to imply primary_key may now...Adrian Holovaty
2006-02-18Implemented get_indexes() for Postgres backend, which means 'inspectdb' can i...Adrian Holovaty
2006-02-18Changed get_indexes() hook from [2346] to return 'primary_key' instead of 'ke...Adrian Holovaty
2006-02-18Added better docstring to get_indexes() for MySQL backendAdrian Holovaty
2006-02-18Fixed #1286 -- Improved 'inspectdb' so that it introspects primary_key=True a...Adrian Holovaty
2006-02-18Removed unnecessary line in d.c.meta.fields, due to [2342]Adrian Holovaty
2006-02-18Fixed #1038 -- Changed ForeignKey to calculate verbose_name by looking at its...Adrian Holovaty
2006-02-18Fixed #1148 -- Fixed off-by-one error for some databases in get_DATEFIELD_lis...Adrian Holovaty
2006-02-17Fixed #1177 -- Added django.VERSION and '--version' command to django-admin.p...Adrian Holovaty
2006-02-17Fixed #1348 -- {% ifchanged %} tag no longer renders content twice. Thanks, j...Adrian Holovaty
2006-02-17Fixed #1296 -- Made SlugField maxlength configurable. Thanks, MattAdrian Holovaty
2006-02-17Fixed #1357 and #614 -- <select> formfields now escape valuesAdrian Holovaty
2006-02-10Improved url_re in django.core.validators to accept https. Thanks, Eric HsuAdrian Holovaty
2006-02-09Added TEMPLATE_STRING_IF_INVALID setting, which specifies what the template s...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-03Fixed #1323 -- Added ENABLE_PSYCO. Thanks, Wojtek.Adrian Holovaty
2006-02-02Fixed #1292 -- Fixed potential circular-import problem in template loader. Th...Adrian Holovaty
2006-02-02Fixed #1311 -- manage.py sqlclear no longer assumes database connection is av...Adrian Holovaty
2006-01-30Made small improvement to function_get_date_listAdrian Holovaty
2006-01-27Fixed #1070 -- Improved date validation to limit it to dates 1900 and up.Adrian Holovaty
2006-01-27Fixed #1271 -- Added a 'request' template context processor, which is not act...Adrian Holovaty
2006-01-16Fixed bug in spaceless template-tag documentation. Thanks, EsajAdrian Holovaty
2006-01-16Fixed #1231 -- Added documentation for {% spaceless %} tag to the auto-genera...Adrian Holovaty
2006-01-15Fixed #1064 -- Fixed bug in set_many_to_many() for ManyToManyField pointing a...Adrian Holovaty
2006-01-15Fixed #1062 -- Fixed database typecasting bug for DateTimeFields in SQLite. T...Adrian Holovaty
2006-01-15Fixed #1165 -- Fixed bug in generated CREATE TABLE statements where a primary...Adrian Holovaty
2006-01-15Fixed #1067 and #276 -- Added a {% spaceless %} tag, available in all templatesAdrian Holovaty
2006-01-15Fixed #1218 -- Improved model validator to complain for non True/False values...Adrian Holovaty