summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
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-20Converted request.META['REQUEST_METHOD'] calls to request.method, throughout ...Adrian Holovaty
2006-06-20Added 'method' attribute to HttpRequest objectsAdrian Holovaty
2006-06-19Fixed #1088 - Correctly detect when a float with too many digits before theMalcolm Tredinnick
2006-06-16Added generic foreign key support to Django. Much thanks to Ian Holsman and Jacob Kaplan-Moss
2006-06-08Fixed #2109 -- Convert old-style classes to new-style classes throughout Djan...Adrian Holovaty
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-06fixed #2089: added language bidirectional support and updated the admin to us...Georg Bauer
2006-06-05Fixed stupid bug in [3802] Jacob Kaplan-Moss
2006-06-05Small refactoring of django.core.management to allow a custom argv to be pass...Jacob Kaplan-Moss
2006-06-03Eliminated lots of mutable default arguments (since they are bugsLuke Plant
2006-06-02Fixed #2073 -- Improved 'manage.py shell' not to pass argv to IPython if it's...Adrian Holovaty
2006-06-02Fixed #2025 -- Fixed some issues with URL reversal, which still isn't ready f...Adrian Holovaty
2006-06-01Fixed #2045 - TypeError thrown if a form does not have the correct enctype fo...Luke Plant
2006-06-01Fixed #720 -- Added first_on_page() and last_on_page() methods to ObjectPagin...Adrian Holovaty
2006-05-31Fixed #2049 -- Made isValidEmail validator wider in scope. Thanks, mir@noris.deAdrian Holovaty
2006-05-30Fixed #2015 -- Fixed sqlinitialdata regexp to handle empty string insertions....Adrian Holovaty
2006-05-26Fixed #1023 -- Base handler no longer calls mail_admins() on SystemExit, in c...Adrian Holovaty
2006-05-26Fixed #1935 -- Initial SQL data now works in SQLite if there are multiple sta...Adrian Holovaty
2006-05-26Fixed #1634 -- Changed django.core.mail to include 'Date' header in e-mails. ...Adrian Holovaty
2006-05-19Prevent people from using "startapp" to create apps with the same name as the...Malcolm Tredinnick
2006-05-16Added first stab at reverse matching to urlresolvers.pyAdrian Holovaty
2006-05-13Fixed #1235: email sent from {{{django.core.mail}}} will now be encoded usingJacob Kaplan-Moss
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-12Fixed #1626 -- Fixed a bunch of typos in comments and docs. Thanks, DexterAdrian Holovaty
2006-04-12Fixed #1531 -- Fixed eager exception catching that caused the template system...Adrian Holovaty
2006-04-12Negligible spacing change to core/template/loader.pyAdrian Holovaty
2006-04-11Removed unneeded 'import sys' from base.py handlerAdrian Holovaty
2006-04-11Fixed #1551 -- Improved base handler to not lose track of important exception...Adrian Holovaty
2006-04-11Fixed #1555 -- Added EMAIL_PORT setting. Thanks, bde3Adrian Holovaty
2006-04-11Converted django.core.mail to use 'from django.conf import settings' instead ...Adrian Holovaty
2006-04-10Renamed OneToOne to OneToOneRel to be consistent with ManyToManyRelAdrian Holovaty
2006-04-10Renamed ManyToOne to ManyToOneRel to be consistent with ManyToManyRelAdrian Holovaty
2006-04-10Fixed #1600 -- Renamed ManyToMany to ManyToManyRel so people get a clearer er...Adrian Holovaty
2006-04-10Fixed #1590 -- Changed MySQL get_last_insert_id() implementation to use curso...Adrian Holovaty
2006-04-09Fixed #1569 -- HttpResponse now accepts iterators. Thanks, ManiacAdrian Holovaty
2006-03-28Fixed #1550 -- Changed MatchesRegularExpression validator to use .search(), n...Adrian Holovaty