| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-26 | Fixed #21866 -- Replaced "COMMIT" in managmement command SQL with backend hook. | Wojciech Banaś | |
| 2014-01-26 | Fixed #21880 -- Added missing items to django.utils.timezone.__all__. | Aymeric Augustin | |
| Thanks Wim for the report. | |||
| 2014-01-26 | Fixed #21877 -- Renamed django.apps.base to config. | Aymeric Augustin | |
| 2014-01-26 | Took advantage of the new get_model API. Refs #21702. | Aymeric Augustin | |
| 2014-01-26 | Fixed #21702 -- get_model('app_label.ModelName'). | Aymeric Augustin | |
| Also added tests for get_model. | |||
| 2014-01-26 | Moved RequestSite and get_current_site. | Aymeric Augustin | |
| Following the app-loading refactor, these objects must live outside of django.contrib.sites.models because they must be available without importing the django.contrib.sites.models module when django.contrib.sites isn't installed. Refs #21680. Thanks Carl and Loic for reporting this issue. | |||
| 2014-01-25 | Moved sys.path-extending decorator to django.test.utils and used throughout ↵ | Carl Meyer | |
| test suite. Thanks Aymeric for the suggestion. | |||
| 2014-01-25 | Fixed #17304 -- Allow single-path and configured-path namespace packages as ↵ | Carl Meyer | |
| apps. Also document the conditions under which a namespace package may or may not be a Django app, and raise a clearer error message in those cases where it may not be. Thanks Aymeric for review and consultation. | |||
| 2014-01-25 | Fixed #21873 -- Removed duplicate import. | Aymeric Augustin | |
| Thanks Sephi for the report. | |||
| 2014-01-25 | Merge pull request #2211 from carljm/t21867 | Jannis Leidel | |
| Fixed #21867 -- Removed AppStaticStorage; app paths are now AppConfig's job. | |||
| 2014-01-25 | Fixed #21829 -- Added default AppConfigs. | Aymeric Augustin | |
| Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion. | |||
| 2014-01-24 | Fixed #21871 -- Fixed Apps.is_installed() for apps with custom label. | Carl Meyer | |
| Thanks Aymeric for design discussion. | |||
| 2014-01-25 | Unroll choices iterators in field deconstruction | Andrew Godwin | |
| 2014-01-25 | Fixed #21783: More SQLite default fun with nulls. | Andrew Godwin | |
| 2014-01-24 | Fixed #21867 -- Removed AppStaticStorage; app paths are now AppConfig's job. | Carl Meyer | |
| AppStaticStorage only provided one thing over FileSystemStorage, which was taking an app name (import path) and translating it into a filesystem path. This is now something that should be done via app_config.path instead, leaving AppStaticStorage with no reason for existence. It should be safe to remove, as it was undocumented internal API. There was some kind of feature in the AppDirectoriesFinder code related to a "prefix" attribute on the storage class used by AppDirectoriesFinder. Since this feature was undocumented, untested, and of unclear purpose, I removed it as well. | |||
| 2014-01-24 | Fixed typo in error message. | Arne Brodowski | |
| 2014-01-24 | Fixed #21870 -- Admin check for list_editable_item | Arne Brodowski | |
| During the admin check for list_editable _check_list_editable_item should return an empty list if all checks pass. Additionally the Testcase test_readonly_and_editable was changed to test what the name implies instead of duplicating the logic of test_readonly. | |||
| 2014-01-24 | Fix soft-apply detection of migrations with dependencies | Andrew Godwin | |
| 2014-01-24 | Fixed #21787 -- regression in MTI .exclude() queries | Anssi Kääriäinen | |
| 2014-01-22 | [1.7.x] Bump version number for 1.7 alpha 1.1.7a1 | James Bennett | |
| 2014-01-22 | Fixed #21846 -- Made NestedObjects handle related_name with %(app_label)s or ↵ | Loic Bistuer | |
| %(class)s. | |||
| 2014-01-22 | Merge pull request #2198 from Markush2010/ticket21852 | Andrew Godwin | |
| Fixed #21852 -- Make migration writer serialize iterators | |||
| 2014-01-22 | Fixed #21850 -- Made GeometryField.geodetic case insensitive | Oliver George | |
| 2014-01-22 | Fixed #21852 -- Make migration writer serialize iterators | Markus Holtermann | |
| 2014-01-21 | Merge pull request #2186 from zemanel/master | Tim Graham | |
| Fixed typo on docstring | |||
| 2014-01-21 | Corrected problem with MySQL checks handler and related fields. | Russell Keith-Magee | |
| 2014-01-20 | Fixes #21833 -- Fix UserSettingsHolder.is_overridden() and add tests. | Carl Meyer | |
| 2014-01-21 | Refs #21831 -- Softened the TestClient dependency on contrib.auth. | Russell Keith-Magee | |
| This is to prevent an import of django.test causing an import (and thus an implicit checks regisration) for an app that may not be in `INSTALLED_APPS`. Better fixes may be possible when #20915 and/or #21829 are addressed. Thanks to @carljm for the report. | |||
| 2014-01-20 | Added ManifestStaticFilesStorage to staticfiles contrib app. | Jannis Leidel | |
| It uses a static manifest file that is created when running collectstatic in the JSON format. | |||
| 2014-01-20 | fixed typo on docstring | José Moreira | |
| 2014-01-20 | Fixed a couple of deprecation warnings | Anssi Kääriäinen | |
| 2014-01-20 | Use date_extract_sql() for DateFields | Anssi Kääriäinen | |
| Refs #21821 | |||
| 2014-01-20 | Fixed regex lookup on Oracle | Anssi Kääriäinen | |
| Refs #21821 | |||
| 2014-01-20 | Fixed Oracle in lookup when more than 1000 params | Anssi Kääriäinen | |
| Refs #21821. | |||
| 2014-01-20 | Fixed multi geometries editing in OpenLayers widget | Claude Paroz | |
| 2014-01-20 | Removed an inactive system check for upload_to. | Russell Keith-Magee | |
| Thanks to Simon Charette for the eagle eyes. | |||
| 2014-01-19 | Fixed a small collection of flake8 violations that had snuck in | Alex Gaynor | |
| 2014-01-20 | Fixed #16905 -- Added extensible checks (nee validation) framework | Russell Keith-Magee | |
| This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844. | |||
| 2014-01-19 | Fixed #21290: Documented migration serializing and improved error | Andrew Godwin | |
| 2014-01-19 | Moved the loader tags registration with the other builtins. | Baptiste Mispelon | |
| 2014-01-19 | Fixed #21638: Validators are now comparable, stops infinite user mig'ns | Andrew Godwin | |
| 2014-01-19 | Fixed #21664: Multi-table inheritance was duplicating _ptr fields | Andrew Godwin | |
| 2014-01-19 | Fixed #21786: Bad behaviour when mixins + abstract bases for migrations | Andrew Godwin | |
| 2014-01-19 | Fixed #21783: (again) Found second source of bug, also squashed it. | Andrew Godwin | |
| 2014-01-19 | Merge pull request #1681 from loic/migrations.format | Andrew Godwin | |
| Fixed #21323 -- Improved readability of serialized Operation. | |||
| 2014-01-20 | Fixed #21323 -- Improved readability of serialized Operation. | Loic Bistuer | |
| 2014-01-19 | Fix unicode default input on py3 | Andrew Godwin | |
| 2014-01-19 | Fixed #21783: Use defaults for adding NOT NULL on sqlite | Andrew Godwin | |
| 2014-01-19 | Implement swappable model support for migrations | Andrew Godwin | |
| 2014-01-19 | Fixed #21825 -- gis compiler uses self instead of qn for as_sql() | Anssi Kääriäinen | |
