| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
|\ |
|
| |
| |
| |
| | |
very popular)
|
|\ \
| | |
| | | |
Add message format-checking
|
| | | |
|
|/ /
| |
| | |
Incorrect links were generated for the cite and xref commands, the link text was not translated to a RTF link label.
|
|/
|
|
|
| |
- add doxygen version to rtf, comment, output
- remove duplicate code (getFullVersion)
- more clear name to get doxygen version (getVersion becomes getrDoxygenVersion). Also to overcomecofusion with the version information for files.
|
| |
|
| |
|
| |
|
|\
| |
| | |
issue #7583 External Links in Inheritance Diagrams open in the Image Frame.
|
| |
| |
| |
| | |
When having a function it opens in the current frame and uses the complete frame. Images (e.g. inherited diagrams) are displayed in a small "sub frame" and when displaying the link here it is not readable and furthermore the user doesn't know anything about the "sub frame". In case of an image the link should be displayed in the parent frame of the image.
|
|\ \ |
|
| |/ |
|
|/
|
|
| |
Although there is not a lot of doxygen internal documentation, it still should not produce warnings.
|
| |
|
|
|
|
| |
Supporting f18 extension
|
| |
|
|
|
|
| |
The writing of the "pipe" symbol was done at the wrong moment.
|
|
|
|
|
| |
Avoid code duplication by adding function addHtmlExtensionIfMissing() and
avoid member shadowing by using 'm_' prefix for member variables
|
|\
| |
| |
| | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_335614
|
| |
| |
| |
| |
| | |
- See to it that when an extension is already present this extension is used and not a second extension is added
- let the tag file know what the original extension was.
|
|\ \ |
|
| | | |
|
| |\ \
| | | |
| | | |
| | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_terminate
|
| | | |
| | | |
| | | |
| | | |
| | | | |
In case a `WARN_LOGFILE` is used it in this file no clear whether doxygen finished correctly or exited beforehand in case a fatal error.
Now a 'Exiting...' is also given in the warning log file in case an error is a fatal error.
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
Fix incorrect reference resolving of enum class values
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
When they share enum value names inside the same namespace.
This is a proposed fix for issue #7427: "Incorrect resolving of
references to enum class values with shared names inside the same
namespace"
|
| | | | | |
|
| |\ \ \ \
| | |/ / /
| |/| | |
| | | | | |
virusxp-memory_leakage_fix
|
| | |/ /
| | | |
| | | |
| | | |
| | | |
| | | | |
namespace
Fixing some memory issues caused by not correctly freed pointers
|
| |/ /
| | |
| | |
| | |
| | | |
When having a file with a Big Endian BOM this is not always handled in a correct way when using the generic UCS-2 approach, using the explicit version works well.
(problems see with a gcc (SUSE Linux) 7.4.1 20190905 [gcc-7-branch revision 275407] and glibc-2.26-lp151.18.7.x86_64).
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Spelling corrections for src directory
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Spelling corrections as found by codespell and in #561.
Some reported problems were already fixed, others are fixed here, with some exceptions (a,o.):
- "referenceby" in defgen.cpp as this is in the output and I cannot oversee the consequences (looks like none, but ...)
- "HANGEUL_CHARSET" left as is as in some MS documentation is written: 'HANGUL_CHARSET: Also spelled "Hangeul". Specifies the Hangul Korean character set.' (https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/0d0b32ac-a836-4bd2-a112-b6000a1b4fc9).
|
|/ / |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Let $year support SOURCE_DATE_EPOCH
|
| | | |
|
|/ / |
|
|/
|
|
|
|
|
|
|
|
|
| |
In case we use the doxygen inheritance diagrams in doxygen (i.e. `HAVE_DOT=NO`) for a construct like (based on #7302):
```
template <char C>
struct one { };
/// The struct str_040
struct str_040 : one<'('> { };
```
this will lead to a postscript error (epstopdf) as the `(` (and analogous the `)`) have to be escaped.
|
|
|
|
| |
In pre part always use `\string~` for `~` otherwise it will be translated to a space.
|
|\
| |
| | |
Warning with xrefitem from documentation
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The example code with the `xrefitem` in the documentation gives a warning:
```
my_errors:1: warning: multiple use of page label 'my_errors', (other occurrence: .../aa.h, line: 4)
```
it is possible (and explicitly stated) to have an `\page` with the same name giving some extra information.
The warning regarding the multiple page is removed in case of a xrefitem page.
|
|/
|
|
|
|
| |
Take the part after the last '.', method 'extension` gives the extension after the first '.' of a filename.
This is a regression on pull request #7121 (issue #7120)
|