summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* issue_6524: Markdown formats missing in doxygen outputs.albert-github2018-10-021-4/+7
| | | | | | Support for strikethrough by means of `~~<text>~~` See also https://help.github.com/articles/basic-writing-and-formatting-syntax/ paragraph about "styling" text".
* redundant input_filter runs significantly reduce performance when ↵Dimitri van Heesch2018-09-253-59/+189
| | | | FILTER_SOURCE_FILES and INLINE_SOURCES are both enabled #6395
* Merge pull request #6489 from albert-github/feature/bug_cs_using_linkDimitri van Heesch2018-09-231-1/+1
|\ | | | | Don't link to non existing / not accessible namespaces , in CSharp, in the source code
| * Don't link to non existing / not accessible namespaces , in CSharp, in the ↵albert-github2018-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | source code In the following the 'test' and 'System' were linked in the source code, this should not be the case. using test; using System; using System.IO; namespace NON { }
* | Difference between standard and used Doxyfile (list)albert-github2018-09-181-8/+57
| | | | | | | | The default (string) list can contain an empty elements (e.g. INPUT, STRIP_FROM_PATH) giving false positives. Removed empty elements from the checks.
* | C++11 features used in Doxygenalbert-github2018-09-175-8/+30
| | | | | | | | | | - corrected some initializations - corrected some missing, new, cases (reported by travis CI)
* | Merge pull request #6487 from albert-github/feature/bug_docbookDimitri van Heesch2018-09-1519-434/+2700
|\ \ | | | | | | Implementation of standard generator for docbook output
| * | Implementation of standard generator for docbook outputalbert-github2018-09-121-1/+0
| | | | | | | | | | | | Removed debug statement
| * | Implementation of standard generator for docbook outputalbert-github2018-09-0719-435/+2702
| |/ | | | | | | | | | | | | | | Till now docbook had its own output generator, but lot of possibilities were missing (see remark about updating below), with this patch the (more than) basic implementation has been made. Added some docbook tests to the current tests and updated documentation where necessary Tried updating current version but too many issues remained that were generically handled in the standard generator, code is in current version behind '#if 0' construct in doxygen.cpp and name with '_v1' and in docbookgen.cp'
* | Merge pull request #6510 from albert-github/feature/doxyfile_differncesDimitri van Heesch2018-09-154-1/+111
|\ \ | | | | | | Difference between standard and used Doxyfile
| * | Difference between standard and used Doxyfilealbert-github2018-09-154-1/+111
| | | | | | | | | | | | | | | | | | Writes a the differences between the current configuration and the template configuration. Useful when communicating e.g. in forums.
* | | Merge pull request #6499 from albert-github/feature/bug_python_linebreakDimitri van Heesch2018-09-151-1/+1
|\ \ \ | | | | | | | | Namespace with name docstrings_linebreak
| * | | Namespace with name docstrings_linebreakalbert-github2018-09-111-1/+1
| |/ / | | | | | | | | | | | | As a regression on pull request #674 in respect to the moving of the markdown handling place the `\_linebreak` command is not translated anymore. In fact the `\_linebreak` is not necessary at all only the space is required as the `\namespace` command takes just one word as argument.
* | | Merge pull request #6505 from albert-github/feature/bug_covertyDimitri van Heesch2018-09-1512-13/+19
|\ \ \ | | | | | | | | Fixing coverity messages
| * | | Fixing coverity messagesalbert-github2018-09-1312-13/+19
| |/ / | | | | | | | | | Note: especially latexdocvisitor (dead code that should not be dead code).
* | | Merge pull request #6501 from albert-github/feature/bug_latex_endcodelineDimitri van Heesch2018-09-151-5/+3
|\ \ \ | | | | | | | | Close last code line properly.
| * | | Close last code line properly.albert-github2018-09-111-5/+3
| |/ / | | | | | | | | | | | | When ending code fragment, check if last code line is closed, if this is not the case close it. (problem observed with inline code in Python, but might happen on other places as well)
* | | Merge pull request #6506 from albert-github/feature/bug_coverty_namespaceDimitri van Heesch2018-09-151-0/+1
|\ \ \ | | | | | | | | Fixing coverity messages (Namespace tag)
| * | | Fixing coverity messages (Namespace tag)albert-github2018-09-131-0/+1
| |/ / | | | | | | | | | | | | | | | Correcting missing break in namespace when writing a tag file. (Could not find a case; incase the FALL THROUGH case is correct this has to be clearly indicated in the code).
* | | Merge pull request #6503 from albert-github/feature/bug_uninitialized_varDimitri van Heesch2018-09-152-5/+5
|\ \ \ | | | | | | | | Fixing problem with possible not initialized variable (endless loop in VS 2017 debug)
| * | | Fixing problem with possible not initialized variable (endless loop in VS ↵albert-github2018-09-122-5/+5
| |/ / | | | | | | | | | | | | | | | 2017 debug) The not initialized variable `l` caused and endless loop in the VS2017 debug version, variable should not have been used.
* | | Usage of '{', '}' and ',' in ALIASalbert-github2018-09-141-0/+24
|/ / | | | | | | | | | | | | | | | | | | | | | | | | Based on the stack overflow question: https://stackoverflow.com/questions/52314045/how-to-use-addtogroup-with-an-aliases-command/52314821#52314821 ALIASES += opengroup{1}="^^* \addtogroup \1_GROUP ^^ * \{ ^^" ALIASES += close="\}" /** \opengroup{LEVEL_1} */ // ...code statements... /** \close */ // opengroup Does not create a group due to the change of `\{` to just `}`, this behavior has been documented now.
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2018-09-1011-15/+22
|\ \
| * | Issue 6494: asterisks before args and kwargs are ignored in pythonalbert-github2018-09-101-1/+6
| | | | | | | | | | | | | | | | | | Added asterisks in the type field. The type is temporary stored in a variable as the argument field has not yet been defined for its argument.
| * | Merge pull request #6490 from StefanBruens/issue_6152Dimitri van Heesch2018-09-091-1/+2
| |\ \ | | | | | | | | Order resources not only on filename but also dirname
| | * | Order resources not only on filename but also dirnameStefanBruens2018-09-081-1/+2
| | |/ | | | | | | | | | | | | | | | | | | Although the resource generation sorted files for each subdirectory, total order, i.e. including subdirectories, was not stable. As a result, the generated resources.cpp could be different on each build run. Fixes #6152
| * | Merge pull request #6485 from albert-github/feature/bug_ftvhelp_doubleDimitri van Heesch2018-09-091-2/+1
| |\ \ | | |/ | |/| Remove double line with documented argument from addContentsItem in ftvhelp.cpp
| | * Remove double line with documented argument from addContentsItem in ftvhelp.cppalbert-github2018-09-051-2/+1
| | | | | | | | | | | | This is a problem of the internal doxygen generated documentation only.
| * | Merge pull request #6430 from albert-github/feature/bug_self_phpDimitri van Heesch2018-09-061-1/+3
| |\ \ | | | | | | | | 'self' keyword in PHP documentation
| | * | 'self' keyword in PHP documentationalbert-github2018-08-061-1/+3
| | | | | | | | | | | | | | | | In PHP the word `self` was not color coded and the functions were nor referenced in the CALL / CALLER graphs, / REFERENCES / REFERENCED lists.
| * | | Merge pull request #6477 from albert-github/feature/bug_exception_rtf_latexDimitri van Heesch2018-09-062-2/+2
| |\ \ \ | | |_|/ | |/| | Missing opening round bracket in case of an exception
| | * | Missing opening round bracket in case of an exceptionalbert-github2018-08-312-2/+2
| | | | | | | | | | | | | | | | | | | | In case of RTF / LaTeX the opening round bracket was missing after the word "throw" (see e.g. in the manual the `\fn` example the detailed function description)
| * | | Merge pull request #6468 from arm-in/masterDimitri van Heesch2018-09-035-7/+7
| |\ \ \ | | | | | | | | | | Typos found by running "codespell"
| | * | | Update pyscanner.lArmin Müller2018-08-211-2/+2
| | | | |
| | * | | Update pycode.lArmin Müller2018-08-211-2/+2
| | | | |
| | * | | Update markdown.cppArmin Müller2018-08-211-1/+1
| | | | |
| | * | | Update mangen.cppArmin Müller2018-08-211-1/+1
| | | | |
| | * | | Update classdef.cppArmin Müller2018-08-211-1/+1
| | | | |
| * | | | Merge pull request #6424 from albert-github/feature/bug_image_xmlDimitri van Heesch2018-09-031-1/+1
| |\ \ \ \ | | | | | | | | | | | | Include height item in XML output
| | * | | | Include height item in XML outputalbert-github2018-08-051-1/+1
| | | |_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | When width and height are given with the `\image` command only the `width=` is placed in the output. contrary to e.g. HTML. This has been corrected. Based on: https://stackoverflow.com/questions/38778067/doxygen-image-tag-size-specification-syntax
* | | | | Changed state guard instead of adding pattern check+rejectDimitri van Heesch2018-09-101-8/+1
| | | | |
* | | | | Merge branch 'feature/bug_634830' of ↵Dimitri van Heesch2018-09-101-0/+7
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_634830
| * | | | Bug 634830 - Automatic links don't work correctly with operator< and operator<=albert-github2018-08-111-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | A longer match was chosen by 'lex' resulting in that 'operator<' and 'operator<=' and the first argument were not correctly linked and color coded. We now test if the "operator" match is present, if so we use the right rule for operator.
* | | | | Merge pull request #6419 from albert-github/feature/bug_env_consistencyDimitri van Heesch2018-09-021-1/+2
|\ \ \ \ \ | | | | | | | | | | | | Consistency of environment variables between config and code
| * | | | | Consistency of environment variables between config and codealbert-github2018-08-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Made consistent with pull request #6420
| * | | | | Consistency of environment variables between config and codealbert-github2018-08-021-1/+2
| | |/ / / | |/| | | | | | | | | | | | | In a configuration file it was possible to have an environment variable like PROGRAMFILES(X86) but in the code this was not possible.
* | | | | Merge pull request #6418 from albert-github/feature/bug_SOURCE_DATE_EPOCHDimitri van Heesch2018-09-021-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Correct typing error in warning message.
| * | | | | Correct typing error in warning message.albert-github2018-07-311-1/+1
| |/ / / /
* | | | | Update mail addressDimitri van Heesch2018-09-014-4/+4
| | | | |
* | | | | Merge pull request #6388 from albert-github/feature/bug_740046_regressionDimitri van Heesch2018-09-011-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Section label with minus sign not recognized properly.