| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-05 | Fixed #14549 - Removed restriction of single FKs on intermediary tables | Akis Kesoglou | |
| Thanks to Loic Bistuer for review. Minor changes to error messages done by committer. | |||
| 2014-03-05 | Fixed #22206 -- Passed models.TextField.max_length to forms.CharField.maxlength | Chris Wilson | |
| 2014-03-05 | Really hidden warnings in javascript_quote tests | Claude Paroz | |
| Refs #21725. | |||
| 2014-03-05 | Fixed incorrect docstring in cache tests (take two) | Baptiste Mispelon | |
| 3e25c8ac69ae336102d91f1d2591ab03f3a91e33 was an incomplete merge of the pull request. Thanks to @ramast for catching this. | |||
| 2014-03-05 | Fixed #7571 -- Fixed parameter matching in include()'d urlpattern | Athena | |
| Fixed URL resolving in the case where an outer regex includes an inner regex and both regexes use positional parameters instead of named groups, causing the outer regex's parameters to override the inner regex's. Modified the regex url resolver so that it will concatenates and then normalizes, instead of normalizing and then concatenating. | |||
| 2014-03-04 | Fixed three small flake8 violations. | Alex Gaynor | |
| 2014-03-04 | Fixed incorrect docstring in cache tests | ramast | |
| 2014-03-04 | Merge pull request #2396 from loic/ticket21893 | Andrew Godwin | |
| Fixed #21893 -- ModelState didn't account for MTI parents inherited from abstract models. | |||
| 2014-03-05 | Fixed #21893 -- ModelState didn't account for MTI parents inherited from ↵ | Loic Bistuer | |
| abstract models. | |||
| 2014-03-05 | Added tests for MTI in RunPython. | Loic Bistuer | |
| 2014-03-04 | Fixed #22085 -- Added a feature for setting non-expiring keys as the default. | zedr | |
| This feature allows the default `TIMEOUT` Cache argument to be set to `None`, so that cache instances can set a non-expiring key as the default, instead of using the default value of 5 minutes. Previously, this was possible only by passing `None` as an argument to the set() method of objects of type `BaseCache` (and subtypes). | |||
| 2014-03-04 | Fixed spelling in model_forms test class names | Chris Wilson | |
| 2014-03-04 | Fixed typo in internal CharField method | Chris Wilson | |
| 2014-03-04 | Cleaned up a repr() hack that caused problems on Python3. | Russell Keith-Magee | |
| 2014-03-03 | Fixed #16727 -- Added protocol-relative URL support to ↵ | Thomas Sorrel | |
| contenttypes.views.shortcut. | |||
| 2014-03-03 | Allowed custom querysets when prefetching single valued relations | Loic Bistuer | |
| The original patch for custom prefetches didn't allow usage of custom queryset for single valued relations (along ForeignKey or OneToOneKey). Allowing these enables calling performance oriented queryset methods like select_related or defer/only. Thanks @akaariai and @timgraham for the reviews. Refs #17001. | |||
| 2014-03-03 | Fixed #21986 -- Added some guidelines for database indexes. | Alex de Landgraaf | |
| Thanks django-issues at colons.co for the suggestion. | |||
| 2014-03-03 | Fixed #21908 -- Added example usage for ModelAdmin.get_inline_instances(). | Tim Graham | |
| Thanks matt at schinckel.net for the suggestion. | |||
| 2014-03-03 | Fixed broken tests on Python 3 after 3c5fc708f1a8f60c05182869f6f3ec13697bbcf2. | Baptiste Mispelon | |
| 2014-03-03 | Removed doc newlines added in previous commit that caused build errors. | Tim Graham | |
| 2014-03-03 | Fixed some typos and formatting issues in docs. | Rodolfo Carvalho | |
| 2014-03-03 | Fixed many typos in comments and docstrings. | Rodolfo Carvalho | |
| Thanks Piotr Kasprzyk for help with the patch. | |||
| 2014-03-03 | Fixed #22135 -- Added ModelAdmin.get_changeform_initial_data(). | Greg Chapple | |
| Allows custom behavior for setting initial form data in ModelAdmin. By default, initial data is set via GET params. The new method allows this behavior to be overridden. Thanks egasimus for the suggestion. | |||
| 2014-03-03 | Corrected expected test output to allow for cleanups in signal and ↵ | Russell Keith-Magee | |
| compatibility checks. | |||
| 2014-03-03 | Added backwards compatibliity checks to reference documentation. | Russell Keith-Magee | |
| 2014-03-03 | Fixed #22193 -- Made hint a truly optional arugment on check messages. | Russell Keith-Magee | |
| Thanks to Thomas Güttler for the suggestion. | |||
| 2014-03-03 | Added first cut at reference documentation for the checks framework. | Russell Keith-Magee | |
| 2014-03-03 | Edited model and field checks for grammar and consistency. | Russell Keith-Magee | |
| 2014-03-03 | Edited model check messages for grammar and consistency. | Russell Keith-Magee | |
| 2014-03-03 | Edited MySQL-specific check messages for grammar and consistency. | Russell Keith-Magee | |
| 2014-03-03 | Edited contrib.sites check messages for grammar and consistency. | Russell Keith-Magee | |
| 2014-03-03 | Cleanup of contrib.contenttypes check messages. | Russell Keith-Magee | |
| 2014-03-03 | Edited contrib.auth check messages for grammar and consistency. | Russell Keith-Magee | |
| 2014-03-03 | Edited contrib.admin check messages for grammar and consistency. | Russell Keith-Magee | |
| 2014-03-02 | Removed WSGI upgrade instructions for Django 1.3 and earlier. | Tim Graham | |
| 2014-03-02 | Fixed some typos in the documentation. | Baptiste Mispelon | |
| Thanks to Rodolfo Carvalho and Piotr Kasprzyk for the patch. | |||
| 2014-03-02 | Merge pull request #2383 from erikr/fix-tests-fix-ampersands-deprecation | Aymeric Augustin | |
| Fixed #22130 -- fixed template_tests/defaultfilters order dependent test failure | |||
| 2014-03-02 | Restored aliases for two APIs removed by app-loading. | Aymeric Augustin | |
| 2014-03-02 | Fixed #22130 -- fixed template_tests/defaultfilters order dependent test failure | Erik Romijn | |
| 2014-03-01 | Added newline for flake8. | Tim Graham | |
| 2014-03-01 | Fixed #22172 -- Allowed index_together to be a single list (rather than list ↵ | Anubhav Joshi | |
| of lists).. Thanks EmilStenstrom for the suggestion. | |||
| 2014-03-01 | Merge pull request #2382 from erikr/deprecate-fix-ampersands | Aymeric Augustin | |
| Fixed #22130 -- Deprecated fix_ampersands and clean_html. | |||
| 2014-03-01 | Fixed #22130 -- Deprecated fix_ampersands, removed utils.clean_html() | Erik Romijn | |
| 2014-03-01 | Fixed #15318 -- Added settings for language cookie max-age, path, domain | Sergey Kolosov | |
| Introduced a number of settings to configure max-age, path, and domain for the language cookie: LANGUAGE_COOKIE_AGE, LANGUAGE_COOKIE_PATH and LANGUAGE_COOKIE_DOMAIN. Thanks sahid for the suggestion. | |||
| 2014-03-01 | Fixed #22168 -- Fixed migrations failing on sqlite when column names are SQL ↵ | Baptiste Mispelon | |
| keywords Thanks to trac user fallen_flint for the report and initial patch. | |||
| 2014-03-01 | Fixed #22137 -- Made Widget.is_hidden a read-only property | Claude Paroz | |
| Thanks django at patjack.co.uk for the report and the review. | |||
| 2014-03-01 | Added patch_formats utility for i18n formatting tests | Claude Paroz | |
| 2014-02-28 | Fixed spelling mistakes in docs. | Tim Graham | |
| 2014-02-28 | Added release note and regression test for refs #21643. | Tim Graham | |
| This will be backported to stable/1.6.x along with the original fix. | |||
| 2014-02-28 | Removed some ReST links to undocumented functions. | Tim Graham | |
