summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-22Merge pull request #1877 from Bouke/patches/4Claude Paroz
Fixed missing admindocs' site_header, refs #21293
2013-11-22Fixed missing admindocs' site_headerBouke Haarsma
2013-11-22Fixed #21460 -- Reenabled proper template precedence in find_templatePablo Martín
Refs #20806. Thanks Unai Zalakain for the review.
2013-11-21Updated admindocs to use class-based viewsClaude Paroz
Thanks Bouke Haarsma for the review.
2013-11-21Fixed #21405 -- Prevented queryset overwrite in BaseModelAdminClaude Paroz
Thanks guido@20tab.com for the report and Tim Graham for the analyze.
2013-11-21Made minor optimizations to admin_ordering testsClaude Paroz
2013-11-21Fixed #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-21Fixed #21479 -- Favor 'migrate' over 'syncdb' in the docs.Loic Bistuer
2013-11-21Fixed #21427 -- Clearly state integer field value ranges in docsMarkus 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-21Removed isinstance(RelatedObject) checks from admin.utilsAnssi Kääriäinen
2013-11-21Fixed #21431 -- GenRel->FK list_filter regression in adminAnssi Kääriäinen
Report, analysis and tests from stephenmcd.
2013-11-21Merge pull request #1954 from loic/ticket8261Anssi Kääriäinen
Refs #8261 -- Fixed regression introduced by fd219fa.
2013-11-21Refs #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-20Fixed #21472 -- Fixed inline formsets display when parent pk is 0Claude Paroz
Thanks agale031176@gmail.com for the report.
2013-11-20Fixed #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-20Fixed #21469 -- Allow set objects in Meta.unique_together.Baptiste Mispelon
Thanks to Tim for the review.
2013-11-19Use `classmethod` as a decorator.xuxiang
2013-11-19Changed shortcuts from being a package to just being a moduleAlex Gaynor
2013-11-19Recommended setuptools in the reuseable app tutorial.Dražen Lučanin
setuptools has merged with distribute.
2013-11-19Added more examples to the get_object_or_404 documentation.Baptiste Mispelon
2013-11-19Merge pull request #1943 from jantokhine/masterAlex Gaynor
fixed typo in builtins.txt
2013-11-19fixed typo in builtins.txtJulia Antokhine
2013-11-19Fixed the base class note in the Date Views docs.Rocky Meza
2013-11-19Fixed #21361 -- allowed access self.value() from SimpleListFilter lookupVajrasky Kok
Reviewed by Chris Medrela.
2013-11-19Fixed #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-18Fixed typo in topics/http/sessions.txt.Tim Graham
2013-11-18Fixed 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-18Fixed #21457 -- Allowed fixture file name to contain dotsClaude Paroz
Thanks Keryn Knight for the report.
2013-11-18Added more internal links in the management command documentation.Baptiste Mispelon
2013-11-18Merged 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-18Fixed #21397 -- Re-added flexibility to TypedChoiceField coercionClaude Paroz
Thanks Elec for the report and Simon Charette for the review.
2013-11-18Added release note for TypedChoiceField coerce limitationClaude Paroz
Thanks Elec for the report and Simon Charette for the review. Refs #21397.
2013-11-18Fixed #21240 -- Added 1.5 release note for OneToOneField/select_related change.Tim Graham
Thanks marcin at sokrates.pl.
2013-11-18Fixed #21404 -- Added session.set_expiry() note to 1.6 release notes.Tim Graham
Thanks pwr for the suggestion.
2013-11-17Merge pull request #1931 from funkybob/admin-image-optChris 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-18Optimise admin imagesCurtis Maloney
2013-11-17Updated 1.6.1 release notesClaude Paroz
Partial forward port of e85baa813f.
2013-11-16Fixed a regression caused by fix for #21428Anssi 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-16Fixed #21428 -- editable GenericRelation regressionAnssi 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-16Moved import at proper place in contrib.sitesClaude Paroz
2013-11-16Fixed #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-15Fixed #21440 -- Typo #2 in topics/http/shortcuts.txtTim Graham
Thanks alasdair.
2013-11-15Fixed #21415 -- Replaced escape sequence by literal non-breaking spaceglts
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-15Configure settings sooner in makemessagesClaude Paroz
As get_text_list is using translations, setup settings before calling it.
2013-11-15Clarified MySQL Connector note.DanSears
2013-11-15Fixed #21425 -- Made order in which loggers are introduced consistent.Tim Graham
Thanks oubiga for the suggestion.
2013-11-15Fixed the use of the -ise suffix, where -ize is preferedAlex Gaynor
2013-11-15Merge pull request #1921 from loic/ticket21432Alex Gaynor
Fixed typo and slightly improved error message when db is missing time zone definitions.
2013-11-15Fixed #21440 -- Typo in topics/http/shortcuts.txtTim Graham
Thanks olof.bjarnason at gmail.com for the report.
2013-11-15Fixed typo and slightly improved error message when db is missing time zone ↵Loic Bistuer
definitions. Refs #21432.