| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-02-26 | Fixed i18n test to match changed translation | Claude Paroz | |
| Forward port of ab6ff2e0ac from stable/1.5 | |||
| 2013-02-26 | Merged contrib translations from 1.5 branch | Claude Paroz | |
| 2013-02-26 | Merged core translations from 1.5 branch | Claude Paroz | |
| 2013-02-26 | Added note about updating default docs version in howto-release doc. | Carl Meyer | |
| 2013-02-26 | Fixed #19922 - Typo in translation docs. | Tim Graham | |
| Thanks amoebob for the report. | |||
| 2013-02-26 | Fixed 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-26 | Changed test_runner tests to use full python path for settings files. | Florian Apolloner | |
| 2013-02-26 | fixed admin_scripts tests on python 3.3 | Florian Apolloner | |
| 2013-02-26 | Ensured 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-26 | Updated docs to reflect new tests layout. | Florian Apolloner | |
| Thanks to Ramiro Morales for the initial patch. | |||
| 2013-02-26 | Renamed a template to be found by the loaders. | Florian Apolloner | |
| 2013-02-26 | Renamed some tests and removed references to modeltests/regressiontests. | Florian Apolloner | |
| 2013-02-26 | Adjusted coveragerc | Florian Apolloner | |
| 2013-02-26 | Adjusted runtests to the new layout. | Florian Apolloner | |
| 2013-02-26 | Merged regressiontests and modeltests into the test root. | Florian Apolloner | |
| 2013-02-26 | Removed __init__.py files. | Florian Apolloner | |
| 2013-02-26 | Moved test_templates to templates to prevent issues with ↵ | Florian Apolloner | |
| regressiontests/templates later on. | |||
| 2013-02-26 | Updated 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-25 | Fixed a caching test on Python 3. | Carl Meyer | |
| 2013-02-25 | Fixed #18191 -- Don't consider Accept-Language redundantly in cache key. | Łukasz Langa | |
| Thanks to choongmin for the original patch. | |||
| 2013-02-25 | Fixed #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-25 | Fixed #6195 -- Documented caching options for javascript_catalog. | Aymeric Augustin | |
| 2013-02-25 | Updated the release process docs to reflect the current practices. | Aymeric Augustin | |
| Fixed #17919. | |||
| 2013-02-25 | Fixed #18144 -- Restored compatibility with SHA1 hashes with empty salt. | Aymeric Augustin | |
| Thanks dahool for the report and initial version of the patch. | |||
| 2013-02-25 | Use built-in fixture support rather than calling loaddata in setUp(). | Carl Meyer | |
| 2013-02-25 | Merge pull request #847 from fhahn/ticket_18176 | Aymeric Augustin | |
| Fixed #18176 -- Added test for year lookups with year < 1000 | |||
| 2013-02-25 | Fixed #19801 - Added brackets to input_formats. | Tim Graham | |
| Thanks leandron85@ for the suggestion. | |||
| 2013-02-25 | Fixed #19854 -- Turn Django's own Selenium tests off by default. | Carl Meyer | |
| 2013-02-25 | Fixed #18176 -- Added test for year lookups with year < 1000 | Florian Hahn | |
| Thanks Tomas Ehrlich for the initial test | |||
| 2013-02-25 | Fixed #19903 -- Fixed unbalanced setUp/tearDown calls in LiveServerAddress test | Claude Paroz | |
| 2013-02-25 | Switching to autoescape is not a change in syntax. | Carl Meyer | |
| 2013-02-25 | Remove 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-25 | Minor edits to some recently-added admin docs. | Carl Meyer | |
| 2013-02-25 | Changed testing strategy used in 6b03179e. | Aymeric Augustin | |
| Avoid polluting the app cache as it causes unrelated test failures. Refs #19688. | |||
| 2013-02-24 | Fixed #19908 -- Added missing import in forms.py | Claude Paroz | |
| Thanks loic84 for the report. | |||
| 2013-02-24 | Fixed 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-24 | Merge pull request #824 from ambv/languagecode | Julien Phalip | |
| 2013-02-24 | Added missing versionadded for sqldropindexes command docs | Claude Paroz | |
| 2013-02-24 | Merge pull request #835 from vdboor/docfix | Tim Graham | |
| Fixed documentation typo (:mod: role in Syndication feed text) | |||
| 2013-02-24 | Fixed some docstrings that were raising Sphinx warnings when running the ↵ | Julien Phalip | |
| admindocs tests. | |||
| 2013-02-24 | Fixed python 3 support. Refs #17320 | Florian Apolloner | |
| 2013-02-24 | Merge pull request #834 from vdboor/issue_19906_list_classes | Aymeric Augustin | |
| Added column-<field_name> classes to the admin list | |||
| 2013-02-24 | Add column-<field_name> classes to the admin list | Diederik van der Boor | |
| This simplifies CSS styling to set column widths. | |||
| 2013-02-24 | Merge pull request #828 from zerok/tickets/17320 | Florian Apolloner | |
| Fixed #17320 -- Added whitespace validation to Site.domain field | |||
| 2013-02-24 | Fixed #19688 -- Allow model subclassing with a custom metaclass using ↵ | Simon Charette | |
| six.with_metaclass | |||
| 2013-02-24 | Merge pull request #832 from chrismedrela/ticket19890 | Preston Holmes | |
| Fixed #19890 -- ifchanged templatetag rendered its content twice | |||
| 2013-02-24 | Fix documentation :mod: role in Syndication feed text. | Diederik van der Boor | |
| 2013-02-24 | Fixed #19394 --Added note about auth forms and custom user models. | Ben Konrath | |
| 2013-02-24 | Fixed #19890 -- ifchanged templatetag rendered its content twice | Christopher 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-24 | Fixed #17320 -- Added whitespace validation to the Site.domain field | Horst Gutmann | |
