| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |
| |
| |
| | |
Only have index section when SHOW_FILES is set (analogous to index for namespaces)i
|
|/ |
|
|
|
|
| |
for the same .dot file
|
| |
|
| |
|
|
|
|
|
|
|
| |
Regression of #6663
When looking at the example of #4935 the sorting and layout is correct in 1.8.14 but the layout is incorrect in 1.8.15.
The incorrect layout is due to #6663 where a special case was solved for XHTML, the correct procedure should have been that in case of a table row without cells a dummy cell is added.
The changes from #6663 have been reverted and the fix has been corrected (the special case occurred in the doxygen diagrams example).
|
|\
| |
| | |
Double id for tooltips in XHTML possible.
|
| |
| |
| |
| | |
The tooltips (XHTML) should not be displayed per code fragment but for the entire (output) file as otherwise tooltips might be added multiple times resulting in double IDs.
|
| | |
|
|/ |
|
|
|
|
| |
Only write the namespace index file reference (i.e. namespaces.tex , namespaces.rtf) to the overall file (i.e. refman.tex. refman.rtf) in case SHOW_NAMESPACES is set and there are namespaces.
|
|
|
|
| |
XHTML doesn't ids with a ~ in it, converted to an id character. This happens with e.g. the list of destructors.
|
|
|
|
|
|
|
| |
When running xhtml checker on the doxygen diagram example we get:
Element tr content does not follow the DTD, expecting (th | td)+, got
Document diagrams/xhtml/classes.xhtml does not validate
This is due to an empty `<tr></tr>`, adding the appropriate column definitions solves the problem.
|
|
|
|
|
| |
Line was removed but #6415 but apparently reintroduced by a later issue.
The problem shows with a number of the standard doxygen tests when enabling either e.g `--rtf` or `--latex`
|
| |
|
| |
|
|
|
|
| |
Added a Slice-optimized output mode.
|
|
|
|
|
| |
- corrected some initializations
- corrected some missing, new, cases (reported by travis CI)
|
|
|
|
|
|
|
|
| |
Till now docbook had its own output generator, but lot of possibilities were missing (see remark about updating below), with this patch the (more than) basic implementation has been made.
Added some docbook tests to the current tests and updated documentation where necessary
Tried updating current version but too many issues remained that were generically handled in the standard generator, code is in current version behind '#if 0' construct in doxygen.cpp and name with '_v1' and in docbookgen.cp'
|
|
|
|
| |
In cased of no items the start and end tag are written which gives problems in case of LaTeX (implementation now analogous to writeNamespaceIndex).
|
| |
|
|\
| |
| |
| | |
https://github.com/albert-github/doxygen into feature/bug_tableofcontents_latex
|
| |\ |
|
| | |\
| | | |
| | | |
| | | |
| | | | |
# Conflicts:
# src/translator.h
|
| | | | |
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | | |
table of contents
- add the in page table of contents for XML
- add the possibility to have maximum levels in the in page table of contents (possible per output type and per in page table of contents. Default is show all)
|
| |/
|/|
| |
| |
| |
| |
| |
| | |
currently the \tableofcontents command is only supported for HTML.
In this patch:
- enable in page table of contents for LaTeX: \tableofcontents['{'[option][,option]*'}']
where option can be 'HTML, and 'LaTeX'
(side effect: possibility to have options with, nearly, all commands.)
|
|/
|
|
|
|
| |
writing
Labels are used internally in pages but also for filenames and not all file systems can cope with all characters, so only ASCII printable characters are left untouched.
|
|\ |
|
| |
| |
| |
| | |
HTML output
|
|\ \ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When layout file has "namespacelist" resp. "filelist" set to visible=no,
the files "namespaces.html" resp. "files.html" are still generated,
but not reachable. So same fix as done for "classlist" should be used,
cmp. 700a9ac3c177fdef25b9b00ed6bb5e0ea963d236
Also gives consistent result & at least in QCH files fix the error
message shown when clicking on "Namespaces" or "Files" section titles.
|
| |/ |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Marking the resulting JS in this way ensures that visitors to the
resulting HTML documentation do not have to choose between running
non-free JS and experiencing the HTML documentation as it was
intended.
The JS was already freely licensed, so this change just
ensures that the appropriate labelling occurs so that GNU LibreJS [0]
parses the JS correctly as freely licensed.
[0] https://www.gnu.org/software/librejs/
Signed-off-by: zachwick <zach@zachwick.com>
|
| |
|
| |
|
|
|
|
| |
fatal javascript error
|
|
|
|
| |
doesn't work
|
| |
|
| |
|
|
|
|
| |
improve performance
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
bug: when layout file disables Class List but Classes are still visible
the related TOC entry of Compiled HTML Help file does not link to any
page, so the annotated.html file is not reachable from the TOC tree even
though it still gets generated
|
| |
|
|\
| |
| | |
Support generating index-color PNG files
|
| |
| |
| |
| |
| |
| |
| | |
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.
|