| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-10-11 | Fixed two more tuple/int comparisons in gis tests | Claude Paroz | |
| Refs 63ff417746. | |||
| 2014-10-11 | Fixed a tuple/int comparison in spatialite backend | Claude Paroz | |
| On Python 3, comparing tuple with int raises a TypeError. | |||
| 2014-10-10 | Fixed #23616 - Fixed generic relations in ModelAdmin.list_filter. | Konrad Świat | |
| Thanks ranjur for reporting bug, timgraham for review, and collinanderson for contributing tips. | |||
| 2014-10-10 | Fixed #23623 -- Reduced memory consumption when generating ModelChoiceField ↵ | Thomas Chaumeny | |
| choices | |||
| 2014-10-10 | Fixed #23613 -- Deprecated django.utils.checksums | Jaap Roes | |
| 2014-10-10 | Fixed #23625 -- Removed CacheClass shim | Jaap Roes | |
| 2014-10-09 | Converted GIS lookups for Oracle | Claude Paroz | |
| 2014-10-09 | Converted GIS lookups to use the new Lookup API | Claude Paroz | |
| Thanks Tim Graham, Anssi Kääriäinen and Marc Tamlyn for the reviews. | |||
| 2014-10-09 | Fixed #23612 -- Normalized fixuture paths to allow referencing relative ↵ | Brandon Taylor | |
| paths on Windows. | |||
| 2014-10-09 | Fixed #23627 -- Allowed register_lookup to work as a decorator. | Marc Tamlyn | |
| 2014-10-09 | Fixed #23609 -- Fixed IntegrityError that prevented altering a NULL column ↵ | Markus Holtermann | |
| into a NOT NULL one due to existing rows Thanks to Simon Charette, Loic Bistuer and Tim Graham for the review. | |||
| 2014-10-08 | Fixed #23600 -- Made default_storage aware of more settings changes. | Duncan Parkes | |
| Added MEDIA_URL, FILE_UPLOAD_PERMISSIONS, and FILE_UPLOAD_DIRECTORY_PERMISSIONS to the list of settings. | |||
| 2014-10-08 | Fixed typos in comments. | Tim Graham | |
| 2014-10-08 | Fixed #23555 -- Avoided suppressing IndexError in QuerySet.first() and .last() | Artem Rizhov | |
| 2014-10-08 | Fixed #23611 -- update_or_create failing from a related manager | Loic Bistuer | |
| Added update_or_create to RelatedManager, ManyRelatedManager and GenericRelatedObjectManager. Added missing get_or_create to GenericRelatedObjectManager. | |||
| 2014-10-07 | Fixed #23522 -- Changed reverse() to return a Unicode string; not bytes | Jon Dufresne | |
| 2014-10-06 | Fixed #23593 -- Fixed crash in AdminEmailHandler with non-ASCII characters ↵ | Tim Graham | |
| in request. Thanks edevil for the report and Simon Charette for review. | |||
| 2014-10-06 | Merge pull request #3308 from aericson/ticket_22064 | Carl Meyer | |
| Fixed #22064 -- Add check for related_name | |||
| 2014-10-07 | Fixed #23594 -- Fixed deepcopy on ErrorList. | Loic Bistuer | |
| Thanks Troy Grosfield for the report and Tim Graham for the tests. | |||
| 2014-10-06 | Fixed #23601 -- Ensured view exists in URLconf before importing it in admindocs. | Markus Holtermann | |
| 2014-10-06 | Fixed #23604 -- Allowed related m2m fields to be references in the admin. | Emmanuelle Delescolle | |
| Thanks Simon Charette for review. | |||
| 2014-10-04 | Fixed #22064 -- Add check for related_name | André Ericson | |
| Validates that related_name is a valid Python id or ends with a '+' and it's not a keyword. Without a check it passed silently leading to unpredictable problems. Thanks Konrad Świat for the initial work. | |||
| 2014-10-04 | Revert "Improved AppRegistryNotReady message." | Tim Graham | |
| This reverts commit 6fa9fa91a5fcb228b3c385b35a2018b3821a447a. Aymeric: "I chose not to talk about django.setup() here on purpose. This will hardly always be the correct solution." | |||
| 2014-10-04 | Improved AppRegistryNotReady message. | Collin Anderson | |
| 2014-10-04 | Fixed comment typo in django/template/__init__.py | Martin Matusiak | |
| 2014-10-02 | Fixed #23482 -- Added SingleObjectMixin.query_pk_and_slug | Jon Dufresne | |
| Enabling the attribute causes get_object() to perform its lookup using both the primary key and the slug. | |||
| 2014-10-02 | Fixed #23426 -- Allowed parameters in migrations.RunSQL | Markus Holtermann | |
| Thanks tchaumeny and Loic for reviews. | |||
| 2014-10-01 | Fixed #15089 -- Allowed contrib.sites to lookup the current site based on ↵ | Tim Graham | |
| request.get_host(). Thanks Claude Paroz, Riccardo Magliocchetti, and Damian Moore for contributions to the patch. | |||
| 2014-10-01 | Added a dumpdata/loaddata test for geographic content | Claude Paroz | |
| 2014-09-30 | Fixed #23569 -- Allowed using configs besides dictConfig in LOGGING_CONFIG. | Seth Hill | |
| 2014-09-30 | Updated translations from Transifex | Claude Paroz | |
| Forward port of e9c8aefbcee5 from stable/1.7.x | |||
| 2014-09-30 | Fixed #7361 -- Added cancel link to admin delete views. | Nick Sandford | |
| 2014-09-29 | Fixed #23365 -- Added support for timezone-aware datetimes to migrations. | Rudy Mutter | |
| 2014-09-29 | Fixed #23489 -- Added numpy 1.9+ support in template lookups | Tim Graham | |
| 2014-09-29 | Fixed #23567 -- Made assertQuerysetEqual check Counter equality when ↵ | Thomas Chaumeny | |
| ordered=False | |||
| 2014-09-29 | Added ordering to fix non-deterministic relatedapp test. | Tim Graham | |
| 2014-09-29 | Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282. | Thomas Chaumeny | |
| Thanks Collin Anderson for the review. | |||
| 2014-09-28 | Fixed #23436 -- Made BASE_DIR absolute in settings template. | Aymeric Augustin | |
| This ensures consistency between Python 3.4+ and earlier versions. Thanks Harry Percival for the report. | |||
| 2014-09-27 | Updated comment about Python issue | Claude Paroz | |
| 2014-09-27 | Fixed git blunder, refs #22738 | Shai Berger | |
| 2014-09-27 | Fixed #22738 -- made finer distinctions for when Boolean is not detected on ↵ | Shai Berger | |
| Oracle Thanks Claude Paroz for partial fix and Simon Charrette for review | |||
| 2014-09-26 | Fixed #22738 -- Abstracted boolean field type introspection | Claude Paroz | |
| Thanks maxi for the report, Shai Berger for his help with the patch and Tim Graham for the review. | |||
| 2014-09-27 | Silenced some deprecation warnings in contrib.sitemaps; refs #22384. | Loic Bistuer | |
| 2014-09-27 | Fixed #23560 -- Fixed MigrationWrite to handle builtin types without imports. | Loic Bistuer | |
| Thanks Tim Graham for the review. | |||
| 2014-09-26 | Fixed #23460 -- Added literal `%s` support to extra() QuerySets. | Matt Robenolt | |
| 2014-09-26 | Fixed #8408 -- Added ModelAdmin.show_full_result_count to avoid COUNT() query. | Thomas Chaumeny | |
| Thanks lidaobing for the suggestion. | |||
| 2014-09-26 | Factorized schema_editor() at BaseDatabaseWrapper level | Claude Paroz | |
| 2014-09-25 | Fixed #23537 -- Added Oracle GIS SchemaEditor. | Tim Graham | |
| Thanks Shai Berger for review. | |||
| 2014-09-25 | Fixed #23455 -- Forced related_name to be a unicode string during ↵ | Markus Holtermann | |
| deconstruction. | |||
| 2014-09-25 | Fixed #23538 -- Added SchemaEditor for MySQL GIS. | Tim Graham | |
| Thanks Claude Paroz for suggestions and review. | |||
