Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/topics
Commit message (Collapse)AuthorAgeFilesLines
...
* Cleaned up example migration files in docsTyson Clugg2015-08-311-2/+6
|
* Fixed #25259 -- Added comments to header of generated ↵Tyson Clugg2015-08-311-0/+1
| | | | migration files
* Clarified 404.html usage, excplicitly stated that it's ↵David Sanders2015-08-311-8/+9
| | | | | | used when DEBUG is False Thanks to Keryn Knight, Curtis Maloney and Tim Graham for their reviews.
* Fixed #22634 -- Made the database-backed session ↵Sergey Kolosov2015-08-271-2/+175
| | | | | | | | backends more extensible. 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.
* Removed historical note about session serialization.Tim Graham2015-08-271-19/+13
|
* Fixed #25311 -- Removed vague language about "partial ↵Tim Graham2015-08-261-3/+3
| | | | commits" from docs.
* Fixed #23727 -- Inhibited the post_migrate signal when ↵Tommy Beadle2015-08-241-0/+7
| | | | | | | | | | | | | | | | | | | | | | | using 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().
* Tweak some examples.Aymeric Augustin2015-08-221-2/+2
| | | | | "Area man/woman" is confusing to people not familiar with the conventions of American journalism (like me).
* Refs #24914 -- Added docs for more auth mixin methods.Tim Graham2015-08-201-16/+43
|
* Fixed style issues in testing docsMarkus Holtermann2015-08-191-6/+11
|
* Used consistent capitalization and hyphenation of ↵Anton Strogonoff2015-08-196-9/+8
| | | | "class-based views" in docs.
* Updated memcached library links to point to PyPI.Tim Graham2015-08-121-2/+2
|
* Fixed #25205 -- Removed doc references to deprecated ↵Brendan Hayward2015-08-111-9/+5
| | | | GeoManager class.
* Fixed #25160 -- Moved unsaved model instance data loss ↵Tim Graham2015-08-102-22/+14
| | | | | | | | | check to Model.save() This mostly reverts 5643a3b51be338196d0b292d5626ad43648448d3 and 81e1a35c364e5353d2bf99368ad30a4184fbb653. Thanks Carl Meyer for review.
* Updated various links in docsClaude Paroz2015-08-083-4/+4
|
* Updated Wikipedia links to use httpsClaude Paroz2015-08-0811-13/+13
|
* Fixed #25175 -- Renamed the postgresql_psycopg2 database ↵Caio Ariede2015-08-071-1/+1
| | | | backend to postgresql.
* Fixed #25229 -- Clarified how an iterable works with ↵Tim Graham2015-08-051-1/+2
| | | | @permission_required
* Fixed #22404 -- Added a view that exposes i18n catalog ↵Sergey Kolosov2015-08-051-0/+46
| | | | | | | | as a JSON Added django.views.i18n.json_catalog() view, which returns a JSON response containing translations, formats, and a plural expression for the specified language.
* Fixed #25213 -- Discouraged use of QuerySet.extra()Tim Graham2015-08-051-5/+5
| | | | | Thanks Anssi Kääriäinen for the draft text and Simon Charette for review.
* Fixed #25212 -- Documented the RawSQL expression.Tim Graham2015-08-051-1/+2
|
* Fixed password_reset signature in docsAlasdair Nicol2015-08-041-1/+1
|
* Fixed #25136 -- Documented Count('X', distinct=True) in ↵Caio Ariede2015-08-041-6/+28
| | | | aggregate topic guide.
* Fixed #25146 -- Allowed method_decorator() to decorate ↵Rigel Di Scala2015-08-011-2/+12
| | | | classes.
* Clarified assertRaisesMessage() behavior with respect to ↵Tim Graham2015-07-311-1/+1
| | | | the message.
* Fixed #25174 -- Moved some details of CheckMessage to ↵Tim Graham2015-07-311-60/+36
| | | | the reference guide.
* Fixed #25202 -- Fixed typo in ↵Tim Graham2015-07-311-1/+1
| | | | docs/topics/auth/customizing.txt
* Fixed #25190 -- Deprecated callable_obj parameter to ↵Tim Graham2015-07-301-0/+5
| | | | | | assertRaisesMessage(). Thanks Aymeric Augustin for review.
* Fixed #25185 -- Added support for functools.partial ↵Piper Merriam2015-07-291-0/+6
| | | | serialization in migrations
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-2811-28/+67
| | | | on_delete for ForeignKey/OneToOneField
* Fixed #25159 -- Removed brackets from ↵Tim Graham2015-07-276-26/+26
| | | | | | class/function/method signatures in docs. Thanks hellbeast for the initial patch.
* Fixed #25142 -- Added ↵Akis Kesoglou2015-07-271-0/+15
| | | | PermissionRequiredMixin.has_permission() to allow customization.
* Fixed #24127 -- Changed the default current_app to the ↵Marten Kenbeek2015-07-271-14/+15
| | | | | | | current namespace. Changed the url template tag to use request.resolver_match.namespace as a default for the current_app argument if request.current_app is not set.
* Fixed #25166 -- Clarified how auth permissions are created.Tim Graham2015-07-252-6/+8
| | | | Thanks Baptiste Mispelon for report and review.
* Fixed malformed Sphinx directives.Tim Graham2015-07-252-2/+2
|
* Converted tabs to spaces in topics/auth/default.txtTim Graham2015-07-241-3/+3
|
* Fixed #25156 -- Mentioned django.setup() in the settings ↵James Bennett2015-07-211-1/+23
| | | | overview for standalone Django use.
* Fixed #24126 -- Deprecated current_app parameter to auth ↵lukasz.wojcik2015-07-211-0/+45
| | | | views.
* Normalized indentation and line lengths in ↵Tim Graham2015-07-211-36/+37
| | | | docs/topics/auth/default.txt.
* Refs #16860 -- Moved password_changed() logic to ↵Tim Graham2015-07-201-0/+5
| | | | | | AbstractBaseUser. Thanks Carl Meyer for review.
* Fixed typo in docs/topics/i18n/translation.txtRafał Selewońko2015-07-161-2/+2
|
* Fixed #24375 -- Added Migration.initial attributeAndrei Kulakov2015-07-131-6/+29
| | | | | | | The new attribute is checked when the `migrate --fake-initial` option is used. initial will be set to True for all initial migrations (this is particularly useful when initial migrations are split) as well as for squashed migrations.
* Fixed #25082 -- Documented where to register system checks.Tim Graham2015-07-101-1/+3
|
* Fixed #25083 -- Added SessionAuthenticationMiddleware to ↵Nick Sweeting2015-07-101-1/+3
| | | | auth installation docs
* Fixed #23190 -- Made Paginator.page_range an iteratorRigel Di Scala2015-07-031-2/+8
|
* Fixed #20916 -- Added Client.force_login() to bypass ↵Jon Dufresne2015-07-012-0/+28
| | | | authentication.
* Fixed #21695 -- Added asvar option to blocktrans.Matthew Somerville2015-07-011-2/+18
| | | | Thanks Bojan Mihelac for the initial patch.
* Fixed #21803 -- Added support for post-commit callbacksAndreas Pelme2015-06-301-0/+144
| | | | | | | | | Made it possible to register and run callbacks after a database transaction is committed with the `transaction.on_commit()` function. This patch is heavily based on Carl Meyers django-transaction-hooks <https://django-transaction-hooks.readthedocs.org/>. Thanks to Aymeric Augustin, Carl Meyer, and Tim Graham for review and feedback.
* Updated release process for new release schedule.Tim Graham2015-06-251-3/+4
|
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-245-7/+7
| | | | | Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.