summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-02PEP8 cleanupJason Myers
Signed-off-by: Jason Myers <jason@jasonamyers.com>
2013-11-02Fixed the remaining E302 violations int eh django packageAlex Gaynor
2013-11-02Checkout prior commit of _doctest.pyRay Ashman Jr
2013-11-02Revert change to django/test/_doctest.pyRay Ashman Jr
2013-11-02Correct flake8 E302 violationsRay Ashman Jr
2013-11-02PEP8Jason Myers
Signed-off-by: Jason Myers <jason@jasonamyers.com>
2013-11-02Fixed all E261 warningscoagulant
2013-11-02Fixing E302 ErrorsJason Myers
Signed-off-by: Jason Myers <jason@jasonamyers.com>
2013-11-02Fixed the remaining E302 violations int eh django packageAlex Gaynor
2013-11-02Merge pull request #1854 from rayashmanjr/masterAlex Gaynor
Correct flake8 E302 violations
2013-11-02Checkout prior commit of _doctest.pyRay Ashman Jr
2013-11-02Revert change to django/test/_doctest.pyRay Ashman Jr
2013-11-02Fixed failing test around DST change.Loic Bistuer
The timezone arithmetic done in JS can be off by one hour around DST change. We work around this issue by adding one extra hour to the test error margin when we detect a DST change is near. Refs #20663.
2013-11-02Correct flake8 E302 violationsRay Ashman Jr
2013-11-02Fixed all E261 warningscoagulant
2013-11-02Fixed syntax error in queries/tests.pyAnssi Kääriäinen
2013-11-02Fixed #14511 -- bug in .exclude() queryAnssi Kääriäinen
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-11-02Merge pull request #1849 from brabadu/masterAlex Gaynor
Fixed flake8 E241
2013-11-02Replaced a hardcoded "2" with the right named constantAlex Gaynor
2013-11-02Fixed flake8 E241Boryslav Larin
2013-11-02Merge pull request #1848 from rayashmanjr/masterAlex Gaynor
Correct flake8 violation E261
2013-11-02Correct flake8 violation E261Ray Ashman Jr
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-11-02Fixed #21375 -- related_name='+' clashed with other '+' namesAnssi Kääriäinen
2013-11-02Merge pull request #1847 from Bouke/docs/djangoAlex Gaynor
Django should be capitalized in text
2013-11-02Django should be capitalized in textBouke Haarsma
2013-11-02Fixed #21366 -- regression in join promotion logicAnssi Kääriäinen
The regression was caused by ecaba3602837d1e02fe1e961f7d3bf9086453259 and affected OR connected filters.
2013-11-02Fixed #21373 -- Typo fixed in i18n docsClaude Paroz
Thanks rpq at winscores.com for the report.
2013-11-02Fixed #21341 -- Eased https requests with the test clientUnai Zalakain
All request methods of ``django.test.client.Client`` receive a ``secure`` argument that defaults to ``False`` indicating whether or not to make the request through https. Thanks Aymeric Augustin for the review.
2013-11-02Continue to attack E302 violationsAlex Gaynor
2013-11-02Merge pull request #1799 from Bouke/tickets/9523Aymeric Augustin
Fixed #9523 -- Restart runserver after translation MO files change
2013-11-02Fixed #21354 -- Documented contrib.redirects defaults to 301 redirectsBouke Haarsma
Thanks glarrain for the suggestion.
2013-11-02Fixed #21324 -- Translate CSRF failure viewBouke Haarsma
Thanks to Claude Paroz for the original patch.
2013-11-02Fixed #9523 -- Restart runserver after translation MO files changeBouke Haarsma
Thanks to Krzysztof Kulewski for the initial patch.
2013-11-01Fixed spelling ("dependant" -> "dependent")Tim Graham
Dependent means reliant on. A dependant is a person like a child or spouse. Thanks Andrew Wilcox for the report.
2013-11-01Merge pull request #1839 from sbellem/small-typo-fixTim Graham
Fixed typo -- "a" user, not "an" user
2013-11-01Fixed typo -- "a" user, not "an" userSylvain Bellemare
2013-11-01Fixed #21364 -- Specified InnoDB full-text support from MySQL 5.6.4 onClaude Paroz
Thanks thevlad at gmail.com for the report.
2013-11-01Fixed #21359 -- Corrected MySQL collation name in databases docsClaude Paroz
Thanks k_sze for the report.
2013-11-01Improved resource limits handling in the kqueue autoreloader.Aymeric Augustin
Refs #21356. Thanks Loïc.
2013-10-31Fixed #18508 -- tests for repeated deletion bug in ModelFormSetOle Laursen
The ticket's issue was already fixed by patch for #14877.
2013-10-31Fixed #15529 -- More permissive geojson syntax in constructorClaude Paroz
Thanks Wouter Klein Heerenbrink for the report.
2013-10-31Fixed #21339 -- Documented removal of some form field error messagesClaude Paroz
2013-10-31Started attackign the next flake8 violationAlex Gaynor
2013-10-31Merge pull request #1830 from aaugustin/instant-reload-os-xAymeric Augustin
Add instant autoreload on platforms supporting kqueue. Fix #21356.
2013-10-31Reduce the set of events that trigger a reload.Aymeric Augustin
This seems to avoid multiple reloads.
2013-10-30Add instant autoreload on platforms supporting kqueue.Aymeric Augustin
2013-10-30Merge pull request #1829 from akaariai/ticket_14877Anssi Kääriäinen
Fixed #14877 -- repeated deletion using formsets Reviewed by Loic Bistuer
2013-10-30Fixed #14877 -- repeated deletion using formsetsAnssi Kääriäinen
When a formset contained deletion for an existing instance, and the instance was already deleted, django threw an exception. A common cause for this was resubmit of the formset. Original patch by Trac alias olau. In addition this commit cleaned some code in _construct_form(). This was needed as the primary key value the user submitted wasn't converted correctly to python value in case the primary key field was also a related field.