| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-04-14 | Removed docs for removed transaction APIs. | Tim Graham | |
| 2015-04-13 | Fixed #24621 -- Fixed and documented SessionBase.pop's second argument | Adam Zapletal | |
| Changed SessionBase.pop's second argument to explicitly be default=None rather than *args since _session is always a dict. Thanks gabor for the report and Tim Graham for the review. | |||
| 2015-04-09 | Fixed #24560 -- Added a --dry-run mode to the createcachetable command. | Adam Chainz | |
| 2015-04-07 | Fixed #24429 -- Doc'ed that Django 1.8 doesn't require an integer PK for ↵ | Tim Graham | |
| custom user models. | |||
| 2015-04-07 | Fixed #22993 -- Deprecated skipIfCustomUser decorator | Christopher Luc | |
| 2015-04-07 | Specified file names for example code in docs/topics/forms/index.txt | Patrik Lundin | |
| 2015-04-06 | Added admonition about reusable apps and AUTH_USER_PROFILE. | Thomas Güttler | |
| 2015-04-03 | Fixed #24556 -- Added reminder about HTTPS to passwords docs. | Sam Thursfield | |
| 2015-04-01 | Pointed Jinja2 users to Babel instead of makemessages. | Aymeric Augustin | |
| 2015-03-31 | Fixed typo in docs/topics/cache.txt | Kostochko Dmitriy | |
| 2015-03-30 | Documented jinja2 install requirement. | Tim Graham | |
| 2015-03-30 | Fixed #15590 -- Documented how the path of a FileField can be changed. | Jorge Barata González | |
| Thanks simon29 for report, and freakboy3742, floledermann, jacob, claudep and collinanderson for discussing the task. | |||
| 2015-03-29 | Improved docs for timezone handling for auto_now and auto_now_add | Christopher Luc | |
| Thanks djbug for the report and Aymeric Augustin and Carl Meyer for the review. | |||
| 2015-03-28 | Fixed #24541 -- Clarified ModelFormSet's handling of initial data. | Tim Graham | |
| 2015-03-28 | Fixed syntax highlighting in docs/topics/auth/default.txt | Tim Graham | |
| 2015-03-28 | Fixed typo in docs/topics/forms/modelforms.txt | SaeX | |
| 2015-03-27 | Fixed #18773 -- Added logging for template variable resolving | Caroline Simpson | |
| Added a django.template logger without a default handler. Added logging if there is an exception while resolving variables in a template. | |||
| 2015-03-25 | Corrected typo in documentation | David Seddon | |
| 2015-03-25 | Fixed #23814 -- Documented apps refactored out of Django. | Fabio Natali | |
| 2015-03-24 | Fixed #24361 -- Clarified docs on reconfiguring logging. | Tim Graham | |
| Thanks Tuttle for the report and draft patch, and Carl Meyer for help and review. | |||
| 2015-03-24 | Fixed #24501 -- Improved auth.decorators.user_passes_test() example. | Matt Seymour | |
| 2015-03-23 | Fixed #13525 -- Added tests and docs for nested parameters in URL patterns. | Bas Peschier | |
| When reversing, only outer parameters are used if captured parameters are nested. Added tests to check the edge cases and documentation for the behavior with an example to avoid it. | |||
| 2015-03-22 | Fixed #23814 -- Pointed localflavor documentation to external package | Iacopo Spalletti | |
| Edited localflavor doc to point to the external package documentation, leaving just the 'How to migrate' section in Django. | |||
| 2015-03-20 | Refs #14645 -- Documented bug with exclude() and multi-value relations | David Seddon | |
| 2015-03-20 | Fixed #22106 -- Allowed using more than one instance of javascript_catalog ↵ | Moritz Sichert | |
| per project. | |||
| 2015-03-20 | Fixed #23520 -- Explained that custom plural forms should be avoided | Claude Paroz | |
| Thanks aruseni for the report. | |||
| 2015-03-18 | Fixed #24495 -- Allowed unsaved model instance assignment check to be bypassed. | Karl Hobley | |
| 2015-03-18 | Fixed #23960 -- Removed http.fix_location_header | Claude Paroz | |
| Thanks Carl Meyer for the report and Tim Graham for the review. | |||
| 2015-03-16 | Fixed allow_migrate() signature in router examples. | Adrian Andreias | |
| 2015-03-14 | Fixed #12982 -- Added a get_or_set() method to the BaseCache backend. | Berker Peksag | |
| 2015-03-13 | Fixed #24253 -- Documented staff_member_required decorator. | Andrei Kulakov | |
| 2015-03-13 | Fixed #24052 -- Doc'd how to write data migrations with models in multiple apps. | Andrei Kulakov | |
| 2015-03-13 | Refs #23559 -- warned about consequences of letting users edit User model in ↵ | Remco Kranenburg | |
| admin. | |||
| 2015-03-11 | Fixed typo in docs/topics/forms/modelforms.txt. | Dan Fellin | |
| 2015-03-11 | Simplified command to display path to Django source files. | saschalalala | |
| Python 3 always returns an absolute path. | |||
| 2015-03-09 | Fixed typo in docs/topics/forms/modelforms.txt. | Tim Graham | |
| 2015-03-08 | Fixed #21661 -- Expanded authentication views documentation | Rik | |
| 2015-03-08 | Merge pull request #4271 from PsiloLR/ticket_24456 | Daniele Procida | |
| Fixed #24456 -- Update modelforms.txt table of Form/Model refs | |||
| 2015-03-08 | Fixed #24456 -- Update modelforms.txt table of Form/Model refs | Psilo Cybin | |
| Added links to the Form/Model table to the field reference docs to point to their individual field references | |||
| 2015-03-07 | Fixed typos and updated spelling wordlist. | Floris den Hengst | |
| 2015-03-05 | Stressed authentication should be successful before logging in a user. | Marten Kenbeek | |
| 2015-03-02 | Fixed #13015 -- Clarified language about model instances attached to forms. | Tim Graham | |
| 2015-02-22 | Fixed #24358 -- Corrected code-block directives for console sessions. | Sean Wang | |
| 2015-02-20 | Fixed #24351, #24346 -- Changed the signature of allow_migrate(). | Loic Bistuer | |
| The new signature enables better support for routing RunPython and RunSQL operations, especially w.r.t. reusable and third-party apps. This commit also takes advantage of the deprecation cycle for the old signature to remove the backward incompatibility introduced in #22583; RunPython and RunSQL won't call allow_migrate() when when the router has the old signature. Thanks Aymeric Augustin and Tim Graham for helping shape up the patch. Refs 22583. | |||
| 2015-02-17 | Added an import to docs/topics/testing/advanced.txt example. | Tim Graham | |
| 2015-02-16 | Fixed #24350 -- Freshened up database install topic section. | Tim Graham | |
| 2015-02-16 | Fixed #23892 -- Clarified compatibility policy for migrations. | Carl Meyer | |
| 2015-02-15 | Deprecated TEMPLATE_DEBUG setting. | Aymeric Augustin | |
| 2015-02-15 | Documented how to set up the Jinja2 environment. | Aymeric Augustin | |
| This may also help with "Why do context processors not work in Jinja2 templates?" etc. | |||
| 2015-02-13 | Fixed #24184 -- Prevented automatic soft-apply of migrations | Markus Holtermann | |
| Previously Django only checked for the table name in CreateModel operations in initial migrations and faked the migration automatically. This led to various errors and unexpected behavior. The newly introduced --fake-initial flag to the migrate command must be passed to get the same behavior again. With this change Django will bail out in with a "duplicate relation / table" error instead. Thanks Carl Meyer and Tim Graham for the documentation update, report and review. | |||
