| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-09-19 | Revert "Fixed #16865 -- Made get_or_create use read database for initial get ↵ | Carl Meyer | |
| query." Thanks to Jeremy Dunck for pointing out the problem with this change. If in a single transaction, the master deletes a record and then get_or_creates a similar record, under the new behavior the get_or_create would find the record in the slave db and fail to re-create it, leaving the record nonexistent, which violates the contract of get_or_create that the record should always exist afterwards. We need to do everything against the master here in order to ensure correctness. This reverts commit 901af865505310a70dd02ea5b3becbf45819b652. | |||
| 2012-09-19 | Fixed #16865 -- Made get_or_create use read database for initial get query. | Carl Meyer | |
| Thanks Rick van Hattem for the report and trbs for the patch. | |||
| 2012-09-18 | Use unicode.translate to speed up js escaping. | Dave Hall | |
| 2012-09-18 | Fixed #18980 -- Fixed assertContains regression when passed an object | Jeremy Dunck | |
| 2012-09-18 | Fixed #18800 -- Support numbers bigger than max float in `numberformat`. | Florian Apolloner | |
| Thanks to jbvsmo for the patch and Brad Pitcher for the tests. | |||
| 2012-09-18 | Stylistic fixes: triple-quoted docstrings, more comments | Andrew Godwin | |
| 2012-09-17 | Fix bug in get_indexes affecting the tests | Andrew Godwin | |
| 2012-09-17 | Merge branch 'lotheac-fix_uploaded_file_exec' | Florian Apolloner | |
| 2012-09-17 | Fixed #18947 -- Don't make uploaded files executeable by default. | Florian Apolloner | |
| Thanks to Lauri Tirkkonen for the patch. | |||
| 2012-09-17 | More schema test fixing | Andrew Godwin | |
| 2012-09-17 | Added tests for d21f3d9b171a3cbff4c8ce7a9dbb8b8be3f21bac. | Florian Apolloner | |
| 2012-09-17 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/backends/mysql/base.py django/db/backends/postgresql_psycopg2/base.py | |||
| 2012-09-17 | Fix app loading/test interaction | Andrew Godwin | |
| 2012-09-17 | Only update `last_login` instead of the whole user object in ↵ | Florian Apolloner | |
| `update_last_login`. | |||
| 2012-09-16 | Fixed #17485 regression -- only + select_related interaction | Anssi Kääriäinen | |
| When doing deeper than one level select_related() + only queries(), the code introduced in b6c356b7bb97f3d6d4831b31e67868313bbbc090 errored incorrectly. Thanks to mrmachine for report & test case. | |||
| 2012-09-15 | Fixed #18530 -- Fixed a small regression in the admin filters where wrongly ↵ | Julien Phalip | |
| formatted dates passed as url parameters caused an unhandled ValidationError. Thanks to david for the report. | |||
| 2012-09-15 | Fixed #17948 -- Isolated auth tests from custom template loaders | Claude Paroz | |
| Thanks andrey@kostenko.name for the report. | |||
| 2012-09-15 | Used ST_AsText for testing PostGIS raw query | Claude Paroz | |
| AsText will not be supported in further versions of PostGIS (>=2). | |||
| 2012-09-13 | Merge pull request #364 from martey/ticket_18933 | Tim Graham | |
| Fixed #18933 - Fixes code example for cycle in docstring. | |||
| 2012-09-13 | Removed unused quoting/encoding in gis db backend | Claude Paroz | |
| 2012-09-13 | Fixed #18795 -- Fixed failing GeoDjango tests | Claude Paroz | |
| Proj.4 and SRS strings may slightly vary depending on the installed libraries. Made some tests pass again with recent Proj.4/GDAL lib versions. | |||
| 2012-09-12 | [py3] Fixed GeoDjango mutable list tests | Claude Paroz | |
| 2012-09-12 | Made minimal changes to make gis test suite start with Python 3 | Claude Paroz | |
| 2012-09-12 | Fixed test output check when password is blank | Claude Paroz | |
| 2012-09-12 | Fixed #18182 -- Made is_usable_password check if hashing algorithm is correct | Claude Paroz | |
| The display of the ReadOnlyPasswordHashWidget has also been improved to distinguish empty/unusable password from erroneous password. Fixed #18453 also. Thanks danielr and Leo for the reports and Moritz Sichert for the initial patch. | |||
| 2012-09-12 | Fixed #18790 -- Encoded database password on Python 2 | Claude Paroz | |
| Thanks thcourbon@gmail.com for the report. | |||
| 2012-09-10 | Document and test 'type' usage in Widget attrs | Claude Paroz | |
| Refs #16630. | |||
| 2012-09-10 | fixed rfc comment typo in middleware/csrf.py | Collin Anderson | |
| 2012-09-10 | Fixed #18611 -- Display current date/time when running runserver | Mike Grouchy | |
| 2012-09-09 | Fix an HTML-parser test that's failed in Python 2.6.8 since 5c79dd58. | Carl Meyer | |
| The problem description in #18239 asserted that http://bugs.python.org/issue670664 was fixed in Python 2.6.8, but based on http://bugs.python.org/issue670664#msg146770 it appears that's not correct; the fix was only applied in 2.7, 3.2, and Python trunk. Therefore we must use our patched HTMLParser subclass in all Python 2.6 versions. | |||
| 2012-09-09 | Fix Python 3 test failure introduced in a78dd109. | Carl Meyer | |
| 2012-09-09 | Replace nested try/finally try/except with try/except/finally. | Florian Apolloner | |
| 2012-09-09 | Fixes #18933. Fixes code example in docstring. | Martey Dodoo | |
| Makes code example of silent keyword docstring in cycle templatetag method the same as in the documentation. | |||
| 2012-09-08 | Adjust d7853c5 to not show ignorable warnings when running tests. | Malcolm Tredinnick | |
| 2012-09-08 | Internal refactoring; moving LOOKUP_SEP up one level. | Malcolm Tredinnick | |
| In an ideal world, nothing except django.db.models.query should have to import stuff from django.models.sql.*. A few things were needing to get hold of sql.constants.LOOKUP_SEP, so this commit moves it up to django.db.models.constants.LOOKUP_SEP. There are still a couple of places (admin) poking into sql.* to get QUERY_TERMS, which is unfortunate, but a slightly different issue and harder to adjust. | |||
| 2012-09-08 | Fixed #15552 -- LOGIN_URL and LOGIN_REDIRECT_URL can take URLpattern names. | Carl Meyer | |
| Thanks UloPe and Eric Florenzano for the patch, and Malcolm Tredinnick for review. | |||
| 2012-09-08 | Remove a couple unused imports. | Carl Meyer | |
| 2012-09-08 | Fixed #18545 -- Make the 'no DJANGO_SETTINGS_MODULE' error message more ↵ | Carl Meyer | |
| useful.Thanks Nick Coghlan for the report, and Malcolm Tredinnick for review. | |||
| 2012-09-08 | Removed warning check in test_load_overlong_key | Claude Paroz | |
| Some backends issue a warning here, others not. This is not the primary goal of the test, so the assertion about the warning has been removed. Thanks Carl Meyer for noticing the issue and suggesting the fix. | |||
| 2012-09-08 | Moved the admin inline JS to new JS files for cleanliness. | Travis Swicegood | |
| 2012-09-08 | Updated docs for dates generic views. | Aymeric Augustin | |
| Fixes #18245. Refs #3542. | |||
| 2012-09-08 | Fixed #18054 -- Deprecated contrib.markup. Thanks to simukis for the initial ↵ | Preston Holmes | |
| patch. | |||
| 2012-09-08 | Remove Admin's swallowing of AttributeError (#16655, #18593, #18747) | Travis Swicegood | |
| During the new-admin changes, catching of AttributeError was added to the admin. This patch removes that as it's no longer possible to add a value to a ModelAdmin that is not available. Adding an attribute that can not be called causes an ImproperlyConfigured exception to be raised. | |||
| 2012-09-08 | Moved get_primary_key_column implementation to base | Claude Paroz | |
| Refs #17574. | |||
| 2012-09-07 | Fixed #18781 -- Reduced max session cookie size. | Aymeric Augustin | |
| 2012-09-07 | Fixed #18916 -- Allowed non-ASCII headers. | Aymeric Augustin | |
| Thanks Malcolm Tredinnick for the review. | |||
| 2012-09-07 | Fixed #12397 -- allow safe_join to work with the root file system path, ↵ | Alex Gaynor | |
| which means you can have your root template or file upload path at this location. You almost certainly don't want to do this, except in *very* limited sandboxed situations. | |||
| 2012-09-07 | Stubbed-out oracle schema file | Andrew Godwin | |
| 2012-09-07 | Very initial Oracle support | Andrew Godwin | |
| 2012-09-07 | Merge branch 'master' into schema-alteration | Andrew Godwin | |
