summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* issue_6524: Markdown formats missing in doxygen outputs.albert-github2018-10-022-11/+25
| | | | | | Support for strikethrough by means of `~~<text>~~` See also https://help.github.com/articles/basic-writing-and-formatting-syntax/ paragraph about "styling" text".
* Merge branch 'albert-github-feature/issue_6387'Dimitri van Heesch2018-09-253-59/+189
|\
| * 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 { }
* | Merge pull request #6521 from albert-github/feature/bug_doxyfile_diff_2Dimitri van Heesch2018-09-231-8/+57
|\ \ | | | | | | Difference between standard and used Doxyfile (list)
| * | 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.
* | Merge pull request #6514 from albert-github/feature/bug_addindex_docuDimitri van Heesch2018-09-172-4/+4
|\ \ | | | | | | addindex supports also DocBook and RTF
| * | addindex supports also DocBook and RTFalbert-github2018-09-162-4/+4
| | | | | | | | | | | | | | | - addindex supports also DocBook and RTF - spelling of DocBook in documentation
* | | Merge pull request #6520 from albert-github/feature/issue_6519Dimitri van Heesch2018-09-175-8/+30
|\ \ \ | |/ / |/| | C++11 features used in doxygen
| * | 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 #6512 from Croydon/croydon/ci3Dimitri van Heesch2018-09-151-5/+9
|\ \ | | | | | | AppVeyor: Fix MikTex version and re-enable tests
| * | AppVeyor: Fix MikTex version and re-enable testsCroydon2018-09-151-5/+9
| | |
* | | Merge pull request #6487 from albert-github/feature/bug_docbookDimitri van Heesch2018-09-1523-436/+2704
|\ \ \ | | | | | | | | 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-0723-437/+2706
| | |/ | |/| | | | | | | | | | | | | | | | | | | 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-156-2/+130
|\ \ \ | | | | | | | | Difference between standard and used Doxyfile
| * | | Difference between standard and used Doxyfilealbert-github2018-09-156-2/+130
| | | | | | | | | | | | | | | | | | | | | | | | 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 #6511 from albert-github/feature/bug_runtest_cfgDimitri van Heesch2018-09-152-1/+13
|\ \ \ \ \ | | | | | | | | | | | | Add possibility for adding doxygen configuration items to, all, tests during runtime.
| * | | | | Add possibility for adding doxygen configuration items to, all, tests during ↵albert-github2018-09-152-1/+13
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | runtime. Creating possibility to add extra doxygen configuration items to tests (e.g. QUIET=NO)
* | | | | 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.
* | | | Merge pull request #6502 from Croydon/croydon/ciDimitri van Heesch2018-09-152-18/+44
|\ \ \ \ | | | | | | | | | | Init macOS CI
| * | | | Readme: Travis displays macOS build status as wellCroydon2018-09-131-17/+17
| | | | |
| * | | | Init macOS CICroydon2018-09-121-1/+27
| |/ / /
* | | | Merge pull request #6509 from albert-github/feature/bug_docu_aliasDimitri van Heesch2018-09-152-0/+29
|\ \ \ \ | |/ / / |/| | | Usage of '{', '}' and ',' in ALIAS
| * | | Usage of '{', '}' and ',' in ALIASalbert-github2018-09-142-0/+29
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 pull request #6500 from Croydon/patch-1Dimitri van Heesch2018-09-111-5/+5
|\ \ \ | |/ / |/| | Update install.doc: Qt 5 is now supported as well
| * | Update install.doc: Qt 5 is now supported as wellMichael "Croydon" Keck2018-09-111-5/+5
|/ /
* | Update appveyor.ymlDimitri van Heesch2018-09-101-7/+7
| | | | | | Re-enabled vc2017, disabled debug build and building docs & tests until made working reliably
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2018-09-1019-24/+84
|\ \
| * \ Merge pull request #6496 from albert-github/feature/issue_6494Dimitri van Heesch2018-09-101-1/+6
| |\ \ | | | | | | | | Issue 6494: asterisks before args and kwargs are ignored in python
| | * | 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.
| * | | Update appveyor.ymlDimitri van Heesch2018-09-101-2/+2
| |/ / | | | | | | disabled vs2017 build for now
| * | Update README.mdDimitri van Heesch2018-09-091-1/+1
| | | | | | | | | corrected URL to appveyer build page
| * | Update README.mdDimitri van Heesch2018-09-091-1/+2
| | | | | | | | | added window's build status (via appveyor)
| * | Merge pull request #6474 from Croydon/croydon/appveyorDimitri van Heesch2018-09-091-0/+48
| |\ \ | | | | | | | | WIP: Init Windows AppVeyor CI
| | * | AppVeyor: Remove outdated renaming and update ghostscriptCroydon2018-09-081-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | Renaming of win_flex and win_bison is not any longer requires as the CMake find scripts are also looking for these binary names. Updating Ghostscript from 9.23 to 9.24
| | * | Prevent potential race conditionCroydon2018-09-081-1/+1
| | | |
| | * | AppVeyor: Also execute tests and doc generationCroydon2018-09-081-2/+16
| | | |
| | * | Init Windows AppVeyor CICroydon2018-09-081-0/+36
| | |/
| * | Merge pull request #6490 from StefanBruens/issue_6152Dimitri van Heesch2018-09-091-1/+2
| |\ \ | | | | | | | | Order resources not only on filename but also dirname