| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-10-07 | [1.9.x] Refs #25527 -- Removed redundant doc heading link that leads to a ↵ | Tim Graham | |
| warning when generating PDF. Backport of 25f287f6b2f677213605364c33bb37f33feac953 from master | |||
| 2015-10-07 | [1.9.x] Added some function links in translation docs | Claude Paroz | |
| Backport of 9a6fc9606c from master. | |||
| 2015-10-02 | [1.9.x] Fixed #25481 -- Added field.help_text to "Looping over a form's ↵ | John Moses | |
| fields" docs. Backport of ac09d22f7913ff09f98001ff51b783932290e378 from master | |||
| 2015-09-30 | [1.9.x] Clarified that Model.delete() isn't called as a result of a ↵ | David Sanders | |
| cascading delete. Backport of 5c6316dc3467fd7b669bea9157f591ac5fd00ec4 from master | |||
| 2015-09-29 | [1.9.x] Improved "“standalone” Django usage" example. | David Sanders | |
| Backport of ae9f9dc37f39afeaa45c646cf6eef81beffcf021 from master | |||
| 2015-09-29 | [1.9.x] Fixed #25376 -- Required virtualenv in installation instructions. | Tim Graham | |
| Thanks Anjul Tyagi for some of the draft text. Backport of a523d94b4581ec41c86f5bbaaffdf5bb6b819c2e from master | |||
| 2015-09-28 | [1.9.x] Documented auth's login/logout function parameters. | Tim Graham | |
| Backport of c14b6b52ff131db263bf06a02f903a73390975da from master | |||
| 2015-09-25 | [1.9.x] Fixed #25462 -- Removed Model.__unicode__() in favor of ↵ | Tim Graham | |
| @python_2_unicode_compatible. Backport of de99f558d806a2a1b30072ec95bc44d412d80dab from master | |||
| 2015-09-25 | [1.9.x] Fixed #25451 -- Added advice about organizing tests. | Tim Graham | |
| Backport of 53e89ce2e71411ff9d1c3fd6f2b10d052a4aeace from master | |||
| 2015-09-24 | [1.9.x] Fixed #25455 -- Optimized dictfetchall() example. | Tim Graham | |
| Thanks aklim007 for the suggestion. Backport of 361f60479d1890e8144fc254d7389a67b35725e9 from master | |||
| 2015-09-23 | Fixed typo in docs/topics/db/examples/one_to_one.txt | Don Kirkby | |
| 2015-09-23 | Refs #25373 -- Doc'd logging of exceptions during {% include %} rendering. | Tim Graham | |
| 2015-09-22 | Refs #24115 -- Added docs for password updates on bcrypt rounds change. | Tim Graham | |
| 2015-09-22 | Added link to Babel's message extracting functionality. | Rik | |
| 2015-09-21 | Fixed #24921 -- set_autocommit(False) + ORM queries. | Aymeric Augustin | |
| This commits lifts the restriction that the outermost atomic block must be declared with savepoint=False. This restriction was overly cautious. The logic that makes it safe not to create savepoints for inner blocks also applies to the outermost block when autocommit is disabled and a transaction is already active. This makes it possible to use the ORM after set_autocommit(False). Previously it didn't work because ORM write operations are protected with atomic(savepoint=False). | |||
| 2015-09-21 | Fixed #12856 -- Documented BoundField API. | Moritz Sichert | |
| 2015-09-19 | Fixed #25390 -- Allowed specifying a start migration in squashmigrations | Markus Holtermann | |
| Thanks Tim Graham for the review. | |||
| 2015-09-18 | Fixed #25269 -- Allowed method_decorator() to accept a list/tuple of decorators. | fabrizio ettore messina | |
| 2015-09-18 | Fixed #24944 -- Added extra_email_context parameter to password_reset() view. | sujayskumar | |
| 2015-09-09 | Allowed a port range for the liveserver by default. | Aymeric Augustin | |
| This is required for running tests in parallel. | |||
| 2015-09-05 | Updated references to the TEST_* database settings. | Aymeric Augustin | |
| They were removed in Django 1.9. I could leave the reference to TEST_DEPENDENCIES in the 1.2.4 release notes because the link points to the right location and the name was accurate at the time. | |||
| 2015-09-05 | Fixed #25355 -- Made two tweaks to docs/topics/db/aggregation.txt. | Maarten | |
| 2015-09-04 | Added links to new security settings introduced in 1.8. | David Sanders | |
| 2015-09-04 | Refs #25345 -- Updated links to code.google.com. | Maxime Lorant | |
| 2015-09-03 | Fixed #25326 -- Added namedtuple example for executing custom SQL. | Dražen Odobašić | |
| 2015-08-31 | Cleaned up example migration files in docs | Tyson Clugg | |
| 2015-08-31 | Fixed #25259 -- Added comments to header of generated migration files | Tyson Clugg | |
| 2015-08-31 | Clarified 404.html usage, excplicitly stated that it's used when DEBUG is False | David Sanders | |
| Thanks to Keryn Knight, Curtis Maloney and Tim Graham for their reviews. | |||
| 2015-08-27 | Fixed #22634 -- Made the database-backed session backends more extensible. | Sergey Kolosov | |
| Introduced an AbstractBaseSession model and hooks providing the option of overriding the model class used by the session store and the session store class used by the model. | |||
| 2015-08-27 | Removed historical note about session serialization. | Tim Graham | |
| 2015-08-25 | Fixed #25311 -- Removed vague language about "partial commits" from docs. | Tim Graham | |
| 2015-08-24 | Fixed #23727 -- Inhibited the post_migrate signal when using ↵ | Tommy Beadle | |
| serialized_rollback. When using a TransactionTestCase with serialized_rollback=True, after creating the database and running its migrations (along with emitting the post_migrate signal), the contents of the database are serialized to _test_serialized_contents. After the first test case, _fixture_teardown() would flush the tables but then the post_migrate signal would be emitted and new rows (with new PKs) would be created in the django_content_type table. Then in any subsequent test cases in a suite, _fixture_setup() attempts to deserialize the content of _test_serialized_contents, but these rows are identical to the rows already in the database except for their PKs. This causes an IntegrityError due to the unique constraint in the django_content_type table. This change made it so that in the above scenario the post_migrate signal is not emitted after flushing the tables, since it will be repopulated during fixture_setup(). | |||
| 2015-08-22 | Tweak some examples. | Aymeric Augustin | |
| "Area man/woman" is confusing to people not familiar with the conventions of American journalism (like me). | |||
| 2015-08-20 | Refs #24914 -- Added docs for more auth mixin methods. | Tim Graham | |
| 2015-08-19 | Fixed style issues in testing docs | Markus Holtermann | |
| 2015-08-18 | Used consistent capitalization and hyphenation of "class-based views" in docs. | Anton Strogonoff | |
| 2015-08-11 | Updated memcached library links to point to PyPI. | Tim Graham | |
| 2015-08-11 | Fixed #25205 -- Removed doc references to deprecated GeoManager class. | Brendan Hayward | |
| 2015-08-10 | Fixed #25160 -- Moved unsaved model instance data loss check to Model.save() | Tim Graham | |
| This mostly reverts 5643a3b51be338196d0b292d5626ad43648448d3 and 81e1a35c364e5353d2bf99368ad30a4184fbb653. Thanks Carl Meyer for review. | |||
| 2015-08-08 | Updated various links in docs | Claude Paroz | |
| 2015-08-08 | Updated Wikipedia links to use https | Claude Paroz | |
| 2015-08-07 | Fixed #25175 -- Renamed the postgresql_psycopg2 database backend to postgresql. | Caio Ariede | |
| 2015-08-05 | Fixed #25229 -- Clarified how an iterable works with @permission_required | Tim Graham | |
| 2015-08-05 | Fixed #22404 -- Added a view that exposes i18n catalog as a JSON | Sergey Kolosov | |
| Added django.views.i18n.json_catalog() view, which returns a JSON response containing translations, formats, and a plural expression for the specified language. | |||
| 2015-08-05 | Fixed #25213 -- Discouraged use of QuerySet.extra() | Tim Graham | |
| Thanks Anssi Kääriäinen for the draft text and Simon Charette for review. | |||
| 2015-08-05 | Fixed #25212 -- Documented the RawSQL expression. | Tim Graham | |
| 2015-08-04 | Fixed password_reset signature in docs | Alasdair Nicol | |
| 2015-08-04 | Fixed #25136 -- Documented Count('X', distinct=True) in aggregate topic guide. | Caio Ariede | |
| 2015-08-01 | Fixed #25146 -- Allowed method_decorator() to decorate classes. | Rigel Di Scala | |
| 2015-07-31 | Clarified assertRaisesMessage() behavior with respect to the message. | Tim Graham | |
