| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Documentation EXTENSION_MAPPING
|
| |
| |
| |
| | |
Small addition of some missing "languages" in respect to EXTENSION_MAPPING.
|
|\ \
| | |
| | |
| | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_latex_index
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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).
|
|\ \ \
| |_|/
|/| | |
Correction in example of FILE_VERSION_FILTER
|
| |/
| |
| |
| | |
Corrected name in example and corrected layout in documentation.
|
|\ \
| | |
| | | |
Bug 678684 - Not warning of undocumented function parameters
|
| |/
| |
| |
| | |
Noted in documentation that parameter has no effect in case of EXRTACT_ALL
|
| |
| |
| |
| | |
Corrected reference to use of CLANG option in Doxyfile.
|
|\ \
| |/ |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
|/
|
|
| |
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.
|
|
|
|
| |
Based on stack overflow question "Track C variable doxygen" (https://stackoverflow.com/questions/48586670/track-c-variable-doxygen)
|
|\ |
|
| |
| |
| |
| | |
HTML output
|
|\ \
| | |
| | | |
Physical newlines in ALIASES configuration tags.
|
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | |
| | |
| | |
| | |
| | | |
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
|
|/ /
| |
| |
| |
| |
| |
| | |
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/ )
|
|\ \
| |/
|/| |
|
| | |
|
| |
| |
| |
| | |
See: https://clang.llvm.org/docs/JSONCompilationDatabase.html
|
| |
| |
| |
| |
| | |
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
|
|/ |
|
|
|
|
|
|
| |
some doxy typos and some misc. source typos
typos
some doxy typos and some misc. source typos
|
| |
|
| |
|
|
|
|
| |
These are for Fortran 95, Fortran 2003 and Fortran 2008, respectively.
|
| |
|
|
|
|
| |
(currently Markdown only).
|
|
|
|
| |
Added pyw as extension, based also on: https://docs.python.org/2/tutorial/appendix.html (15.1.2. Executable Python Scripts)
|
|\
| |
| | |
Add WARN_AS_ERROR option to stop execution at first warning (equivalent of compilers' -Werror option)
|
| |
| |
| |
| | |
compilers' -Werror option)
|
|/ |
|
|\
| |
| | |
[Doxygen-users] plugin / filter not behaving as expected
|
| |
| |
| |
| | |
Added note about unsupported extensions
|
|/ |
|
| |
|
|
|
|
| |
instead of class level
|
|
|
|
| |
Added note to the documentation of FILE_PATTERNS and added cross reference at INPUT configuration options.
|
|\
| |
| | |
Bug 659590 - EXTRA_PACKAGES can't handle package options
|
| |
| |
| |
| |
| | |
Create the possibility to specify options with the EXTRA_PACKAGES command.
It is possible to specify the package by just its name or in the syntax as required by the LaTeX \usepackage command ([<package-option-list>]{<package-list>}[<version>])
|
| |
| |
| |
| | |
identical between individual runs by default
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
With the new commands \hidecallgraph and \hidecallergraph it is possible to suppress a call or caller graph even though the corresponding option CALL_GRAPH or CALLER_GRAPH is set.
commands.doc
config.xml
diagrams.doc
- updating documentation to support new commands
entry.cpp
- initialize callgraph and callergraph with the value from the config file
commentscan.l
- add handling for the new commands
context.cpp
memberdef.cpp
util.cpp
- getting the option for CALL_GRAPH and CALLER_GRAPH is not necessary anymore as it is incorporated in the initialization of an Entry item
dbusxmlscanner.cpp
- initialization is done in the Entry item
vhdljjparser.cpp
- gBlock was a static variable and therefore initialized before the doxygen main routine started. A Entry element sets now the default for callgraph and callergraph based on the config file and as the config file is not yet known at that moment the value for CALL_GRAPH and CALLER_GRAPH were set to False. By making a pointer of gBlock and doing an appropriate new Entry call this problem is overcome.
|
|/ |
|
|
|
|
|
|
|
| |
Based on the request http://stackoverflow.com/questions/27036474/how-do-make-doxygen-generate-index-color-png-files for index colored png files, this functionality will be included in the newer versions (2.39) of dot.
The functionality -Tpng:cairo:gd will automatically be used by doxygen, though the file extension would be wrong (.png:cairo:gd).
With this patch the :cairo:gd is stripped from the image extension, but not from the -T of the dot command.
In the doxywizard the different possibilities are supplied as well. Note however that the DOT_IMAGE_FORMAT name is not checked when read from the Doxyfile so it is possible to use other renderer / formats as well due to the generic solution with getDot ImageExtension.
|
|
|
|
|
|
|
| |
(http://doxygen.10944.n7.nabble.com/doxygen-1-8-9-1-upgrade-errors-td6990.html)
All lines at the beginning of the file starting with ## are preserved at the beginning of the Doxyfile
Consecutive user comments (with +=) are now joined like the options are.
|
|
|
|
|
| |
Analogous to Latex and HTML output the possibility to have source code shown in RTF output is created.
Based on question: http://doxygen.10944.n7.nabble.com/RTF-lack-of-source-code-tc6936.html
|