summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
2005-08-15Fixed #93 and #279 -- 'django-admin startproject' no longer creates invalid s...Adrian Holovaty
2005-08-15Fixed #316 -- Added special-case for MySQL microseconds, so that it doesn't t...Adrian Holovaty
2005-08-15Fixed #311 -- Small change to docstring. Thanks, rmunnAdrian Holovaty
2005-08-15Fixed #321 -- Undid [494], which assumed the installed version of MySQLdb had...Adrian Holovaty
2005-08-14Fixed #316 -- Changed MySQL backend to disregard warningsAdrian Holovaty
2005-08-12Moved django.core.handlers.wsgi.AdminMediaHandler to django.core.servers.base...Adrian Holovaty
2005-08-11Changed timestamp and time typecasting to preserve microseconds. Added unit t...Adrian Holovaty
2005-08-10Refactored django.core.urlresolvers a tiny bitAdrian Holovaty
2005-08-10Fixed #126 -- HttpRequest now has a 'raw_post_data' attribute.Adrian Holovaty
2005-08-10Fixed #192 -- File uploads now work with built-in Web server. Thanks, mordaha...Adrian Holovaty
2005-08-10Added help_doc to django.core.management.installAdrian Holovaty
2005-08-10Fixed #81 -- Admin now supports primary_key=True for non-integer fields. Note...Adrian Holovaty
2005-08-10Fixed #299 -- Slugify no longer removes hyphens. Thanks, gch@cs.cmu.eduAdrian Holovaty
2005-08-10Refactored the way save() works so that non-integer primary keys are now poss...Adrian Holovaty
2005-08-10Changed [459] to use a better interface for the exceptionAdrian Holovaty
2005-08-10Changed MySQL backend so that it fails silently if rollback() isn't supported...Adrian Holovaty
2005-08-10Undid [455] -- it's not a good enough solution for what I'm trying to doAdrian Holovaty
2005-08-10Slightly refactored metasystem -- changed Field pre_save() hooks to pre_save_...Adrian Holovaty
2005-08-10Simplified metasystem get_db_prep_save() hook so that it doesn't take an 'add...Adrian Holovaty
2005-08-10Fixed #154 -- Fixed constraint error when deleting an object with a many-to-m...Adrian Holovaty
2005-08-09Small change to docstring in django.core.templateAdrian Holovaty
2005-08-09Fixed #211 -- edit_inline_type is deprecated, in favor of edit_inline itself....Adrian Holovaty
2005-08-08Companion checkin to [432]Adrian Holovaty
2005-08-07Changed 'django-admin adminindex' to output relative links, not absolute link...Adrian Holovaty
2005-08-05Greatly improved the 404 error message when DEBUG=True. If none of the urlpat...Adrian Holovaty
2005-08-05Refactored the internals of URL parsing to use less codeAdrian Holovaty
2005-08-05Fixed #275 -- Bug in validators.RequiredIfOtherFieldsGiven. Thanks, jhernandezAdrian Holovaty
2005-08-05Changed default ManyToOne num_in_admin from 0 to 3, to help avoid confusion w...Adrian Holovaty
2005-08-04Fixed #266 -- Added ValidateIfOtherFieldEquals validator. Thanks again, HugoAdrian Holovaty
2005-08-04Tightened up some code in django.core.validatorsAdrian Holovaty
2005-08-04Refactored django.core.validators.RequiredIfOtherFieldGiven to remove duplica...Adrian Holovaty
2005-08-04Fixed #268 -- Added AnyValidator and fixed small bug in [399]. Thanks, HugoAdrian Holovaty
2005-08-04Fixed #263 -- inspectdb output now includes a comment reminding people to run...Adrian Holovaty
2005-08-04Fixed #269 -- Added MatchesRegularExpression validator. Thanks, Hugo!Adrian Holovaty
2005-08-04Improved 'django-admin inspectdb' so that it doesn't raise an exception for u...Adrian Holovaty
2005-08-04Fixed #257 -- Empty model modules no longer cause an error. Thanks, Bill de h...Adrian Holovaty
2005-08-02Improved 'django-admin inspectdb' so that it detects ForeignKey relationships...Adrian Holovaty
2005-08-02Made a bunch of fixes to auto-generated admin documentation:Jacob Kaplan-Moss
2005-08-02Fixed a subtle bug with the {% load %} tag: if a tag/filter was removed from ...Jacob Kaplan-Moss
2005-08-02Added first stab at 'django-admin.py inspectdb', which takes a database name ...Adrian Holovaty
2005-08-01Fixed #227 -- the sqlite backend now correctly typecasts unicode objects to b...Jacob Kaplan-Moss
2005-08-01Refactored meta.py -- created a django.core.meta package, with init.py and fi...Adrian Holovaty
2005-08-01Fixed #239 and #107 -- Changed model init() to use Field.get_default() if the...Adrian Holovaty
2005-08-01Fixed #214 -- Added get_values() and get_values_iterator() module-level funct...Adrian Holovaty
2005-08-01Improved error message in urlresolvers (fixes #240)Jacob Kaplan-Moss
2005-07-29Fixed #228 -- Better handling of timezones. Thanks, rmunnAdrian Holovaty
2005-07-29Fixed #219 and #188 -- Database timestamp typecast no longer assumes '-' deli...Adrian Holovaty
2005-07-27Fixed bug for models with a ForeignKey('self') and order_with_respect_toAdrian Holovaty
2005-07-26Changed django.core.management.get_sql_delete to be more robust when many-to-...Adrian Holovaty
2005-07-26Fixed #186 -- Refactored meta.py to remove duplicate code between function_ge...Adrian Holovaty