summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-02-13Fixed #24319 -- Added validation for UUID model fieldJosh Smeaton
2015-02-12Fixed #24333 -- Fixed admin history view crash with non-integer slug.Tim Graham
2015-02-12Forwardported item in 1.7.5 release notes.Tim Graham
2015-02-12Refs #24215 -- Prevented pending lookup pollution by abstract models.Simon Charette
2015-02-12Clarified timeout=0 in cache docs.Thomas Güttler
2015-02-12Added a test for UUIDField serialization; refs #24320.Tim Graham
2015-02-12Added missing import from last commit.Tim Graham
2015-02-12Fixed #17716 -- Prevented include('...', app_name='...') without a namespace.Tim Graham
2015-02-12Subclassed template.Node instead of Node for consistency.Nik Nyby
2015-02-12Fixed #24161 -- Stored the user primary key as a serialized value in the ↵Tim Graham
session. This allows using a UUIDField primary key along with the JSON session serializer. Thanks to Trac alias jamesbeith for the report and Simon Charette for the initial patch.
2015-02-12Fixed #24321 -- Improved `utils.http.same_origin` compliance with RFC6454Lukas Klein
2015-02-12Refs #14030 -- Improved expression support for python valuesJosh Smeaton
2015-02-11Refs #14497 -- Handled empty readonly admin FileFieldsCollin Anderson
2015-02-11Moved contrib.webdesign tests out of contrib.Tim Graham
2015-02-11Updated docs and runtests.py for removal of tests from contrib.Tim Graham
2015-02-11Moved contrib.gis tests out of contrib.Tim Graham
2015-02-11Moved non-documented auth test models to the new test location.Tim Graham
2015-02-11Moved contrib.auth tests out of contrib.Tim Graham
2015-02-11Moved contrib.humanize tests out of contrib.Tim Graham
2015-02-11Moved contrib.redirects tests out of contrib.Tim Graham
2015-02-11Moved contrib.messages tests out of contrib.Tim Graham
2015-02-11Moved contrib.sessions tests out of contrib.Tim Graham
2015-02-11Moved contrib.sitemaps tests out of contrib.Tim Graham
2015-02-11Moved contrib.sites tests out of contrib.Tim Graham
2015-02-11Moved contrib.flatpages tests out of contrib.Tim Graham
2015-02-11Prevented some test commands from needlessly running system checks.Tim Graham
This is a performance optimization and also fixes test errors with the upcoming merge of contrib tests into tests/. The tests failed on MySQL because the models with GeometryField were being checked but the non-GIS MySQL backend didn't know how to handle them.
2015-02-10Fixed #24146 -- Allowed model._meta.get_field() to be used after ↵Daniel Pyrathon
apps.models_ready
2015-02-10Fixed #24200 -- Made introspection bypass statement cacheJosh Smeaton
2015-02-10Disallowed importing concrete models without an application.Aymeric Augustin
Removed fragile algorithm to find which application a model belongs to. Fixed #21680, #21719. Refs #21794.
2015-02-10Fixed a crash of the debug page.Aymeric Augustin
During the autumn DST change, the template engine would fail to convert the naive representation of now when USE_TZ = True. Passing now in UTC eliminates the issue. Thanks mbertheau and tricoder42. Refs #23714.
2015-02-11Ignored flake8 newly added E402 and E731.Loic Bistuer
2015-02-11Fixed isort import that's inconsistent between platforms.Loic Bistuer
2015-02-10Updated docs on running selenium tests.Tim Graham
2015-02-10Split DTL context creation into its own function.Aymeric Augustin
This reduces the length of rope RequestContext gives users to hang themselves with. Thanks Alex Hill for the report and Tim Graham for the review.
2015-02-09Removed Django 1.7 MIDDLEWARE_CLASSES upgrade check.Tim Graham
2015-02-09Refactored an admin_view test case.Simon Charette
Used setUpTestData, client login/logout and manager's count() method. Thanks to Tim for the review.
2015-02-09Moved a custom admin template test to a more appropriate case.Simon Charette
Thanks to Tim for the review.
2015-02-09Removed some obsolete absolute_imports.Tim Graham
2015-02-09Fixed #24269 -- Added docs about the process of managing translations in Django.Tim Graham
2015-02-09Replaced some more hardcoded admin URLsClaude Paroz
2015-02-09Removed docs about unmigrated apps as they are not supported in Django 1.9.Tim Graham
2015-02-09Fixed #24302 -- Added DurationField.formfield()Tim Graham
2015-02-09Moved numpy import helper to shortcutsDaniel Wiesmann
Numpy will be used in both the geos and gdal modules, so the import should sit in the parent module gis.
2015-02-09Updated my email address in AUTHORS.Justine Alexandra Roberts Tunney
2015-02-09Removed unnecessary parentheses in model check messages.Tim Graham
2015-02-09Fixed #24249 -- Improved field shadowing validation in model multi-inheritance.Aron Podrigal
2015-02-09Unified local imports in django.db.backends.mysql.я котик пур-пур
2015-02-09Removed stray comment in auth.views.Tim Graham
2015-02-08Simplified the lazy CSRF token implementation in csrf context processor.Alex Gaynor
This significantly improves performance on PyPy. The previous implementation would generate a new class on every single request, which is relatively slow.
2015-02-08Optimized allow_lazy() by not generating a new lazy wrapper on each invocation.Alex Gaynor
This dramatically improves performance on PyPy. The following benchmark: python -mtimeit -s "from django.utils.functional import allow_lazy; from django.utils.translation import ugettext_lazy; f = allow_lazy(lambda s: s, str)" "f(ugettext_lazy('abc'))" goes from 390us per loop to 165us.