Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/admin_docs
Commit message (Collapse)AuthorAgeFilesLines
* Removed 'Test that' prefix from admindocs tests.Zan Anderle2015-09-071-4/+4
|
* Fixed #24917 -- Made admindocs display model methods ↵Zan Anderle2015-09-072-1/+43
| | | | that take arguments.
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-312-2/+0
|
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-281-2/+2
| | | | on_delete for ForeignKey/OneToOneField
* Fixed #25115 -- Made admindocs view bookmarklet reverse ↵Ben Spaulding2015-07-131-1/+1
| | | | the URL rather than hardcode it.
* Refs #24125 -- Added admin_docs tests for multiple ↵Kai Richard Koenig2015-06-121-0/+24
| | | | | | template engines. This adds a test for 511a53b3142551a1bc3093ed1b6655f57634f510
* Fixed #21927 -- Made application and instance namespaces ↵Marten Kenbeek2015-06-081-3/+3
| | | | | | | | more distinct. Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces.
* Refs #24625 -- Filtered docutils warnings output in testsMarkus Holtermann2015-04-141-3/+6
| | | | | | | | Instead of setting ``warning_stream`` in the docutils config overrides to ``False`` I opted for filtering the stderr in the tests to keep the error output showing up in server logs. Thanks Tim Graham for the report and review
* Fixed #24625 -- Prevented arbitrary file inclusion in ↵Markus Holtermann2015-04-113-0/+12
| | | | | | admindocs Thanks Tim Graham for the review.
* Fixed #24624 -- Replaced obsoleted rel.opts in admindocs ↵Claude Paroz2015-04-111-0/+14
| | | | | | | view Thanks Scott Sanders for the report, and Markus Holtermann and Tim Graham for the reviews. Refs #24381.
* Converted test fixtures to setUpTestData methodsJosh Smeaton2015-03-052-24/+17
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-062-3/+3
|
* Fixed #24149 -- Normalized tuple settings to lists.darkryder2015-02-031-1/+1
|
* Fixed #5405 -- Added admindocs support for reStructured ↵Zan Anderle2014-11-032-0/+119
| | | | | | text in model docstrings Thanks elvard and gkmngrgn for work on the patch and Markus H. for review.
* Fixed #23620 -- Used more specific assertions in the ↵Berker Peksag2014-11-031-8/+8
| | | | Django test suite.
* Fixed #23601 -- Ensured view exists in URLconf before ↵Markus Holtermann2014-10-061-0/+11
| | | | importing it in admindocs.
* Removed some apps from ALWAYS_INSTALLED_APPSClaude Paroz2014-06-211-13/+13
|
* Fixed #21685 -- Displayed app verbose name in admindocs ↵Claude Paroz2014-05-101-1/+5
| | | | model index
* Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi2014-04-061-8/+8
|
* Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham2014-04-031-10/+10
| | | | Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
* Added tests for django.contrib.admindocsGreg Chapple2014-02-232-11/+150
| | | | Refs #22015
* Made staff_member_required redirect to loginClaude Paroz2014-02-041-1/+1
| | | | Refs #21911.
* Imported override_settings from its new location.Aymeric Augustin2013-12-231-2/+1
|
* Dropped AppCache._empty, _with_app and _without_app.Aymeric Augustin2013-12-231-6/+6
| | | | | It's now easier to achieve the same effect with modify_settings or override_settings.
* Moved apps back in the toplevel django namespace.Aymeric Augustin2013-12-221-1/+1
| | | | Reverted 4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2.
* Removed the app_config.installed flag.Aymeric Augustin2013-12-221-13/+5
| | | | | | | | | Since applications that aren't installed no longer have an application configuration, it is now always True in practice. Provided an abstraction to temporarily add or remove applications as several tests messed with app_config.installed to achieve this effect. For now this API is _-prefixed because it looks dangerous.
* Fixed #21386 -- Removed admindocs dependence on sites ↵Bouke Haarsma2013-12-182-1/+37
| | | | | | | | | | framework * Removed ADMIN_FOR setting and warn warning * Group view functions by namespace instead of site * Added a test verifying namespaces are listed Thanks to Claude Paroz for reviewing and ideas for improvement.
* Removed superfluous models.py files.Aymeric Augustin2013-12-171-0/+0
| | | | | | | Added comments in the three empty models.py files that are still needed. Adjusted the test runner to add applications corresponding to test labels to INSTALLED_APPS even when they don't have a models module.
* Fixed missing admindocs' site_headerBouke Haarsma2013-11-221-0/+6
|
* Updated admindocs to use class-based viewsClaude Paroz2013-11-212-6/+82
| | | | Thanks Bouke Haarsma for the review.
* PEP8 cleanupJason Myers2013-11-031-0/+2
| | | | Signed-off-by: Jason Myers <jason@jasonamyers.com>
* Fixed #6681 -- Don't break docutils when rendering ↵Tai Lee2013-10-042-1/+46
| | | | | | | | | | reStructuredText. Don't set a global default interpreted role function for reStructuredText. Instead, use the `default-role` directive to change the default only within the `parse_rst()` function. Thanks Malcolm Tredinnick for the report.
* Removed most of absolute_import importsClaude Paroz2013-07-291-3/+0
| | | | | Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
* Fixed #20126 -- XViewMiddleware moved to ↵Łukasz Langa2013-05-196-0/+86
django.contrib.admindocs.middleware