summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-11-13Correct link to SentryDavid Cramer
django-sentry is no longer maintained, and sentry is the replacement.
2012-11-13Fixed select_related performance regressionsAnssi Kääriäinen
The regression was caused by select_related fix for Oracle, commit c159d9cec0baab7bbd04d5d51a92a51e354a722a.
2012-11-13Removed use of SortedDict for query.alias_refcountAnssi Kääriäinen
This will have a smallish impact on performance. Refs #19276.
2012-11-13Some changes to SortedDict to make it faster under py2Anssi Kääriäinen
Refs #19276
2012-11-13Fixed #19283 -- Fixed typo in imports in CBV docs.Aymeric Augustin
2012-11-13Merge pull request #509 from pydanny/ticket_19244Aymeric Augustin
Fixed #19244 -- Provided examples for some built-in templatetags and filters
2012-11-13Fixed #19260 - Added a comment to tutorial 1.Tim Graham
Thanks terwey for the suggestion.
2012-11-13Merge pull request #514 from nippo/masterTim Graham
Typo in comments doc
2012-11-12Converted <paragraph> to <p> per #aaugustin's requestDaniel Greenfeld
2012-11-12Typo in comments docNicolas Ippolito
2012-11-12Negligible spacing fix in utils/log.pyAdrian Holovaty
2012-11-11Tweaked cache key creation to avoid strict typing.Aymeric Augustin
This is a provisional change. See #19221 for details.
2012-11-11Merge pull request #218 from mgrouchy/ticket_18582Aymeric Augustin
Fixed #18582 -- Added a no-op close to BaseCache
2012-11-10Fixed #19273 -- Fixed DB cache backend on pg 9.0+ and py3Anssi Kääriäinen
There was a problem caused by Postgres 9.0+ having bytea_output default value of 'hex' and cache backend inserting the content as 'bytes' into a column of type TEXT. Fixed by converting the bytes value to a string before insert.
2012-11-10Allow custom User models to use the UserAdmin's change password view.Ryan Kaskel
2012-11-10Removed an impossible code path in cache functionClaude Paroz
2012-11-10Fixed #14264 -- Ensured settings.configure configures loggingClaude Paroz
Thanks Matt McDonald for the patch.
2012-11-09Fixed #19262 -- Support cookie pickling in SimpleTemplateResponseSean Breant
Refs #15863.
2012-11-09Fixed #19261 -- Delayed Queryset evaluation in paginatorsClaude Paroz
Thanks trbs for the report and the patch.
2012-11-09Formatting tweaks.Tom Christie
2012-11-09Include `versionadded 1.5` directiveTom Christie
2012-11-09Added missing encoding preamble to gis tests.Florian Apolloner
'coverage html' did fail without it. Thanks to Claude Paroz for figuring it out.
2012-11-09Merge pull request #506 from gwrtheyrn/ipv6_doc_fixTim Graham
Fixed invalid ipv4 mapped ipv6 addresses in docs
2012-11-09Fixed #19266 -- Added Texinfo documentation targetClaude Paroz
Thanks orontee for the report and initial patch.
2012-11-08Added examples for comment, templatetag, escape, force_escape, timesince, ↵Daniel Greenfeld
and timeuntil
2012-11-08Made Page class inherit collections.SequenceClaude Paroz
2012-11-08Merged pagination testsClaude Paroz
It is simpler/cleaner to have all pagination tests in a single file. Refs #16122.
2012-11-08Fixed #17144 -- MySQL again groups by PK onlyAnssi Kääriäinen
Thanks to Christian Oudard for the report and tests.
2012-11-07Fixed #19115 -- Documented stdout/stderr options for call_commandClaude Paroz
Thanks d1ffuz0r for helping with the patch.
2012-11-07Fixed #19257 -- Don't swallow command's KeyError in call_commandClaude Paroz
Thanks Giovanni Bajo for the report.
2012-11-07Fixed invalid ipv4 mapped ipv6 addresses in docsDanilo Bargen
2012-11-06Fixed #19161 - Added missing clean_password method in custom user docsTim Graham
Thanks DavidW for the report.
2012-11-06Fixed #15968 - Noted that readonly_fields are excluded from the ModelFormTim Graham
2012-11-06Fixed #19154 - Noted commit_manually requires commit/rollback for readsTim Graham
Thanks als for the report.
2012-11-06Fixed #14315 -- Made memcached backend handle negative incr/decr valuesClaude Paroz
Thanks Michael Manfre for the report and initial patch and Tobias McNulty for the review.
2012-11-06Fixed #19246 - Updated SECURE_PROXY_SSL_HEADER example to use ↵Tim Graham
'X-Forwarded-Proto' Thanks Fred Palmer for the report.
2012-11-06Fixed #19254 -- Bug in SESSION_FILE_PATH handling.Aymeric Augustin
Thanks simonb for the report. Refs #18194.
2012-11-05Fixed #15591 - Clarified interaction between ModelForm and model validation.Tim Graham
2012-11-05Fixed #8627 -- Prevented textareas to swallow first newline contentClaude Paroz
Browsers consider the first newline in textareas as some display artifact, not real content. Hence they are not sending it back to the server. If we want to keep initial newlines, we have to add one when we render the textarea. Thanks bastih for the report and initial patch.
2012-11-05Removed unnecessary import after b98083ce3dClaude Paroz
2012-11-04Fixed py3 compatibility for 5a00a57aa591c766f5ee1d8c59b64618d74fe191Preston Holmes
2012-11-04Removed redundant docs addition across two commitsPreston Holmes
d5c3c45f2fdfee09d81ad8dc7b0db8338d6d0aae a70492e6b532905c921678f35b5c60b22387f1c6
2012-11-04Fixed #18949 -- Fix broken test interactions in ModelForms testsAnton I. Sipos
A test in Model Forms test was specifically referring to a fixed primary key, which was now being used up in a newly committed. This has been worked around by specifying a higher primary key.
2012-11-04Merge pull request #496 from pydanny/ticket_19241Bryan Veloso
Demonstrate how to round to integers using floatformat templatetag
2012-11-04Fixed #19241 -- Improved floatformat docsDaniel Greenfeld
Demonstrate how to round to integers using floatformat templatetag
2012-11-04Demonstrate how to round to integers using floatformat templatetagDaniel Greenfeld
2012-11-04Merge pull request #495 from aisipos/ticket_18949Alex Gaynor
Fixed #18949 -- Improve performance of model_to_dict with many-to-many
2012-11-04Fixed #18949 -- Improve performance of model_to_dict with many-to-manyAnton I. Sipos
When calling model_to_dict, improve performance of the generated SQL by using values_list to determine primary keys of many to many objects. Add a specific test for this function, test_model_to_dict_many_to_many Thanks to brian for the original report and suggested fix.
2012-11-04Fixed #19240 -- include pagination error details in ListView 404Preston Holmes
Thanks to seawolf for the patch
2012-11-04Corrected a typo that inadvertently made its way into the docs.Alex Gaynor