| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-10-24 | Fixed #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-24 | Fixed #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-24 | Fixed #20338 -- Stripped ending dot during host validation | Claude Paroz | |
| Thanks manfre for the report and Timo Graham for the review. | |||
| 2013-10-24 | Fixed #21227 -- Added workaround for selenium test failures | Kevin 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-24 | Fixed #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-24 | Start attacking E231 violations | Alex Gaynor | |
| 2013-10-24 | Added missing newline in docstring; refs #20945. | Tim Graham | |
| 2013-10-23 | Fixed #20945 -- Allowed cache tag to use a specific cache. | Curtis Maloney | |
| 2013-10-23 | Fix migration planner to fully understand squashed migrations. And test. | Andrew Godwin | |
| 2013-10-23 | Fixed #12027 -- Fixed EmailValidator to reject a trailing dot. | Tim Graham | |
| Thanks Klas H for the report and claudep for the patch. | |||
| 2013-10-23 | Fixed #21298 -- Fixed E301 pep8 warnings | Alasdair Nicol | |
| 2013-10-23 | Fixed E225 pep8 warnings. | Tim Graham | |
| 2013-10-22 | Fixed #21307 -- Moved TransRealMixin to django.test.utils. | Ramiro Morales | |
| 2013-10-22 | Fixed #17027 -- Added support for the power operator in F expressions. | Florian Hahn | |
| Thanks dan at dlo.me for the initial patch. - Added __pow__ and __rpow__ to ExpressionNode - Added oracle and mysql specific power expressions - Added used-defined power function for sqlite | |||
| 2013-10-22 | Fixed E221 pep8 warnings. | Tim Graham | |
| 2013-10-22 | Fixed #5789 -- Changed LocaleMiddleware session variable to '_language'. | Bouke Haarsma | |
| The old 'django_language' variable will still be read from in order to migrate users. The backwards-compatability shim will be removed in Django 1.8. Thanks to jdunck for the report and stugots for the initial patch. | |||
| 2013-10-22 | Removed import * in tests. | Tim Graham | |
| Thanks to flake8 path/to/file.py | awk -F ' ' '{ print $5 }' | sort | uniq | |||
| 2013-10-22 | Decode from UTF-8 explicitly when reading a text file in makemessages. | Ramiro Morales | |
| This shows itself with Python 3 under Windows where UTF-8 usually isn't the default file I/O encoding and caused one failure and three errors in our test suite under that platform setup. | |||
| 2013-10-21 | Fixed #19724 -- Output note when showing only core management commands | Claude Paroz | |
| When listing available management commands, only core commands are listed if settings have any error. This commit adds a note in this case so errors are not totally silently skipped. Thanks Peter Davis for the report. | |||
| 2013-10-21 | Fixed #21249 -- variable name typo in compiler.get_grouping() | Anssi Kääriäinen | |
| The typo could have consequences in exceptional cases, but I didn't figure out a way to actually produce such a case, so not tests. Report & patch by Michael Manfre. | |||
| 2013-10-21 | Fixed #21275 -- Fixed a serializer error when generating migrations for ↵ | Loic Bistuer | |
| contrib.auth. The migration serializer now looks for a deconstruct method on any object. | |||
| 2013-10-21 | Force update of the password on iteration count changes. | Florian Apolloner | |
| 2013-10-21 | Fixed #21253 -- PBKDF2 with cached HMAC key | Florian Apolloner | |
| This gives a 2x speed increase compared to the existing implementation. Thanks to Steve Thomas for the initial patch and Tim Graham for finishing it. | |||
| 2013-10-21 | Fixed E227 pep8 warnings | Tim Graham | |
| 2013-10-21 | Fixed #21288 -- Fixed E126 pep8 warnings | Alasdair Nicol | |
| 2013-10-19 | Added support for serializing class methods. - Refs #21290. | Loic Bistuer | |
| The new handling allows us to do away with the whitelisting that was required to support date and datetime objects. | |||
| 2013-10-19 | Fixed #21283 -- Added support for migrations if models is a package. | Loic Bistuer | |
| Thanks Markus Holtermann for the report. | |||
| 2013-10-19 | Fixed #21291 -- Ensured inactive users cannot reset their passwords | Claude Paroz | |
| Thanks kz26 for the report and the suggested fix. Refs #19758. | |||
| 2013-10-19 | Cleaned formatting/comments in PasswordResetFormTest | Claude Paroz | |
| 2013-10-18 | Fixed bug causing CSRF token not to rotate on login. | Tim Graham | |
| Thanks Gavin McQuillan for the report. | |||
| 2013-10-18 | Fixed #21287 -- Fixed E123 pep8 warnings | Alasdair Nicol | |
| 2013-10-18 | Fixed #21268 -- Fixed E303 pep8 warnings | Alasdair Nicol | |
| 2013-10-18 | Fixed #21267 -- Fixed E502 pep8 warnings | Alasdair Nicol | |
| 2013-10-17 | Fixed #21285 -- Fixed E121,E122 pep8 warnings | Alasdair Nicol | |
| 2013-10-17 | Fixed #21259 -- Fixed formstools wizard for InlineFormSet. | Kathryn Killebrew | |
| 2013-10-17 | Removed importing formtools tests in __init__.py | Tim Graham | |
| Unnecessary since introduction of DiscoveryTestRunner in 9012833af8. | |||
| 2013-10-17 | Fixed #21284 -- Prevented KeyError swallowing in fetch_command | Claude Paroz | |
| Thanks wildfire for the report. | |||
| 2013-10-17 | Fixed #21282 -- Made HttpResponse.serialize_headers accept latin-1 | Claude Paroz | |
| Thanks Raphaël Barrois for the report and the initial patch and Aymeric Augustin for the review. | |||
| 2013-10-17 | Removed F.__deepcopy__() | Anssi Kääriäinen | |
| The method didn't change standard __deepcopy__ in any way. | |||
| 2013-10-17 | Fixed #18659 -- Deprecated request.REQUEST and MergeDict | Bouke Haarsma | |
| Thanks Aymeric Augustin for the suggestion. | |||
| 2013-10-17 | Remove some unnecesary uses of bool | Alex Gaynor | |
| 2013-10-17 | Fixed #21280 -- Don't generate empty migration files | Javed Khan | |
| 2013-10-17 | Removed some dead code and simplified some other ocde | Alex Gaynor | |
| 2013-10-17 | Fixed #21270 -- Fixed E701 pep8 warnings | Alasdair Nicol | |
| 2013-10-16 | Add get_migratable_models util method to ConnectionRouter | Claude Paroz | |
| 2013-10-16 | Fixed #19657 -- Made sql commands honor allow_migrate | Claude Paroz | |
| Thanks Manel Clos for the report and the initial patch, and Marc Tamlyn and Tim Graham for the review. | |||
| 2013-10-16 | Avoided hardcoding Permission.name max_length | Tim Graham | |
| refs #18866. | |||
| 2013-10-16 | Fixed #7551 -- Made GFK allow None init argument. | Bouke Haarsma | |
| Thanks SamBull for the report. | |||
| 2013-10-16 | First pass on squashmigrations command; files are right, execution not. | Andrew Godwin | |
| 2013-10-16 | Improve migration optimizer to be able to optimize through other ops | Andrew Godwin | |
