summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2015-03-20Fixed #24285 -- Made for_user argument optional for {% get_admin_log %} tagYair Chuchem
2015-03-19Fixed #24417 -- Added ModelAdmin.get_list_select_related()Loek van Gent
2015-03-19Fixed typo in escape_filter() docstring.Jon Walsh
2015-03-18Made is_safe_url() reject URLs that start with control characters.Tim Graham
This is a security fix; disclosure to follow shortly.
2015-03-18Fixed an infinite loop possibility in strip_tags().Tim Graham
This is a security fix; disclosure to follow shortly.
2015-03-18Fixed #24495 -- Allowed unsaved model instance assignment check to be bypassed.Karl Hobley
2015-03-18Fixed build failure introduced by refs #23757.Tim Graham
2015-03-18Fixed #23757 -- Added 3D introspection support to Spatialite backendClaude Paroz
Thanks Tim Graham for the review.
2015-03-18Fixed #23960 -- Removed http.fix_location_headerClaude Paroz
Thanks Carl Meyer for the report and Tim Graham for the review.
2015-03-18Fixed #24476 -- Added context manager/decorator for overriding script prefix.Bas Peschier
Tests were using an undocumented keyword argument for easily overriding script prefix while reversing. This is now changed into a test utility which can be used as decorator or context manager.
2015-03-18Refs #24469 -- Fixed escaping of forms, fields, and media in non-Django ↵Moritz Sichert
templates.
2015-03-18Updated translation catalogsClaude Paroz
Strings are frozen in anticipation of the Django 1.8 release. Forward port of 1cd2584c980 from stable/1.8.x
2015-03-18Removed translations from contrib.messagesClaude Paroz
The only one translatable string will be handled in the core catalog. Forward port of 1bb712d79c8d0 from stable/1.8.x
2015-03-17Fixed typo in refs #15579 comment.Tim Graham
2015-03-17Refs #24485 -- Renamed some expression typesJosh Smeaton
2015-03-17Fixed #24486 -- Fixed error with datetime and DurationField arithmeticJosh Smeaton
2015-03-17Fixed #15579 -- Added ability to delete only child models in multi-table ↵Andriy Sokolovskiy
inheritance.
2015-03-17Made SRID a required parameter for GDALRaster instantiation; refs #23804.Daniel Wiesmann
Earlier versions of GDAL do not allow the srid to be set to 0, so it should be a required parameter to ensure compatibility.
2015-03-16Added write support for GDALRasterDaniel Wiesmann
- Instantiation of GDALRaster instances from dict or json data. - Retrieve and write pixel values in GDALBand objects. - Support for the GDALFlushCache in gdal C prototypes - Added private flush method to GDALRaster to make sure all data is written to files when file-based rasters are changed. - Replaced ``ptr`` with ``_ptr`` for internal ptr variable Refs #23804. Thanks Claude Paroz and Tim Graham for the reviews.
2015-03-16Fixed #24427 -- Stopped writing migration files in dry run mode when merging.John Giannelos
Also added display of migration to stdout when verbosity=3.
2015-03-16Fixed #24488 -- Made create_default_site() use default pk of 1.Marten Kenbeek
Fixed create_default_site() to use a default value in case settings.SITE_ID isn't set; refs #23945.
2015-03-16Fixed #24493 -- Added BaseContext.setdefault()Preston Timmons
2015-03-16Fixed #23926 -- Improved validation error for custom permissions that are ↵Joeri Bekker
too long.
2015-03-16Fixed #5986 -- Added ability to customize order of Form fieldsThomas Tanner
2015-03-14Fixes #23643 -- Added chained exception details to debug view.Tomáš Ehrlich
2015-03-14Fixed #24480 -- Marked strings in contrib.gis templates for translation.Tim Graham
2015-03-14Fixed #12982 -- Added a get_or_set() method to the BaseCache backend.Berker Peksag
2015-03-13Fed tuples to startswith when appropriateClaude Paroz
2015-03-13Fixed #24416 -- Added support for lazy email addresses.medmunds
2015-03-13Fixed #24478 -- Added NUMBER_GROUPING value for IcelandicSævar Öfjörð Magnússon
2015-03-13Fixed #24122 -- Redirected to translated url after setting languageClaude Paroz
Thanks gbdlin for the initial patch and Tim Graham for the review.
2015-03-12Fixed #24139 -- Changed HttpResponse.reason_phrase to evaluate based on ↵Jon Dufresne
status_code.
2015-03-12Fixed #24013 -- Fixed escaping of reverse() prefix.Bas Peschier
Prefix was treated as a part of the url pattern, which it is not. Improved tests to conform with RFC 3986 which allows certain characters in path segments without being escaped.
2015-03-12Fixed #24226 -- Changed admin EMPTY_CHANGELIST_VALUE from (None) to -Tim Graham
2015-03-12Fixed #12943 -- Allowed unnamed arguments to be propagated in includesBas Peschier
Propagated unnamed arguments as positional arguments into included URLconfs if no named arguments are defined. Positional and keyword arguments are never combined.
2015-03-12Fixed #24468 -- Made signed cookies cache backend resilient to unpickling ↵Tim Graham
exceptions.
2015-03-11Fixed #24467 -- Removed conditional inclusion of actions.js & prepopulate.js.Anton Danilchenko
The JavaScript may be required when using ModelAdmin.get_actions() or get_prepopulated_fields(). Always including them is the easiest solution.
2015-03-11Fixed #24463 -- Removed mod_python functionality from HttpRequest._get_scheme()Rik
2015-03-10Fixed #24471 -- Enhanced urlize regex to exclude quotes and angle brackets.Tim Graham
2015-03-10Fixed escaping regression in urlize filter.Tim Graham
Now that the URL is always unescaped as of refs #22267, we should re-escape it before inserting it into the anchor.
2015-03-09Fixed #24455 -- Fixed crash in debug view with lazy objectsBas Peschier
2015-03-09Made runserver use leave_locale_aloneClaude Paroz
2015-03-09Fixed #24382 -- Allowed unicode chars inside formatted numbersClaude Paroz
Thanks Jacob Rief for the report and Tim Graham for the review.
2015-03-09Fixed #24464 -- Made built-in HTML template filter functions escape their ↵Erik Romijn
input by default. This may cause some backwards compatibility issues, but may also resolve security issues in third party projects that fail to heed warnings in our documentation. Thanks Markus Holtermann for help with tests and docs.
2015-03-09Fixed #24171 -- Fixed failure with complex aggregate query and expressionsAnssi Kääriäinen
The query used a construct of qs.annotate().values().aggregate() where the first annotate used an F-object reference and the values() and aggregate() calls referenced that F-object. Also made sure the inner query's select clause is as simple as possible, and made sure .values().distinct().aggreate() works correctly.
2015-03-08Fixed #23407 -- Extended coverage of makemigrations --noinput option.Marten Kenbeek
Changed --noinput option in makemigrations to suppress all user prompts, not just when combined with --merge.
2015-03-08Fixed #23173 -- Fixed incorrect stripping of SCRIPT_URLBas Peschier
2015-03-08Fixed #23838 -- added missing `__iter__` to LazyObjectRik
2015-03-08Fixed #24397 -- Sped up rendering multiple model states.Marten Kenbeek
Set apps.ready to False when rendering multiple models. This prevents that the cache on Model._meta is expired on all models after each time a single model is rendered. Prevented that Apps.clear_cache() refills the cache on Apps.get_models(), so that the wrong value cannot be cached when cloning a StateApps.
2015-03-07Fixed #23986 -- Fixed collectstatic --clear failure if STATIC_ROOT dir ↵Sztrovacsek
doesn't exist.