summaryrefslogtreecommitdiffstats
path: root/templates/html
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: Modernise client side part of searchindexDimitri van Heesch2020-12-291-0/+2
|
* Fixed problem expanding/collapsing search results when using XHTML (part 2)Dimitri van Heesch2020-12-252-3/+3
|
* Prettify the HTML output when enabling SEPARATE_MEMBER_PAGESDimitri van Heesch2020-12-211-8/+23
|
* Fixed problem expanding/collapsing search results when using XHTMLDimitri van Heesch2020-12-211-2/+2
|
* Refactoring: modernize class indexDimitri van Heesch2020-12-211-18/+58
|
* fix: convert links to the main doxygen site to https. Trailing whitespace ↵Allan Bowe2020-11-292-4/+4
| | | | was also removed (hope this is ok, was a default setting). Closes #8212
* Default doxygen search mechanism doesn't work when using with XHTML outputalbert-github2020-11-252-5/+5
| | | | | | | | | | | | | The problem has been tested with the doxygen test 021. With the output format html all works OK. - When giving a `t` in the search window a window appears with the message "This XML file does not appear to have any style information associated with it. The document tree is shown below." - the `<html> statement has to replaced by `<html xmlns="http://www.w3.org/1999/xhtml">` in searchindex.cpp (is normally also present in the non search xhtml files). - this results in a window with just the words: Loading.... Searching... No Matches - this is due to the extra `<!--` / `-->` in the htmlsearchresults.tpl (strange enough html output has no problem with it). - When giving a `a` in the search windows we get a "File not found" message as the file nomatches.html cannot be found - the extension for "nomatches" has to be set properly as well (search.js), for the other files this is done a few lines upward.
* XHML: div tag not possible as part of a p tag.albert-github2020-11-161-1/+1
| | | | | | | | | | | With test 76 we get a number of messages like: ``` element p: validity error : Element div is not declared in p list of possible children ``` this is a regression on issue #8169 / pull request #8170. The `<div>` tag is not allowed as child of a `<p>` tag and furthermore in the output when a number of items should be on one line this is not the case anymore. This all can be corrected by means of using the `<span>` tag instead of the `<div>` tag.
* issue @8169 "\emoji heavy_check_mark" produces ✓ instead of ✔️albert-github2020-11-111-0/+6
| | | | Create the possibility to change the used font for an emoji (the default is unchanged, but an example is given of how it is used at the site: https://unicode.org/emoji/charts/full-emoji-list.html).
* Proposed fix for issue #7898 (#8029)luca-aep2020-09-161-2/+4
| | | | | * Proposed fix for issue #7898 - Internal search engine produce ".html" pages instead of using HTML_FILE_EXTENSION * Applied albert-github suggestions to proposed fix for issue #7898
* Layout on the bibliography pagealbert-github2020-08-111-1/+3
| | | | | | | | | | | | | | When having a bit a long citation description, the description runs, in the HTML output on the bibliography page, into 3 or more lines where the 3rd and following lines continue underneath the citation number like: ``` [1] Eric Berberich, Arno Eigenwillig, Michael Hemmer, Susan Hert, Lutz Kettner, Kurt Mehlhorn, Joachim Reichel, Susanne Schmitt, Elmar Schömer, and Nicola Wolpert. Exacus: Efficient and exact algorithms for curves and surfaces. In Gerth S. Brodal and Stefano Leonardi, editors, 13th Annual European Symposium on Algorithms (ESA 2005), volume 3669 of Lecture Notes in Computer Science, pages 155–166, Palma de Mallorca, Spain, October 2005. European Association for Theoretical Computer Science (EATCS), Springer. ``` The example was found in the CGAL repository - corrected the "overflow" - made the citation number right aligned
* Merge pull request #7936 from albert-github/feature/bug_cite_debugDimitri van Heesch2020-07-311-1/+6
|\ | | | | Debug facility for the \cite command
| * Debug facility for the \cite commandalbert-github2020-07-311-1/+6
| | | | | | | | | | | | | | | | | | | | | | When issuing doxygen with `-d cite` the temporary (copied) files / directory are not removed, i.e.: - bib*.aux - bib*.bbl - bib*.blg - bib2xhtml.pl - citelist.doc - doxygen.bst - bibTmpDir (directory)
* | Minors tweaks to the regular expressionsDimitri van Heesch2020-07-311-2/+2
| |
* | Incorrect representation of citationalbert-github2020-07-311-2/+2
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case we have a bibtex entry like: ``` @manual{ cgal:as-lum ,author = {Algorithmic Solutions} ,title = {The {LEDA} {U}ser {M}anual} ,organization = {Algorithmic Solutions} ,address = {66123 Saarbr\"ucken, Germany} ,url = {http://www.algorithmic-solutions.info/leda_manual/MANUAL.html} } ``` this is rendered / referenced like: ``` [Solutions] Algorithmic Solutions. The LEDA User Manual. Algorithmic Solutions, 66123 Saarbrücken, Germany. ``` instead of ``` [2] Algorithmic Solutions. The LEDA User Manual. Algorithmic Solutions, 66123 Saarbrücken, Germany. ``` The problem is that in the resulting "bbl" file from the bibtex command we have the line: ``` <dt><a name="CITEREF_cgal:as-lum">[Solutions]</a></dt><dd>\bibxhtmlname{Algorithmic Solutions}. ``` instead of (from another entry): ``` <dt><a name="CITEREF_cgal:mog-vbcfe-11">[Merigot et~al., 2011]</a></dt><dd>\bibxhtmlname{Quentin Merigot}, \bibxhtmlname{Maks ``` Note the `\n` after the `<a` instead of the (expected) space. This has been corrected in the regular expression (Note: we need to use `[ \n][ \n]*` as we cannot use the equivalent `[ \n]+` as the `+`- sign has here a different meaning).
* Made shading more subtle in the SVG logoDimitri van Heesch2020-07-191-1/+1
|
* Make the luminance levels of the new SVG logo better match the original bitmapDimitri van Heesch2020-07-191-5/+5
|
* Replaced bitmap of doxygen logo by SVG versionDimitri van Heesch2020-07-185-78/+31
|
* Issue #7892: Incorrect search box on server-side search results pageDimitri van Heesch2020-07-071-7/+1
|
* Scalable search bar for high resolution displays (#7888)tttapa2020-07-049-70/+196
| | | | | | | | | | * Use SVG images for search bar icons * Update search bar CSS for high resolution displays Uses CSS shadows instead of PNG images of shadows * Limit the main-menu CSS rule to first level list #main-menu li:last-child applies to last childs of sub-lists as well #main-menu > li:last-child only applies to the top-level list
* Updated formatting rules for paragraphs within table header cells.Thomas Vogt2020-06-141-1/+1
| | | | Only present paragraphs within table headers (th) with font weight strong, keep normal table cells (td) unaffected.
* Fixed javascript warning in resize.jsRelease_1_8_18Dimitri van Heesch2020-04-131-1/+3
|
* issue #6901: Please consider relicensing of Javascript filesDimitri van Heesch2020-03-277-143/+130
|
* Merge branch 'remove_tcl'Dimitri van Heesch2020-03-221-1/+0
|\
| * Remove support for TCL (code is too buggy and unmaintained, language not ↵Dimitri van Heesch2020-03-151-1/+0
| | | | | | | | very popular)
* | Fix CROS javascript issue when giving focus to search result frame.Joseph Mirabel2020-03-222-3/+8
|/
* Avoid unsupported html attributes from appearing in the XML/docbook output ↵Dimitri van Heesch2020-02-021-41/+0
| | | | and other small fixes
* issue #7412: HTML: Opening a reference link in a new tab does not scroll to ↵Dimitri van Heesch2019-12-101-0/+1
| | | | the content
* Correct style in table header in case of paragraph is usedalbert-github2019-11-211-0/+5
| | | | | | In case a paragraph is used in a table header (quite unusual but can happen with 2 lines and an empty line in between), a `<p class="starttd">` tag is added and therewith the layout is incorrect. This problem was detected based on #7409 This has been corrected (and tested with some available browsers FF, IE, Chrome, Opera).
* Spelling corrections for templates directoryalbert-github2019-11-042-2/+2
| | | | | | Spelling corrections as found by codespell and in #561. One reported problem was already fixed, others are fixed here.
* Also span entire line in case of a memTemplItemRightalbert-github2019-10-101-1/+1
| | | | Based on the CGAL issue https://github.com/CGAL/cgal/issues/2095 (and pull request https://github.com/CGAL/cgal/pull/4282) to see to it that all relevant table span the page.
* Fix some typos luz.paz2019-09-161-1/+1
|
* Updated jquery and worked around performance issues in powertip pluginDimitri van Heesch2019-05-301-3/+3
|
* secref command output shows in 1 column (HTML)albert-github2019-03-041-1/+3
| | | | | The output from the `\secref` command shows in 1 column instead of 3. The `column-count` (also possibile without `-moz` or `-webkit`) should be with the `<ul>` tag instead of the `<div>` tag
* Bug 141919 - Wrong param and exception style in RTF outputalbert-github2019-02-011-1/+1
| | | | | | | | Some small improvements in the different formats based on the problems signaled with the issue - doxygen.css make exceptions in line with other tables (i.e. the appearance of the name of the exception) - doxygen.sty, rtfdocvisitor.cpp between items in e.g. Precondition, Postcondition, Note place a paragraph distance (like in main text) - docbookvisitor.cpp handle title of Rcs and User sections correctly .
* Aligned license statement for javascripts with general license statementDimitri van Heesch2019-01-314-97/+49
|
* issue #6733 invalid cite anchor id when using crossrefalbert-github2019-01-041-6/+6
| | | | | | | The crossreference possibility was not properly taken into account in bibtex conversion for other formats than LaTeX. - doxygen.bst: use correct labels (i.e. add 'CITEREF_' in case of crossreferences to the giver name) - cite.cpp: add the crossreferences to the citation dictionary (to overcome warning message). - extending test 012
* Merge pull request #6683 from lewijw/jQuery1.7.2Dimitri van Heesch2018-12-242-35/+7
|\ | | | | Upgrade to jQuery 1.7.2 to get rid of security scan violations.
| * Upgrade to jQuery 1.7.2 to get rid of security scan violations.John W. Lewis2018-12-142-35/+7
| |
* | [ImgBot] Optimize imagesImgBotApp2018-12-074-0/+0
|/ | | | | | | | | | | | | | | | | | | | *Total -- 536.41kb -> 410.38kb (23.5%) /doc/extsearch_flow.png -- 20.57kb -> 7.41kb (64%) /testing/sample.png -- 3.69kb -> 2.50kb (32.26%) /doc/doxywizard_main.png -- 55.86kb -> 38.51kb (31.07%) /doc/doxywizard_page1.png -- 38.72kb -> 29.24kb (24.47%) /doc/doxywizard_page4.png -- 42.69kb -> 32.57kb (23.72%) /doc/doxywizard_page3.png -- 49.71kb -> 37.95kb (23.66%) /doc/doxywizard_page2.png -- 38.13kb -> 29.21kb (23.41%) /addon/doxywizard/images/tunecolor.png -- 99.90kb -> 77.30kb (22.62%) /doc/doxywizard_menu.png -- 57.29kb -> 45.09kb (21.28%) /doc/doxywizard_expert.png -- 29.35kb -> 23.73kb (19.15%) /templates/html/mag_sel.png -- 0.55kb -> 0.45kb (17.41%) /templates/html/mag.png -- 0.51kb -> 0.44kb (14.31%) /doc/infoflow.png -- 98.24kb -> 84.89kb (13.59%) /templates/html/search_r.png -- 0.60kb -> 0.54kb (9.64%) /templates/html/search_l.png -- 0.59kb -> 0.55kb (6.13%)
* Merge pull request #6602 from albert-github/feature/bug_tparamDimitri van Heesch2018-12-031-3/+3
|\ | | | | Consistency in headings and layout for template parameters (tparam)
| * Consistency in headings and layout for template parameters (tparam)albert-github2018-11-061-3/+3
| | | | | | | | | | - at some places the translation of the "Template Parameters" was not yet done - layout of the template parameters table in HTML had no default. Should be analogous to the table for normal parameters
* | Warning running xmllint for xhtmlalbert-github2018-11-263-3/+3
| | | | | | | | | | | | | | When running xmllint in the error output the following message appears: `I/O error : Attempt to load network entity http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd` Going to the website we see that there an automatic redirect was done from `http` to `https`.
* | Merge branch 'feature/bug_inline_image' of ↵Dimitri van Heesch2018-11-111-1/+1
|\ \ | |/ |/| | | https://github.com/albert-github/doxygen into albert-github-feature/bug_inline_image
| * Inline imagesalbert-github2018-08-091-1/+1
| | | | | | | | Create the possibility of inline images with the `\image` command by means of the option `inline`.
* | Merge pull request #6402 from albert-github/feature/bug_579628Dimitri van Heesch2018-09-011-0/+9
|\ \ | | | | | | Bug 579628 - Merging of consecutive repeated commands creates poorly-structured HTML
| * | Bug 579628 - Merging of consecutive repeated commands creates ↵albert-github2018-07-201-0/+9
| | | | | | | | | | | | | | | | | | | | | poorly-structured HTML Most issues from this report were already implemented. Extended for cross reference lists with the possibility to "style" intermediate items as well. (also some code structure, i.e. mnemonics instead of numbers).
* | | Merge branch 'feature/bug_667993' of ↵Dimitri van Heesch2018-08-261-0/+5
|\ \ \ | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_667993
| * | | Bug 667993 - HTML tags <u> and </u> not supportedalbert-github2018-07-071-0/+5
| |/ / | | | | | | | | | Added underline possibility and strike through possibility for the different output formats insofar it is possible (other similar possibilities are not always possible for all output formats either).
* | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2018-08-261-1/+1
|\ \ \