summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-03-03Removed unnecessary imports.Aymeric Augustin
2013-03-02Fixed #19917 -- Added microseconds in default TIME_INPUT_FORMATSClaude Paroz
Thanks minddust for the report.
2013-03-02Fixed #19962 - Added a note about SESSION_EXPIRE_AT_BROWSER_CLOSE and ↵Tim Graham
browsers that persist sessions. Thanks David Sanders.
2013-03-02Fixed #18130 -- Made the isolation level configurable on PostgreSQL.Aymeric Augustin
Thanks limscoder for the report and niwi for the draft patch.
2013-03-02Add a BinaryField model fieldClaude Paroz
Thanks Michael Jung, Charl Botha and Florian Apolloner for review and help on the patch.
2013-03-01Fixed #19960 -- Fixed sentence in contrib.auth signals docsClaude Paroz
Thanks edd at slipszenko.net for the report.
2013-02-28Fixed #19929 -- Improved error when MySQL doesn't have TZ definitions.Aymeric Augustin
Thanks tomas_00 for the report.
2013-02-28Implemented persistent database connections.Aymeric Augustin
Thanks Anssi Kääriäinen and Karen Tracey for their inputs.
2013-02-28Fixed #19937 - Typo in class-based views intro.Tim Graham
2013-02-281.5 is no longer "UNDER DEVELOPMENT".Florian Apolloner
Thanks to Bruno Renie for reporting.
2013-02-28Added a Trac-related item to the release checklist.Aymeric Augustin
2013-02-27Merge pull request #858 from intgr/py3kdoc-fixTim Graham
Fixed a typo in Python 3 porting guide.
2013-02-27Fixed #19926 -- Fixed a link to code example in queries docsClaude Paroz
Thanks Randy Salvo for the report.
2013-02-27Refactored database exceptions wrapping.Aymeric Augustin
Squashed commit of the following: commit 2181d833ed1a2e422494738dcef311164c4e097e Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Wed Feb 27 14:28:39 2013 +0100 Fixed #15901 -- Wrapped all PEP-249 exceptions. commit 5476a5d93c19aa2f928c497d39ce6e33f52694e2 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Feb 26 17:26:52 2013 +0100 Added PEP 3134 exception chaining. Thanks Jacob Kaplan-Moss for the suggestion. commit 9365fad0a650328002fb424457d675a273c95802 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Feb 26 17:13:49 2013 +0100 Improved API for wrapping database errors. Thanks Alex Gaynor for the proposal. commit 1b463b765f2826f73a8d9266795cd5da4f8d5e9e Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Feb 26 15:00:39 2013 +0100 Removed redundant exception wrapping. This is now taken care of by the cursor wrapper. commit 524bc7345a724bf526bdd2dd1bcf5ede67d6bb5c Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Feb 26 14:55:10 2013 +0100 Wrapped database exceptions in the base backend. This covers the most common PEP-249 APIs: - Connection APIs: close(), commit(), rollback(), cursor() - Cursor APIs: callproc(), close(), execute(), executemany(), fetchone(), fetchmany(), fetchall(), nextset(). Fixed #19920. commit a66746bb5f0839f35543222787fce3b6a0d0a3ea Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Feb 26 14:53:34 2013 +0100 Added a wrap_database_exception context manager and decorator. It re-throws backend-specific exceptions using Django's common wrappers.
2013-02-27Fixed #19861 -- Transaction ._dirty flag improvementAnssi Kääriäinen
There were a couple of errors in ._dirty flag handling: * It started as None, but was never reset to None. * The _dirty flag was sometimes used to indicate if the connection was inside transaction management, but this was not done consistently. This also meant the flag had three separate values. * The None value had a special meaning, causing for example inability to commit() on new connection unless enter/leave tx management was done. * The _dirty was tracking "connection in transaction" state, but only in managed transactions. * Some tests never reset the transaction state of the used connection. * And some additional less important changes. This commit has some potential for regressions, but as the above list shows, the current situation isn't perfect either.
2013-02-27Fixed #16807 - Added a class-based views intro.Tim Graham
Thanks Preston Holmes for the text.
2013-02-26Added a note about creating new doc versions; update stable doc version ↵Carl Meyer
before announcement.
2013-02-26[py3] str.decode does not exist; str.encode was intendedMarti Raudsepp
2013-02-26Added note about updating default docs version in howto-release doc.Carl Meyer
2013-02-26Fixed #19922 - Typo in translation docs.Tim Graham
Thanks amoebob for the report.
2013-02-26Updated docs to reflect new tests layout.Florian Apolloner
Thanks to Ramiro Morales for the initial patch.
2013-02-25Fixed #6195 -- Documented caching options for javascript_catalog.Aymeric Augustin
2013-02-25Updated the release process docs to reflect the current practices.Aymeric Augustin
Fixed #17919.
2013-02-25Fixed #19801 - Added brackets to input_formats.Tim Graham
Thanks leandron85@ for the suggestion.
2013-02-25Fixed #19854 -- Turn Django's own Selenium tests off by default.Carl Meyer
2013-02-25Minor edits to some recently-added admin docs.Carl Meyer
2013-02-24Added missing versionadded for sqldropindexes command docsClaude Paroz
2013-02-24Merge pull request #835 from vdboor/docfixTim Graham
Fixed documentation typo (:mod: role in Syndication feed text)
2013-02-24Merge pull request #834 from vdboor/issue_19906_list_classesAymeric Augustin
Added column-<field_name> classes to the admin list
2013-02-24Add column-<field_name> classes to the admin listDiederik van der Boor
This simplifies CSS styling to set column widths.
2013-02-24Fix documentation :mod: role in Syndication feed text.Diederik van der Boor
2013-02-24Fixed #19394 --Added note about auth forms and custom user models.Ben Konrath
2013-02-24Fixed creation of html docs on python 3.Florian Apolloner
Thanks to Alan Lu for the report and the patch.
2013-02-24Added a note about Feed.get_context_data to the 1.6 release notes.Jacob Kaplan-Moss
2013-02-24Test case and docs for custom context data in feedsZbigniew Siciarz
Thanks Paul Winkler for the initial patch. (Ref #18112).
2013-02-24Merge pull request #717 from slurms/ticket_19746Florian Apolloner
Fixed #19746 -- Allow deserialization of pk-less data
2013-02-24Fixed #19253 -- Extracted template cache key building logicTomek Paczkowski
Introduced a public function django.core.cache.utils.make_template_fragment_key Thanks @chrismedrela for fruitful cooperation.
2013-02-24Merge pull request #819 from erikr/masterAymeric Augustin
Fixed #16302 -- Ensured contrib.comments is IPv6 capable.
2013-02-24Fixed #16302 -- Ensure contrib.comments is IPv6 capableErik Romijn
Changed the ip_address field for Comment to GenericIPAddressField. Added instructions to the release notes on how to update the schema of existing databases.
2013-02-24Fixed minor rst formatting glitch.Aymeric Augustin
2013-02-24Fixed #19810 -- MemcachedCache now uses pickle.HIGHEST_PROTOCOLBas Peschier
2013-02-24Merge pull request #817 from rybaktomasz/ticket_5568Honza Král
Fixes #5568 -- DROP INDEX subcommand
2013-02-24Made changes asked in review by HonzaKralTomasz Rybak
Add documentation for new command in django-admin.
2013-02-24Merge pull request #815 from zerok/tickets/11971Aymeric Augustin
Fixed #11971 -- Documented the serialization formats
2013-02-24Added more details about the various serialization formats.Horst Gutmann
2013-02-23Made a small clarification in tutorial.Preston Holmes
refs #19889
2013-02-23Various tweaks and additions to 'how to release Django' document.Carl Meyer
2013-02-23Removed superfluous cookie check from auth login.Preston Holmes
This is ensured through the CSRF protection of the view
2013-02-23Added an example of "default" database dictionary left blank; refs #19775.Tim Graham
Thanks wsmith323 for the patch.
2013-02-23Fixed #19402 - Clarified purpose of CustomUser.REQUIRED_FIELDSTim Graham
Thanks pydanny for the report and ptone for the patch.