summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Spelling correctionalbert-github2019-09-031-1/+1
| | | | Spelling correction
* issue #7189: wrong warning on ambiguous image filesDimitri van Heesch2019-09-021-8/+23
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-09-021-0/+1
|\
| * Merge pull request #7242 from albert-github/feature/bug_href_backslashDimitri van Heesch2019-09-021-0/+1
| |\ | | | | | | Backslash in href.
| | * Backslash in href.albert-github2019-09-021-0/+1
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having a backslash in a href like: ``` <a href="C:\boost">`C:\boost`</a> ``` we get in LaTeX the error: ``` (aa_8h.tex ! Undefined control sequence. <argument> C:\boost l.6 \href{C:\boost} {\texttt{ {\ttfamily C\+:\textbackslash{}boost}}} ``` this can be overcome by escaping the backslash. Note this is just an example, for an URI actually forward slashes should be used. It is just about the backslash not generating an error.
* | issue #7243: Some PHP classes are not properly extracted/documentedDimitri van Heesch2019-09-021-7/+6
|/
* Merge pull request #7179 from albert-github/feature/bug_doxygen_docu_chmDimitri van Heesch2019-09-014-14/+82
|\ | | | | Generating doxygen's documentation in CHM format
| * Generating doxygen's documentation in CHM formatalbert-github2019-08-111-0/+1
| | | | | | | | Renaming index.chm to doxygen_manual.chm
| * Generating doxygen's documentation in CHM formatalbert-github2019-08-114-14/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now the chm format of the doxygen documentation was generated by a separate script, this is now integrated in the CMake procedure. - option -Dbuild_doc_chm to enable the possibility to generate the CHM documentation (only works for windows) - procedure is as follows - generate the base documentation for the CHM output - copy the documentation of the examples to the tree with the base CHM output (cannot use it from its default place due to the fact that in the next face the first page of the CHM file will be wrong - add the html, png, css and gif files of the examples to the so called hhp file (has to happen during runtime, hence a small python script, created inline so there is no extra file in the source tree) - create the resulting doxygen_manual.chm Some improvements during the process - the html files of the examples are added so that the full documentation of the examples is accessible and not just the top pages of the examples - keep the index terms of base chm file (mostly the commands and configuration parameters) - see to it that the doxygen logo is copied by doxygen and not by means of cmake
* | Merge pull request #7202 from albert-github/feature/issue_7200Dimitri van Heesch2019-08-311-4/+44
|\ \ | | | | | | issue #7200 Fortran warning: type not declared or defined
| * | issue #7200 Fortran warning: type not declared or definedalbert-github2019-08-151-4/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | problem in the statement: ``` type(log_handle_type), protected, save, & bind(c, name="LOG_HANDLE_one") & :: log_handle_one ``` is the fact that the "bind" attribute is not handled. - added handling of the bind attribute - extending the bind definition also with the single quote version.
* | | Merge pull request #7239 from albert-github/feature/bug_docu_imageDimitri van Heesch2019-08-311-3/+5
|\ \ \ | | | | | | | | Correction documentation `\image` command
| * | | Correction documentation `\image` commandalbert-github2019-08-301-3/+5
| | | | | | | | | | | | | | | | | | | | - Correction supported formats for LaTeX - correction typo
* | | | Merge pull request #7234 from albert-github/feature/bug_copyrightDimitri van Heesch2019-08-312-2/+2
|\ \ \ \ | | | | | | | | | | Correcting visible year in copyright
| * | | | Correcting visible year in copyrightalbert-github2019-08-282-2/+2
| | | | | | | | | | | | | | | | | | | | Correcting another visible year in copyright (see also #7182)
* | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-08-313-1/+5
|\ \ \ \ \
| * \ \ \ \ Merge pull request #7240 from albert-github/feature/bug_ftn_hashDimitri van Heesch2019-08-311-0/+1
| |\ \ \ \ \ | | |_|/ / / | |/| | | | Parsing `#` sign inserted by preprocessor in fixed Form Fortran
| | * | | | Parsing `#` sign inserted by preprocessor in fixed Form Fortranalbert-github2019-08-301-0/+1
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Fortran a file that is included is replaced by the doxygen preprocessor by something like: `# 11 "<path>/<filename>" 2` when this is in fixed form Fortran and the `<path>/<filename>` is long it is possible that the closing double quote is beyond position 72 and thus not seen resulting in: ``` Error in file <path>/<filename> line: 73, state: 22(String) ``` this is caused as the `#` is not handled properly in prepassFixedForm. The `#` should be handled analogous to e.g. `C`.
| * | | | Merge pull request #7220 from albert-github/feature/issue_7218Dimitri van Heesch2019-08-292-1/+4
| |\ \ \ \ | | | | | | | | | | | | issue #7218 Doxygen parsing word documents
| | * | | | issue #7218 Doxygen parsing word documentsalbert-github2019-08-232-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | making list consistent again. See also table in chapter "Getting Started"
* | | | | | Merge branch 'albert-github-feature/issue_7212'Dimitri van Heesch2019-08-311-15/+15
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Made check for void return more strictDimitri van Heesch2019-08-311-14/+14
| | | | | |
| * | | | | Merge branch 'feature/issue_7212' of ↵Dimitri van Heesch2019-08-311-3/+3
| |\ \ \ \ \ |/ / / / / / | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_7212
| * | | | | issue #7212 1.8.16: Function returning void pointer generates warningalbert-github2019-08-201-3/+3
| |/ / / / | | | | | | | | | | | | | | | Have to see that the argument is not a void pointer but just a void
* | | | | issue #7236: C++: bug when using function as parameterDimitri van Heesch2019-08-291-3/+15
| |/ / / |/| | |
* | | | Merge pull request #7224 from mordante/doxygen_comment_fixesDimitri van Heesch2019-08-272-9/+9
|\ \ \ \ | | | | | | | | | | Doxygen comment fixes
| * | | | Fixes a @param's parameter name.Mark de Wever2019-08-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was found while testing with Clang's -Wdocumentation -Wdocumentation-pedantic options. Note from the coding style used it would seem useDict would be the more appropriate name, but usedict is used on multiple occasions in this file.
| * | | | Use the proper trailing comment.Mark de Wever2019-08-241-8/+8
| |/ / / | | | | | | | | | | | | | | | | This was found while testing with Clang's -Wdocumentation -Wdocumentation-pedantic options.
* | | | Update .travis.ymlDimitri van Heesch2019-08-271-10/+10
| | | | | | | | | | | | disabled macosx build as it keeps failing on inconsistent package versions.
* | | | issue #7216: non-const getGroupDef() called on aliased member (cleanup + ↵Dimitri van Heesch2019-08-2614-52/+30
| | | | | | | | | | | | | | | | null pointer fix)
* | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-08-251-0/+1
|\ \ \ \
| * | | | Update .travis.ymlDimitri van Heesch2019-08-251-0/+1
| | | | | | | | | | | | | | | add explicit bzip2 verison requirement
* | | | | issue #7216: non-const getGroupDef() called on aliased memberDimitri van Heesch2019-08-2510-112/+137
|/ / / /
* | | | Update .travis.ymlDimitri van Heesch2019-08-251-1/+1
| | | | | | | | | | | | switch back to version 5.12 of qt due to missing binary
* | | | Update .travis.ymlDimitri van Heesch2019-08-251-4/+4
|/ / / | | | | | | bump conan packages to the latest version
* | | Merge pull request #7183 from albert-github/feature/bug_tables_docuDimitri van Heesch2019-08-181-0/+2
|\ \ \ | | | | | | | | Order of commands in `<table>`
| * | | Order of commands in `<table>`albert-github2019-08-121-0/+2
| | | | | | | | | | | | | | | | Added note about the order of caption versus table rows and the number of table rows.
* | | | Merge pull request #7205 from albert-github/feature/bug_ftn_md_condDimitri van Heesch2019-08-181-1/+3
|\ \ \ \ | |_|/ / |/| | | Strange '*/' in Fortran nad Markdown with conditional sections
| * | | Strange '*/' in Fortran nad Markdown with conditional sectionsalbert-github2019-08-171-1/+3
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case of a construct like (Markdown, analogous for Fortran): ``` test text @cond: after cond whatever @endcond some more text ``` we get a `*/` after `test text` that should not be present. Other places exclude besides Pyton and VHDL also Fortran and Markdown and that should happen here as well.
* | | Merge pull request #7193 from albert-github/feature/issue_7190Dimitri van Heesch2019-08-132-3/+10
|\ \ \ | | | | | | | | issue #7190 1.8.16: Blank FILE_PATTERNS => no files processed
| * | | issue #7190 1.8.16: Blank FILE_PATTERNS => no files processedalbert-github2019-08-132-3/+10
|/ / / | | | | | | | | | This is actually a regression on #7195. Due to the fact that the init() routine has moved up, the settings for `FILE_PATTERNS` have already been done and a call to init does not operate on the `FILE_PATTERNS` variable but on the structure from which the `FILE_PATTERNS` was derived. We have should here operate on the `FILE_PATTERNS` directly as well., bu getting the default values out of the underlying structure.
* | | Update doxywizard copyright year and add missing copyright statementsDimitri van Heesch2019-08-1220-31/+131
|/ /
* | Reduce boilerplate code by using C++11 variadic templates and perfect forwardingDimitri van Heesch2019-08-113-281/+32
|/
* Merge pull request #7177 from albert-github/feature/bug_td_nowrapDimitri van Heesch2019-08-113-1/+11
|\ | | | | Problem with '<td nowrap>'
| * Problem with '<td nowrap>'albert-github2019-08-103-1/+11
| | | | | | | | | | | | In the docbook ouput this was shown with the attribute `nowrap>=''`, in HTML this empty tag was skipped. Normally a HTML attribute will have a value but in some cases it is possible without attribute and when this is the last attribute the `>` was accidently added to the attribute (in case of the value the `>` was already considered). Furthermore `In XHTML, attribute minimization is forbidden, and the nowrap attribute must be defined as <td nowrap="nowrap">.`, this is now handled for HTML and docbook as well.
* | Merge pull request #7178 from albert-github/feature/bug_index_missingDimitri van Heesch2019-08-111-0/+1
|\ \ | |/ |/| Missing tables item in overview
| * Missing tables item in overviewalbert-github2019-08-101-0/+1
|/ | | | In the overview the paragraph about 'tables' is missing
* Merge pull request #7176 from albert-github/feature/bug_changelog_1_8_16Dimitri van Heesch2019-08-091-3/+8
|\ | | | | (X)HTML errors in 1.8.16 changelog
| * (X)HTML errors in 1.8.16 changelogalbert-github2019-08-091-3/+8
|/ | | | Corrected the (X)HTML errors in the 1.8.16 changelog
* Version bump for next releaseDimitri van Heesch2019-08-081-1/+1
|