summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
2007-01-200.95-bugfixes: Apply flup traceback suppression from [4170]James Bennett
2006-07-28Added leading slash to output of core.urlresolvers.reverse(), and made 'urlco...Adrian Holovaty
2006-07-27Changed output of django-admin.py --version to use a hyphen instead of parent...Adrian Holovaty
2006-07-25Added resolve() and reverse() helper functions to django.core.urlresolversAdrian 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 #2092: added a "is_secure()" method to HttpRequest which correctly hand...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-20Clarified debug naming of WSGIRequestsRussell 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-10Fixed #2312 -- E-mail validator now accepts TLDs up to 6 characters longAdrian 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-29Added a JSON serializer, a few more tests, and a couple more lines of docs.Jacob Kaplan-Moss
2006-06-28Added initial cut at serialization framework, along with some basic tests and...Jacob Kaplan-Moss
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-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