| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-06-07 | Fixed #16860 -- Added password validation to django.contrib.auth. | Erik Romijn | |
| 2015-06-06 | Fixed #24910 -- Added createsuperuser support for non-unique USERNAME_FIELDs | Alasdair Nicol | |
| Clarified docs to say that a non-unique USERNAME_FIELD is permissable as long as the custom auth backend can support it. | |||
| 2015-06-05 | Capitalized "Python" in docs. | Tim Graham | |
| 2015-06-05 | Added release notes for feature added in fe21fb81 | Russell Keith-Magee | |
| 2015-06-05 | Merge pull request #4757 from sergei-maertens/ticket_18166 | Russell Keith-Magee | |
| Fixed #18166 -- Added ability to pass kwargs to the form constructor in a formset. | |||
| 2015-06-04 | Fixed #24159 -- Made compilemessages run across all apps. | Matthew Somerville | |
| Updated the command to match the documentation, which states it runs over all .po files. | |||
| 2015-06-04 | Fixed #18166 -- Added form_kwargs support to formsets. | Sergei Maertens | |
| By specifying form_kwargs when instantiating the formset, or overriding the `get_form_kwargs` method on a formset class, you can pass extra keyword arguments to the underlying `Form` instances. Includes tests and documentation update. | |||
| 2015-06-02 | Fixed #24230 -- Added translated language name for i18n template tag/filter. | Tomáš Ehrlich | |
| 2015-06-02 | Added headings to i18n template tags and filters. | Tim Graham | |
| 2015-06-01 | Simplified wording in QuerySet.update() docs. | Maximiliano | |
| 2015-05-29 | Optimise the rest of the PNGs in docs | Curtis | |
| 2015-05-27 | Removed unused import in example code in docs/topics/auth/default.txt | Kevin Marsh | |
| 2015-05-25 | Fixed #24773 -- Added a json() method on test client responses. | Andy McKay | |
| 2015-05-25 | Fixed typos in HTTP decorator docs. | I am Clinton | |
| 2015-05-22 | Fixed #16891 -- Made Model/QuerySet.delete() return the number of deleted ↵ | Alexander Sosnovskiy | |
| objects. | |||
| 2015-05-22 | Fixed mistakes in docs/topics/forms/formsets.txt examples. | I am Clinton | |
| 2015-05-22 | Fixed settings docs to match list/tuple changes in #24149. | Chris Schur | |
| 2015-05-22 | Fixed typo in docs/topics/auth/default.txt | Tim Graham | |
| 2015-05-21 | Enhanced registration/login.html example template. | Laurent Peuch | |
| 2015-05-21 | Fixed #17085, #24783 -- Refactored template library registration. | Preston Timmons | |
| * Converted the ``libraries`` and ``builtins`` globals of ``django.template.base`` into properties of the Engine class. * Added a public API for explicit registration of libraries and builtins. | |||
| 2015-05-20 | Fixed #24652 -- Disallowed query execution in SimpleTestCase subclasses. | Simon Charette | |
| Thanks to Tim and Anssi for the review. | |||
| 2015-05-18 | Added docs for assertRaisesMessage as context manager. | Tim Graham | |
| 2015-05-17 | Fixed typo in docs/topics/http/sessions.txt | Tim Graham | |
| 2015-05-17 | Fixed #23820 -- Supported per-database time zone. | Aymeric Augustin | |
| The primary use case is to interact with a third-party database (not primarily managed by Django) that doesn't support time zones and where datetimes are stored in local time when USE_TZ is True. Configuring a PostgreSQL database with the TIME_ZONE option while USE_TZ is False used to result in silent data corruption. Now this is an error. | |||
| 2015-05-14 | Minor edits to docs/topics/http/urls.txt | I am Clinton | |
| 2015-05-13 | Fixed #24789 -- Fixed wrong positional args order in doc example | Charles Dee Rice | |
| Arguments shown in example code (signal, sender, instance) appeared to be the incorrect positional arguments for a post_save signal (which might start as: sender, instance, created), as documented: https://docs.djangoproject.com/en/1.8/ref/signals/#post-save | |||
| 2015-05-12 | Light edits to docs/topics/forms/index.txt | I am Clinton | |
| 2015-05-11 | Fixed #24780 -- Removed outdated discussion of signals and custom users. | Tim Graham | |
| 2015-05-09 | Fixed typo in docs/topics/testing/tools.txt | Ian Foote | |
| 2015-05-08 | Fixed #24763 -- Moved DoesNotExist exception to model docs. | David Krisch | |
| 2015-05-06 | Fixed #24119, #24120 -- Formalized debug integration for template backends. | Preston Timmons | |
| 2015-05-05 | Fixed #24564 -- Moved AbstractBaseUser and BaseUserManager so they can be ↵ | Dan Watson | |
| used without auth in INSTALLED_APPS | |||
| 2015-05-02 | Fixed typo in translation import statement | José Padilla | |
| 2015-05-01 | Updated capitalization in the word "JavaScript" for consistency | Dave Hodder | |
| 2015-04-29 | Added translation.override() context manager to docs. | Dmitry Medvinsky | |
| 2015-04-29 | Used full variable names instead of abbreviation in examples | Baptiste Mispelon | |
| Thanks to Andrew Ingram for the report. | |||
| 2015-04-28 | Fixed typo in docs/topics/i18n/translation.txt | Mounir | |
| 2015-04-28 | Fixed #13008 -- Added more Cache-Control headers to never_cache() decorator. | Markus Bertheau | |
| 2015-04-25 | Fixed a typo and formatting consistency in testing tools docs | Adam Zapletal | |
| I changed "appears" to "appear" and emphasized the word "not" to match the rest of the document. | |||
| 2015-04-24 | Added missing comma in LocMemCache example. | Nik Nyby | |
| 2015-04-24 | Fixed #24700 -- Added dash to slug regex in http docs | Marcus Pennington | |
| 2015-04-24 | Fixed #24526 -- Combined django.request/security loggers with the root logger. | Tim Graham | |
| Thanks Carl Meyer for review. | |||
| 2015-04-24 | Updated startproject MIDDLEWARE_CLASSES in docs. | Daniel Harding | |
| 2015-04-22 | Fixed #24684 -- Typo in docs/topics/forms/modelforms.txt | Tim Graham | |
| 2015-04-20 | Fixed #24659 -- Clarified docs of smtp.EmailBackend parameters. | Tim Graham | |
| 2015-04-20 | Fixed #24674 -- Documented the correct NullBooleanField formfield. | Simon Charette | |
| Thanks to knbk for the report. | |||
| 2015-04-20 | Fixed typo in docs/topics/class-based-views/intro.txt | Anton | |
| 2015-04-19 | Fixed #11078 -- documentation update. | Marco Santamaria | |
| 2015-04-16 | Fixed #24646 -- Fixed jinja2 example on Python 2. | Tim Graham | |
| 2015-04-16 | Fixed #23984 -- Added Javascript i18n documentation | Daniel Lindsley | |
| This fleshes out the documentation around all of the exported Javascript functions available from the ``javascript_catalog`` view. | |||
