summaryrefslogtreecommitdiff
path: root/tests/regressiontests
AgeCommit message (Collapse)Author
2013-02-26Merged regressiontests and modeltests into the test root.Florian Apolloner
2013-02-26Removed __init__.py files.Florian Apolloner
2013-02-25Fixed a caching test on Python 3.Carl Meyer
2013-02-25Fixed #18191 -- Don't consider Accept-Language redundantly in cache key.Łukasz Langa
Thanks to choongmin for the original patch.
2013-02-25Fixed #19634 -- Added proper __hash__ methods.Aymeric Augustin
Classes overriding __eq__ need a __hash__ such that equal objects have the same hash. Thanks akaariai for the report and regebro for the patch.
2013-02-25Merge pull request #847 from fhahn/ticket_18176Aymeric Augustin
Fixed #18176 -- Added test for year lookups with year < 1000
2013-02-25Fixed #19854 -- Turn Django's own Selenium tests off by default.Carl Meyer
2013-02-25Fixed #18176 -- Added test for year lookups with year < 1000Florian Hahn
Thanks Tomas Ehrlich for the initial test
2013-02-25Fixed #19903 -- Fixed unbalanced setUp/tearDown calls in LiveServerAddress testClaude Paroz
2013-02-24Fixed a test that was failing in Python 3.Julien Phalip
The issue was that as of Python 3, the generators' `next()` method becomes `__next()`. Thanks Alex Gaynor for noticing that. Refs #19890.
2013-02-24Merge pull request #824 from ambv/languagecodeJulien Phalip
2013-02-24Fixed #19890 -- ifchanged templatetag rendered its content twiceChristopher Medrela
The content of ifchanged template tag was rendered twice: first time, to compare it with the previous value and the second time, to return the rendered output.
2013-02-24Fixed #15849 -- Made IfChanged node thread safe.Diederik van der Boor
Previously, the ifchanged node stored state on `self._last_seen`, thereby giving undesired results when the node is reused by another thread at the same time (e.g. globally caching a Template object). Thanks to akaihola for the report and Diederik van der Boor and Bas Peschier for the patch.
2013-02-24Test case and docs for custom context data in feedsZbigniew Siciarz
Thanks Paul Winkler for the initial patch. (Ref #18112).
2013-02-24Fixes #19763 - LocaleMiddleware should check for supported languages in ↵Łukasz Langa
settings.LANGUAGE_CODE
2013-02-24Fixed #19253 -- Extracted template cache key building logicTomek Paczkowski
Introduced a public function django.core.cache.utils.make_template_fragment_key Thanks @chrismedrela for fruitful cooperation.
2013-02-24Merge pull request #819 from erikr/masterAymeric Augustin
Fixed #16302 -- Ensured contrib.comments is IPv6 capable.
2013-02-24Fixed #16302 -- Ensure contrib.comments is IPv6 capableErik Romijn
Changed the ip_address field for Comment to GenericIPAddressField. Added instructions to the release notes on how to update the schema of existing databases.
2013-02-24Fixed #19810 -- MemcachedCache now uses pickle.HIGHEST_PROTOCOLBas Peschier
2013-02-24Fixed #11295: If ModelAdmin.queryset returns a filtered QS don't require a ↵Wiktor Kolodziej
2nd count call Original patch rewritten, added tests and get_filters_params method for ChangeList class. Thanks Alex for the report.
2013-02-24Fixed a few ResourceWarnings.Florian Apolloner
2013-02-24Merge pull request #817 from rybaktomasz/ticket_5568Honza Král
Fixes #5568 -- DROP INDEX subcommand
2013-02-24Revert "fixes #19263" - Fails if not SQLiteHonza Kral
This reverts commit 2b76f19f2b89ac96bae2a169d71b23553c8101c7.
2013-02-24Add sqldropindexes to manageTomasz Rybak
Change patch from https://code.djangoproject.com/ticket/5568 to work on modern Django. Add special case for MySQL which has different syntax for DROP INDEX. Add unit tests for the new functionality.
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-24Caught warnings in the templates tests. Refs #17906.Aymeric Augustin
This was missing from f49e9a517f2fdc1d9ed7ac841ace77636cbd6747.
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-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-23Some style fixes for stuff that was clearly brough tover from doctests.Alex Gaynor
2013-02-23Merge pull request #804 from oinopion/ticket18162Honza Král
Fixes #18162 -- Specifying choices to Field overrides any form_class argument
2013-02-23Fixes #17866: Vary: Accept-Language header when language prefix usedŁukasz Langa
2013-02-23One last final fix for 0ad76843. Tested on py3 and py2Honza Kral
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 #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-23Merge pull request #781 from zsiciarz/ticket_19854Honza Král
Fixed #19854 -- Added test runner option to skip Selenium tests
2013-02-23Added test runner option to skip Selenium tests (#19854).Zbigniew Siciarz
2013-02-23Minor cleanups in templates test importsClaude Paroz
2013-02-23Fixed #19827 -- Kept stacktrace in defaulttags exception reraisingLennart Regebro
Thanks Kronuz for the report and the initial patch.
2013-02-23Fixed #19811 - Added language code fallback in get_language_info.Konrad Hałas
2013-02-23Merge pull request #751 from bmispelon/ticket-6271Aymeric Augustin
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-23Fix #17751: Added stripping of whitespace for ↵Erik Romijn
IPAddressField/GenericIPAddressField
2013-02-23Fixed #19686 -- Added HTML5 number input typeClaude Paroz
Thanks Simon Charette for his help on the patch. Refs #16630.