summaryrefslogtreecommitdiffstats
path: root/templates/html
Commit message (Collapse)AuthorAgeFilesLines
* Added concepts to the templated outputDimitri van Heesch2021-06-1218-36/+139
| | | | | also made some changes to make the templated HTML output better match the built-in output.
* Improved responsive design of dynamic menusDimitri van Heesch2021-05-303-53/+97
| | | | | | | | | When DISABLE_INDEX=NO and HTML_DYNAMIC_MENUS=YES (both defaults) then on screens with a width smaller than 768 pixels, the menu will collapse into a bar with just a hamburger button and the search field. Also the search result window now stays within the limited of the screen.
* Optimized MathJax HTML output and made the template output the same.Dimitri van Heesch2021-05-245-8/+33
|
* Merge pull request #8554 from albert-github/feature/bug_mathjax_v3_refDimitri van Heesch2021-05-232-2/+2
|\ | | | | Extra settings for MathJax V3
| * Extra settings for MathJax V3albert-github2021-05-152-2/+2
| | | | | | | | For support of the `\eqref` command (used in CGAL) in MathJax V3 a small change has to be made (for a rationale see the discussion on https://groups.google.com/g/mathjax-users/c/oS0yQLb5BMk)
* | Make templated HTML output more similar to hardcoded output.Dimitri van Heesch2021-05-2019-44/+102
| |
* | Template engine: allow listing list and struct variables as stringsDimitri van Heesch2021-05-151-2/+2
|/ | | | | For easier debugging one can do e.g. `{% msg %}value={{ variable }}{% endmsg %}` to list the value of a variable also when it is a list or struct.
* Rename template filter '|e' to '|escape' to keep in line with DjangoDimitri van Heesch2021-05-141-1/+1
|
* Some fixes for template.cpp and improve the template outputDimitri van Heesch2021-05-1416-152/+204
|
* Reintroducing the sidebar layout via new FULL_SIDEBAR option.Dimitri van Heesch2021-05-097-531/+289
| | | | | - This new page layout is only enabled if DISABLE_INDEX=YES, GENERATE_TREEVIEW=YES, and FULL_SIDEBAR=YES.
* Reverted the layout change introduced in ↵Dimitri van Heesch2021-05-094-13/+12
| | | | | | | a9d29861fe6ad3c182d6cded2e3636a20086fc96 - Caused issues with existing projects that customized the page header to add own navigation tabs (e.g. CGAL).
* Optimized the layout in case DISABLE_INDEX=YES and GENERATE_TREEVIEW=YESDimitri van Heesch2021-05-087-23/+38
| | | | | - also illustrated the various layouts in the customization section of the manual to make choosing easier.
* issue #2732: Adding support for C++ concepts (Origin: bugzilla #499352)Dimitri van Heesch2021-04-081-0/+6
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2021-03-221-1/+1
|\
| * Some regressions on the templated approachalbert-github2021-03-201-1/+1
| | | | | | | | | | | | | | | | | | Although the templated approach is highly experimental there are a number of regressions fixed: - context.cpp - incorrect if condition due to: Refactoring: cleanup unused qtools headers (commit: b89561e0c61aec5cae6eafc354f81a3bf071a777) - garbled messages due to missing end of line in message - htmllayout.tpl - doxygen.luma has been replaced by doxygen.cpp
* | issue #8375: Lowercase search does not find non-ASCII uppercase pages and ↵Dimitri van Heesch2021-03-221-5/+1
|/ | | | vice versa
* issue #5362: Indexing and searching cannot treat non ASCII identifiersDimitri van Heesch2021-01-311-1/+1
|
* issue #5363: Indexing and searching cannot treat non ASCII identifiersDimitri van Heesch2021-01-311-1/+5
|
* 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
|