summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Combined both rules in one to reduce code duplicationDimitri van Heesch2020-04-091-6/+1
|
* Merge branch 'feature/bug_cite_comma' of ↵Dimitri van Heesch2020-04-091-0/+5
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_cite_comma
| * Link in case of comma at end of URLalbert-github2020-04-081-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having a text like: ``` https://storm-irit.github.io/OpenGR/, 2017. ``` the corresponding link will contain the comma as well although this is not intended. The original problem comes from CGAL, where we have a bibliography entry: ``` @misc{ cgal:m-ogr-17, author = {Nicolas Mellado and others}, title = {OpenGR: A C++ library for 3D Global Registration}, howpublished = {https://storm-irit.github.io/OpenGR/}, year = {2017} } ```
* | Changed fix as proposedDimitri van Heesch2020-04-093-49/+36
| |
* | Merge branch 'feature/issue_7692' of ↵Dimitri van Heesch2020-04-091-4/+15
|\ \ | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_7692
| * | issue #7692 \copydoc does not work with file paths including dotsalbert-github2020-04-081-4/+15
| |/ | | | | | | | | Besides links to functions / classes etc. it is also possible to have a link to a file and a file can contain a dot, so we first have to check the "original" name and when not OK we should also check the replacements. Regression on #7042
* | Fixed shadowing issue in getFortranDefs and other shadowing casesDimitri van Heesch2020-04-0912-209/+195
| |
* | Modernize OutputList internalsDimitri van Heesch2020-04-082-141/+99
| |
* | Replaced MemberNameSDict by MemberNameLinkedMap based on LinkedMapDimitri van Heesch2020-04-0813-1405/+1204
|/
* Fixing issues with wrong use of std::sortDimitri van Heesch2020-04-061-5/+6
|
* Added missing #includesDimitri van Heesch2020-04-062-0/+5
|
* Fix for Portable::isAbsolutePathDimitri van Heesch2020-04-061-1/+1
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-04-061-0/+14
|\
| * Relative markdown file reference (#7032)albert-github2020-04-061-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case we have a relative reference to a local markdown file this file is not found when the relative path starts e.g. with `..` So when we have a file: ``` docs\tutorial\security.md ``` and this references the file: ``` ../api/browser-window.md ``` through the markdown syntax: ``` [`BrowserWindow`](../api/browser-window.md) ``` then the link was not found and a warning was given.
* | Merge branch 'filenamedict'Dimitri van Heesch2020-04-0632-1359/+1022
|\ \ | |/ |/|
| * Replaced FileNameDict/FileNameList by FileNameLinkedMapDimitri van Heesch2020-04-0632-1359/+1022
| |
* | Fixed section type setting for index page from tags file. (#7684)avostrik2020-04-031-1/+2
| | | | | | | | | | Resolves warning introduced by https://github.com/doxygen/doxygen/pull/7679 Signed-off-by: Andrey Vostrikov <andrey.vostrikov@cogentembedded.com>
* | Fix html file ext in external docs (#7679)avostrik2020-04-016-5/+6
|/ | | | | | | | | | | | * Add HTML extension to url conditionally in tree view item. This change fixes issue with double extension in treeview file list items generated from external tag file. Items that were read from tag file already have extension. * Add missing HTML file extension in writeTagFile() calls * Unify addition of HTML file extension in writeTagFile calls. Signed-off-by: Andrey Vostrikov <andrey.vostrikov@cogentembedded.com>
* issue #7660: In the ceph package error: non-const getNamespaceDef() called ↵Dimitri van Heesch2020-03-301-1/+3
| | | | on aliased member.
* Fixed issue creating std::string from null pointerDimitri van Heesch2020-03-304-19/+19
|
* Fix for compile issue on Travis-CIDimitri van Heesch2020-03-291-1/+2
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-03-292-20/+4
|\
| * issue #7672 Request: use <img> tags instead of <object> tags for SVG imagesalbert-github2020-03-292-20/+4
| | | | | | | | | | In case of svg and inline images we have to follow a little bit another strategy. In markdown we also have to declare all markdown images to inline images (which is also consistent with the handling on github)
* | Migrated some code in pre.l to use STL containers (part 2)Dimitri van Heesch2020-03-292-338/+262
|/
* Revert addition of std::string conversion operator for QCString (part 2)Dimitri van Heesch2020-03-291-1/+1
|
* Revert addition of std::string conversion operator for QCStringDimitri van Heesch2020-03-293-14/+15
|
* Migrated some code in pre.l to use STL containersDimitri van Heesch2020-03-281-139/+125
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-03-282-3/+4
|\
| * Merge pull request #7632 from albert-github/feature/bug_ftn_preprocDimitri van Heesch2020-03-271-1/+3
| |\ | | | | | | Fortran function definitions at begin of a line
| | * Function definitions at begin of a linealbert-github2020-03-081-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we have an Fortran source that needs preprocessing like: ``` INTEGER FUNCTION & BI() END FUNCTION BI ``` the preprocessor will output: ``` 00001 INTEGER FUNCTION & 00002 00003 END FUNCTION BI ``` we see that the function name (and argumentlist (`BI()`) are gone, resulting in the error: ``` Error in file .../test.F90 line: 4, state: 4(SubprogBody) ``` The original problem came from the `BIND` attribute (as found by Fossies in the HDF5 package), but the example has been reduced to the above example.
| * | Merge pull request #7669 from albert-github/feature/bug_ftn_fixedDimitri van Heesch2020-03-271-2/+1
| |\ \ | | | | | | | | Incorrect determination of fixed form Fortran
| | * | Incorrect determination of fixed form Fortranalbert-github2020-03-251-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we have the following small example, we see that the word `subroutine` doesn't start in column 7 but in column 8. ``` subroutine expan() c2345678 " " lb " " " end ``` so the code is not converted from fixed form to free form Fortran and in the example (due to the odd number of double quoutes) result in: ``` ******************************************************************** Error in file D:/speeltuin/bug_ftn_quote/small.f line: 5, state: 22(String) ******************************************************************** ``` The condition regarding the column number was to restrictive.
* | | | Fix for unused variable JAVASCRIPT_LICENSE_TEXT.Dimitri van Heesch2020-03-283-34/+30
|/ / /
* | | issue #6901: Please consider relicensing of Javascript filesDimitri van Heesch2020-03-271-18/+28
|/ /
* | issue #7624: non-const getClassDef() called on aliased member. Please report ↵Dimitri van Heesch2020-03-231-9/+9
| | | | | | | | as a bug.
* | Merge branch 'remove_tcl'Dimitri van Heesch2020-03-2215-3288/+7
|\ \
| * | Remove support for TCL (code is too buggy and unmaintained, language not ↵Dimitri van Heesch2020-03-1515-3287/+7
| | | | | | | | | | | | very popular)
* | | Fix CROS javascript issue when giving focus to search result frame.Joseph Mirabel2020-03-221-0/+6
| | |
* | | Merge pull request #7657 from cmorty/fixmessagesDimitri van Heesch2020-03-229-636/+642
|\ \ \ | | | | | | | | Add message format-checking
| * | | Fix not correctly formatted messagesMoritz 'Morty' Strübe2020-03-218-627/+624
| | | |
| * | | Add printf-Checks to message.hMoritz 'Morty' Strübe2020-03-211-9/+18
| | | |
* | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-03-225-11/+69
|\ \ \ \
| * | | | Missing anchors in RTF code output (#7647)albert-github2020-03-212-2/+39
| | | | | | | | | | | | | | | | | | | | When having the RTF_SOURCE_CODE and RTF_HYPERLINKS set the links to the code are generated (e.g. in "Definition at line") but the corresponding anchor is missing. The corresponding anchors are created (in a similar way as it is done for LaTeX).
| * | | | Incorrect link generated for cite and xref (#7648)albert-github2020-03-212-9/+26
| | | | | | | | | | | | | | | Incorrect links were generated for the cite and xref commands, the link text was not translated to a RTF link label.
| * | | | issue #7652 folder in file list has file icon (#7654)albert-github2020-03-211-0/+4
| |/ / / | | | | | | | | When a directory has no source files or sub-directories in it (with the exception of markdown file(s)) the directory is seen as a file withe a definition type `TypeDir` but this was not handled properly on output, should have a closed folder icon.
* | | | Minor tweaksDimitri van Heesch2020-03-222-16/+14
| | | |
* | | | Remove last QThread-ReferenceMoritz 'Morty' Strübe2020-03-211-3/+3
| | | |
* | | | Replace SDict with std::mapMoritz 'Morty' Strübe2020-03-215-26/+26
| | | |
* | | | QString -> std::string & QDict -> std::mapMoritz 'Morty' Strübe2020-03-215-33/+34
| | | | | | | | | | | | | | | | Replacing QString required replacing the QDict, too.
* | | | Remove DotConstString and replace by std::stringMoritz 'Morty' Strübe2020-03-212-56/+17
| | | | | | | | | | | | | | | | | | | | Whatever the idea of creating DotConstString was, probably creating copy-free Strings, it is not used anymore as each job gets its own copy anyway.