| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-09 | Fixed #21844: Move quote_parameter off of Operations and rename | Andrew Godwin | |
| 2014-02-09 | Fixed #21482 -- Uplifted restriction of collectstatic using symlink option ↵ | Jannis Leidel | |
| in Windows NT 6. Original patch by Vajrasky Kok. Reviewed by Florian Apolloner, Aymeric Augustin. | |||
| 2014-02-09 | Fixed #21842: Remove redundant DatabaseFeatures.max_index_name_length | Andrew Godwin | |
| 2014-02-09 | Fixed #21969: Fix behaviour of initial_data with migrated apps | Andrew Godwin | |
| 2014-02-09 | Raise (pending) deprecation warning for allow_syncdb. | Marc Tamlyn | |
| 2014-02-09 | Fixed #21968: Bad detection of old-style apps to add initial migration | Andrew Godwin | |
| 2014-02-09 | Fixed #21967: Added check for object in ModelFormMixin.get_form_kwargs. | Ryan Kaskel | |
| Thanks lagovas.lagovas at gmail.com for the report. | |||
| 2014-02-09 | Fixed #21247 -- Made method_decorator play nicely with descriptors | Marc Tamlyn | |
| When a method decorator was used in conjunction with a decorator implemented as a descriptor, method_decorator did not correctly respect the method binding. Thanks for Graham Dumpleton for the report and initial patch. | |||
| 2014-02-09 | Fixed #21954: Raise nice error when serializing datetimes with timezones | Andrew Godwin | |
| 2014-02-09 | Removed unused imports + other flake8 fixes. | Tim Graham | |
| 2014-02-09 | Fixed #21917: Overly cautious SQLite3 backend for null fields + defaults | Andrew Godwin | |
| 2014-02-09 | Fixed inaccuracies in generic mixins documentation. | Baptiste Mispelon | |
| 2014-02-09 | Fixed #21892: RunPython no longer accepts strings | Andrew Godwin | |
| 2014-02-09 | Merge pull request #2244 from mlavin/21856-migration-checks | Andrew Godwin | |
| Fixed #21856: Allow Empty DATABASES Setting | |||
| 2014-02-09 | Merge pull request #1997 from dpwrussell/method_decorator_args_fix | Marc Tamlyn | |
| Used available_attrs in method_decorator | |||
| 2014-02-09 | Replace _parse_content_type with cgi.parse_header | Curtis | |
| 2014-02-08 | Fixed #19373 -- Ported Windows file locking from PyWin32 to ctypes | Kevin Christopher Henry | |
| There wasn't any file locking under Windows unless PyWin32 was installed. This removes that (undocumented) dependency by using ctypes instead. Thanks to Anatoly Techtonik for writing the ctypes port upon which this is based. | |||
| 2014-02-08 | Fixed #21959 -- Handled Inf/NaN in widthratio tag. | Aymeric Augustin | |
| Thanks rmoe for the report and the patch. | |||
| 2014-02-08 | Fixed #21674 -- Deprecated the import_by_path() function in favor of ↵ | Berker Peksag | |
| import_string(). Thanks Aymeric Augustin for the suggestion and review. | |||
| 2014-02-08 | Adding tests for check_migrations. | mlavin | |
| 2014-02-08 | Remove check_migrations from the runserver command and use the new checks ↵ | mlavin | |
| framework to check for unapplied migrations. Don't check for migrations if the DATABASES setting is empty. | |||
| 2014-02-08 | Removed extra backquote in field docs | Claude Paroz | |
| 2014-02-08 | Allowed more easily subclassing of BlockNode tags. | Mitar | |
| 2014-02-08 | Fixed #21237 -- Added Australian English (en_AU) to locale conf | Tom Fifield | |
| Adds Australian English (en_AU) to locale conf, which differs from American English in date formatting and spelling, and continues to diverge from British English in spelling (and first-day-of-week according to the current en_GB locale format.py). The transifex language project to match this patch has been requested. | |||
| 2014-02-08 | Added tests for LocalMemCache deadlocks. refs #20613 and refs #18541. | Tim Graham | |
| Thanks Zach Smith for the patch. | |||
| 2014-02-08 | Fixed #21417 -- Expanded TEMPLATE_STRING_IF_INVALID in blocktrans | Claude Paroz | |
| Thanks keturn for the reporti, Chris Medrela for details and Tim Graham for the review. Refs #19915. | |||
| 2014-02-08 | Fixed #16192 -- Made unique error messages in ModelForm customizable. | Loic Bistuer | |
| Overriding the error messages now works for both unique fields, unique_together and unique_for_date. This patch changed the overriding logic to allow customizing NON_FIELD_ERRORS since previously only fields' errors were customizable. Refs #20199. Thanks leahculver for the suggestion. | |||
| 2014-02-07 | Fixed #21518 -- Made override_settings(ROOT_URLCONF) clear the resolver cache. | Chris Wilson | |
| Thanks Aymeric Augustin and Simon Charette for reviews. | |||
| 2014-02-06 | Bumped version number for 1.7a21.7a2 | Jacob Kaplan-Moss | |
| 2014-02-06 | Updated 1.6.2 release notes for release (and linkified tickets). | Jacob Kaplan-Moss | |
| 2014-02-06 | Fixed #17713 -- Renamed BaseDatabaseFeatures.allows_primary_key_0 to ↵ | Vajrasky Kok | |
| allows_auto_pk_0. MySQL does allow primary key with value 0. It only forbids autoincrement primary key with value 0. Thanks Claude Paroz for the report. | |||
| 2014-02-06 | Fixed #17005 -- Added CurrentSiteMiddleware to set the current site on each ↵ | Christopher Medrela | |
| request. Thanks jordan at aace.org for the suggestion. | |||
| 2014-02-06 | Fixed #21731 -- Made javascript_quote escapes '</'. | Vajrasky Kok | |
| 2014-02-05 | Added missing items to 1.6.2 release notes. | Tim Graham | |
| 2014-02-05 | Extended the release notes for chainable Manager/QuerySet methods. | Loic Bistuer | |
| Refs #20625. | |||
| 2014-02-05 | Removed import which is now unused | Alex Gaynor | |
| 2014-02-05 | Added previous commit to 1.6.2 release notes. | Baptiste Mispelon | |
| 2014-02-05 | Revert "Fixed #20296 -- Allowed SafeData and EscapeData to be lazy" | Baptiste Mispelon | |
| This reverts commit 2ee447fb5f8974b432d3dd421af9a242215aea44. That commit introduced a regression (#21882) and didn't really do what it was supposed to: while it did delay the evaluation of lazy objects passed to mark_safe(), they weren't actually marked as such so they could end up being escaped twice. Refs #21882. | |||
| 2014-02-05 | Fixed ImportError when running contrib.gis tests without libgeos installed. | Baptiste Mispelon | |
| 2014-02-05 | Fixed gendered examples in the docs. | Loic Bistuer | |
| 2014-02-05 | Simplified signal code. | Florian Apolloner | |
| Refs #21952 | |||
| 2014-02-05 | Fixed #21952 -- signals deadlock due to locking + weakref interaction | Anssi Kääriäinen | |
| 2014-02-05 | Fix pep8 violation in migration template. | Marc Tamlyn | |
| 2014-02-04 | Removed two imports which are now unused | Alex Gaynor | |
| 2014-02-04 | Fixed #21929 - Fixed test regression on Windows. | Carl Meyer | |
| Thanks Michael Manfre for the report. | |||
| 2014-02-04 | Removed the this_is_the_login_form hack | Claude Paroz | |
| Refs #21911. Now that we have a more traditional login form, we don't need any more a special field telling us we are dealing with the login form. | |||
| 2014-02-04 | Fixed #21911 -- Made admin views redirect to login when needed | Claude Paroz | |
| Historically, the Django admin used to pass through the request from an unauthorized access to the login view directly. Now we are using a proper redirection, which is also preventing inadvertantly changing data when POSTing login data to an admin view when user is already authorized. Thanks Marc Tamlyn and Tim Graham for the reviews. | |||
| 2014-02-04 | Made staff_member_required redirect to login | Claude Paroz | |
| Refs #21911. | |||
| 2014-02-04 | Fixed #21748 -- join promotion for negated AND conditions | Anssi Kääriäinen | |
| Made sure Django treats case .filter(NOT (a AND b)) the same way as .filter((NOT a OR NOT b)) for join promotion. | |||
| 2014-02-04 | Made some PEP8 fixes in docs/ref/forms/widgets.txt | Tim Graham | |
| Thanks Siecje. | |||
