summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2014-09-25Fixed #23415 -- Added fields for unmanaged and proxy model migrations.Markus Holtermann
Thanks sky-chen for the report.
2014-09-25Fixed #23551 -- Fixed bash autocompletion crash on Python 3.Marco Buttu
2014-09-25Added tolerance in equality testing to avoid random build failureThomas Chaumeny
2014-09-25Fixed use of assert* functions in some gis testsThomas Chaumeny
2014-09-24Revert "Fixed #23474 -- Prevented migrating backwards from unapplying the ↵Tim Graham
wrong migrations." This reverts commit abcf28a07695a45cb5fb15b81bffc97bea5e0be3.
2014-09-24Fixed #23421 -- Corrected TEST SERIALIZE setting.Tim Graham
Thanks gkoller for the report.
2014-09-24Fixed #23426 -- Don't require double percent sign in RunSQL without parametersMarkus Holtermann
2014-09-24Fixed flake8 warnings.Tim Graham
2014-09-24Fixed #23539 -- Added get_extra(), get_max_num(), and get_min_num() hooks to ↵Justin Caratzas
GenericInlineModelAdmin.
2014-09-24Changed Oracle test-user creation to grant privileges instead of rolesShai Berger
because the roles (specifically RESOURCE) are deprecated. Also added optional support for creating views in tests, and made an introspection test fail (rather than skip) if a view cannot be created due to lacking privileges. Refs #18782 Thanks Tim Graham for review, and Josh Smeaton
2014-09-23Added an Oracle workaround for a geogapp test; refs #23504.Tim Graham
2014-09-23Skipped a broken geoapp test on Oracle; refs #23504.Tim Graham
2014-09-24Fixed #23550 -- Normalized get_queryset() of RelatedObjectDescriptorLoic Bistuer
and ReverseSingleRelatedObjectDescriptor so they actually return QuerySet instances. Also ensured that SingleRelatedObjectDescriptor.get_queryset() accounts for use_for_related_fields=True. This cleanup lays the groundwork for #23533. Thanks Anssi Kääriäinen for the review.
2014-09-23Called table_names instead of get_table_list in migrationsClaude Paroz
2014-09-23Fixed #18782 -- Prevented sql_flush to flush viewsClaude Paroz
Thanks rodolfo_3 for the report and the initial patch, and Josh Smeaton, Shai Berger and Tim Graham for the reviews.
2014-09-23Made get_table_list return a TableInfo named tupleClaude Paroz
2014-09-23Fixed #23503 -- Fixed renaming of model with self-referential m2m field.Sergey Fedoseev
2014-09-23Fixed #23065 -- Quoted constraint names in SQL generated by migrations.Sergey Fedoseev
2014-09-23Factored create_fk_sql, create_unique_sql, and delete_constraint_sql.Sergey Fedoseev
2014-09-22Fixed #23532 -- Fixed Macedonian locale date formatsDejan Noveski
2014-09-22Fixed Oracle GIS gml() test failure introduced by e910340; refs #18757.Marc Tamlyn
2014-09-22Generate GeoManager from GeoQuerySet. Refs #20625.Loic Bistuer
This cleanup lays the groundwork for #23533 and also addresses the issue that GeoManager.get_queryset() failed to pass the database router hints to the QuerySet constructor. Thanks Anssi Kääriäinen for the review.
2014-09-21Fixed #23196 -- Short-circuited empty string translationYuri Kriachko
Translating an empty string used to return the gettext catalog metadata instead of the empty string. Thanks Ned Batchelder for the suggestion, Tim Graham for the review and Anton Berezin and Claude Paroz for contributions to the patch.
2014-09-19Skipped a broken GIS test on Oracle; refs #23504.Tim Graham
2014-09-19Made a GIS test work on Oracle.Tim Graham
Thanks Josh Smeaton and Claude Paroz for advice.
2014-09-19Fixed Oracle GIS failures introduced by e9103402c0; refs #18757.Tim Graham
Thanks Marc Tamlyn for the patch.
2014-09-19Fixed #23443 -- Corrected erroneous FieldError message.Thomas Chaumeny
Thanks Tim Graham for the review.
2014-09-18Fixed #23514 -- Prevented queries in PostGISOperations initClaude Paroz
Thanks Mattia Procopio for the report.
2014-09-18Fixed string length check in LayerMappingClaude Paroz
2014-09-18Removed unnecessary order_by() from a GIS test that crashed Oracle.Tim Graham
Oracle cannot order_by() a TextField; refs #23504.
2014-09-18Fixed #23488 -- Added AnonymousUser.get_username().Damien Baty
2014-09-18Improved GIS migration test cleanup; refs #23504.Tim Graham
2014-09-18Added feature flag for geometry_field_introspection; refs #22632 and #23504.Tim Graham
2014-09-18Added a feature flag for add_srs_entry support; refs #22632 and #23504.Tim Graham
2014-09-17Avoided a crash on an Oracle GIS test; refs #23504.Tim Graham
2014-09-17Skipped some broken tests on Oracle GIS; refs #23504.Tim Graham
2014-09-17Fixed #23495 -- Stopped swallowing real settings import errorClaude Paroz
Thanks papaloizouc for the report.
2014-09-17Fixed #21775 -- Allowed customization of datafile for Oracle tablespaceJosh Smeaton
2014-09-16Fixed #23492 -- Restored F.__deepcopy__.Baptiste Mispelon
This reverts commit 3a66035107a640c4905f0a5f247a45f32dbe16d7. A regression test was also added.
2014-09-16Fixed #19463 -- Added UUIDFieldMarc Tamlyn
Uses native support in postgres, and char(32) on other backends.
2014-09-15Fixed #23474 -- Prevented migrating backwards from unapplying the wrong ↵valtron
migrations.
2014-09-13Factorized create_index_sql expressionClaude Paroz
2014-09-13Fixed #23397 -- Stripped whitespace from base64 during chunkingJason Hobbs
This insures the actual base64 content has a length a multiple of 4. Also added a test case for the failure.
2014-09-13Fixed #23466 -- Removed seconds from all locale time output formats.Malte Beckmann
2014-09-13Fixed #23461 -- Added EMAIL_TIMEOUT settingJosé Padilla
2014-09-12Fixed #23484 -- Add comment in AppConfigStub clarifying app name vs app label.Carl Meyer
2014-09-12Fixed #23483 -- Prevented ImproperlyConfigured with dotted app namesSzilveszter Farkas
Made sure the app labels stay unique for the AppConfigStubs, so migrations wouldn't fail if two dotted app names has the same last part (e.g. django.contrib.auth and vendor.auth)
2014-09-12Fixed #17101 -- Integrated django-secure and added check --deploy optionTim Graham
Thanks Carl Meyer for django-secure and for reviewing. Thanks also to Zach Borboa, Erik Romijn, Collin Anderson, and Jorge Carleitao for reviews.
2014-09-12Fixed #13843 -- Prevented AttributeError during geometry objects deletionClaude Paroz
2014-09-12Prevented Attribute error in GDAL objects deletionClaude Paroz