| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-12-17 | Fixed display of lists after website redesign | Markus Holtermann | |
| Thanks Brian Jacobel for the report. refs django/djangoproject.com#197 | |||
| 2014-12-15 | Fixed #23884 -- Moved FlatPageSitemap into django.contrib.flatpages. | Berker Peksag | |
| 2014-12-15 | Fixed #23822 -- Added support for serializing model managers in migration | Markus Holtermann | |
| Thanks to Shai Berger, Loïc Bistuer, Simon Charette, Andrew Godwin, Tim Graham, Carl Meyer, and others for their review and input. | |||
| 2014-12-12 | Fixed #23941 -- Removed implicit decimal formatting from expressions. | Josh Smeaton | |
| 2014-12-12 | Fixed template tag braces spacing. | Kevin Marsh | |
| 2014-12-11 | Fixed #23977 -- Added setdefault() method to HttpResponse | Sergey Parkhomenko | |
| 2014-12-09 | Fixed #23961 -- Clarified when makemigrations will create a directory. | Tim Graham | |
| 2014-12-08 | Fixed typo in spatialite.txt | Claude Paroz | |
| Thanks Tim Graham for spotting the error. | |||
| 2014-12-08 | Ran 'CREATE EXTENSION postgis' during prepare_database hook | Claude Paroz | |
| DatabaseWrapper.prepare_database has been introduced in 307de67073. | |||
| 2014-12-08 | Fixed #20968 -- Checked Spatialite metadata before migrations | Claude Paroz | |
| Thanks Kenial S. Lee for the initial patch and Tim Graham for the review. | |||
| 2014-12-08 | Fixed #23974 -- Clarified wording of FileField.save/delete save parameter. | Tim Graham | |
| Thanks GreenAsJade. | |||
| 2014-12-08 | Refs #23964 -- Added warning about case-insensitive, unique fields used with ↵ | Jon Dufresne | |
| formsets | |||
| 2014-12-08 | Fixed #23968 -- Replaced list comprehension with generators and dict ↵ | Jon Dufresne | |
| comprehension | |||
| 2014-12-06 | Fixed #23965 -- Mentioned that FieldFile inherits from File | Tim Graham | |
| 2014-12-06 | Fixed typo in docs/ref/applications.txt. | Peter Inglesby | |
| 2014-12-06 | Fixed documentation of GeoModelAdmin.openlayers_url | Claude Paroz | |
| 2014-12-05 | Corrected example in Form.has_changed() docs. | Tim Graham | |
| 2014-12-04 | Added versionadded annotation for contrib.postgres. | Tim Graham | |
| 2014-12-03 | Fixed typo in docs/ref/request-response.txt. | Theodoros Ikonomou | |
| 2014-12-03 | Removed redundant numbered parameters from str.format(). | Berker Peksag | |
| Since Python 2.7 and 3.1, "{0} {1}" is equivalent to "{} {}". | |||
| 2014-12-02 | Fixed incorrect use of rst section heirarchy in form fields docs. | Elena Williams | |
| 2014-11-29 | Removed instructions to create a PostgreSQL cluster in GIS docs | Claude Paroz | |
| Creating a new cluster is neither required not recommendable for most users. The previous section explains how to create a user with sufficient permissions to automatically create a database during tests. | |||
| 2014-11-28 | Fixed #23423 -- Added unaccent lookup in django.contrib.postgres | Thomas Chaumeny | |
| 2014-11-28 | Fixed #23728 -- Added the --exit option to makemigrations. | Tim Heap | |
| If no changes that need migrations are found, `makemigrations --exit` exits with error code 1. | |||
| 2014-11-28 | Fixed #901 -- Added Model.refresh_from_db() method | Anssi Kääriäinen | |
| Thanks to github aliases dbrgn, carljm, slurms, dfunckt, and timgraham for reviews. | |||
| 2014-11-27 | Fixed #23338 -- Added warning when unique=True on ForeigKey | Diego Guimarães | |
| Thanks Jonathan Lindén for the initial patch, and Tim Graham and Gabe Jackson for the suggestions. | |||
| 2014-11-27 | Added notes on registering signals in ready() and using dispatch_uid. | wrwrwr | |
| Refs #23641. | |||
| 2014-11-26 | Fixed #23801 -- Added warning when max_length is used with IntegerField | MattBlack85 | |
| 2014-11-26 | Fixed #23901 -- Documented how to use SpatiaLite with Homebrew. | Kenial Lee | |
| 2014-11-26 | Updated GIS docs to use doc links. | Tim Graham | |
| 2014-11-26 | Updated formtools docs to point at new package outside the Django repo. | Jannis Leidel | |
| Refs #23677. | |||
| 2014-11-25 | Fixed #23914 -- Improved {% now %} to allow storing its result in the context. | Baptiste Mispelon | |
| Thanks to Tim for the review. | |||
| 2014-11-25 | Added warning about get_inline_instances() permission checking; refs #23754. | Simon Charette | |
| 2014-11-25 | Fixed #23682 -- Enhanced circular redirects detection in tests. | wrwrwr | |
| When the test client detects a redirect to a URL seen in the currently followed chain it will now raise a RedirectCycleError instead of just returning the first repeated response. It will also complain when a single chain of redirects is longer than 20, as this often means a redirect loop with varying URLs, and even if it's not actually one, such long chains are likely to be treated as loops by browsers. Thanks Preston Timmons, Berker Peksag, and Tim Graham for reviews. | |||
| 2014-11-25 | Fixed #21587 -- Added a warning for changing default of RedirectView.permanent. | Berker Peksag | |
| 2014-11-25 | Fixed typo in docs/ref/django-admin.txt | Richard Olsson | |
| 2014-11-24 | Fixed #23742 -- Added an option to reverse tests order. | wrwrwr | |
| This is useful for debugging side effects affecting tests that are usually executed before a given test. Full suite and pair tests sort cases more or less deterministically, thus some test cross-dependencies are easier to reveal by reversing the order. Thanks Preston Timmons for the review. | |||
| 2014-11-24 | Fixed spelling in docs/ref/django-admin.txt. | Tim Graham | |
| 2014-11-23 | Deprecated dirs argument to override TEMPLATE_DIRS. | Aymeric Augustin | |
| Cancels 2f0566fa. Refs #4278. | |||
| 2014-11-22 | Updated an old note about GEOSGeometry.transform | Claude Paroz | |
| 2014-11-21 | Fixed #21753 -- Raised exception when both `form_class` and `fields` are ↵ | Berker Peksag | |
| specified. | |||
| 2014-11-21 | Fixed #23865 -- documented how to assign errors to a field in Model.clean() | Alasdair Nicol | |
| Also added a unit test wit the simpler syntax which we have documented, where the dictionary values are strings. | |||
| 2014-11-21 | Corrected Permission.max_length in docs; refs #8162. | Sergey Fedoseev | |
| 2014-11-20 | Added missing backticks to form validation docs | Alasdair Nicol | |
| 2014-11-20 | Fixed #23817 -- Updated docs on QuerySet evaluation | Michal Petrucha | |
| Removed inaccurate info about partial evaluation after refs #18702. Added information on modifying sliced QuerySets; refs #22503. | |||
| 2014-11-19 | Fixed #23410 -- Avoided unnecessary rollbacks in related apps when migrating ↵ | Carl Meyer | |
| backwards. | |||
| 2014-11-18 | Fixed #23849 -- Documented the locmem.Loader class. | Preston Timmons | |
| 2014-11-18 | Fixed #18714 -- Added 'fuzzy' compilemessages option | Anton Baklanov | |
| 2014-11-17 | Fix malformed note directives. | Carl Meyer | |
| 2014-11-16 | Moved all template loaders under django.template.loaders. | Aymeric Augustin | |
| Reformatted the code of base.Loader according to modern standards. Turned the test template loader into a regular locmem.Loader -- but didn't document it. Added a normal deprecation path for BaseLoader which is a public API. Added an accelerated deprecation path for TestTemplateLoader which is a private API. | |||
