| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-11-10 | Fixed typo in tutorial 2; refs #21418. | Tim Graham | |
| 2013-11-09 | Fixed #21372 -- Corrected docs regarding translating LANGUAGES. | Bernardo Pires | |
| Corrected LANGUAGES documentation on how to translate language names. Now using django.utils.translation.ugettext_lazy instead of a dummy gettext() function. Thanks to Salvatore for the report. | |||
| 2013-11-09 | Fixed #14800 -- Suppressed WSGIRequestHandler message filtering | Claude Paroz | |
| Filtering out static file requests in runserver has been judged arbitrary and can hide some debugging-related activity. Thanks Roy Smith for the report and Aymeric Augustin for the review. | |||
| 2013-11-09 | Fixed spelling of compatibility. | Tim Graham | |
| 2013-11-09 | Fixed #21398 -- Fixed BCryptSHA256PasswordHasher with py-bcrypt and Python 3. | Tim Graham | |
| Thanks arjan at anymore.nl for the report. | |||
| 2013-11-09 | Fixed doc typo. | Tim Graham | |
| 2013-11-09 | Fixed versionadded misuse in the admin documentation. | Baptiste Mispelon | |
| 2013-11-09 | Fixed #21378 -- Updated tutorial02 for how to override admin site header. | Vajrasky Kok | |
| 2013-11-09 | Recommended flake8 to check coding style. | Tim Graham | |
| 2013-11-09 | Fixed #16969 -- Don't connect to named database when possible | Claude Paroz | |
| Thanks Andreas Pelme for the report and initial patch, and Aymeric Augustin, Shai Berger and Tim Graham for the reviews. | |||
| 2013-11-08 | Noted that .clear() will delete intermediary models | Cody Scott | |
| 2013-11-08 | Fixed docs for EmailMessage extra_headers attribute | Tom Scholl | |
| The EmailMessage documentation describes the initialization parameters and states they 'can be set at any time prior to calling the send() method.'. However, the 'headers' parameter's corresponding attribute is called 'extra_headers'. | |||
| 2013-11-08 | Added missing parameter in npgettext_lazy docs | glts | |
| 2013-11-08 | Fixed #13970 -- Made SelectDateWidget use the standard widget is_required ↵ | Claude Paroz | |
| attribute Thanks mitar for the report and Tim Graham for the review. | |||
| 2013-11-08 | Removed obsolete locale restriction admonition | Claude Paroz | |
| Refs #14461. Thanks Ramiro Morales for pointing this. | |||
| 2013-11-08 | Fixed #21396: Document backwards-incompatible change in ↵ | Baptiste Mispelon | |
| RedirectView.get_redirect_url. Thanks to Tim for the review. | |||
| 2013-11-08 | Fixed #5849 -- Strip whitespace from blocktrans | Bouke Haarsma | |
| Add the trimmed option to the blocktrans tag to trim any newlines and whitespace from its content. This allows the developer to indent the blocktrans tag without adding new lines and whitespace to the msgid in the PO file. Thanks to mpessas for the initial patch and Dmitri Fedortchenko for the report. | |||
| 2013-11-07 | Merge pull request #1850 from unaizalakain/ticket_13725 | Anssi Kääriäinen | |
| Fixed #13725 -- take url scheme into account in assertRedirects Thanks to Loic for review. | |||
| 2013-11-07 | Fixed #13725 -- take url scheme into account in assertRedirects | Unai Zalakain | |
| Scheme is handled correctly when making comparisons between two URLs. If there isn't any scheme specified in the location where we are redirected to, the original request's scheme is used. If present, the scheme in ``expected_url`` is the one used to make the comparations to. | |||
| 2013-11-07 | Added 1.4.10 release notes. | Tim Graham | |
| 2013-11-07 | Removed no longer relevant word | Sylvain Bellemare | |
| 2013-11-07 | Fixed #20536 -- rewrite of the file based cache backend | Jaap Roes | |
| * Safer for use in multiprocess environments * Better random culling * Cache files use less disk space * Safer delete behavior Also fixed #15806, fixed #15825. | |||
| 2013-11-07 | Added more items to the release checklist. | Baptiste Mispelon | |
| 2013-11-07 | Fixed #17001 -- Custom querysets for prefetch_related. | Loic Bistuer | |
| This patch introduces the Prefetch object which allows customizing prefetch operations. This enables things like filtering prefetched relations, calling select_related from a prefetched relation, or prefetching the same relation multiple times with different querysets. When a Prefetch instance specifies a to_attr argument, the result is stored in a list rather than a QuerySet. This has the fortunate consequence of being significantly faster. The preformance improvement is due to the fact that we save the costly creation of a QuerySet instance. Thanks @akaariai for the original patch and @bmispelon and @timgraham for the reviews. | |||
| 2013-11-07 | 1.6 isn't under development any more. | Aymeric Augustin | |
| Partial forward port of a71ff76 from stable/1.6.x. | |||
| 2013-11-06 | Added missing info to the release checklist. | Baptiste Mispelon | |
| 2013-11-06 | Fixed typos in documentation. | Baptiste Mispelon | |
| 2013-11-06 | Fixed another typo introduced by b914991b3705cb6c91013d962c55cda9deb18d83. | Baptiste Mispelon | |
| Thanks Claude for catching it. | |||
| 2013-11-05 | Fixed a documentation typo introduced by b914991b37. | Simon Charette | |
| 2013-11-06 | Added more tests and documentation for dictsort. | Baptiste Mispelon | |
| It's possible to use something like {{ foo|dictsort:'bar.baz' }} but this wasn't tested or documented. | |||
| 2013-11-05 | Improved English in release notes for runserver. | Aymeric Augustin | |
| Thanks Tim. | |||
| 2013-11-05 | Fixed #18419 -- Full backwards compatibility for old language codes | Bouke Haarsma | |
| Improved documentation about zh-* deprecation and upgrade path. Thanks to Baptiste Mispelon for the code reviews. | |||
| 2013-11-04 | Improved changelog for runserver in 1.7. | Aymeric Augustin | |
| 2013-11-04 | Fixed #18149 -- Changed language codes for Chinese | Bouke Haarsma | |
| Language codes for Chinese are zh_Hans (Simplified) and zh_Hant (Traditional). Added support for browsers that still send the deprecated language codes. Thanks to Olli Wang for the report. | |||
| 2013-11-03 | Fixed all E226 violations | Alex Gaynor | |
| 2013-11-02 | Fixed the remaining E302 violations int eh django package | Alex Gaynor | |
| 2013-11-02 | Fixed all E261 warnings | coagulant | |
| 2013-11-02 | Fixed flake8 E241 | Boryslav Larin | |
| 2013-11-02 | Django should be capitalized in text | Bouke Haarsma | |
| 2013-11-02 | Fixed #21373 -- Typo fixed in i18n docs | Claude Paroz | |
| Thanks rpq at winscores.com for the report. | |||
| 2013-11-02 | Fixed #21341 -- Eased https requests with the test client | Unai 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-02 | Merge pull request #1799 from Bouke/tickets/9523 | Aymeric Augustin | |
| Fixed #9523 -- Restart runserver after translation MO files change | |||
| 2013-11-02 | Fixed #21354 -- Documented contrib.redirects defaults to 301 redirects | Bouke Haarsma | |
| Thanks glarrain for the suggestion. | |||
| 2013-11-02 | Fixed #9523 -- Restart runserver after translation MO files change | Bouke Haarsma | |
| Thanks to Krzysztof Kulewski for the initial patch. | |||
| 2013-11-01 | Fixed 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-01 | Fixed typo -- "a" user, not "an" user | Sylvain Bellemare | |
| 2013-11-01 | Fixed #21364 -- Specified InnoDB full-text support from MySQL 5.6.4 on | Claude Paroz | |
| Thanks thevlad at gmail.com for the report. | |||
| 2013-11-01 | Fixed #21359 -- Corrected MySQL collation name in databases docs | Claude Paroz | |
| Thanks k_sze for the report. | |||
| 2013-10-31 | Fixed #21339 -- Documented removal of some form field error messages | Claude Paroz | |
| 2013-10-30 | Fixed #9722 - used pyinotify as change detection system when available | Unai 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. | |||
