summaryrefslogtreecommitdiffstats
path: root/src/config.xml
Commit message (Collapse)AuthorAgeFilesLines
* Fix type and length of clang compilation database optionDimitri van Heesch2018-12-271-1/+1
|
* Renamed option and test case numbersDimitri van Heesch2018-12-261-2/+2
|
* Merge branch 'xml-namespace-members-in-file-scope' of ↵Dimitri van Heesch2018-12-261-0/+9
|\ | | | | | | https://github.com/mosra/doxygen into mosra-xml-namespace-members-in-file-scope
| * Make it possible to list namespace members in file scope for XML output.Vladimír Vondruš2018-02-101-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For better consistency with the HTML output, where each file documentation lists (and links to) all members of given namespace. This also makes it possible to be consistent with the HTML output in case a namespace is not documented and thus all its member detailed docs should be put into corresponding file docs instead. In order to be backwards compatible and avoid breaking stuff for existing users of the XML output, this is controlled by a new XML_NAMESPACE_MEMBERS_IN_FILE_SCOPE configuration option that defaults to NO. Note that this, unlike the HTML output, will put the whole detailed docs into the file scope instead of just listing them. It's up to the user of the XML output to deduplicate this information. It can be done for example by comparing member ID prefixes with compound ID -- íf different, the detailed docs are already somewhere else.
* | Merge branch 'master' of https://github.com/zeroc-ice/doxygen into ↵Dimitri van Heesch2018-11-171-540/+551
|\ \ | | | | | | | | | zeroc-ice-master
| * \ Merge remote-tracking branch 'doxygen/master'Joe George2018-11-021-11/+11
| |\ \
| * | | Added *.ice files as a recognized file type.Mark Spruiell2018-10-221-540/+551
| | | | | | | | | | | | | | | | Added a Slice-optimized output mode.
* | | | Merge branch 'feature/issue_6517' of ↵Dimitri van Heesch2018-11-111-0/+10
|\ \ \ \ | |_|/ / |/| | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_6517
| * | | issue_6517: Emoji supportalbert-github2018-10-011-0/+10
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added issue support for the different output types. - Sources of the emoji - based on the Unicode definition v11.0: - https://unicode.org/emoji/charts/full-emoji-list.html - http://www.unicode.org/emoji/charts/full-emoji-modifiers.html - github definition list: - https://api.github.com/emojis - Input of emoji: :<test>: with the restriction that direct after the opening colon and direct before the closing colon no space is allowed - doctokinizer.l, adding detection of emoji and new command `\:` - doktokinizer.h, adding "word" type TK_EMOJI - docparser.* handling of new "word" type TK_EMOJI (analogous to HTML Entities), handling of new command `\:` - cmdmapper,cpp, cmdmapper.h, adding new command `\:` - htmlentity.cpp, adding new definition required for new command `\:` - Emoji - emoji.cpp, emoji.h, class for handling emoji analogous to HTML Entities, including small directions on how to update the code when a new emoji is defined. Not everything is converted to lowercase for comparison and accents are removed. - doxygen.cpp possibility to create list of supported emoji - handling emoji for output types (analogous to HTML Entities), see documentation for different output types - docparser.h, *docvisitor.* - rtfdocvisitor.* converting output to UTF-16 (based on http://scruss.com/blog/2017/03/12/in-the-unlikely-event-you-need-to-represent-emoji-in-rtf-using-perl/) - latexdocvisitor.*, handling arguments for emoji in output (see also latexgen.cpp for meaning of the arguments of doxygenemoji). - latexgen.cpp, adding new latex command for doxygen (doxygenemoji) and prevent too many open file (code before documentclass) - config.xml, definition of `LATEX_EMOJI_DIRECTORY` with path to images required for LaTeX output - Documentation: - emojisup.doc, user description - commands.doc, description of new command `\:` - index.doc, reference to emoji chapter - xmlcmds.doc, adjust reference to next chapter as a new chapter is added - Doxyfile*, adding emoji chapter Build system - CMakeLists.txt adding new files
* | | Documentation internet addressesalbert-github2018-10-271-11/+11
|/ / | | | | | | Running a link checker revealed a number of not existing / redirected addresses, these have been corrected.
* | Usage of '{', '}' and ',' in ALIASalbert-github2018-09-141-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | Based on the stack overflow question: https://stackoverflow.com/questions/52314045/how-to-use-addtogroup-with-an-aliases-command/52314821#52314821 ALIASES += opengroup{1}="^^* \addtogroup \1_GROUP ^^ * \{ ^^" ALIASES += close="\}" /** \opengroup{LEVEL_1} */ // ...code statements... /** \close */ // opengroup Does not create a group due to the change of `\{` to just `}`, this behavior has been documented now.
* | Update mail addressDimitri van Heesch2018-09-011-1/+1
| |
* | Merge pull request #6397 from albert-github/feature/bug_docu_extension_mappingDimitri van Heesch2018-07-301-3/+3
|\ \ | | | | | | Documentation EXTENSION_MAPPING
| * | Documentation EXTENSION_MAPPINGalbert-github2018-07-151-3/+3
| | | | | | | | | | | | Small addition of some missing "languages" in respect to EXTENSION_MAPPING.
* | | Merge branch 'feature/bug_latex_index' of ↵Dimitri van Heesch2018-07-231-0/+14
|\ \ \ | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_latex_index
| * | | Making the 'tex' part of \makeindex available to the useralbert-github2018-05-081-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case we need to use another 'makeindex' command in the Makefile / make.bat we can use the configuration tag MAKEINDEX_CMD_NAME When we want to have another index we can use e.g. EXTRA_PACKAGES = [nottoc]tocbibind but in those cases the \makeindex command is still the same but should be \makeindex[intoc]. By means of the new configuration tag LATEX_MAKEINDEX_CMD this discrepancy has been solved. Due to the default value some small changes in the configuration parser were necessary as well. (based on the stack question https://stackoverflow.com/questions/44394311/add-index-to-toc-with-doxygen).
* | | | Merge pull request #716 from albert-github/feature/bug_docu_file_version_filterDimitri van Heesch2018-07-181-1/+3
|\ \ \ \ | |_|/ / |/| | | Correction in example of FILE_VERSION_FILTER
| * | | Correction in example of FILE_VERSION_FILTERalbert-github2018-05-091-1/+3
| |/ / | | | | | | | | | Corrected name in example and corrected layout in documentation.
* | | Merge pull request #719 from albert-github/feature/bug_678684Dimitri van Heesch2018-07-071-0/+2
|\ \ \ | | | | | | | | Bug 678684 - Not warning of undocumented function parameters
| * | | Bug 678684 - Not warning of undocumented function parametersalbert-github2018-05-111-0/+2
| |/ / | | | | | | | | | Noted in documentation that parameter has no effect in case of EXRTACT_ALL
* | | Documentation correction CLANG option usagealbert-github2018-06-301-2/+2
| | | | | | | | | | | | Corrected reference to use of CLANG option in Doxyfile.
* | | Merge branch 'master' into feature/bug_latex_languagesDimitri van Heesch2018-05-011-5/+5
|\ \ \ | |/ /
| * | Small documentation correctionsalbert-github2018-03-061-5/+5
| |/
* | Improvement LaTeX output (Regression)albert-github2018-04-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | 1) Build error: Unexpected token 'semic' on the line 50 in '/home/travis/build/doxygen/doxygen/build/src/translator.h'. status = 2 in collectPureVirtualPrototypes() Due to a discrepancy what translator.py expects and is in the actual code. In the actual code a (not required) ; was present after the closing } of the routine. 2) Unknown command \cpdflatex
* | Improvement LaTeX outputalbert-github2018-04-091-4/+5
|/ | | | For a number of languages the output in LaTeX has been improved so the regular documentation can be generated (automatically) in LaTeX / PDF as well.
* Small clarification for REFERENCED_BY_RELATIONalbert-github2018-02-031-1/+1
| | | | Based on stack overflow question "Track C variable doxygen" (https://stackoverflow.com/questions/48586670/track-c-variable-doxygen)
* Merge branch 'master' of https://github.com/ahoogol/doxygen into ahoogol-masterDimitri van Heesch2017-12-281-0/+13
|\
| * Added support for RTL(right to left) languages like Arabic and Persian in ↵ahoogol2017-06-251-0/+13
| | | | | | | | HTML output
* | Merge pull request #602 from albert-github/feature/bug_newline_aliasDimitri van Heesch2017-12-241-1/+4
|\ \ | | | | | | Physical newlines in ALIASES configuration tags.
| * | Physical newlines in ALIASES configuration tags.albert-github2017-09-091-1/+4
| | | | | | | | | | | | | | | | | | Some commands read input till the end of the physical line. In case these commands are used in an alias the rest of the line is lost / gives not the required results. This patch creates the possibility to have physical newlines in ALIASES. See also: https://stackoverflow.com/questions/46050789/doxygen-alias-with-multiple-commands
* | | Misc. typosluzpaz2017-12-231-1/+1
| | | | | | | | | | | | | | | Super trivial typos Some are in qtools/ which I know is a 3rd party dependency but as we know is now obsolete upstream. I reckon it wouldn't be much of an issue to merge neverthless Tacked on several more commits
* | | Update mathjax pathSam Tygier2017-10-251-1/+1
|/ / | | | | | | | | | | | | Set the default MATHJAX_RELPATH to the current recommended value: https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/ (See https://www.mathjax.org/cdn-shutting-down/ )
* | Merge branch 'master' of https://github.com/dvj/doxygen into dvj-masterDimitri van Heesch2017-07-081-0/+14
|\ \ | |/ |/|
| * fix spellingDoug Johnston2017-05-311-1/+1
| |
| * make use of clang compilation databaseDoug Johnston2017-04-061-0/+14
| | | | | | | | See: https://clang.llvm.org/docs/JSONCompilationDatabase.html
* | Correction of non reachable links and redirected links in documentation.albert-github2017-06-041-19/+19
| | | | | | | | | | The W3C link checker reported a number of problems regarding non reachable links and permanent redirects. Most of these problems have been fixed with this patch
* | fix typoDenis Rouzaud2017-04-281-1/+1
|/
* typosKunda2017-03-051-1/+1
| | | | | | some doxy typos and some misc. source typos typos some doxy typos and some misc. source typos
* Bug 776964 - Menu does not work without JavascriptDimitri van Heesch2017-01-101-0/+12
|
* Option for PlantUML configuration fileDennis Allerkamp2016-09-031-0/+8
|
* Also map .f95, .f03 and .f08 file types to FortranMelven Roehrig-Zoellner2016-08-011-0/+3
| | | | These are for Fortran 95, Fortran 2003 and Fortran 2008, respectively.
* Bug 766069 - Files with incorrect extensions (.doc) are picked up by doxygenDimitri van Heesch2016-05-161-2/+0
|
* Added an option to add "anonymous" headings to the table of contents ↵Christoph Lipka2016-04-301-0/+10
| | | | (currently Markdown only).
* Bug 578720 - [Python] Add pyw as a valid extensionalbert-github2015-12-261-0/+1
| | | | Added pyw as extension, based also on: https://docs.python.org/2/tutorial/appendix.html (15.1.2. Executable Python Scripts)
* Merge pull request #412 from bagage/masterDimitri van Heesch2015-12-171-0/+8
|\ | | | | Add WARN_AS_ERROR option to stop execution at first warning (equivalent of compilers' -Werror option)
| * Add WARN_AS_ERROR option to stop execution at first warning (equivalent of ↵Gautier Pelloux-Prayer2015-12-161-0/+8
| | | | | | | | compilers' -Werror option)
* | Adjusted used option for CLANG usage with CMake in documentationalbert-github2015-12-091-1/+1
|/
* Merge pull request #404 from albert-github/feature/bug_css_filterDimitri van Heesch2015-10-311-0/+7
|\ | | | | [Doxygen-users] plugin / filter not behaving as expected
| * [Doxygen-users] plugin / filter not behaving as expectedalbert-github2015-10-141-0/+7
| | | | | | | | Added note about unsupported extensions
* | Bug 744938 - PATCH: add option to build latex without timestampsDimitri van Heesch2015-10-311-0/+10
|/