summaryrefslogtreecommitdiff
path: root/sphinx/themes/basic/static
Commit message (Collapse)AuthorAgeFilesLines
* improve css for figureshimizukawa2014-10-201-0/+9
|
* improve css for numfig captionshimizukawa2014-10-201-1/+34
|
* Update jQuery from 1.8.3 to 1.11.1. This change includes two migrations for ↵shimizukawa2014-10-084-6344/+7207
| | | | jQuery. Closes #1438.
* Set permanent links to every captions and titlestk0miya2014-10-051-1/+4
|
* Merge with defaulttk0miya2014-09-241-2/+1
|\
| * do nested_parse() :caption: of code-block directivetk0miya2014-09-191-2/+1
| |
* | Fixup windows newlines.Georg Brandl2014-09-211-1/+1
|/
* Merge upstream changestk0miya2014-08-201-3/+3
|\
| * Rename :filename: option of code-block directive to :caption:tk0miya2014-08-111-4/+4
| |
* | Fix #1476 replace <tt> tag by <code>tk0miya2014-08-122-7/+7
|/
* compress static PNG images with optipng -o10Lars Buitinck2014-07-227-0/+0
| | | | Average reduction in file size of 20%.
* * Provide non-minified JS files for jquery.js and underscore.js to clarify ↵shimizukawa2014-06-072-0/+10471
| | | | the source of the minified files. refs #1434.
* Update copyright year.Georg Brandl2014-03-011-0/+18
|\
| * Follow-up to #1355: replace <big> tag by <span class="sig-paren">.Georg Brandl2014-01-261-0/+4
| |
| * Merge in pull request #172 from ↵Georg Brandl2014-01-191-0/+14
| |\ | | | | | | | | | https://bitbucket.org/nsmgr8/sphinx/branch/default
* | | Update copyright year.Georg Brandl2014-03-014-4/+4
|/ /
* | In search word highlighting, dont insist on having div.body.Georg Brandl2014-01-191-0/+3
| |
* | Closes #1072: In the JS search, fix issues searching for upper-cased words ↵Georg Brandl2014-01-121-1/+1
| | | | | | | | by lowercasing words before stemming.
* | Closes #1093: use max-width: 100% for images in basic/epub themeGeorg Brandl2014-01-121-0/+1
| |
* | Closes #764: always search stopwords lowercasedGeorg Brandl2014-01-101-1/+1
| |
* | Remove handlers for the "refcount" node.Georg Brandl2013-10-121-4/+0
|/
* fix: A wrong conditoin check break search feature on first page that is ↵shimizukawa2013-09-261-1/+1
| | | | usually index.rst. This issue was introduced at 46d0815, cfbdd84.
* Update jquery to 1.8.3 in websupportmasklinn2013-04-091-4/+2
| | | | | | | Previous version (1.7.1) failed to make elements visible when calling $.fn.show() on elements not yet attached to the DOM, leading to e.g. reply or proposal links not appearing in webkit-based browsers (Safari, Chrome)
* #723: fix remaining issue with search and webkit browsersGeorg Brandl2013-03-311-1/+1
|
* Closes #723: Fix the search function on local files in WebKit based browsers.Georg Brandl2013-03-301-12/+19
|
* Fix local search which was broken by correcting JS issues found by JSHint ↵Jonathan Waltman2013-01-101-1/+1
| | | | (commit 46d08152a30d)
* Correct some JS issues found by JSHint.Georg Brandl2013-01-042-25/+18
|
* Closes #1067: implement pluggable search scorer and tweak scoring to give ↵Georg Brandl2013-01-041-43/+101
| | | | good results. Patch by Hernan Grecco.
* Issue #1067: Scoring based search resultsGeorg Brandl2013-01-031-96/+102
| | | | | | | | | | | Modify the search tool to create single result set (instead of the current 4: regular, important, unimportantResults, objectResults). Each result has an associated score. The results are sorted by score before presenting the results. This modification does not seem to change the search time significantly. Patch by Hernan E. Grecco.
* Copyright update.Georg Brandl2013-01-014-4/+4
|
* Closes #1015: do not override the jQuery contains() function by defining our ↵Georg Brandl2012-10-282-14/+2
| | | | own with that name; rather use the one from Underscore.
* Fixes #893: Update jquery to 1.7.1 and underscore.js to 1.3.1.Georg Brandl2012-03-102-175/+33
|
* Closes #846: Narrow down quick search styling.Robert Lehmann2012-01-031-2/+2
|
* Fix typo and create a new "stable" named branch.Ezio Melotti2011-10-231-1/+1
|
* Update the websupport tests to API changes.Georg Brandl2011-10-061-1/+1
|
* Move 'Hide Search Matches' to search box.Robert Lehmann2011-10-021-4/+4
| | | | | This is (a) semantically cleaner and (b) shows that feature even when source links are disabled.
* Closes #778: Fix CSS class selector.Robert Lehmann2011-10-021-2/+2
|
* Merge with 1.0Georg Brandl2011-09-2312-232/+909
|\
| * Merge with 1.0.Georg Brandl2011-09-211-1/+8
| |\
| * | Fix indentation.Georg Brandl2011-09-211-1/+1
| | |
| * | Fix #612: add default abbr/acronym markup which is not present in some browsers.Georg Brandl2011-09-211-0/+5
| | |
| * | Array.concat does not exist in all browsers.Njal Karevoll2011-08-151-1/+1
| | | | | | | | | | | | [].concat can be used instead of Array.concat, and this works in Firefox and Chrome (and reportedly on IE8/9).
| * | Closes #724: Add license for Underscore.js.Robert Lehmann2011-06-281-0/+7
| | |
| * | merge with 1.0Georg Brandl2011-05-151-1/+1
| |\ \
| * | | Improved multi-word search by doing object lookups and matching descriptions ↵Luke Plant2011-05-141-10/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of objects with other words Without this patch, adding extra, relevant terms to a search can eliminate a direct match for an object, because multi-word searches don't do object lookups. We can avoid matching too many objects by requiring the other terms searched to appear in the object name or description.
| * | | Pulled object search routine into separate routine.Luke Plant2011-05-141-33/+48
| | | | | | | | | | | | | | | | | | | | This makes it easier to re-use, and helps reduce the length of the main query routine.
| * | | merge with 1.0Georg Brandl2011-01-1511-193/+816
| |\ \ \
| | * | | #554: Add theme option ``sidebarwidth`` to the basic theme.Georg Brandl2011-01-151-1/+1
| | | | |
| | * | | merge with 1.0Georg Brandl2011-01-041-0/+1
| | |\ \ \
| | * | | | #273: Add an API for adding full-text search support for languages other ↵Georg Brandl2011-01-041-192/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | than English. Add support for Japanese. Based on the implementation by SHIBUKAWA Yoshiki in https://bitbucket.org/shibu/sphinx/.