| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
Message:
`< Element map content does not follow the DTD, expecting ((p | h1 | h2 | h3 | h4 | h5 | h6 | div | ul | ol | dl | menu | dir | pre | hr | blockquote | address | center | noframes | isindex | fieldset
| table | form | noscript | ins | del | script)+ | area+), got (area area div)`
The problem first surfaced with test 11 (empty map tag), but the solution given at that moment (`<div/>)`) did work for test 11, but was not correct for test 27.
Problem can be seen with the default doxygen test 27 (`[027_extends.c]: test the \extends, \implements, \memberof, \private, and \public commands`).
|
|
|
|
| |
Added a Slice-optimized output mode.
|
| |
|
|
|
|
|
|
|
|
| |
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'
|
| |
|
|\
| |
| |
| | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_395343
|
| |
| |
| |
| |
| |
| | |
on right
Caller graph will now have the called function on the right hand side.
|
|/
|
|
| |
In case no brief description present, no tooltip is shown.
|
|
|
|
| |
Some graphs were still missing a tooltip in the root node (most notably the caller graphs), so were still displaying something like Node0.
|
|
|
|
|
| |
The basic problem mentioned in this issue was already solved in Mai 2009 (version 1.5.8 or earlier), in case a brief description is present this is displayed otherwise the node number is specified)
A remaining thing was that the tooltip with the root nodes (gray nodes) was always something like Node0 irrespective of the brief description. This has been solved here.
|
|
|
|
|
|
| |
When generating CAL or CALLER graphs thy can become quite large (and unreadable) and it won't be possible to process them into a PDF due to a limitation of TeX.
When it is determined that the resulting image is to large a scale down is done to around 150" (still unreadable) but it can be processed, this scaling done is done by means of the `dot` program.
(Note: the scaling to 550 points for the output occurs on the original image in the TeX processing and Tex cannot read the image).
|
|\ |
|
| | |
|
| |
| |
| |
| | |
HTML output
|
| |
| |
| |
| |
| |
| | |
.SVG files
prevent to write multiple target attributes in one tag.
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Upon 'inherits' diagram creation, the first element
(alphabetically last parent name) would use a default
node number 0, equal to the child element, and would
result in a class looping on itself as parent
* A simple test to confirm the issue can be done with the
following lines in a test.h inside an empty project:
// Test first class node loop
class aChildClass : public zParentClass { };
class bChildClass : public yParentClass { };
Change-Id: I7901e5e13d9564747d112e0b8c758d239d43a380
Signed-off-by: Adrian DC <radian.dc@gmail.com>
|
| |
|
| |
|
|
|
|
| |
improve performance
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
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.
|
|/ |
|
| |
|
| |
|
|\
| |
| | |
Remove unused local and static global variables
|
| |
| |
| |
| | |
Remove unused local and static global variables. Variables have been identified by Understand (version 758) from Scitools.
|
|/
|
|
|
| |
Also made dangerous string access more visible by introducing rawData().
This replaces data() which will now return a constant string.
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Update dot.cpp: comma added for dot syntax
|
| |
| |
| | |
comma added for dot syntax
|
|/
|
|
|
|
| |
1. New Feature: Adapted Class Graph generation for DOCBOOK
2. Fixed DOCBOOK Code documentation formatting
3. Fixed Doxygen to handle FULL_PATH_NAMES for DOCBOOK generation
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
- operations on current index and node (next(), prev(), last(), first()) have been removed.
- access to internal nodes has been removed.
- old QList has been renamed to QInternalList for use inside qtools only.
- added type safe compare, new, and delete operations (compareValues(), newValue(), deleteValue()).
- add compareValues also to QDict for consistency.
- changed doxygen's implementation to comply with the new QList and QDict interface.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|