summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2013-02-24Fixed #19896 -- Committed after clearing cache in the database.George Song
2013-02-24Fixed the usage of the deprecated assertEquals.Florian Apolloner
2013-02-23Fixed #15198 -- pass request to AuthenticationFormPreston Holmes
Thanks to Ciantic for the report, claudep and slurms for initial work
2013-02-23Removed superfluous cookie check from auth login.Preston Holmes
This is ensured through the CSRF protection of the view
2013-02-23Merge pull request #813 from HiddenData/ticket-19263Honza Král
fixes #19263 - EmptyResultSet in subquery causes incorrect SQL
2013-02-23fixes #19263Marcin Biernat
2013-02-23Merge pull request #778 from viciu/19609Honza Král
Fixed #19609: admin Inlines doesn't display help_text for readonly fields
2013-02-23Merge branch 'ticket19872' of https://github.com/oinopion/djangoHonza Kral
2013-02-23Fixed #18491 -- deleting a proxy doesn't show warning about cascade deletesHonza Kral
2013-02-23Fixed #19872Tomek Paczkowski
Made cached_property to behave as property when accessed via class.
2013-02-23Fixed #19526Aleksandra Sendecka
CSS specifications governs that syntax is case insensitive. This modifies CachedFilesMixin to support that.
2013-02-23Fixed #18829 -- Fixed ModelChoiceIterator lengthKlaas van Schelven
Thanks facundo.olano at gmail.com for the report and thikonom for the initial patch.
2013-02-23Fixed #19282 -- Restored ability to pass Decimals to intcomma filterHernan Lozano
2013-02-23Merge pull request #804 from oinopion/ticket18162Honza Král
Fixes #18162 -- Specifying choices to Field overrides any form_class argument
2013-02-23Fixed 19895 -- Made second iteration over invalid queryset raise an ↵Grzegorz Nosek
exception too When iteration over a queryset raised an exception, the result cache remained initialized with an empty list, so subsequent iterations returned an empty list instead of raising an exception
2013-02-23Fixes #17866: Vary: Accept-Language header when language prefix usedŁukasz Langa
2013-02-23Fixed #19698 -- Cleared sites cache with signalsClaude Paroz
Thanks ddavies at nomensa.com for the report and the patch and serdaroncode for reviewing the patch.
2013-02-23Merge pull request #791 from khalas/ticket_19811Honza Král
Changed %r to %s in get_language_info error message
2013-02-23Proposed fix for #18162.Tomek Paczkowski
2013-02-23Changed %r to %s in get_language_info error message.Konrad Hałas
2013-02-23Fixed errors introduced in 21f333bcefccc151d6439246f8203d609ab6ca79. Refs #17751Florian Apolloner
2013-02-23Fixed #15877 -- Improved exception when ModelForm has no model classClaude Paroz
Thanks theaspect at gmail.com for the report and volrath for the patch.
2013-02-23Fixed #19609: admin Inlines doesn't display help_text for readonly fieldsWiktor Kolodziej
Refactoring: field was renamed to field_name, since flatten_fieldsets returns field name, not field. Original patch from Marc Aymerich Gubern
2013-02-23Added test runner option to skip Selenium tests (#19854).Zbigniew Siciarz
2013-02-23Fixed #19827 -- Kept stacktrace in defaulttags exception reraisingLennart Regebro
Thanks Kronuz for the report and the initial patch.
2013-02-23Merge pull request #777 from khalas/ticket_19811Honza Král
Fixed #19811 - Added language code fallback in get_language_info
2013-02-23Merge pull request #775 from HiddenData/ticket-18899Honza Král
Fixed #18899 -- FileSystemStorage.save should support any file-like objects
2013-02-23Fixed #19811 - Added language code fallback in get_language_info.Konrad Hałas
2013-02-23Fixed regression introduced in 146ed13a.Mathijs de Bruin
As override_settings was used after the initialization of the session backend, we need to use a new session backend here.
2013-02-23Merge pull request #751 from bmispelon/ticket-6271Aymeric Augustin
2013-02-23#18899 FileSystemStorage.save should support any file-like objectsMarcin Biernat
2013-02-23Fixed #17906 - Autoescaping {% cycle %} and {% firstof %} templatetags.Vladimir A Filonov
This commit adds "future" version of these two tags with auto-escaping enabled.
2013-02-23Fixed #19816: pre-evaluate queryset on m2m setTomek Paczkowski
In ReverseManyRelatedObjectsDescriptor.__set__, evaluate possible queryset to avoid problems when clear() would touch data this queryset returns.
2013-02-23Used token.split_contents() for tokenisation in template tags accepting ↵Baptiste Mispelon
variables. Fixed #6271, #18260.
2013-02-23Fixed embarrassing typo in last commit.Jannis Leidel
2013-02-23Merge pull request #759 from erikr/masterFlorian Apolloner
Fix #17751: Added stripping of whitespace for IPAddressField/GenericIPAddressField
2013-02-23Fix #17751: Added stripping of whitespace for ↵Erik Romijn
IPAddressField/GenericIPAddressField
2013-02-23Removes document_root argument from django.contrib.staticfiles.views.servefako
This argument can be removed, because the new way of finding static files doesn't take document_root into account at all.
2013-02-23Fixed #19850 -- Use configured staticfiles storage to find the URL of a ↵Jannis Leidel
static file in the admin.
2013-02-23Fixed #19758 -- Avoided leaking email existence through the password reset form.Horst Gutmann
2013-02-23Method "save" in BaseModelFormSet is marked as alters_dataKlaas van Schelven
Fixes #17663
2013-02-23Fixed #19686 -- Added HTML5 number input typeClaude Paroz
Thanks Simon Charette for his help on the patch. Refs #16630.
2013-02-22Fixed #19846 -- Optimized a dict of lists in BlockContext classClaude Paroz
Thanks Curtis Maloney for the report and the patch.
2013-02-23Fixed Oracle regression in last_executed_query() with unicode stringsAnssi Kääriäinen
The regression was likely caused by the fix in #19606 which adjusted Oracle's unicode detection, though it seems this would have been an issue in some configurations even before.
2013-02-23Fixed empty strings + to_field regression on OracleAnssi Kääriäinen
Querying the reverse side of nullable to_field relation, where both sides can contain null values resulted in incorrect results. The reason was not detecting '' as NULL. Refs #17541
2013-02-22Fixed #19882 -- Smarter tokenizing of {% for %} tag arguments.Baptiste Mispelon
2013-02-21Factored code and added a missing docstring.Aymeric Augustin
2013-02-21Fixed #19870 -- Regression in select_related in inheritance casesAnssi Kääriäinen
There was a regression in case two models inherited the same parent, and one contained a foreign key to other. When select_related travelled the foreign key the other model reused the parent join made by the first model. This was likely caused by Query.join_parent_model() addition in commit 68985db48212c701a3d975636123a5d79bdc006f. Thanks to Trac alias loic84 for report & tests.
2013-02-20Made a couple of selenium tests wait for page loadedAnssi Kääriäinen
The admin_widgets tests were issuing click() to the browser but didn't wait for the effects of those clicks. This caused the resulting request to be processed concurrently with the test case. When using in-memory SQLite this caused weird failures. Also added wait_page_loaded() to admin selenium tests for code reuse. Fixed #19856
2013-02-20Cleaned up join promotion in query.combine() with ORAnssi Kääriäinen
Refs #19849