| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |\
| | |
| | | |
Bug 646002 - htmlonly content appears in generated XML output
|
| | |
| | |
| | |
| | |
| | | |
All the @*only comments appear in the xml document. In the other document formats only documentation of the relevant @*only (in HTML only @htmlonly) appears.
This patch corrects this so only the @xmlonly documentation appears.
|
|/ / |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_extension
Conflicts:
src/util.cpp
|
| |/
| |
| |
| | |
In the forum a discrepancy was noted between config.l and config.xml (http://doxygen.10944.n7.nabble.com/FILE-PATTERNS-one-custom-plus-all-defaults-td7308.html). The config.xml list was based on the function initDefaultExtensionMapping in util.cpp and the list in the function Config::check in config.l. Now both routines use the same list.
|
| | |
|
|\ \ |
|
| |\ \
| | | |
| | | | |
Correcting print format error in config.l
|
| | |/
| | |
| | |
| | | |
This patch corrects a format error in config.l, and a spelling error in comment.
|
| |\ \
| | | |
| | | | |
Stop when doxygen configuration file ("Doxyfile") cannot be read
|
| | | |
| | | |
| | | |
| | | |
| | | | |
When the configuration file cannot be read a default configuration is used ad as the error message "error: cannot open file `Doxyfile' for reading" is show at the top of the output this is easily overseen.
By stopping the doxygen process it is made clearer that there is an error.
|
| | | |
| | | |
| | | |
| | | | |
Extended / corrected some error messages
|
| |\ \ \
| | | | |
| | | | | |
Add support for "value" attribute in FORTRAN scanner
|
| | | | |
| | | | |
| | | | |
| | | | | |
The "value" attribute was already supported in the FORTRAN code browser, but not yet in the scanner.
|
| |\ \ \ \
| | | | | |
| | | | | | |
Better handling of implicit statement in source code browser
|
| | |/ / /
| | | | |
| | | | |
| | | | | |
When using e.g. IMPLICIT INTEGER only the IMPLICIT was seen as keyword and INTEGER was not seen as keyword. Now types are seen as keywords as well.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| |/ / /
|/| | | |
Bug 753909 - Copy and paste of code fragment from CHM merges all pasted text into single line
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
into single line
Complete code fragment was pasted in one line (chm, HTML OK), with the change in the ccs file this problem is overcome. Result was that between multiple code lines on the 2nd and following line a extra space appeared at the beginning of the line, this is overcome by placing all relevant div statements on one line.
(based a.o. on http://stackoverflow.com/questions/19099873/how-can-i-use-css-to-insert-a-line-break-after-but-not-before-an-element)
|
| | |
| | |
| | |
| | | |
'group__*.html' module html files
|
| | | |
|
|/ / |
|
|/ |
|
|\
| |
| | |
Tooltip can still contain < and > signs
|
| |
| |
| |
| | |
< and > signs , when still present are converted so e.g. xhtml does not have a problem with it.
|
|\ \
| | |
| | | |
Bug 648865 - PYTHON: stops processing the file after encountering \""""
|
| |/
| |
| |
| | |
Proper handling of escaped character inside a triple quoted string (""" and ''')
|
|\ \
| | |
| | | |
Bug 333106 - $line param
|
| |/
| |
| |
| | |
Due to the order of the substitutions the $line was also substituted in the text part. Now the text part is added at the end and the substitution does not take place.
|
|\ \
| | |
| | | |
docparser: warn when finding a documented empty return type
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
There is an example on pg24 of [1] where a libclang based comment parser
emits a warning for a documented empty return type.
[1] "Parsing Documentation Comments in Clang" http://llvm.org/devmtg/2012-11/Gribenko_CommentParsing.pdf
|
|\ \ \
| | |/
| |/| |
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Copy user EXTRA_FILES at the end to overrule files generated by default by doxygen
|
| |/
| |
| |
| |
| |
| |
| | |
doxygen
In case the user wants to overrule by means of a HTML_EXTRA_FILIES or LATEX_EXTRA_FILES a default file from doxygen (e.g. a logo or arrowdown) this is not directly possible as the files are again overwritten by doxygen.
Placing the copy commands at the end and in this list the generateTreeViewImages before the the user files a user can overrule default doxygen files
|
|\ \
| | |
| | | |
Bug 752657 - XML not documenting a class in python
|
| | |
| | |
| | |
| | | |
Problem looks like to be the improper handling of strings in this case a single quote was not seen as the start of a string and thus the double quote was mistreated.
|
|\ \ \
| | | |
| | | | |
Bug 752658 - XML empty <argsstring/> in python
|
| | | |
| | | |
| | | |
| | | | |
Problem comes from the fact that the last argument has a default value and in this case the routine argListToString is mot called as it is done in case of ')' after an argument without default value (see section "FunctionParams").
|
|\ \ \ \
| | | | |
| | | | | |
Bug 661814 - writeMemberNavIndex template calls static fixSpaces
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Problem had already been, partly, solved seen the comment in index.cpp.
Removed double code (from htmlgen.cpp) and added prototype.
|