summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2014-05-11Fixed #20936 -- When logging out/ending a session, don't create a new, empty ↵Matt Robenolt
session. Previously, when logging out, the existing session was overwritten by a new sessionid instead of deleting the session altogether. This behavior added overhead by creating a new session record in whichever backend was in use: db, cache, etc. This extra session is unnecessary at the time since no session data is meant to be preserved when explicitly logging out.
2014-05-06Improve docs around deconstruction/serialisation (refs #22337)Andrew Godwin
2014-05-05Fixed #22575 -- Fixed typo in docs/topics/class-based-views/generic-editing.txt.Tim Graham
Thanks adminq80 at gmail.com.
2014-04-30Fixed #22442 -- Provided additional documentation regarding id fields clashing.Tim Graham
Thanks benjaoming for raising the issue and Loic for the examples.
2014-04-29Fixed #22523 -- Clarified pytz requirement.Aymeric Augustin
Thanks z for the report and timo for the proposal.
2014-04-28Revert "Fixed #15179 -- middlewares not applied for test client login()"Tim Graham
This reverts commit 4fdd51b73240bf9c8d9472fcc45df699f0714755. See the ticket for concerns with this implementation; it will be revisited.
2014-04-28Fixed #22254 -- Noted the requirement of calling django.setup() when runningTim Graham
Thanks Peter Landry for the report.
2014-04-28Fix a typo in logging.txtZhaorong Ma
2014-04-28Fixed #22497 -- Highlighted difference between field and class deconstruction.Tim Graham
Thanks nliberg for the suggestion.
2014-04-27Fixed #22445 -- Added how to perform a reverse data migration to topic guide.Tim Graham
Thanks Karen Tracey for the report.
2014-04-27Improved formatting and links of migration docs.Tim Graham
2014-04-26Updated doc links to point to Python 3 documentationClaude Paroz
2014-04-25Fixed #22507 -- Clarified nature of the sender argument of signalsClaude Paroz
2014-04-25Fixed #22517, "view prefix" still referenced in urlconf docsBen Davis
2014-04-25Fixed #22504 -- Corrected domain terminology in security guide.Tim Graham
Thanks chris at chrullrich.net.
2014-04-25Fixed #22493 - Added warnings to raw() and extra() docs about SQL injectionMoayad Mardini
Thanks Erik Romijn for the suggestion.
2014-04-23Various documentation typo/spelling fixesMarti Raudsepp
Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand.
2014-04-22Updated grammar in description of django.contrib.auth.Ray Ashman
2014-04-21Fixed queries that may return unexpected results on MySQL due to typecasting.Erik Romijn
This is a security fix; disclosure to follow shortly.
2014-04-19Fixed #22417 -- Added additional documentation for refs #16969.Tim Graham
Thanks Jon Foster for the report.
2014-04-18Fixed #22471 -- Corrected misprint in i18n docsErik Romijn
Thanks to aruseni for the report.
2014-04-18Added missing versionadded annotation and tweaked release note; refs #22465.Tim Graham
2014-04-18Fixed #22465 -- New assertion assertJSONNotEqualamatellanes
2014-04-17Stray parenAlex Gaynor
2014-04-17Include an 'extra_requires' for bcryptAlex Gaynor
2014-04-16Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests.chriscauley
Thanks tomwys for the suggestion.
2014-04-16Fixed #22455 -- Documented return values for send_mail and send_mass_mailMariano Rezk
2014-04-16Fixed spelling errors in documentation.Tim Graham
2014-04-16Added a note regarding django.contrib.auth.authenticate.Tim Graham
Thanks Josh Brown for the suggestion.
2014-04-15Fixed #22443 -- Document smtp.EmailBackend.timeout default valueMariano Rezk
Django 1.7 introduces a new timeout parameter for the SMTP email backend: http://docs.djangoproject.com/en/dev/topics/email/#django.core.mail.backends.smtp.EmailBackend.timeout However, there was no mention of the default value for this parameter.
2014-04-14Fixed #22369 -- Added count parameter to assertTemplateUsedJacob R. Rothenbuhler
2014-04-14Improve migrations/schema docsAndrew Godwin
2014-04-12Also allowed a non-overridden setting to be deletedClaude Paroz
Refs #20032, #18824. Thanks ztorstri at gmail.com for the report.
2014-04-12Fixed #22102 -- Made SimpleTestCase tests run before unittest.TestCase onesClaude Paroz
Thanks aptiko for the reporti and Tim Graham for the review.
2014-04-10Fixed #22419 -- Typo in docs/topics/db/multi-db.txt.Tim Graham
Thanks Josh Kupershmidt.
2014-04-10Fixed #22343 -- Disallowed select_for_update in autocommit modeShai Berger
The ticket was originally about two failing tests, which are fixed by putting their queries in transactions. Thanks Tim Graham for the report, Aymeric Augustin for the fix, and Simon Charette, Tim Graham & Loïc Bistuer for review.
2014-04-08Fixed #16205 -- Added an installation for Windows.Anubhav Joshi
2014-04-08Fixed #9535 -- Added a reference guide for file upload classes.Anubhav Joshi
2014-04-06Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi
2014-04-05Fixed #22216 -- Added Form.non_field_errors to form API doc.Tim Graham
2014-04-05Fixed #21649 -- Added optional invalidation of sessions when user password ↵Tim Graham
changes. Thanks Paul McMillan, Aymeric Augustin, and Erik Romijn for reviews.
2014-04-03Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham
Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
2014-04-02Fixed #22347 -- Unified FileSystemStorage documentation.Vishal Lal
Thanks nliberg for the report.
2014-03-31Fixed #22327 -- Turned BaseEmailBackend into a context managerDaniel Neuhäuser
Changed the BaseEmailBackend to allow usage as context manager to open and close connections.
2014-03-30Corrected an import in a model form docs example.Ramiro Morales
2014-03-27Fixed #21941 -- Documented the kwargs param of django.conf.urls.url().Tim Martin
Thanks cjerdonek for the report.
2014-03-24Removed versionadded/changed annotations for 1.6.Tim Graham
2014-03-24Fixed #22048 - Enhanced docs to cover nonexistent one-to-one relationships.Adam Kaliński
Thanks EvilDMP for the suggestion.
2014-03-24Fixed #22247 -- Replaced "upstream" with "downstream" in cache docs.Tim Graham
Thanks valgarv at gmx.net for the report.
2014-03-24Fixed #22265 -- Clarfied consistent behavior of migrations.Moayad Mardini
Thanks aruseni for the report.