summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2017-07-04Added missing import in docs/topics/db/queries.txt.Tushar Malik
2017-06-27Fixed #28046 -- Added the db_tablespace parameter to class-based indexes.Mariusz Felisiak
Thanks Markus Holtermann and Tim Graham for reviews.
2017-06-26Refs #23919 -- Stopped inheriting from object to define new style classes.Mariusz Felisiak
Tests and docs complement to cecc079168e8669138728d31611ff3a1e7eb3a9f.
2017-06-06Fixed #28233 -- Used a simpler example in the aggregation "cheat sheet" docs.Tim Graham
2017-06-06Fixed #28104 -- Prevented condition decorator from setting ↵Josh Schneier
ETag/Last-Modified headers for non-safe requests.
2017-05-31Fixed #22550 -- Prohibited QuerySet.last()/reverse() after slicing.Matthias Erll
2017-05-25Fixed typo in docs/topics/testing/advanced.txt.Dima Veselov
2017-05-22Updated various links in docs to avoid redirectsClaude Paroz
Thanks Tim Graham and Mariusz Felisiak for review and completion.
2017-05-22Made docs/topics/migrations.txt use single quotes consistently.Markus Amalthea Magnuson
2017-05-20Pointed Dive into Python links to python3 siteMichiel Beijen
The old site handles python2, and is thus no longer relevant for Django. Also I pointed the search path links to the proper sections.
2017-05-11Fixed #28148 -- Doc'd ImageField name validation concerns with the test client.Riccardo Magliocchetti
2017-05-06Fixed #28089 -- Removed requirement to implement get_short_name() and ↵Josh Schneier
get_full_name() in AbstractBaseUser subclasses.
2017-05-01Fixed #28139 -- Added another level of headings in the topics index.Tim Graham
2017-04-29Fixed typo in docs/topics/auth/default.txt.shinriyo
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
Thanks Tim Graham for the review.
2017-04-26Added content_type filtering in Permission querying example.Nauman Tariq
2017-04-24Renamed "Mac OS X" to "macOS" in docs.Michiel Beijen
2017-04-08Fixed typos in docs/topic/db/search.txt.Paolo Melchiorre
2017-04-01Fixed #28003 -- Doc'd what an auto-created OneToOneField parent_link looks like.Simon Charette
Thanks Simon Charette for the draft patch.
2017-03-31Fixed #27993 -- Fixed model form default fallback for SelectMultiple.heathervm
2017-03-25Removed unexpected initial attribute in data migration examples.Stefano Rivera
Inadvertently added in db97a8849519a3933bf4abd2184efd68ebc21965.
2017-03-20Removed extra characters in docs header underlines.Mariusz Felisiak
2017-03-16Updated Django checkout URL to use https.Adi Mukherjee
It's slightly more compatible than the git protocol.
2017-03-15Fixed #27882 -- Allowed {% cache %} to cache indefinitely.Bo Marchman
2017-03-14Fixed typo in docs/topics/db/aggregation.txt header.Mads Jensen
2017-03-08Fixed #27911 -- Doc'd how to register custom User with admin.David D Lowe
2017-03-07Fixed #27891 -- Added PasswordResetConfirmView.post_reset_login_backend.Camilo Nova
2017-03-07Reverted "Fixed #27878, refs #23919 -- Used python3 shebangs."Tim Graham
This reverts commit 4cffa9a1ffb37d4de7e99a851a9ed87b3c02d229.
2017-03-06Fixed #26817 -- Doc'd downsides and alternatives to Jinja2 context processors.Tim Graham
Thanks Aymeric Augustin and Carl Meyer.
2017-02-27Imported django.http classes instead of django.http.Asif Saifuddin Auvi
2017-02-23Fixed #27878, refs #23919 -- Used python3 shebangs.Chris Lamb
2017-02-11Fixed #27367 -- Doc'd and tested reversing of URLs with the same name.Robert Roskam
Thanks Reinout van Rees for contributing to the patch.
2017-02-11Fixed #25978 -- Deprecated shorcuts.render_to_response().Tim Graham
2017-02-08Fixed typo in docs/topics/testing/tools.txt.Tim Graham
2017-02-07Fixed #27814 -- Removed an inaccurate sentence about Paginator.orphans.Tim Graham
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-01-28Made ugettext* functions aliases of gettext*Claude Paroz
Thanks Tim Graham for the review.
2017-01-27Fixed #27678 -- Warned that the template system isn't safe against untrusted ↵andrewnester
authors.
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super() in docs.chillaranand
2017-01-21Removed unused imports in example migrations.Arkadiusz Adamski
2017-01-19Refs #23919 -- Removed docs references to long integers.Tim Graham
2017-01-18Refs #23919 -- Removed Python 2 notes in docs.Tim Graham
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Removed versionadded/changed annotations for 1.10.Tim Graham
2017-01-17Refs #23957 -- Removed the useless SessionAuthenticationMiddleware.Tim Graham
2017-01-17Refs #26601 -- Removed support for old-style middleware using ↵Tim Graham
settings.MIDDLEWARE_CLASSES.
2017-01-17Refs #24046 -- Removed mark_for_escaping() per deprecation timeline.Tim Graham