| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
The items for caption, and size were not added to the xml schema for `\msc` \mscfile` `\dot` \dotfile` `\diafile`
|
|\
| |
| | |
doxysearch: added wildcard, partial and phrase sesarch
|
| | |
|
|\ \
| | |
| | | |
regression #6885 mscgen links placed in the wrong place when using SVG output
|
| |/
| |
| |
| | |
The output files were not placed in the output directories but in the "root" directory (the `.msc` files were correctly placed in the output directories).
|
|\ \
| | |
| | | |
Update documentation for msc
|
| |/
| |
| |
| | |
Due to the built in mscgen code the documentation needed some updates.
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
Added bison 3 requirement for OSX build on Travis CI
|
|\ |
|
| |\
| | |
| | | |
issue #7033 Syntax highlighting doesn't work when calling \dontinclude from Markdown files
|
| | |
| | |
| | |
| | |
| | |
| | | |
Markdown files
Don't use the file name extension of the including file but of the included file. In case of no included filename or no extension, fall back of the file extension of the including file.
|
|/ / |
|
|\ \ |
|
| |\ \
|/ / /
| | |
| | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_case_sense
|
| | |
| | |
| | |
| | | |
In case special characters in a filename need escaping into something like: `_0` the `0` should not be followed by an uppercase character as this would be in contradiction wit the setting `CASE_SENSE_NAMES=NO`.
|
|\ \ \
| | | |
| | | | |
Incorrect (X)HTML code when generating source code.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When having the example:
```
/*! \file
* \brief
* Prerequisite header file
*/
//! \cond
#ifdef HAVE_CONFIG_H
#include "gmxpre-config.h"
#endif
//! \endcond
```
and we run xmllint on it:
```
xmllint --path .../testing/dtd --noout --nonet --postvalid html/*.html
```
we get the messages:
```
html/aa_8h_source.html:75: parser error : Opening and ending tag mismatch: div line 67 and body
</body>
^
html/aa_8h_source.html:76: parser error : Opening and ending tag mismatch: body line 17 and html
</html>
^
html/aa_8h_source.html:77: parser error : Premature end of data in tag html line 2
^
```
It looks like the problematic part in this case is the doxygen type comment at the end of the file.
In the past similar situations were present in LaTeX (related to maximum line length correction), but it was only fixed for LaTeX.
Besides the change for HTML also small changes were necessary for RTF and docbook.
|
|\ \ \
| | | |
| | | | |
(X)HTML warning when `[` or `]` in constructed ids
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When we have a construct like:
```
template <typename Element, size_t N>
class StlContainerView<Element[N]> {
public:
typedef internal::NativeArray<RawElement> type;
};
```
this will lead to files with `[` and `]` in it, as such not nice, but it is used in ids inside the code as well like:
```
id="aclass_stl_container_view_3_01_element[_n]_4_html_a1bf60158ff15896f2b53af11c09524fb"
```
running
```
xmllint --path ..../testing/dtd --noout --nonet --postvalid html_org/*html
```
this leads to the message:
```
Syntax of value for attribute id of div is not valid
Document html_org/test_8h_source.html does not validate
```
escaping the `[` and `]` as done with other special characters solves this problem
|
|\ \ \
| | | |
| | | | |
update jQuery version mentioned in README to 3.4.1
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Bug 796582 - Doxygen has stopped working
|
| |/ /
| | |
| | |
| | |
| | | |
In (the rare) case the path is not set don't try to use the pointer.
regression on pull request #513
|
|/ / |
|
|\ \
| | |
| | | |
Missing brief descriptions with `\defgroup`
|
| | |
| | |
| | |
| | | |
Test 19 was incorrect, didn't show group description either (see make tests TEST_FLAGS="--keep --xhtml --id=19"
|
| | |
| | |
| | |
| | |
| | | |
Due to the fact that issue #6945 ended a brief description, all following was put into the detailed description (unless explicit \brief was used). The `\defgroup` should end the current brief description, but first line of the `\defgroup` should be seen as a new brief description.
Problem can be seen with in the doxygen documentation in the example in the Grouping part and also with #7053 a small example is given in the comment.
|
|\ \ \ |
|
| |\ \ \
| | | | |
| | | | | |
Cygwin should by default also have `CASE_SENSE_NAMES=NO`
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Cygwin should by default also have `CASE_SENS_NAMES=NO` like is the case for the underlying Windows.
In case of Cygwin the define `_WIN32` is not set so we also have to test for `__CYGWIN__`
|
| |\ \ \ \
| | | | | |
| | | | | | |
issue #6860 - Incorrect parsing of optional class fields in Slices
|
| | | |/ /
| | |/| | |
|
| |\ \ \ \
| | | | | |
| | | | | | |
Remove compilation warnings from doxmlparser
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Remove some warnings about incomplete types like:
```
D:\Programs\Doxygen\fork\doxygen\qtools\qlist.h(109) : warning C4150: deletion of pointer to incomplete type 'ParamHandler'; no destructor called
d:\programs\doxygen\fork\doxygen\addon\doxmlparser\src\memberhandler.h(31) : see declaration of 'ParamHandler'
D:\Programs\Doxygen\fork\doxygen\qtools\qlist.h(109) : while compiling class template member function 'void QList<ParamHandler>::deleteValue(type *) const'
with
[
type=ParamHandler
]
d:\programs\doxygen\fork\doxygen\addon\doxmlparser\src\memberhandler.h(189) : see reference to class template instantiation 'QList<ParamHandler>' being compiled
```
from doxmlparser
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
|
| |\ \ \ \ \
|/ / / / / /
| | | | | |
| | | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/issue_7050
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
spaces in 1.8.15
Handling of `\_linebr` with defgroup and also with the `\page` command.
Adding a missing linecount.
|
| |/ / /
|/| | | |
|
| | | | |
|
|\ \ \ \
| | |/ /
| |/| | |
|
| |\ \ \
| | | | |
| | | | | |
Bug 489766 - Wrong MSC syntax rejected *silently*
|
| | | | |
| | | | |
| | | | |
| | | | | |
Different types of inFile in different routines.
|