summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2019-07-08Fixed #30620 -- Made an example of admin-compliant custom user app pep8 ↵Nuno
compliant.
2019-07-04Fixed #30600 -- Clarified that ValueError raised by converter.to_python() ↵sp1rs
means no match.
2019-07-04Fixed #28581 -- Moved django.core.paginator documentation to API Reference.luto
Co-Authored-By: Arman <armansabyrov@gmail.com>
2019-07-04Refs #28581 -- Doc's how to paginate a ListView.luto
2019-07-04Fixed #28667 -- Clarified how to override list of forms fields for custom ↵swatantra
UserAdmin with a custom user model.
2019-06-26Fixed #30594 -- Added 'private' Cache-Control directive to never_cache() ↵nsasaki128
decorator.
2019-06-24Fixed typo in docs/topics/db/models.txt.Meysam
2019-06-20Removed unnecessary backslashes from docs.Mariusz Felisiak
2019-06-13Fixed an example of email with display name in EmailMessage.from_email.Joachim Jablon
2019-06-10Fixed #30553 -- Clarified the default value of disable_existing_loggers.swatantra
2019-06-05Refs #30226 -- Added User.get_user_permissions() method.Tobias Bengfort
Added to mirror the existing User.get_group_permissions().
2019-06-05Fixed #30226 -- Added BaseBackend for authentication.Tobias Bengfort
2019-06-04Fixed #30505 -- Doc'd how changes in the order of Field.choices affect ↵Caio Ariede
migrations.
2019-06-03Removed redundant object descriptions to prevent warnings with Sphinx 2.1.0.Mariusz Felisiak
2019-05-27Refs #29548 -- Updated docs for MariaDB support.Mariusz Felisiak
2019-05-27Doc'd that extra_email_context can be used to override default template ↵Mariusz Felisiak
context values in PasswordResetView.
2019-05-24Fixed #28780 -- Allowed specyfing a token parameter displayed in password ↵Rob
reset URLs. Co-authored-by: Tim Givois <tim.givois.mendez@gmail.com>
2019-05-24Fixed #30504 -- Corrected redirect() signature in docs.Shashank Parekh
2019-05-24Fixed #30497 -- Ignored document type in assertXMLEqual()/assertXMLNotEqual().Caio Ariede
2019-05-24Doc'd that assertXMLEqual()/assertXMLNotEqual() ignores XML declaration and ↵Caio Ariede
comments.
2019-05-22Fixed #30419 -- Favored Meta.indexes over Meta.index_together in ↵Akshesh
optimization docs.
2019-05-21Fixed #28763 -- Allowed overriding the session cookie age with ↵Hasan Ramezani
SessionStore.get_session_cookie_age().
2019-05-17Changed docs to link to Python's description of iterable.Jon Dufresne
2019-05-17Fixed #30395 -- Doc'd a limitation of ModelForm.Meta.widgets.Tobias Kunze
2019-05-16Added filename caption to LOGGING documentation examples.Curtis Maloney
2019-05-15Changed tuple choices to list in docs.Jon Dufresne
2019-05-15Fixed #30316 -- Added source code link to the default logging configuration ↵Ahisahar Pretel
in logging docs.
2019-05-13Fixed #30437 -- Clarified that urlpatterns can be a sequence.Jonatas C. Damasceno
2019-05-09Refs #30399 -- Made assertHTMLEqual normalize character and entity references.Jon Dufresne
2019-05-08Used time.monotonic() instead of time.time() where applicable.Przemysław Suliga
time.monotonic() available from Python 3.3: - Nicely communicates a narrow intent of "get a local system monotonic clock time" instead of possible "get a not necessarily accurate Unix time stamp because it needs to be communicated to outside of this process/machine" when time.time() is used. - Its result isn't affected by the system clock updates. There are two classes of time.time() uses changed to time.monotonic() by this change: - measuring time taken to run some code. - setting and checking a "close_at" threshold for for persistent db connections (django/db/backends/base/base.py).
2019-04-30Fixed #30245 -- Added -k option to DiscoverRunner.François Freitag
2019-04-30Fixed #20629 -- Rephrased custom user models admonition.Tobias Kunze
2019-04-24Changed tuple Mate.unique_together/permissions to lists in docs.Luke Plant
2019-04-23Fixed #30365 -- Fixed syntax highlighting in SQL examples.Daniel Musketa
Sphinx interprets some "%[a-z]" in SQL statements as a "Literal.String.Interpol" which leads to incorrect highlighting.
2019-04-18Fixed #30367 -- Changed "pip install" to "python -m pip install" in docs, ↵Ramiro Morales
comments and hints.
2019-04-16Fixed #14808 -- Doc'd that trans and blocktrans tags don't escape translations.Tobias Kunze
2019-04-16Fixed #14009 -- Fixed custom formset validation example in docs.Tobias Kunze
2019-04-13Fixed #30347 -- Fixed typo in docs/topics/db/aggregation.txt.Daniel Musketa
2019-04-08Fixed #30304 -- Added support for the HttpOnly, SameSite, and Secure flags ↵Ran Benita
on language cookies.
2019-03-29Removed unnecessary /static from links to PostgreSQL docs.Nick Pope
2019-03-28Used extlinks for Django's source code.Tim Graham
2019-03-21Fixed #29956 -- Allowed overriding an order field widget in formsets.Hasan Ramezani
2019-03-12Fixed #30161 -- Added how to decorate class-based views to view decorators docs.alexanderblnf
2019-03-05Doc'd the use of --noinput for test database handling.Samuel Gaist
2019-02-28Clarified permission-related docs.Tobias Bengfort
2019-02-25Refs #29683 -- Updated multi-db docs for view permission.Tim Graham
2019-02-20Fixed #18707 -- Added support for the test client to return 500 responses.Jon Dufresne
2019-02-16Fixed #30187 -- Moved "install Django" command to a console box.Mariusz Felisiak
2019-02-14Refs #15902 -- Deprecated storing user's language in the session.Claude Paroz
2019-02-13Fixed #30184 -- Removed ellipsis characters from shell output strings.Dan Davis
Partially reverted 50b8493581fea3d7137dd8db33bac7008868d23a (refs #29654) to avoid a crash when the user shell doesn't support non-ASCII characters.