| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
In case there are multiple `\xreflist` commands with the same key only the first item has a correct linking possibility, the subsequent items don't have it.
Resulting in warnings in e.g. docbook and LaTeX output
|
|\
| |
| | |
Spelling of the word Javadoc
|
| |
| |
| |
| |
| | |
The current spelling (also for the older versions) is Javadoc.
Changed on all possible documentation visible places (external and internal).
|
|\ \
| | |
| | | |
Correcting tag in printdocvisitor
|
| |/
| |
| |
| | |
Correcting usage of tag
|
|\ \
| |/ |
|
| |\
| | |
| | | |
Markdown list wrong displayed
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In some, rare, cases a markdown list was wrongly displayed (regression due to change of place of markdown handling)
/** @mainpage
*
* * elem1
* * elem2
*
Some text (actually found due to a table)
*/
|
|\ \ \
| |/ /
|/| | |
|
| | | |
|
| |\ \
|/ / /
| | |
| | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_latex_index_sorting
|
| | |
| | |
| | |
| | |
| | |
| | | |
In case of LaTeX the sorting was so that lowercase came after uppercase e.g.: `username` came after `useSsl`, although the index should be case insensitive.
Te problem was that the sort key was filtered in such a way that a.o. uppercase symbols were preceded by `\+` for hyphenation. The key doesn't need this hyphenation (as there is a separate field for the display name).
The `\+` has been filtered out now.
|
|\ \ \ |
|
| | | | |
|
| |\ \ \
|/ / / /
| | | |
| | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_520975
|
| | | |
| | | |
| | | |
| | | | |
Also the name should not be a reserved type of word.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Added "signed" and "unsigned" to the list of "special types" analogous to "const" and "volatile"
Created a function for this that would make it possible to have also constructs like "const const" recognized.
|
|\ \ \ \
| | | | |
| | | | | |
Correcting labels for citations
|
| | | | |
| | | | |
| | | | |
| | | | | |
Corrected change in test.
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
The labels for RTF and XML were incorrect due to the fact that the wrong branch was chosen in the code (the newAnchor was set for the results of the `\cite ` command as well).
Small readability issue with XML (when there are a lot of citations).
|
|\ \ \ \
| | | | |
| | | | | |
issue_6533: PHP: Namespaced typehints in deprecated methods not handled correctly
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
correctly
Besides backslashes in the title (issue #5901) the backslashes in the argument list need to be escaped.
|
|\ \ \ \ \ |
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
Fortran scanner abort message
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The Fortran scanner can give a message when the scanner is aborted, in here there is also the state, but in the form of a number. This patch adds a little bit more descriptive text.
|
| |\ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
RTF layout regarding References and Referenced by
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
The layout was so that lines were stretched to to complete lines from left to right (Justifid). For "normal" text this is fine, but not for lists like this, so set alignment here to: Left aligned
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
|
| |\ \ \ \ \ \
|/ / / / / / /
| | | | | | |
| | | | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/docbook_cleanup
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The docbook generator has been replaced by a new implementation. The old implementation was still present, removed now (disrupts easy updates due to false positive searches in the code).
|
|\ \ \ \ \ \ \ |
|
| | | | | | | | |
|
| |\ \ \ \ \ \ \
|/ / / / / / / /
| | | | | | | |
| | | | | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_warning_msg
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
- In case an unknown command is given this was shown as a warning but not as normal text in the output, for this also a distinction between `\`and `@` commands has to be made
- corrected command name in warning messages when handling arguments
- making handling of some warning messages consistent
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
File list creation performance improvement.
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Reading a few thousands of input CPP/H files in alphabetical order is very slow because of using the inSort construct. The inSort function does a linear loop through the list to find the right alphabetical position, leading to a quadratic algorithm. During the creation of the file list there is no need to keep it sorted - it is not used at all yet. Therefore I propose to just append them and to a final sort at the end of the creation of the file list.
For my use case with several thousands of input files, this reduces creating the file list from about an hour to a few seconds !!
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Bug 734308 - Error message when using memberof in a C macro
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Made a better warning message, a 'define' is a global setting and cannot be made a member of a struct / class.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Possibility to have a \image command inside a <A> tag
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Enable the possibility to have a `\image` command inside a <A> tag
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Bug 751700 - Main page absent in TOC of CHM, if PROJECT_NAME is empty
|
| | |_|_|_|_|/ / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
In case a string is empty the default should be taken and not left blank.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Bug 748927 - Navigation incorrect with escaped symbols
|
| | |_|_|_|_|_|/ / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Due to the fact that constructs like `<my>` in a page title are seen as an XML-tag (with a resulting warning) the `<` should be escaped but this leads to the fact that the escape sign is shown in the bars on top of a HTML page.
The basic problem is due to the fact that page titles are not really interpreted by doxygen (as "nothing" can be, generically, handled in the title of a page.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Documentation internet addresses
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Running a link checker revealed a number of not existing / redirected addresses, these have been corrected.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
Issue_6456 Using # in links causes errors in PDF generation
|
| | |_|_|_|_|/ / / / /
| |/| | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
- The # sign in an URL needs to be escaped as longtabu reads the table body as the argument to a command, so the self-escaping mechanism of \href cannot work (from https://tex.stackexchange.com/questions/447461/having-a-hash-sign-in-href-in-a-longtabu-cell)
- a regression regarding the change from `\tt` to `\texttt` (needed `{ ... }` as `\href` has 2 arguments )
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / / /
|/| | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
albert-github/feature/bug_scanner_obsolete_definitions
Remove obsolete definitions from scanner
|
| | |_|_|_|_|/ / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Remove some not used definitions from scanner.l (give false positives when searching for some features).
|