summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2013-11-03Fixed flake8 E251 violationsMilton Mazzarri
2013-11-03Whitespace fixAlex Gaynor
2013-11-03Re-expose Count hereAlex Gaynor
2013-11-03Fixed #14170 -- Reset i18n cache when settings changeBouke Haarsma
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-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-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-02Fixed all E261 warningscoagulant
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-02Fixed #21366 -- regression in join promotion logicAnssi Kääriäinen
The regression was caused by ecaba3602837d1e02fe1e961f7d3bf9086453259 and affected OR connected filters.
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 #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-01Improved resource limits handling in the kqueue autoreloader.Aymeric Augustin
Refs #21356. Thanks Loïc.
2013-10-31Fixed #15529 -- More permissive geojson syntax in constructorClaude Paroz
Thanks Wouter Klein Heerenbrink for the report.
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-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.
2013-10-30Fixed #9722 - used pyinotify as change detection system when availableUnai Zalakain
Used pyinotify (when available) to replace the "pool-every-one-second" mechanism in `django.utils.autoreload`. Thanks Chris Lamb and Pascal Hartig for work on the patch.
2013-10-30Auto-apply initial migrations if their tables exist already.Andrew Godwin
2013-10-30Fixed #21347 -- Added missing JS variable declaration.Tim Graham
Thanks szymon.barglowski at gmail.com for the report.
2013-10-30Fixed #20610: Added a message level dict to contrib.message context processor.Baptiste Mispelon
2013-10-30Fixed #21345: Don't evaluate callable settings in the debug page.Baptiste Mispelon
Thanks to crass for the report.
2013-10-29Fixed #8261 -- ModelAdmin hook for customising the "show on site" buttonUnai Zalakain
``ModelAdmin.view_on_site`` defines wether to show a link to the object on the admin detail page. If ``True``, cleverness (i.e. ``Model.get_absolute_url``) is used to get the url. If it's a callable, the callable is called with the object as the only parameter. If ``False``, not link is displayed. With the aim of maitaining backwards compatibility, ``True`` is the default.
2013-10-29Use `callable` instead of `six.callable`.Baptiste Mispelon
The `callable` builtin was added back in python 3.2 which is the minimal python3 version supported by django at this point.
2013-10-26Remove dsome import *Alex Gaynor
2013-10-26Fixed all the E203 violationsAlex Gaynor
2013-10-26Fixed #21335 -- Use importlib from python3 when using python3Andrey Antukh
2013-10-26Fixed up some more flake8 violations (this particular violation still has ↵Alex Gaynor
many occurrences in the tests/ dir so it can't be removed from setup.cfg yet)
2013-10-25Undelete the login() call inadvertantly removed in 4e0a2fe59cClaude Paroz
Refs #21271.