| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-09-24 | Corrected --noinput docs for makemigrations; refs #23407. | Tim Graham | |
| 2014-09-24 | Added SuspiciousOperation to list of caught exceptions in testing docs. | Thomas Grainger | |
| 2014-09-24 | Fixed #23426 -- Don't require double percent sign in RunSQL without parameters | Markus Holtermann | |
| 2014-09-24 | Fixed flake8 warnings. | Tim Graham | |
| 2014-09-24 | Fixed #23539 -- Added get_extra(), get_max_num(), and get_min_num() hooks to ↵ | Justin Caratzas | |
| GenericInlineModelAdmin. | |||
| 2014-09-24 | Removed numbering from the models.py header of some test packages. | Loic Bistuer | |
| This is a reliqua from the early days of the modeltests/regressiontests era. | |||
| 2014-09-24 | Changed Oracle test-user creation to grant privileges instead of roles | Shai 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-23 | Added an Oracle workaround for a geogapp test; refs #23504. | Tim Graham | |
| 2014-09-23 | Skipped a broken geoapp test on Oracle; refs #23504. | Tim Graham | |
| 2014-09-24 | Fixed #23550 -- Normalized get_queryset() of RelatedObjectDescriptor | Loic 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-24 | Consolidated some many_to_one tests. | Loic Bistuer | |
| 2014-09-23 | Called table_names instead of get_table_list in migrations | Claude Paroz | |
| 2014-09-23 | Fixed #18782 -- Prevented sql_flush to flush views | Claude Paroz | |
| Thanks rodolfo_3 for the report and the initial patch, and Josh Smeaton, Shai Berger and Tim Graham for the reviews. | |||
| 2014-09-23 | Made get_table_list return a TableInfo named tuple | Claude Paroz | |
| 2014-09-23 | Fixed #23503 -- Fixed renaming of model with self-referential m2m field. | Sergey Fedoseev | |
| 2014-09-23 | Fixed #23065 -- Quoted constraint names in SQL generated by migrations. | Sergey Fedoseev | |
| 2014-09-23 | Factored create_fk_sql, create_unique_sql, and delete_constraint_sql. | Sergey Fedoseev | |
| 2014-09-23 | Consolidated some text utils into the utils_tests test package. | Loic Bistuer | |
| 2014-09-23 | Merged custom_managers_regress into the custom_managers test package. | Loic Bistuer | |
| 2014-09-23 | Merged custom_columns_regress into the custom_columns test package. | Loic Bistuer | |
| 2014-09-23 | Merged one_to_one_regress into the one_to_one test package. | Loic Bistuer | |
| 2014-09-22 | Removed sudo from pip commands in docs. | Corey Farwell | |
| 2014-09-22 | Fixed #23535 -- Updated tutorial to account for default filter added in ↵ | velis74 | |
| 5ea34f3f86. | |||
| 2014-09-22 | Fixed #23532 -- Fixed Macedonian locale date formats | Dejan Noveski | |
| 2014-09-22 | Fixed Oracle GIS gml() test failure introduced by e910340; refs #18757. | Marc Tamlyn | |
| 2014-09-22 | Generate 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-21 | Fixed #23512 -- Made migration docs about initial_data clearer | Ola Sitarska | |
| Thanks @abhillman and @Markush2010 for submitting the ticket. | |||
| 2014-09-21 | Fixed #23527 -- Removed Cheetah references in docs | Ola Sitarska | |
| Thanks to @aaugustin for submitting the ticket. | |||
| 2014-09-21 | Fixed #23529 -- Replaced comments tag library with humanize in docs | Ola Sitarska | |
| 2014-09-21 | Fixed an i18n test with native string | Claude Paroz | |
| Refs commit 11f307a5a8. | |||
| 2014-09-21 | Fixed #23196 -- Short-circuited empty string translation | Yuri 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-21 | Fixed #23530 -- Specified PyYAML requirement in initial-data.txt | Claude Paroz | |
| Thanks aks for the report. | |||
| 2014-09-20 | Small fixes in templates topic guide. | Aymeric Augustin | |
| >>> from django.template.defaultfilters import register >>> len(register.filters) 57 | |||
| 2014-09-20 | Merge pull request #3244 from mattrobenolt/patch-5 | Aymeric Augustin | |
| Don't recommend using sudo when installing uwsgi | |||
| 2014-09-19 | Don't recommend using sudo when installing uwsgi | Matt Robenolt | |
| 2014-09-19 | Skipped a broken GIS test on Oracle; refs #23504. | Tim Graham | |
| 2014-09-19 | Made a GIS test work on Oracle. | Tim Graham | |
| Thanks Josh Smeaton and Claude Paroz for advice. | |||
| 2014-09-19 | Fixed some flake8 errors. | Tim Graham | |
| Originally I added migrations to flake8 exclude because of long lines in migration files, but there are other directories named migrations we do want to check. We are not warning on line lengths yet anyway. | |||
| 2014-09-19 | Fixed Oracle GIS failures introduced by e9103402c0; refs #18757. | Tim Graham | |
| Thanks Marc Tamlyn for the patch. | |||
| 2014-09-19 | Fixed a formatting issue in the 1.7 release notes. | Aymeric Augustin | |
| 2014-09-19 | Fixed #23443 -- Corrected erroneous FieldError message. | Thomas Chaumeny | |
| Thanks Tim Graham for the review. | |||
| 2014-09-18 | Fixed #23514 -- Prevented queries in PostGISOperations init | Claude Paroz | |
| Thanks Mattia Procopio for the report. | |||
| 2014-09-18 | Fixed string length check in LayerMapping | Claude Paroz | |
| 2014-09-18 | Removed unnecessary order_by() from a GIS test that crashed Oracle. | Tim Graham | |
| Oracle cannot order_by() a TextField; refs #23504. | |||
| 2014-09-18 | Fixed #23488 -- Added AnonymousUser.get_username(). | Damien Baty | |
| 2014-09-18 | Improved GIS migration test cleanup; refs #23504. | Tim Graham | |
| 2014-09-18 | Added feature flag for geometry_field_introspection; refs #22632 and #23504. | Tim Graham | |
| 2014-09-18 | Added a feature flag for add_srs_entry support; refs #22632 and #23504. | Tim Graham | |
| 2014-09-17 | Avoided a crash on an Oracle GIS test; refs #23504. | Tim Graham | |
| 2014-09-17 | Skipped some broken tests on Oracle GIS; refs #23504. | Tim Graham | |
