| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-11-22 | Merge pull request #1877 from Bouke/patches/4 | Claude Paroz | |
| Fixed missing admindocs' site_header, refs #21293 | |||
| 2013-11-22 | Fixed missing admindocs' site_header | Bouke Haarsma | |
| 2013-11-22 | Fixed #21460 -- Reenabled proper template precedence in find_template | Pablo Martín | |
| Refs #20806. Thanks Unai Zalakain for the review. | |||
| 2013-11-21 | Updated admindocs to use class-based views | Claude Paroz | |
| Thanks Bouke Haarsma for the review. | |||
| 2013-11-21 | Fixed #21405 -- Prevented queryset overwrite in BaseModelAdmin | Claude Paroz | |
| Thanks guido@20tab.com for the report and Tim Graham for the analyze. | |||
| 2013-11-21 | Made minor optimizations to admin_ordering tests | Claude Paroz | |
| 2013-11-21 | Fixed #21476 -- Cache tests make an incorrect use of `HttpRequest` | Unai Zalakain | |
| Using `django.test.client.RequestFactory` solves the problem and cleans up all the `get_request` mess. | |||
| 2013-11-21 | Fixed #21479 -- Favor 'migrate' over 'syncdb' in the docs. | Loic Bistuer | |
| 2013-11-21 | Fixed #21427 -- Clearly state integer field value ranges in docs | Markus Amalthea Magnuson | |
| Added an explicit mention of the exact value ranges for integer type fields that are safe in all databases supported by Django. Also, put all value numbers inside double ticks. | |||
| 2013-11-21 | Removed isinstance(RelatedObject) checks from admin.utils | Anssi Kääriäinen | |
| 2013-11-21 | Fixed #21431 -- GenRel->FK list_filter regression in admin | Anssi Kääriäinen | |
| Report, analysis and tests from stephenmcd. | |||
| 2013-11-21 | Merge pull request #1954 from loic/ticket8261 | Anssi Kääriäinen | |
| Refs #8261 -- Fixed regression introduced by fd219fa. | |||
| 2013-11-21 | Refs #8261 -- Fixed regression introduced by fd219fa. | Loic Bistuer | |
| ModelAdmin displayed the "View on site" link even if the Model didn't define the `get_absolute_url()` method. | |||
| 2013-11-20 | Fixed #21472 -- Fixed inline formsets display when parent pk is 0 | Claude Paroz | |
| Thanks agale031176@gmail.com for the report. | |||
| 2013-11-20 | Fixed #21458 -- Made check_for_language more resistant to malformed input. | Baptiste Mispelon | |
| Thanks to Sergey Sorokin for the report and to Bouke Haarsma for the review. | |||
| 2013-11-20 | Fixed #21469 -- Allow set objects in Meta.unique_together. | Baptiste Mispelon | |
| Thanks to Tim for the review. | |||
| 2013-11-19 | Use `classmethod` as a decorator. | xuxiang | |
| 2013-11-19 | Changed shortcuts from being a package to just being a module | Alex Gaynor | |
| 2013-11-19 | Recommended setuptools in the reuseable app tutorial. | Dražen Lučanin | |
| setuptools has merged with distribute. | |||
| 2013-11-19 | Added more examples to the get_object_or_404 documentation. | Baptiste Mispelon | |
| 2013-11-19 | Merge pull request #1943 from jantokhine/master | Alex Gaynor | |
| fixed typo in builtins.txt | |||
| 2013-11-19 | fixed typo in builtins.txt | Julia Antokhine | |
| 2013-11-19 | Fixed the base class note in the Date Views docs. | Rocky Meza | |
| 2013-11-19 | Fixed #21361 -- allowed access self.value() from SimpleListFilter lookup | Vajrasky Kok | |
| Reviewed by Chris Medrela. | |||
| 2013-11-19 | Fixed #15179 -- middlewares not applied for test client login() | Unai Zalakain | |
| Requests made with django.test.Client.login() and logout() respect defaults defined in django.test.Client instantiation and are processed through middleware. Thanks to Loic for the reviews. | |||
| 2013-11-18 | Fixed typo in topics/http/sessions.txt. | Tim Graham | |
| 2013-11-18 | Fixed some Signal.disconnect calls from 058e434. | Loic Bistuer | |
| This would go unnoticed by the test suite because receivers are removed automatically when they are garbage collected. Changed all Signal.connect calls to hold strong references to ensure we clean up after ourselves. | |||
| 2013-11-18 | Fixed #21457 -- Allowed fixture file name to contain dots | Claude Paroz | |
| Thanks Keryn Knight for the report. | |||
| 2013-11-18 | Added more internal links in the management command documentation. | Baptiste Mispelon | |
| 2013-11-18 | Merged the signals and signals_regress test packages. | Loic Bistuer | |
| This patch also made the tests less likely to pollute the global state in case of failure. | |||
| 2013-11-18 | Fixed #21397 -- Re-added flexibility to TypedChoiceField coercion | Claude Paroz | |
| Thanks Elec for the report and Simon Charette for the review. | |||
| 2013-11-18 | Added release note for TypedChoiceField coerce limitation | Claude Paroz | |
| Thanks Elec for the report and Simon Charette for the review. Refs #21397. | |||
| 2013-11-18 | Fixed #21240 -- Added 1.5 release note for OneToOneField/select_related change. | Tim Graham | |
| Thanks marcin at sokrates.pl. | |||
| 2013-11-18 | Fixed #21404 -- Added session.set_expiry() note to 1.6 release notes. | Tim Graham | |
| Thanks pwr for the suggestion. | |||
| 2013-11-17 | Merge pull request #1931 from funkybob/admin-image-opt | Chris Beaven | |
| Fixes #21455 - Optimise admin images Every bit is sacred Every bit is great If a bit is wasted God gets quite irate | |||
| 2013-11-18 | Optimise admin images | Curtis Maloney | |
| 2013-11-17 | Updated 1.6.1 release notes | Claude Paroz | |
| Partial forward port of e85baa813f. | |||
| 2013-11-16 | Fixed a regression caused by fix for #21428 | Anssi Kääriäinen | |
| On Python 3 sorting Fields mixed with GenericForeignKeys doesn't work as GenericForeignKey isn't a subclass of django.db.models.fields.Field. Refs #21428. | |||
| 2013-11-16 | Fixed #21428 -- editable GenericRelation regression | Anssi Kääriäinen | |
| The GenericRelation refactoring removed GenericRelations from model._meta.many_to_many. This had the side effect of disallowing editable GenericRelations in ModelForms. Editable GenericRelations aren't officially supported, but if we don't fix this we don't offer any upgrade path for those who used the ability to set editable=True in GenericRelation subclass. Thanks to Trac alias joshcartme for the report and stephencmd and Loic for working on this issue. | |||
| 2013-11-16 | Moved import at proper place in contrib.sites | Claude Paroz | |
| 2013-11-16 | Fixed #21447 -- Restored code erroneously removed in ↵ | Baptiste Mispelon | |
| 20472aa827669d2b83b74e521504e88e18d086a1. Also added some tests for HttpRequest.__repr__. Note that the added tests don't actually catch the accidental code removal (see ticket) but they do cover a codepath that wasn't tested before. Thanks to Tom Christie for the report and the original patch. | |||
| 2013-11-15 | Fixed #21440 -- Typo #2 in topics/http/shortcuts.txt | Tim Graham | |
| Thanks alasdair. | |||
| 2013-11-15 | Fixed #21415 -- Replaced escape sequence by literal non-breaking space | glts | |
| Unfortunately, escape sequences (\x.. or \u....) do not fit well with the gettext toolchain. Falling back to using literal char, even if visibility is not ideal. | |||
| 2013-11-15 | Configure settings sooner in makemessages | Claude Paroz | |
| As get_text_list is using translations, setup settings before calling it. | |||
| 2013-11-15 | Clarified MySQL Connector note. | DanSears | |
| 2013-11-15 | Fixed #21425 -- Made order in which loggers are introduced consistent. | Tim Graham | |
| Thanks oubiga for the suggestion. | |||
| 2013-11-15 | Fixed the use of the -ise suffix, where -ize is prefered | Alex Gaynor | |
| 2013-11-15 | Merge pull request #1921 from loic/ticket21432 | Alex Gaynor | |
| Fixed typo and slightly improved error message when db is missing time zone definitions. | |||
| 2013-11-15 | Fixed #21440 -- Typo in topics/http/shortcuts.txt | Tim Graham | |
| Thanks olof.bjarnason at gmail.com for the report. | |||
| 2013-11-15 | Fixed typo and slightly improved error message when db is missing time zone ↵ | Loic Bistuer | |
| definitions. Refs #21432. | |||
