summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-19Fixed #12747 -- Made reason phrases customizable.Aymeric Augustin
2013-05-19Merge pull request #1152 from ambv/issue11915Aymeric Augustin
Fixed #11915: generic Accept-Language matches country-specific variants
2013-05-19Merge pull request #1094 from senko/ticket_11160Andrew Godwin
Fixed #11160: Formset non_form_errors returns ErrorList() if is_valid is not called
2013-05-19Merge pull request #1134 from senko/ticket_18990Andrew Godwin
Fixed #18990: Loaddata now complains if fixture doesn't exist
2013-05-19Fixed some line wrapping, refs #20233Tim Graham
2013-05-19Fixed #11915: generic Accept-Language matches country-specific variantsŁukasz Langa
2013-05-19fix warnings imports in fixtures testsSenko Rasic
2013-05-19Fixed #12674 -- provide a way to override admin validationHonza Kral
Moved admin validation code to classes and have those be class attributes to the ModelAdmin classes.
2013-05-19ModelState now freezes options and basesAndrew Godwin
2013-05-19Merge pull request #1098 from zsiciarz/ticket-16829Marc Tamlyn
Added example of using sitemaps with static views.
2013-05-19Fix proxy objects to respect !=Andrew Godwin
2013-05-19Fixed a rest mistake I introduced in d5ce2ff.Aymeric Augustin
2013-05-19Merge pull request #1147 from ambv/transrealmixinMarc Tamlyn
Added TransRealMixin to fix i18n global state pollution in the test suite
2013-05-19Added TransRealMixin to fix i18n global state pollution in the test suiteŁukasz Langa
2013-05-19Fixed #20452 -- Rename 'headers' to 'header fields'.bbjay
2013-05-19Fixed #18990 -- Loaddata now complains if fixture doesn't existSenko Rasic
If the fixture doesn't exist, loaddata will output a warning. The fixture named "initial_data" is exceptional though; if it doesn't exist, the warning is not emitted. This allows syncdb and flush management commands to attempt to load it without causing spurious warnings. Thanks to Derega, ptone, dirigeant and d1ffuz0r for contributions to the ticket.
2013-05-19Fix a typo in a comment.Marc Tamlyn
2013-05-19Improve cookie based session backend docs.Marc Tamlyn
Note the don't require sessions to be in installed apps.
2013-05-19Merge pull request #1142 from Pike/masterAndrew Godwin
Fixed #20454: Make Urdu (ur) recognized as RTL language
2013-05-19Merge pull request #1145 from postrational/ticket_20233Andrew Godwin
Fixed #20233 - Full custom user model example isn't really full
2013-05-19Fixed #18990: Loaddata now complains if fixture doesn't existSenko Rasic
The fixture named "initial_data" is exceptional though; if it doesn't exist, the error is not raised. This allows syncdb and flush management commands to attempt to load it without causing an error if it doesn't exist.
2013-05-19Merge pull request #1143 from AndreaCrotti/masterMarc Tamlyn
A simple docstring to clarify a part of the code that might be confusing to understand
2013-05-19refs #20233 - Full custom user model example isn't really fullpostrational
Addition and fix for custom user model example documentation. https://code.djangoproject.com/ticket/20233
2013-05-19Merge pull request #1141 from inglesp/typoMarc Tamlyn
Typo in comment
2013-05-19Merge pull request #1129 from frog32/masterMarc Tamlyn
Add needed Imports to the Documentation
2013-05-19add comment to explain why it's necessary to do an explicit check forAndrea Crotti
Python2 and how metaclasses are defined
2013-05-19Merge pull request #1116 from elektrrrus/ticket_20234_20236Marc Tamlyn
Ticket 20234 20236
2013-05-19Make Urdu (ur) recognized as RTL language. Refs #20454Axel Hecht
2013-05-19Typo in commentPeter Inglesby
2013-05-18Fixed #20004 -- Moved non DB-related assertions to SimpleTestCase.Ramiro Morales
Thanks zalew for the suggestion and work on a patch. Also updated, tweaked and fixed testing documentation.
2013-05-18Updated contrib.humanize translation templateClaude Paroz
2013-05-18Fixed #20246 -- Added non-breaking spaces between values an unitsEmil Stenström
2013-05-18Fixed #20440 -- Ensured CharField's max_length/min_length are integersTome Cvitan
2013-05-18Fixed #20234 and #20236 -- SingleObjectMixin fixesKarol Sikora
Added object on SingleObjectMixin returned context, some code clanup.
2013-05-18Fixed ff881aef on Python 3.Aymeric Augustin
2013-05-18add Leandra Finger, Silvan Spross and Marc Egli to AUTHORSMarc Egli
2013-05-18Add missing imports to the examples in the 'First Steps'leandrafinger
2013-05-18Add missing imports and models to the examples in the view layer documentationSilvan Spross
2013-05-18Add missing imports and models to the examples in the the model layer ↵Marc Egli
documentation
2013-05-18Fix state tests a littleAndrew Godwin
2013-05-18Fixed #13958 -- problem reporting exception from \r-line-ended fileShai Berger
Thanks petrvanblokland for reporting and saz for the patch
2013-05-18Fixed #20284 - Added a note about DEBUG in static file docs.Tim Graham
Thanks wim@ for the suggestion and Nicolas Noé for the patch.
2013-05-18Merge pull request #1135 from ambv/model_validation_fixDonald Stufft
Fixes a Python 3.x regression introduced in a19e9d80
2013-05-18Fixes a Python 3.x regression introduced in a19e9d80Łukasz Langa
2013-05-18Merge pull request #1127 from filias/20142Aymeric Augustin
Fixed #20142 -- Added error handling for fixture setup
2013-05-18Merge branch 'master' of github.com:django/djangoFlorian Apolloner
2013-05-18Fixed #15201: Marked CACHE_MIDDLEWARE_ANONYMOUS_ONLY as deprecatedŁukasz Langa
2013-05-18Fixed #14894 -- Ensure that activating a translation doesn't run into ↵Florian Apolloner
threading issues. Thanks to maxbublis for the report and sergeykolosov for the patch.
2013-05-18Fix NoneType error when fetching a stale ContentType with get_for_idDiederik van der Boor
When a stale ContentType is fetched, the _add_to_cache() function didn't detect that `model_class()` returns `None` (which it does by design). However, the `app_label` + `model` fields can be used instead to as local cache key. Third party apps can detect stale models by checking whether `model_class()` returns `None`. Ticket: https://code.djangoproject.com/ticket/20442
2013-05-18Merge branch 'allow-any-iterable-for-choices'Donald Stufft