summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-03-18Fixed #19327 -- Added handling of double login attempts in admin.Deric Crago
Thanks to Krzysztof Jurewicz for initial patch and adupin for tests.
2013-03-18Merge pull request #926 from ↵Preston Holmes
catalanojuan/adds-dates-containing-zeros-note-to-docs Added warn note to docs about MySQL issues with 0000-00-00 date strings
2013-03-18Added warn note to docs about MySQL issues with 0000-00-00 date stringsJuan Catalano
MySQL accepts 0000-00-00 as a valid date but MySQLdb converts those values into None. So there will be problems for instance if trying to transport the data using dumpdata/loaddata. This patch refs #6642 that has been closed as wontfix since this is a particular problem of MySQL.
2013-03-18Fixed #13260 -- Quoted arguments interpolated in URLs in reverse.Aymeric Augustin
2013-03-18Update versions and links to source tarballs.Justin Bronn
2013-03-18Fixed #19968 -- Dropped support for PostgreSQL < 8.4.Aymeric Augustin
2013-03-18Fixed #19456 -- Avoid infinite recursion when tracing LazyObject.__init__.Aymeric Augustin
Thanks blaze33 for the patch.
2013-03-18Fixed #18447 -- Made LazyObject unwrap on dict access.Aymeric Augustin
Thanks Roman Gladkov and Zbigniew Siciarz.
2013-03-18Clarified that constant_time_compare doesn't protect string lengths.Aymeric Augustin
2013-03-18Fixed #17037 -- Added a --all option to diffsettings.Aymeric Augustin
2013-03-17Fixed #19510 -- Race condition in template loading.Aymeric Augustin
Thanks Kronuz and regebro.
2013-03-17Fixed #19550 -- Made the filtered select widget wider in the admin.Aymeric Augustin
Thanks Claude and Julien for the review.
2013-03-17Minor docs fix for e11ccc76.Aymeric Augustin
2013-03-17Two additions to the deployment checklist.Aymeric Augustin
Thanks Erik Romijn.
2013-03-17Fixed #19697 -- Added a deployment checklist.Aymeric Augustin
2013-03-17Fixed #19635 -- Made fields pickleableAnssi Kääriäinen
2013-03-17Merge pull request #902 from evildmp/BLANK_CHOICE_NONEAymeric Augustin
Fixed #20043 -- Removed unused BLANK_CHOICE_NONE
2013-03-17Added structure in the 1.6 release notes.Aymeric Augustin
The backwards-incompatible changes section wasn't structured in sections like it is in release notes for previous versions.
2013-03-17Stopped using non-standard __globals__ and __code__ attributes.Aymeric Augustin
Some alternative implementations don't have them. Closes #19944.
2013-03-17Updated bundled version of six.Aymeric Augustin
2013-03-17Removed debug codeAnssi Kääriäinen
2013-03-17Fixed memory leak in testsAnssi Kääriäinen
The AssertNumQueriesContext didn't reset connection's use_debug_cursor in case there was an exception. This resulted in leaking query strings into connection.queries. Maximum memory use pre-patch was around 700MB, post-patch it is around 200MB for Django's test suite.
2013-03-16Merge pull request #910 from bmispelon/ticket-20058Claude Paroz
Fix #20058: Make compilemessages use stdout instead of stderr.
2013-03-16Merge pull request #906 from bmispelon/ticket-20054Adrian Holovaty
Fix #20054: Removed links to modwsgi.org.
2013-03-16Merge pull request #909 from bmispelon/ticket-20061Adrian Holovaty
Fix 20061: remove out of date comment.
2013-03-16Fix #20058: Make compilemessages use stdout instead of stderr.Baptiste Mispelon
2013-03-16Fix 20061: remove out of date comment.Baptiste Mispelon
2013-03-15Fixed #20055 -- Add url, email, and number input types to admin CSS.Baptiste Mispelon
2013-03-15Fixed #16110 -- Fixed GeometryField odd behaviour regarding null valuesClaude Paroz
Thanks slinkp for the report and the initial patch.
2013-03-15Fix #20054: Removed links to modwsgi.org.Baptiste Mispelon
2013-03-15Merge pull request #905 from cyberj/ticket_20053Simon Charette
Fixed #20053 -- Fix `index_together` documentation
2013-03-15Fixed #20053 -- Fix `index_together` documentationJohan Charpentier
2013-03-15Merge pull request #901 from giamfreeg/masterAymeric Augustin
Fixed an erroneous import in example code of docs (class-based-views/intro).
2013-03-15Discouraged filing PRs that won't be noticed.Aymeric Augustin
2013-03-15Corrected typos in the 1.6 release notesMarc Tamlyn
2013-03-15Fixed #17502 -- Made joining in inheritance cases consistentAnssi Kääriäinen
The original problem was that when filtering two levels up in inheritance chain, Django optimized the join generation so that the middle model was skipped. But then Django generated joins from top to middle to bottom for SELECT clause, and thus there was one extra join (top->middle->bottom + top -> bottom). This case is fixed in master as the filtering optimization is gone. This has the side effect that in some cases there is still extra join if the SELECT clause doesn't contain anything from middle or bottom.
2013-03-14Deprecated django.views.defaults.shortcut.Aymeric Augustin
2013-03-14Fixed #17051 -- Removed some 'invalid' field error messagesClaude Paroz
When the 'invalid' error message is set at field level, it masks the error message raised by the validator, if any.
2013-03-14Add a specific error message for URLValidatorClaude Paroz
2013-03-14Updated release instructions to account for website automation.Aymeric Augustin
2013-03-14Fixed #20039 -- Fixed has_changed form detection for required TypedChoiceFieldsClaude Paroz
Thanks Florian Apolloner for the report and the review. Also fixes #19643.
2013-03-14Fixed #16649 -- Refactored save_base logicAnssi Kääriäinen
Model.save() will use UPDATE - if not updated - INSERT instead of SELECT - if found UPDATE else INSERT. This should save a query when updating, but will cost a little when inserting model with PK set. Also fixed #17341 -- made sure .save() commits transactions only after the whole model has been saved. This wasn't the case in model inheritance situations. The save_base implementation was refactored into multiple methods. A typical chain for inherited save is: save_base() _save_parents(self) for each parent: _save_parents(parent) _save_table(parent) _save_table(self)
2013-03-13Merge branch 'master' of github.com:django/djangoFlorian Apolloner
2013-03-13Began implementing a shared set of test models to speed up tests.Florian Apolloner
2013-03-13Fixed #20032 -- Documented how to simulate the absence of a settingClaude Paroz
Thanks Ram Rachum for the report.
2013-03-13Merge pull request #900 from bmispelon/ticket-20022Jacob Kaplan-Moss
Fix #20022: Correctly handle prefixes with url-unsafe characters in reverse()
2013-03-13removed unused BLANK_CHOICE_NONEDaniele Procida
2013-03-13Merge pull request #900 from bmispelon/ticket-20022Jacob Kaplan-Moss
Fix #20022: Correctly handle prefixes with url-unsafe characters in reverse()
2013-03-13Fix #20022: Correctly handle prefixes with url-unsafe characters in reverse().Baptiste Mispelon
2013-03-13Fixed an erroneous import in example code.Pablo Sanfilippo