summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-20Fixed incorrect rendered widget in forms example.Jon Dufresne
2016-04-20Fixed #26504 -- Avoided logging "Not Found" warnings if a middleware handles ↵Carl Worth
the 404. For example, this avoids a warning in the case of a request that's redirected to a language-prefixed URL by LocaleMiddleware.
2016-04-20Added tests for logging of Http404 warnings.Carl Worth
2016-04-20Used @override_settings decorator rather than "with" to reduce indentation.Carl Worth
2016-04-20Fixed #26281 -- Added a helpful error message for an invalid format ↵Marko Benko
specifier to dateformat.format().
2016-04-20Fixed #26520 -- Fixed a regression where SessionBase.pop() didn't return a ↵Tobias Kroenke
KeyError.
2016-04-20Refs #24621 -- Added a test for SessionBase.pop()'s 'default' argument.Nicolas Noé
2016-04-20Fixed #16327 -- Redirected "Save as new" to change view instead of the ↵Markus Amalthea Magnuson
changelist.
2016-04-20Fixed typo in GenericRelatedObjectManager.add() error message.Michal Petrucha
2016-04-19Refs #26033 -- Temporarily pinned argon2-cffi test requirement.Tim Graham
The latest version (16.1) is backwards-incompatible for Django.
2016-04-19Fixed #26512 -- Added tests for SpatialRefSysMixin.get_units().Nicolas Noé
2016-04-19Fixed #26475 -- Added functools.partial() support to migrations autodetector.Matthew Schinckel
2016-04-19Refs #26085, #11505 -- Cleared Site cache in contenttypes_tests.Tim Graham
2016-04-19Fixed #26516 -- Added minlength attribute when forms.CharField.min_length is ↵Jon Dufresne
set.
2016-04-19Fixed #22561 -- Prevented too long lines in email messagesClaude Paroz
Thanks NotSqrt for the excellent report and Tim Graham for the review.
2016-04-18Fixed typo in docs/topics/class-based-views/mixins.txteltronix
2016-04-18Fixed #26498 -- Fixed TimeField microseconds round-tripping on MySQL and SQLite.Lukasz Wiecek
Thanks adamchainz for the report and review.
2016-04-18Fixed #26514 -- Documented that User.refresh_from_db() doesn't clear the ↵Tim Graham
permission cache.
2016-04-18Fixed typo in docs/ref/template-response.txt.eltronix
2016-04-17Fixed #25951 -- Trimmed default representation of GEOSGeometryClaude Paroz
Thanks Sergey Fedoseev for the report.
2016-04-16Fixed #26085 -- Fixed contenttypes shortcut() view crash with a null fk to Site.dani poni
Thanks Fabien Schwob for the initial patch.
2016-04-16Fixed #26509 -- Deprecated the contrib.gis.utils.precision_wkt() function.krishbharadwaj
2016-04-16Refs #26432 -- Skipped a raster test as needed.Tim Graham
2016-04-16Updated indentation in GEOS docsClaude Paroz
2016-04-16Fixed #26510 -- Allowed dim/trim/precision as WKTWriter init argumentsClaude Paroz
Thanks Tim Graham for the review.
2016-04-16Set WKTWriter trim/precision only when changedClaude Paroz
2016-04-16Converted property syntax of WKBWriterClaude Paroz
2016-04-16Updated Windows docs for completenessKatie McLaughlin
- Update installer option for PATH installation - Add link directly to pip install docu, ref get-pip.py - Add note about installing Django to the virtualenv that was setup in the previous step
2016-04-15Removed unused wk_col property of SpatialRefSys models.Tim Graham
Unused since ae7cb577ddbea48aaed26cbbf69c77078a99e221.
2016-04-15Fixed #19567 -- Added JavaScriptCatalog and JSONCatalog class-based viewsClaude Paroz
Thanks Cristiano Coelho and Tim Graham for the reviews.
2016-04-15Converted property syntax in django.core.paginatorClaude Paroz
2016-04-15Removed unused AdminCommaSeparatedIntegerFieldWidget.Tim Graham
Unused since f212b24b6469b66424354bf970f3051df180b88d.
2016-04-14Refs #26502 -- Added choices to Form.__getitem__() KeyError message.Tim Graham
2016-04-13Refs #26484 -- Avoided masking useful exceptions in manage.py's ImportError.Tim Graham
2016-04-13Added stub release notes for 1.8.13.Tim Graham
2016-04-13Fixed #26486 -- Fixed a select_related() + defer() MTI edge case.Tim Graham
2016-04-13Refs #16508 -- Renamed the current "virtual" fields to "private".Michal Petrucha
The only reason why GenericForeignKey and GenericRelation are stored separately inside _meta is that they need to be cloned for every model subclass, but that's not true for any other virtual field. Actually, it's only true for GenericRelation.
2016-04-13Fixed #26493 -- Documented how built-in signals are sent.Filipa Andrade
2016-04-12Refs #17635 -- Tested the Cast function in a geography to geometry contextClaude Paroz
Thanks Tim Graham for the review.
2016-04-12Refs #22936 -- Moved IntegerField.get_prep_lookup() logic to lookups.Tim Graham
2016-04-12Fixed #26432 -- Fixed size tuple order when using numpy reshape on a GDALBand.Opa-
2016-04-12Fixed #26492 -- Fixed "maximum recursion depth exceeded" migrate error.Berker Peksag
A regression introduced in 0d3c616fbb2f49fa7ff6809e5a6777275352b35b; refs #26351.
2016-04-12Removed unused view and url from shortcuts tests.Alasdair Nicol
The test that used these was removed in 9114fe8adabe626619665c9853ba952798da5530.
2016-04-11Split form's test_fields.py into different files.Berker Peksag
2016-04-11Used assertRaisesMessage in a couple defer tests.Tim Graham
2016-04-10Fixed #26485 -- Fixed typo in docs/intro/tutorial07.Denis Afonso
2016-04-09Fixed #25847 -- Made User.is_(anonymous|authenticated) properties.Jeremy Lainé
2016-04-09Fixed #26479 -- Added 'is not' operator to the if tag.Alasdair Nicol
2016-04-09Moved docs about chaining if tag comparison operators.Alasdair Nicol
2016-04-09Fixed #26145 -- Made debug context processor return queries for all databases.Mounir Messelmeni