| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-02-28 | 1.5 is no longer "UNDER DEVELOPMENT". | Florian Apolloner | |
| Thanks to Bruno Renie for reporting. | |||
| 2013-02-28 | Added a Trac-related item to the release checklist. | Aymeric Augustin | |
| 2013-02-27 | Merge pull request #858 from intgr/py3kdoc-fix | Tim Graham | |
| Fixed a typo in Python 3 porting guide. | |||
| 2013-02-27 | Fixed #19926 -- Fixed a link to code example in queries docs | Claude Paroz | |
| Thanks Randy Salvo for the report. | |||
| 2013-02-27 | Refactored 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-27 | Fixed #19861 -- Transaction ._dirty flag improvement | Anssi 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-27 | Fixed #16807 - Added a class-based views intro. | Tim Graham | |
| Thanks Preston Holmes for the text. | |||
| 2013-02-26 | Added 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 intended | Marti Raudsepp | |
| 2013-02-26 | Added note about updating default docs version in howto-release doc. | Carl Meyer | |
| 2013-02-26 | Fixed #19922 - Typo in translation docs. | Tim Graham | |
| Thanks amoebob for the report. | |||
| 2013-02-26 | Updated docs to reflect new tests layout. | Florian Apolloner | |
| Thanks to Ramiro Morales for the initial patch. | |||
| 2013-02-25 | Fixed #6195 -- Documented caching options for javascript_catalog. | Aymeric Augustin | |
| 2013-02-25 | Updated the release process docs to reflect the current practices. | Aymeric Augustin | |
| Fixed #17919. | |||
| 2013-02-25 | Fixed #19801 - Added brackets to input_formats. | Tim Graham | |
| Thanks leandron85@ for the suggestion. | |||
| 2013-02-25 | Fixed #19854 -- Turn Django's own Selenium tests off by default. | Carl Meyer | |
| 2013-02-25 | Minor edits to some recently-added admin docs. | Carl Meyer | |
| 2013-02-24 | Added missing versionadded for sqldropindexes command docs | Claude Paroz | |
| 2013-02-24 | Merge pull request #835 from vdboor/docfix | Tim Graham | |
| Fixed documentation typo (:mod: role in Syndication feed text) | |||
| 2013-02-24 | Merge pull request #834 from vdboor/issue_19906_list_classes | Aymeric Augustin | |
| Added column-<field_name> classes to the admin list | |||
| 2013-02-24 | Add column-<field_name> classes to the admin list | Diederik van der Boor | |
| This simplifies CSS styling to set column widths. | |||
| 2013-02-24 | Fix documentation :mod: role in Syndication feed text. | Diederik van der Boor | |
| 2013-02-24 | Fixed #19394 --Added note about auth forms and custom user models. | Ben Konrath | |
| 2013-02-24 | Fixed creation of html docs on python 3. | Florian Apolloner | |
| Thanks to Alan Lu for the report and the patch. | |||
| 2013-02-24 | Added a note about Feed.get_context_data to the 1.6 release notes. | Jacob Kaplan-Moss | |
| 2013-02-24 | Test case and docs for custom context data in feeds | Zbigniew Siciarz | |
| Thanks Paul Winkler for the initial patch. (Ref #18112). | |||
| 2013-02-24 | Merge pull request #717 from slurms/ticket_19746 | Florian Apolloner | |
| Fixed #19746 -- Allow deserialization of pk-less data | |||
| 2013-02-24 | Fixed #19253 -- Extracted template cache key building logic | Tomek Paczkowski | |
| Introduced a public function django.core.cache.utils.make_template_fragment_key Thanks @chrismedrela for fruitful cooperation. | |||
| 2013-02-24 | Merge pull request #819 from erikr/master | Aymeric Augustin | |
| Fixed #16302 -- Ensured contrib.comments is IPv6 capable. | |||
| 2013-02-24 | Fixed #16302 -- Ensure contrib.comments is IPv6 capable | Erik 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-24 | Fixed minor rst formatting glitch. | Aymeric Augustin | |
| 2013-02-24 | Fixed #19810 -- MemcachedCache now uses pickle.HIGHEST_PROTOCOL | Bas Peschier | |
| 2013-02-24 | Merge pull request #817 from rybaktomasz/ticket_5568 | Honza Král | |
| Fixes #5568 -- DROP INDEX subcommand | |||
| 2013-02-24 | Made changes asked in review by HonzaKral | Tomasz Rybak | |
| Add documentation for new command in django-admin. | |||
| 2013-02-24 | Merge pull request #815 from zerok/tickets/11971 | Aymeric Augustin | |
| Fixed #11971 -- Documented the serialization formats | |||
| 2013-02-24 | Added more details about the various serialization formats. | Horst Gutmann | |
| 2013-02-23 | Made a small clarification in tutorial. | Preston Holmes | |
| refs #19889 | |||
| 2013-02-23 | Various tweaks and additions to 'how to release Django' document. | Carl Meyer | |
| 2013-02-23 | Removed superfluous cookie check from auth login. | Preston Holmes | |
| This is ensured through the CSRF protection of the view | |||
| 2013-02-23 | Added an example of "default" database dictionary left blank; refs #19775. | Tim Graham | |
| Thanks wsmith323 for the patch. | |||
| 2013-02-23 | Fixed #19402 - Clarified purpose of CustomUser.REQUIRED_FIELDS | Tim Graham | |
| Thanks pydanny for the report and ptone for the patch. | |||
| 2013-02-23 | Fixed #19579 - Documented that "providing_args" is purely documentational. | Tim Graham | |
| 2013-02-23 | Fixed #19880 - Fixed an error in the form wizard initial_dict example. | Tim Graham | |
| Thanks almalki for the report. | |||
| 2013-02-23 | Fixed #19775 - Clarified requirements of the "default" database. | Tim Graham | |
| Thanks monkut for the report and wsmith323 for the patch. | |||
| 2013-02-23 | Some updates to "how to release Django": | Jacob Kaplan-Moss | |
| Typo fixes, spell check, some more specifics where possible. | |||
| 2013-02-23 | Added a draft document explaining how to release Django. | Jacob Kaplan-Moss | |
| Thanks to James for the first draft; I made a few changes (svn->git) and some supporting links, but mostly I added FIXME's. | |||
| 2013-02-23 | Added test runner option to skip Selenium tests (#19854). | Zbigniew Siciarz | |
| 2013-02-23 | Updated example to use staticfiles static template tag, thanks reinout for ↵ | Tim Graham | |
| the suggestion, refs #19675. | |||
| 2013-02-23 | Fixed #19752 - Changed Postgres version numbers to 9.x to avoid having to ↵ | Tim Graham | |
| update them each minor release. | |||
| 2013-02-23 | Updated static file example in overview to use static template tag, refs #19675. | Tim Graham | |
| Thanks jezdez for the note. | |||
