summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-10-30Fixed some flake8 issuesAlex Gaynor
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 #21306 -- Documented lower-casing behavior of title filter.Tim Graham
2013-10-30Fixed #21294 -- Clarified the logout next_page argument.Tim Graham
Thanks wim at go2people.nl for the report.
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-30Documented the limitation on sep argument to SignerAntoine Catton
Co-Authored-By: Gavin Wahl <gwahl@fusionbox.com>
2013-10-30Fixed #21316 -- Documented that modifying safe strings makes them unsafe.Tim Graham
Thanks dev@simon.net.nz for the suggestion and vijay_shanker for the patch.
2013-10-30Documented removal of django.core.servers.basehttp.WSGIServerExceptionTim Graham
refs 2ca00faa913754cd5860f6e1f23c8da2529c691a
2013-10-30Added some more tests for the debug page.Baptiste Mispelon
* Missing tests for ticket #12744 * Tests for the cleanse_setting feature (leaving out sensitive settings from the debug page)
2013-10-30Fixed #21345: Don't evaluate callable settings in the debug page.Baptiste Mispelon
Thanks to crass for the report.
2013-10-29Fixed a F811 warning introduced by 35db9d58d6.Simon Charette
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-29Mark this as a python code-blockAlex Gaynor
2013-10-28Fixed #21344 -- Typo in docs/ref/models/queries.txtTim Graham
2013-10-28Rearranged some i18n testsClaude Paroz
Compilation/extraction tests are now properly skipped when gettext commands are unavailable.
2013-10-27Rearranged some file-related testsClaude Paroz
Just moving around some tests to be more logically grouped.
2013-10-27Fixed test that reads a migration file from disk.Ramiro Morales
We need to make sure content read from the file is decoded from UTF-8 right from the start so Python doesn't try to use another encoding (read: ASCII/CP1252 under Windows.)
2013-10-27Merge pull request #1818 from ericholscher/small-doc-fixAlex Gaynor
Fix note syntax usage.
2013-10-27Fix note syntax usage.Eric Holscher
http://sphinx.readthedocs.org/en/latest/markup/para.html?highlight=note#directive-note
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-26Fix all violators of E231Alex Gaynor
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-25Fixed #21325 -- Added missing argument to permission_required decorator.Tim Graham
2013-10-25Fixed typo in docs/releases/1.4.9.txt.Paolo Melchiorre
2013-10-25Undelete the login() call inadvertantly removed in 4e0a2fe59cClaude Paroz
Refs #21271.
2013-10-24Fixed doc typo in previous commit.Tim Graham
2013-10-24Fixed #21271 -- Added timeout parameter to SMTP EmailBackend.SusanTan
Thanks Tobias McNulty and Tim Graham for discussions and code review. Thanks Andre Cruz the suggestion and initial patch.
2013-10-24Fixed #21219 -- Added a way to set different permission for static files.Vajrasky Kok
Previously, when collecting static files, the files would receive permission from FILE_UPLOAD_PERMISSIONS. Now, there's an option to give different permission from uploaded files permission by subclassing any of the static files storage classes and setting the file_permissions_mode parameter. Thanks dblack at atlassian.com for the suggestion.
2013-10-24Fixed #20338 -- Stripped ending dot during host validationClaude Paroz
Thanks manfre for the report and Timo Graham for the review.
2013-10-24Fixed #21227 -- Added workaround for selenium test failuresKevin Christopher Henry
Added a refresh() before quit() in the selenium tests, since this solves the problem of spurious test failures in some environments.
2013-10-24Fixed #21299 - Changed filters from title to capfirst on admin inline formsets.Renato Oliveira
Previously there was a mixture of the two which resulted in inconsistent casing.
2013-10-24Start attacking E231 violationsAlex Gaynor
2013-10-24Added missing newline in docstring; refs #20945.Tim Graham
2013-10-23Fixed #20945 -- Allowed cache tag to use a specific cache.Curtis Maloney
2013-10-23Bumped release date for 1.5.5 & 1.4.9.Tim Graham
2013-10-23Fixed #19941 -- Removed sys.path hack when running the test suite.Tim Graham
Thanks jezdez for the suggestion.
2013-10-23Fix migration planner to fully understand squashed migrations. And test.Andrew Godwin
2013-10-23Fixed #12027 -- Fixed EmailValidator to reject a trailing dot.Tim Graham
Thanks Klas H for the report and claudep for the patch.
2013-10-23Merge pull request #1801 from collinanderson/patch-10Alex Gaynor
typo in 1.7 release notes
2013-10-23typo on 1.7 release notesCollin Anderson
2013-10-23Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol
2013-10-23Fixed #13245: Explained Oracle's behavior w.r.t db_tableShai Berger
and how to prevent table-name truncation Thanks russellm & timo for discussion, and timo for review.
2013-10-23Workaround admin scripts test failures on Windows+Python 3.Ramiro Morales
Change strategy used to examine instrumented output to acommodate the fact that on Windows, where the path separator is '\', repr() of Python modules has changed in Python 3 to use escaped backslashes in the FS path section (e.g. 'C:\\python3x\\Lib\\site-packages\\django\\contrib\\auth\\models.py') without having to special-case based on platform.
2013-10-23Fixed E225 pep8 warnings.Tim Graham
2013-10-22Fixed #21307 -- Moved TransRealMixin to django.test.utils.Ramiro Morales