summaryrefslogtreecommitdiff
path: root/tests/test_theming.py
Commit message (Collapse)AuthorAgeFilesLines
* html builder: Append CRC32 checksum to asset URIs (#11415)Adam Turner2023-05-111-2/+2
|
* Update test for Alabaster version tupleAdam Turner2023-04-261-1/+5
|
* Remove deprecated items for Sphinx 6.0 (#10471)Adam Turner2022-06-161-24/+0
|
* Close #9974: html: Updated jQuery version from 3.5.1 to 3.6.0Takeshi KOMIYA2022-05-071-1/+1
|
* `.read_text()` -> `.read_text(encoding='utf8')`Adam Turner2022-04-271-8/+8
|
* Collapse single line docstringsAdam Turner2022-02-201-2/+1
|
* Remove copyright and licence fieldsAdam Turner2022-02-201-3/+0
|
* Fix module docstring indentationAdam Turner2022-02-201-2/+2
|
* Fix module docstring first lineAdam Turner2022-02-201-2/+1
|
* Remove module titles in docstringsAdam Turner2022-02-191-3/+0
|
* A happy new year!Takeshi KOMIYA2022-01-011-1/+1
|
* refactor: app.html_themes was replaced by registry.html_themesTakeshi KOMIYA2021-12-111-4/+4
|
* Fix #9222: Update Underscore.js to 1.13.1Takeshi KOMIYA2021-05-131-1/+1
| | | | | | underscore.js 1.12.0 has a security announcement (CVE-2021-23358) for arbitrary code execution. So it should be upgraded to the latest version.
* Merge branch '3.x'Takeshi KOMIYA2021-01-241-1/+1
|\
| * Update Underscore.js to 1.12.0Takeshi KOMIYA2021-01-231-1/+1
| |
* | refactor: Move CSS tags in basic/layout.html to ``css_files`` variableTakeshi KOMIYA2021-01-031-1/+1
|/ | | | | | | | | | | To make CSS customizable, all CSS files in basic/layout.html has their priority: 200. Therefore, extensions and users can insert their own custom CSS files before or just after them. As a side effect, the CSS tags in basic/layout.html are removed. These CSS files will be rendered via `css_files` template variable. refs: #8634, c5f03980107e123210fb602f4c31f5ae950e2af4
* A happy new year!Takeshi KOMIYA2021-01-011-1/+1
| | | | | | | .. note:: $ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \; $ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype
* Sort imports with isortFrançois Freitag2020-11-111-1/+1
| | | | | | | | | | | | Keep imports alphabetically sorted and their order homogeneous across Python source files. The isort project has more feature and is more active than the flake8-import-order plugin. Most issues caught were simply import ordering from the same module. Where imports were purposefully placed out of order, tag with isort:skip.
* Fix #7696: html: Updated jQuery version from 3.4.1 to 3.5.1Takeshi KOMIYA2020-05-221-1/+1
|
* Fix testsSeptatrix2020-03-141-6/+6
|
* Fix checking wrong highlighterSeptatrix2020-03-141-1/+1
|
* Remove html_pygments_dark_style optionSeptatrix2020-03-141-0/+16
|
* test: encoding="utf-8" is no longer needed on reading textTakeshi KOMIYA2020-02-011-1/+1
|
* test: Use read_text() and read_bytes()Takeshi KOMIYA2020-02-011-7/+7
|
* A happy new year!Takeshi KOMIYA2020-01-011-1/+1
|
* Fix #6606: Update jQuery to 3.4.1Takeshi KOMIYA2019-08-021-1/+1
|
* Add a label to search input for accessability purposes.Omer Katz2019-05-121-1/+1
|
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | Remove unnecessary encoding cookie from Python source filesJon Dufresne2018-12-161-1/+0
|/ | | | | | | | | | | | | | In Python 3, the default encoding of source files is utf-8. The encoding cookie is now unnecessary and redundant so remove it. For more details, see the docs: https://docs.python.org/3/howto/unicode.html#the-string-type > The default encoding for Python source code is UTF-8, so you can > simply include a Unicode character in a string literal ... Includes a fix for the flake8 header checks to stop expecting an encoding cookie.
* Capitalization: "Table Of Contents" -> "Table of Contents".Antony Lee2018-07-221-1/+1
| | | | | | | | This is consistent with "Complete Table of Contents" (which is already in the database), as well as e.g. "Indices and Tables" where "and" is not capitalized. This is also fairly standard title-case practice.
* Fix broken testcase by alabaster-0.711Takeshi KOMIYA2018-06-191-4/+8
|
* Merge branch 'stable' into 1.7-releaseTakeshi KOMIYA2018-01-201-1/+1
|\
| * Fix #4412: Updated jQuery version from 3.1.0 to 3.2.1Takeshi KOMIYA2018-01-191-1/+1
| |
* | Merge branch 'happy_new_year' into masterTakeshi KOMIYA2018-01-011-1/+1
|\ \ | |/
| * A happy new year!Takeshi KOMIYA2018-01-011-1/+1
| |
* | Merge branch 'stable'Takeshi KOMIYA2017-12-161-3/+20
|\ \ | |/
| * diet test-root: Move testtheme to test-themingTakeshi KOMIYA2017-12-151-3/+19
| |
| * diet test-root: Move ziptheme to test-themingTakeshi KOMIYA2017-12-151-3/+4
| |
* | HTML themes can set up default sidebars through ``theme.conf``Takeshi KOMIYA2017-10-221-0/+12
| |
* | Changed test case "test_theme_api" to check, if a not needed ↵daniel2017-06-261-2/+4
|/ | | | | | html_theme_option is not part of the returned, final configuration of theme.get_options(). PR #3893
* Drop old methodsTakeshi KOMIYA2017-04-211-5/+5
|
* Refactored againTakeshi KOMIYA2017-04-201-1/+0
|
* Add HTMLThemeFactory classTakeshi KOMIYA2017-04-201-8/+4
|
* Refactor sphinx.themingTakeshi KOMIYA2017-04-201-14/+6
|
* Fix fail to load template file if the parent template is archivedTakeshi KOMIYA2017-04-181-0/+6
|
* Year++Takeshi KOMIYA2017-03-261-1/+1
|
* Fix flake8 violationsTakeshi KOMIYA2017-01-261-1/+1
|
* pytest: remove deprecated with_app decorator functionsshimizukawa2017-01-061-4/+5
|
* pytest: remove deprecated raises and raises_msg assert functionsshimizukawa2017-01-061-3/+6
|