summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2014-10-11Fixed two more tuple/int comparisons in gis testsClaude Paroz
Refs 63ff417746.
2014-10-11Fixed a tuple/int comparison in spatialite backendClaude Paroz
On Python 3, comparing tuple with int raises a TypeError.
2014-10-10Fixed #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-10Fixed #23623 -- Reduced memory consumption when generating ModelChoiceField ↵Thomas Chaumeny
choices
2014-10-10Fixed #23613 -- Deprecated django.utils.checksumsJaap Roes
2014-10-10Fixed #23625 -- Removed CacheClass shimJaap Roes
2014-10-09Converted GIS lookups for OracleClaude Paroz
2014-10-09Converted GIS lookups to use the new Lookup APIClaude Paroz
Thanks Tim Graham, Anssi Kääriäinen and Marc Tamlyn for the reviews.
2014-10-09Fixed #23612 -- Normalized fixuture paths to allow referencing relative ↵Brandon Taylor
paths on Windows.
2014-10-09Fixed #23627 -- Allowed register_lookup to work as a decorator.Marc Tamlyn
2014-10-09Fixed #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-08Fixed #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-08Fixed typos in comments.Tim Graham
2014-10-08Fixed #23555 -- Avoided suppressing IndexError in QuerySet.first() and .last()Artem Rizhov
2014-10-08Fixed #23611 -- update_or_create failing from a related managerLoic Bistuer
Added update_or_create to RelatedManager, ManyRelatedManager and GenericRelatedObjectManager. Added missing get_or_create to GenericRelatedObjectManager.
2014-10-07Fixed #23522 -- Changed reverse() to return a Unicode string; not bytesJon Dufresne
2014-10-06Fixed #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-06Merge pull request #3308 from aericson/ticket_22064Carl Meyer
Fixed #22064 -- Add check for related_name
2014-10-07Fixed #23594 -- Fixed deepcopy on ErrorList.Loic Bistuer
Thanks Troy Grosfield for the report and Tim Graham for the tests.
2014-10-06Fixed #23601 -- Ensured view exists in URLconf before importing it in admindocs.Markus Holtermann
2014-10-06Fixed #23604 -- Allowed related m2m fields to be references in the admin.Emmanuelle Delescolle
Thanks Simon Charette for review.
2014-10-04Fixed #22064 -- Add check for related_nameAndré 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-04Revert "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-04Improved AppRegistryNotReady message.Collin Anderson
2014-10-04Fixed comment typo in django/template/__init__.pyMartin Matusiak
2014-10-02Fixed #23482 -- Added SingleObjectMixin.query_pk_and_slugJon Dufresne
Enabling the attribute causes get_object() to perform its lookup using both the primary key and the slug.
2014-10-02Fixed #23426 -- Allowed parameters in migrations.RunSQLMarkus Holtermann
Thanks tchaumeny and Loic for reviews.
2014-10-01Fixed #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-01Added a dumpdata/loaddata test for geographic contentClaude Paroz
2014-09-30Fixed #23569 -- Allowed using configs besides dictConfig in LOGGING_CONFIG.Seth Hill
2014-09-30Updated translations from TransifexClaude Paroz
Forward port of e9c8aefbcee5 from stable/1.7.x
2014-09-30Fixed #7361 -- Added cancel link to admin delete views.Nick Sandford
2014-09-29Fixed #23365 -- Added support for timezone-aware datetimes to migrations.Rudy Mutter
2014-09-29Fixed #23489 -- Added numpy 1.9+ support in template lookupsTim Graham
2014-09-29Fixed #23567 -- Made assertQuerysetEqual check Counter equality when ↵Thomas Chaumeny
ordered=False
2014-09-29Added ordering to fix non-deterministic relatedapp test.Tim Graham
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny
Thanks Collin Anderson for the review.
2014-09-28Fixed #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-27Updated comment about Python issueClaude Paroz
2014-09-27Fixed git blunder, refs #22738Shai Berger
2014-09-27Fixed #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-26Fixed #22738 -- Abstracted boolean field type introspectionClaude Paroz
Thanks maxi for the report, Shai Berger for his help with the patch and Tim Graham for the review.
2014-09-27Silenced some deprecation warnings in contrib.sitemaps; refs #22384.Loic Bistuer
2014-09-27Fixed #23560 -- Fixed MigrationWrite to handle builtin types without imports.Loic Bistuer
Thanks Tim Graham for the review.
2014-09-26Fixed #23460 -- Added literal `%s` support to extra() QuerySets.Matt Robenolt
2014-09-26Fixed #8408 -- Added ModelAdmin.show_full_result_count to avoid COUNT() query.Thomas Chaumeny
Thanks lidaobing for the suggestion.
2014-09-26Factorized schema_editor() at BaseDatabaseWrapper levelClaude Paroz
2014-09-25Fixed #23537 -- Added Oracle GIS SchemaEditor.Tim Graham
Thanks Shai Berger for review.
2014-09-25Fixed #23455 -- Forced related_name to be a unicode string during ↵Markus Holtermann
deconstruction.
2014-09-25Fixed #23538 -- Added SchemaEditor for MySQL GIS.Tim Graham
Thanks Claude Paroz for suggestions and review.