summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-26Fixed i18n test to match changed translationClaude Paroz
Forward port of ab6ff2e0ac from stable/1.5
2013-02-26Merged contrib translations from 1.5 branchClaude Paroz
2013-02-26Merged core translations from 1.5 branchClaude Paroz
2013-02-26Added note about updating default docs version in howto-release doc.Carl Meyer
2013-02-26Fixed #19922 - Typo in translation docs.Tim Graham
Thanks amoebob for the report.
2013-02-26Fixed discovery of the Django installation during tests.Florian Apolloner
If Django was symlinked into site-packages the previous approach to discover the tests subdirectory would fail. The revised version now always points to the location of the source and not the import path.
2013-02-26Changed test_runner tests to use full python path for settings files.Florian Apolloner
2013-02-26fixed admin_scripts tests on python 3.3Florian Apolloner
2013-02-26Ensured that we have an absolute path to RUNTESTS_DIR.Florian Apolloner
This is needed to make 'python runtests.py' work, otherwise only 'python ./runtests.py' would work.
2013-02-26Updated docs to reflect new tests layout.Florian Apolloner
Thanks to Ramiro Morales for the initial patch.
2013-02-26Renamed a template to be found by the loaders.Florian Apolloner
2013-02-26Renamed some tests and removed references to modeltests/regressiontests.Florian Apolloner
2013-02-26Adjusted coveragercFlorian Apolloner
2013-02-26Adjusted runtests to the new layout.Florian Apolloner
2013-02-26Merged regressiontests and modeltests into the test root.Florian Apolloner
2013-02-26Removed __init__.py files.Florian Apolloner
2013-02-26Moved test_templates to templates to prevent issues with ↵Florian Apolloner
regressiontests/templates later on.
2013-02-26Updated an inaccurate comment.Aymeric Augustin
Tests can run nearly as fast under PostgreSQL and MySQL as under SQLite with a bit of configuration and the speedup is always a good thing.
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-25Fixed #6195 -- Documented caching options for javascript_catalog.Aymeric Augustin
2013-02-25Updated the release process docs to reflect the current practices.Aymeric Augustin
Fixed #17919.
2013-02-25Fixed #18144 -- Restored compatibility with SHA1 hashes with empty salt.Aymeric Augustin
Thanks dahool for the report and initial version of the patch.
2013-02-25Use built-in fixture support rather than calling loaddata in setUp().Carl Meyer
2013-02-25Merge pull request #847 from fhahn/ticket_18176Aymeric Augustin
Fixed #18176 -- Added test for year lookups with year < 1000
2013-02-25Fixed #19801 - Added brackets to input_formats.Tim Graham
Thanks leandron85@ for the suggestion.
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-25Switching to autoescape is not a change in syntax.Carl Meyer
2013-02-25Remove leading underscore from a function that's all growed up now.Carl Meyer
This function is now the de facto standard function for rendering values in a template, and is imported by two other built-in template modules. It shouldn't have a leading underscore.
2013-02-25Minor edits to some recently-added admin docs.Carl Meyer
2013-02-25Changed testing strategy used in 6b03179e.Aymeric Augustin
Avoid polluting the app cache as it causes unrelated test failures. Refs #19688.
2013-02-24Fixed #19908 -- Added missing import in forms.pyClaude Paroz
Thanks loic84 for the report.
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-24Added missing versionadded for sqldropindexes command docsClaude Paroz
2013-02-24Merge pull request #835 from vdboor/docfixTim Graham
Fixed documentation typo (:mod: role in Syndication feed text)
2013-02-24Fixed some docstrings that were raising Sphinx warnings when running the ↵Julien Phalip
admindocs tests.
2013-02-24Fixed python 3 support. Refs #17320Florian Apolloner
2013-02-24Merge pull request #834 from vdboor/issue_19906_list_classesAymeric Augustin
Added column-<field_name> classes to the admin list
2013-02-24Add column-<field_name> classes to the admin listDiederik van der Boor
This simplifies CSS styling to set column widths.
2013-02-24Merge pull request #828 from zerok/tickets/17320Florian Apolloner
Fixed #17320 -- Added whitespace validation to Site.domain field
2013-02-24Fixed #19688 -- Allow model subclassing with a custom metaclass using ↵Simon Charette
six.with_metaclass
2013-02-24Merge pull request #832 from chrismedrela/ticket19890Preston Holmes
Fixed #19890 -- ifchanged templatetag rendered its content twice
2013-02-24Fix documentation :mod: role in Syndication feed text.Diederik van der Boor
2013-02-24Fixed #19394 --Added note about auth forms and custom user models.Ben Konrath
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 #17320 -- Added whitespace validation to the Site.domain fieldHorst Gutmann