summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-09-22Fixed #18057 - Documented that caches are not cleared after each test; ↵Tim Graham
thanks guettli for the suggestion.
2012-09-22Fixed #18951 -- Formatting of microseconds.Aymeric Augustin
Thanks olofom at gmail com for the report.
2012-09-22Fixed #16218 -- date_list order in generic CBVs.Aymeric Augustin
Thanks nnrcschmdt for the report and bpeschier for the initial version of the patch.
2012-09-22Made geo3d tests independent from each otherClaude Paroz
2012-09-22Fixed #16835 -- add groups to auth.user admin list_filterDan Loewenherz
2012-09-22Fix introspection PK comment more.Andrew Godwin
2012-09-22Remove weird syncdb managed thing - no longer needed.Andrew Godwin
2012-09-22Remove special-casing for proxy/unmanaged modelsAndrew Godwin
2012-09-22Remove AppCache state handling, replace with swappable cachesAndrew Godwin
2012-09-21Fixed #19008 typo in signals docsPreston Holmes
2012-09-21Un-borg-ify AppCacheAndrew Godwin
2012-09-21Fixed #10853 -- Skipped some sessions tests with dummy cache backendClaude Paroz
2012-09-21Merge pull request #386 from clelland/ticket_15269Tim Graham
Fixed #15269 - Added documentation for get_caches function
2012-09-20Fixed #18934 - Removed versionadded/changed annotations for Django 1.3Tim Graham
2012-09-20Removed an excess colon. Thanks to jMyles for the patch.Alex Gaynor
2012-09-20Add documentation for get_caches functionIan Clelland
2012-09-20Imported getLogger directly from logging moduleClaude Paroz
This was a remainder of some 2.4 compatibility code.
2012-09-20Fixed #16577 -- Added a map_creation block in openlayers.js templateClaude Paroz
2012-09-20Fixed #17687 -- Made LayerMapping router-awareClaude Paroz
Thanks nosamanuel@gmail.com for the report and the initial patch.
2012-09-20Added a note about GEOS support for 3D/4D WKT notationClaude Paroz
See also http://trac.osgeo.org/geos/ticket/347
2012-09-19Fixed #15325 - Added a link to RelatedManager in the ManytoManyField docs; ↵Tim Graham
thanks jammon for the suggestion.
2012-09-19Fixed #14829 - Added references to CBVs in the URLConf docs; thanks Andrew ↵Tim Graham
Willey for the suggestion.
2012-09-19Fixed #13586 - Added an example of how to connect a m2m_changed signal handler.Tim Graham
2012-09-19Revert "Fixed #16865 -- Made get_or_create use read database for initial get ↵Carl Meyer
query." Thanks to Jeremy Dunck for pointing out the problem with this change. If in a single transaction, the master deletes a record and then get_or_creates a similar record, under the new behavior the get_or_create would find the record in the slave db and fail to re-create it, leaving the record nonexistent, which violates the contract of get_or_create that the record should always exist afterwards. We need to do everything against the master here in order to ensure correctness. This reverts commit 901af865505310a70dd02ea5b3becbf45819b652.
2012-09-19Fixed #16865 -- Made get_or_create use read database for initial get query.Carl Meyer
Thanks Rick van Hattem for the report and trbs for the patch.
2012-09-18Use unicode.translate to speed up js escaping.Dave Hall
2012-09-18Fixed #18980 -- Fixed assertContains regression when passed an objectJeremy Dunck
2012-09-18Fixed #18800 -- Support numbers bigger than max float in `numberformat`.Florian Apolloner
Thanks to jbvsmo for the patch and Brad Pitcher for the tests.
2012-09-18Merge pull request #375 from collinanderson/patch-8Florian Apolloner
versionadded for next/previous_year generic-date-based views doc
2012-09-18document changes for YearArchiveView.Collin Anderson
2012-09-18Dropping pointless self.fail callsAndrew Godwin
2012-09-18Stylistic fixes: triple-quoted docstrings, more commentsAndrew Godwin
2012-09-17Fixed #18971 -- added root level CONTRIBUTING docPreston Holmes
2012-09-17Added myself as a committer.Preston Holmes
2012-09-17Merge pull request #195 from pydanny/ajax-docs-exampleTim Graham
Added example of AJAX form submission for CBVs.
2012-09-17Python 3 compatability. 2.6 was a while back, I should learn ' as '.Andrew Godwin
2012-09-17Fix bug in get_indexes affecting the testsAndrew Godwin
2012-09-17Merge branch 'lotheac-fix_uploaded_file_exec'Florian Apolloner
2012-09-17Fixed #18947 -- Don't make uploaded files executeable by default.Florian Apolloner
Thanks to Lauri Tirkkonen for the patch.
2012-09-17More schema test fixingAndrew Godwin
2012-09-17Added tests for d21f3d9b171a3cbff4c8ce7a9dbb8b8be3f21bac.Florian Apolloner
2012-09-17Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: django/db/backends/mysql/base.py django/db/backends/postgresql_psycopg2/base.py
2012-09-17Fix app loading/test interactionAndrew Godwin
2012-09-17Only update `last_login` instead of the whole user object in ↵Florian Apolloner
`update_last_login`.
2012-09-17Add example of AJAX form submission.Marc Tamlyn
Credit goes to @SystemParadox. Originally developed at #DjangoCon Europe but wasn't tested enough to merge in. For history, please see https://github.com/pydanny/django/pull/4
2012-09-16Merge pull request #360 from calebsmith/add-permalink-wraps-testFlorian Apolloner
Ticket #12836 - Added a test to assure permalink wraps method attributes
2012-09-16Fixed #17485 regression -- only + select_related interactionAnssi Kääriäinen
When doing deeper than one level select_related() + only queries(), the code introduced in b6c356b7bb97f3d6d4831b31e67868313bbbc090 errored incorrectly. Thanks to mrmachine for report & test case.
2012-09-16Merge pull request #372 from ptone/patch-2Florian Apolloner
Clearer wording for defer docs
2012-09-16Merge pull request #371 from camilonova/fix_docs_typoFlorian Apolloner
Fixes docs typo
2012-09-15Fixed #18530 -- Fixed a small regression in the admin filters where wrongly ↵Julien Phalip
formatted dates passed as url parameters caused an unhandled ValidationError. Thanks to david for the report.