summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2018-05-04Fixed #26688 -- Fixed HTTP request logging inconsistencies.Samir Shah
* Added logging of 500 responses for instantiated responses. * Added logging of all 4xx and 5xx responses.
2018-05-02Fixed #29375 -- Removed empty action attribute on HTML forms.CHI Cheng
2018-04-27Fixed #27480 -- Added cache.touch().Nicolas Noé
2018-04-23Fixed #29349 -- Doc'd the default behavior of router.allow_relation().Stefan R. Filipek
2018-04-23Fixed typos in docs/topics/auth/passwords.txt.adamth
2018-04-19Fixed #29337 -- Added __len__() & __bool__() to RawQuerySet.Adnan Umer
2018-04-19Fixed #29339 -- Added result caching to RawQuerySet.Adnan Umer
2018-04-19Fixed #29212 -- Doc'd redirect loop if @permission_required used with ↵Nick Pope
redirect_authenticated_user.
2018-04-18Fixed #29174, #29175 -- Doc'd that f-strings and JavaScript template strings ↵Tim Graham
can't be translated.
2018-04-17Fixed #29334 -- Updated pypi.python.org URLs to pypi.org.Brett Cannon
2018-04-16Fixed #29274 -- Increased the number of common passwords from 1k to 20k.GS-14
2018-04-15Fixed typo in docs/topics/i18n/translation.txt.Ben Menesini
2018-04-13Fixed #27863 -- Added support for the SameSite cookie flag.Alex Gaynor
Thanks Alex Gaynor for contributing to the patch.
2018-04-11Fixed typo in docs/topics/db/managers.txt.Luoxzhg
2018-04-10Fixed mistakes in docs/topics/db/examples/many_to_one.txt.Luoxzhg
2018-03-31Clarified a sentence in docs/topics/i18n/translation.txt.Wim Feijen
2018-03-28Replaced 'python -Wall' with 'python -Wa'.Daniel Chimeno
2018-03-26Added a pagination example to ListView docs.AK
2018-03-22Fixed #28718 -- Allowed user to request a password reset if their password ↵Tim Graham
doesn't use an enabled hasher. Regression in aeb1389442d0f9669edf6660b747fd10693b63a7. Reverted changes to is_password_usable() from 703c266682be39f7153498ad0d8031231f12ee79 and documentation changes from 92f48680dbd2e02f2b33f6ad0e35b7d337889fb2.
2018-03-20Fixed #28514 -- Clarifed docs about idempotence of RelatedManager.add().Jezeniel Zapanta
2018-03-20Refs #11278 -- Clarified RelatedManager differences between reverse ↵Denis
one-to-many and many-to-many relations.
2018-03-20Fixed #29227 -- Allowed BooleanField to be null=True.Tim Graham
Thanks Lynn Cyrin for contributing to the patch, and Nick Pope for review.
2018-03-13Fixed #29192 -- Corrected docs regarding overriding fields from abstract ↵ovalseven8
base classes.
2018-03-05Improved clarity of docs/topics/install.txt.jblang94
2018-03-03Fixed #29144 -- Made untranslated strings for territorial language variants ↵Patryk Zawadzki
use translations from the generic language variant.
2018-03-02Fixed typo in docs/topics/forms/media.txt.Daniel Hahler
2018-02-26Fixed incorrect regex in re_path() example.René Fleschenberg
2018-02-26Fixed #29161 -- Removed BCryptPasswordHasher from PASSWORD_HASHERS.Tim Graham
2018-02-26Removed "Remove any old versions of Django" install instructions.Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)
They are obsolete given the prevalence of pip.
2018-02-21Changed "language-code" to the more commonly used "language code".Sebastian Sangervasi
2018-02-20Fixed #29146 -- Readded ^ and $ inadvertently removed from re_path() examples.Seohong Park
2018-02-16Fixed #28379 -- Made AccessMixin raise Permissiondenied for authenticated users.Dylan Verheul
2018-02-08Fixed #29107 -- Doc'd that ModelForm doesn't actually inherit from Form.Tim Graham
2018-02-06Fixed #29082 -- Allowed the test client to encode JSON request data.Nick Sarbicki
2018-01-24Fixed #28403 -- Added missing formats in FORMAT_MODULE_PATH docs.Ashaba
2018-01-24Fixed #28977 -- Changed local-memory cache to use LRU culling.Grant Jenks
LRU culling turns every read into a kind of write to the cache: cache keys are moved to the first position in the OrderedDict when they are retrieved. The RWLock which permitted multiple readers while prioritizing a single writer is obsolete since all accesses are now writes.
2018-01-21Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne
2018-01-20Fixed #28343 -- Add an OS chooser for docs command line examples.Ramiro Morales
2018-01-17Fixed typo in docs/topics/i18n/translation.txt.Peter Wischer
2018-01-15Fixed #28881 -- Doc'd that CommonPasswordValidator's password list must be ↵Karmen
lowercase.
2018-01-13Fixed #28761 -- Documented how an inline formset's prefix works.jaywelborn
2018-01-08Fixed #28869 -- Made tagged test classes and methods inherit tags from parents.Will Ayd
2018-01-07Updated various links in docs to use HTTPS.Mariusz Felisiak
2018-01-05Fixed #28757 -- Allowed using contrib.auth forms without installing ↵shanghui
contrib.auth. Also fixed #28608 -- Allowed UserCreationForm and UserChangeForm to work with custom user models. Thanks Sagar Chalise and Rômulo Collopy for reports, and Tim Graham and Tim Martin for reviews.
2018-01-03Refs #15902 -- Made set_language() view always set the current language in a ↵Claude Paroz
cookie. The plan is to later deprecate/remove storing the language in the session.
2017-12-28Removed unnecessary trailing commas and spaces in various code.Mariusz Felisiak
2017-12-27Fixed #28966 -- Doc'd that the uuid URL path converter requires dashesTim Graham
2017-12-23Fixed #28594 -- Removed Jython docs and specific codeClaude Paroz
Thanks Andrey Martyanov for the reporti, and Tim Graham for the review.
2017-12-22Fixed #28937 -- Allowed BinaryField to be editable=True.Cameron Curry
2017-12-06Fixed #28870 -- Added support for functools.partialmethod serialization in ↵Sergey Fedoseev
migrations.