summaryrefslogtreecommitdiffstats
path: root/templates
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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.
| * Add namespace inline flag in xml output (#7828)Sergei Izmailov2020-06-131-0/+2
| | | | | | | | | | | | | | * Flag namespace as inline in xml output * Add inline namespace flag to innernamespace tag as well suggested by @mosra
* | Adding the xml:lang tag to XML and Docbook outputalbert-github2020-06-033-0/+29
|/ | | | | | | | Adding the xml:lang attribute for XNL and Docbook output Interesting links: - language codes (different from country codes!): https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry - example for xml.xsd: http://www.java2s.com/Code/XML/XML-Schema/importanotherXMLschema.htm
* Fixed javascript warning in resize.jsRelease_1_8_18Dimitri van Heesch2020-04-131-1/+3
|
* Remove duplicate xsd fields for `docMarkupType`.jtm2020-03-291-2/+0
| | | | | | | | The `docTitleCmdGroup` group defines choices `image` and `linebreak` (among others). The `docMarkupType` type inherits from `docTitleCmdGroup`, but includes redefinitions of `image` and `linebreak` in its definition. This is mostly harmless, but it violates the ["unique particle attribution rule"](https://www.w3.org/wiki/UniqueParticleAttribution), which some xsd tools will complain about.
* issue #6901: Please consider relicensing of Javascript filesDimitri van Heesch2020-03-277-143/+130
|
* Correction due to removal of Tclalbert-github2020-03-231-1/+0
| | | | The word tcl was still present at some places.
* 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
|/
* Minor fixes for table cell attributes in XML and docbook outputDimitri van Heesch2020-02-021-1/+0
|
* Avoid unsupported html attributes from appearing in the XML/docbook output ↵Dimitri van Heesch2020-02-022-42/+11
| | | | and other small fixes
* Bug 791390 - Table formatting information ignored in Doxygen XML outputalbert-github2020-01-231-0/+4
| | | | | - added possibility (and checks) for xml - added missing case for class in docbook
* Showing information from all `*only commands in XML outputalbert-github2020-01-051-0/+1
| | | | This fix reverts the changes from #381 (i.e issue #4214 "htmlonly content appears in generated XML output (Origin: bugzilla 646002)", as XML is seen as an output format that can be further processed and therefore should contain all possible information.
* Double entry for ins in compound.xsdalbert-github2019-12-261-1/+0
| | | | Pull request #7458 added `ins` and pull request #7203 corrected `inc` to `ins` resulting in double `ins`, corrected.
* Merge branch 'feature/bug_html_s' of ↵Dimitri van Heesch2019-12-261-1/+2
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_html_s
| * Adding HTML s tag, XML corrections for other tagsalbert-github2019-08-161-1/+2
| | | | | | | | | | | | Adding the HTML `<s>` tag (https://www.w3schools.com/tags/tag_s.asp). Adding 's' and correcting 'inc' to 'ins' in compound.xsd
* | Merge branch 'master' into spellingDimitri van Heesch2019-12-234-2/+15
|\ \
| * | Tests 86 with check against xsd gives erroralbert-github2019-12-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When running test 86 with check against the xsd we get the error message: ``` not ok 1 - [086_style_tags.h]: test different HTML style tags ------------------------------------- Element 'ins': This element is not expected. Expected is one of ( ulink, bold, strike, underline, emphasis, computeroutput, subscript, superscript, center, small ). test_output_086/out/086__style__tags_8h.xml fails to validate ``` The element `ins` has been added.
| * | Merge pull request #7237 from albert-github/feature/bug_table_hrDimitri van Heesch2019-12-171-2/+8
| |\ \ | | | | | | | | Problem with `<hr>` in LaTeX multicolumn cell
| | * | Problem with `<hr>` in LaTeX multicolumn cellalbert-github2019-08-291-4/+0
| | | | | | | | | | | | | | | | Small problem with defining `\hrulefilll`, moved code.
| | * | Problem with `<hr>` in LaTeX multicolumn cellalbert-github2019-08-291-2/+12
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case we have a `<hr>` in a table cell then it is displayed as a horizontal line (in LaTeX) unless it is in a multicolumn cell. In the later case it throws an error: ``` ! You can't use `\hrule' here except with leaders. \DoxyHorRuler ... }{0ex plus 0ex minus 0ex}\hrule ``` We have to use use `\hrulefill` in a table but in combination with the table option of xcolor this gives some problems so a new command has to be defined for this. See also: - horizontal rule / line inside a multicolumn field (https://tex.stackexchange.com/questions/506211/horizontal-rule-line-inside-a-multicolumn-field) - interaction between \usepackage[table]{xcolor} and \hrulefill (https://tex.stackexchange.com/questions/506221/interaction-between-usepackagetablexcolor-and-hrulefill)
| * | 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: javascriptJosh Soref2019-11-121-1/+1
| | |
* | | spelling: inheritedJosh Soref2019-11-121-1/+1
| | |
* | | spelling: charactersJosh Soref2019-11-121-1/+1
|/ /
* | 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 typosluz.paz2019-09-281-5/+5
| | | | | | | | | | | | Found via ``` codespell -q 3 -S *.js,*.po,./src/translator*,*.eps,./doc/changelog.doc -L ang,ans,attribs,ba,behaviour,classe,colour,german,iff,initialise,nam,nd,que,russian,statics,te,tim,uint ```
* | Merge pull request #7266 from luzpaz/typosDimitri van Heesch2019-09-162-4/+4
|\ \ | | | | | | Fix some typos
| * | Fix some typos luz.paz2019-09-162-4/+4
| |/
* | Fix typo in sourceluz.paz2019-09-161-1/+1
|/
* Incorrect paragraph numbers in secref list.albert-github2019-08-041-15/+21
| | | | | | | The definition of `\doxysection` etc. are using grouping around the section title, and this destroys the \label system as label names are stored locally. (see also: https://tex.stackexchange.com/questions/502650/section-numbering-in-redefined-sections) the `\doxysection` commands have been redefined (unfortunately partly copying values from book.cls)
* Add 'ins' and 'del' style tags to XML schemaDimitri van Heesch2019-08-031-0/+2
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-07-301-0/+1
|\
| * Merge pull request #7035 from albert-github/feature/bug_304793Dimitri van Heesch2019-07-301-0/+1
| |\ | | | | | | Bug 304793 - paramType does not contain attribute element in compound.xsd schema
| | * Bug 304793 - paramType does not contain attribute element in compound.xsd schemaalbert-github2019-06-061-0/+1
| | | | | | | | | | | | Added "attributes" to "paramType"
* | | Unified various image file types in the XML schemaDimitri van Heesch2019-07-301-25/+12
| | |
* | | Merge branch 'feature/bug_xml_msc_schema' of ↵Dimitri van Heesch2019-07-301-2/+11
|\ \ \ | |/ / |/| | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_xml_msc_schema
| * | XML validation \msc... \dot... \dia...albert-github2019-06-271-2/+11
| |/ | | | | | | The items for caption, and size were not added to the xml schema for `\msc` \mscfile` `\dot` \dotfile` `\diafile`
* | Merge branch 'latex-output-format-fixes' of ↵Dimitri van Heesch2019-07-281-9/+2
|\ \ | | | | | | | | | https://github.com/BCiesla/doxygen into BCiesla-latex-output-format-fixes
| * | Change DoxyParagraph to use DoxyDesc inside in latex styleBartosz Ciesla2019-07-181-9/+2
| |/ | | | | | | | | | | This solves the problem where header of the paragraph in pdf output generated from latex has different indent than other sections (like param or retval).
* | issue #6769 Tabu is brokenalbert-github2019-07-261-4/+4
| | | | | | | | | | Based on comment `\usepackage` in refman.tex / doxygen_manual.tex has been replaced with `\RequirePackage` in doxygen.sty ("back to its old place").
* | issue #6769 Tabu is brokenalbert-github2019-07-223-4/+3009
|/ | | | | Created a workaround for the problems in the unmaintained tabu package due to changes in LaTeX 2019 Changes are based on the comments of David Carlisle and Frank Mittelbach of The LaTeX3 Project Team
* Updated jquery and worked around performance issues in powertip pluginDimitri van Heesch2019-05-301-3/+3
|
* issue #6896 empty sections in latex outputalbert-github2019-03-281-6/+15
| | | | In pull request #6832 a fix was made for section captions that ran into the margins. For sections that should not appear in the the TOC (i.e. `*`-ed sections) this led to showing a `*`, this has been corrected.
* Correcting errors in xml generation and xsd schemaalbert-github2019-03-182-18/+46
| | | | | | | | | | | | | | | - `xmlgen.cpp` make count test identical to restrictions in `generateXMLForMember` - `index.xsd` add missing selection possibility - `compound.xsd` - add missing `block` possibility for htmlonly - add missing `private` and `protected` possibilities - get order in description type right - make `sect[1-4]` more flexible - adding missing elements like `msc`, `linebreak` at the appropriate places - adding `vhdl` coloring enumeration values - adding `docbook` possibility for images results have been tested (a.o.) doxygen tests, doxygen examples, doxygen docu, CGAL source code.
* 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