Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Bug 730520 - No documentation generated for method-less C++ struct | Dimitri van Heesch | 2014-06-16 | 4 | -10/+20 | |
| | | ||||||
* | | Merge pull request #181 from wtschueller/master | Dimitri van Heesch | 2014-06-16 | 1 | -74/+218 | |
|\ \ | | | | | | | Tcl: collect XRefs also if INLINE_SOURCES = no | |||||
| * | | Tcl: recurse for [] | wtschueller | 2014-06-11 | 1 | -74/+182 | |
| | | | ||||||
| * | | Tcl: collect XRefs also if INLINE_SOURCES = no | wtschueller | 2014-06-10 | 1 | -0/+36 | |
| | | | ||||||
* | | | Added build support for Python3+ and Python2.6+ | Dimitri van Heesch | 2014-06-15 | 4 | -173/+179 | |
| | | | ||||||
* | | | Merge pull request #179 from jwakely/patch-2 | Dimitri van Heesch | 2014-06-11 | 1 | -1/+1 | |
|\ \ \ | |/ / |/| | | Fix typo | |||||
| * | | Fix typo | Jonathan Wakely | 2014-06-06 | 1 | -1/+1 | |
| | | | ||||||
* | | | Bug 731363 - Callgraphs for C# only generated for methods inside the same class | Dimitri van Heesch | 2014-06-10 | 1 | -75/+81 | |
| | | | ||||||
* | | | Merge branch 'master' of github.com:doxygen/doxygen | Dimitri van Heesch | 2014-06-09 | 1 | -1/+1 | |
|\ \ \ | ||||||
| * \ \ | Merge pull request #178 from ellert/master | Dimitri van Heesch | 2014-06-09 | 1 | -1/+1 | |
| |\ \ \ | | | | | | | | | | | \usepackage{fixltx2e} must come before use \usepackage{float} | |||||
| | * | | | \usepackage{fixltx2e} must come before use \usepackage{float} | Mattias Ellert | 2014-06-04 | 1 | -1/+1 | |
| | |/ / | | | | | | | | | | | | | | | | | | | | | The \usepackage{doxygen} statement adds float as a depenency. If the order is wrong the latex generation fails with: LaTeX Error: Unknown float option `H' | |||||
* | | | | Bug 731238 - Dead links in html documentation when using tabs for ↵ | Dimitri van Heesch | 2014-06-07 | 1 | -2/+3 | |
|/ / / | | | | | | | | | | indentation in c++ | |||||
* | | | Bug 727732 - Nested C structures/unions does not work with groups | Dimitri van Heesch | 2014-06-06 | 1 | -0/+12 | |
|/ / | ||||||
* | | Merge pull request #172 from hansec/fortran_typdef | Dimitri van Heesch | 2014-05-29 | 1 | -28/+35 | |
|\ \ | | | | | | | Fix unnecessary rules for FORTRAN user defined types | |||||
| * | | Fix FORTRAN code function scope test | Chris Hansen | 2014-05-27 | 1 | -1/+1 | |
| | | | ||||||
| * | | Fix highlighting issues | Chris Hansen | 2014-05-19 | 1 | -6/+25 | |
| | | | | | | | | | | | | | | | - Fixed highlighting defined type in variable declarations - Corrected parser state following docBlock closure | |||||
| * | | Fix unnecessary rules for FORTRAN types | Chris Hansen | 2014-05-12 | 1 | -22/+10 | |
| | | | ||||||
* | | | Fix description of USE_PDFLATEX | Jonathan Wakely | 2014-05-29 | 1 | -1/+1 | |
| | | | | | | | | | The tag is USE_PDFLATEX, not LATEX_PDFLATEX | |||||
* | | | Update latexgen.cpp | jannick0 | 2014-05-21 | 1 | -0/+1 | |
| | | | | | | | | | added reset of var Dir_Old at the end. | |||||
* | | | make.bat: change current directory | jannick0 | 2014-05-21 | 1 | -1/+3 | |
| | | | | | | | | | amendment for switching between drives and flipping back to initial cur dir at end of make.bat | |||||
* | | | make.bat: change current directory | jannick0 | 2014-05-21 | 1 | -0/+1 | |
| |/ |/| | | | | | | | First thing after calling make.bat: switch current directory to folder make.bat resides in. Purpose: easy external call of make.bat. /J. | |||||
* | | Bug 730418 - man page extension is incorrect | albert-github | 2014-05-20 | 1 | -1/+1 | |
| | | | | | | | | Test in respect to handling extension was tone wit equal less than / greater than sign and should only be less than and greater than. Resulting in the fact that in case of a chosen extension starting with .0 or .9 an 3 was pre-pended. | |||||
* | | Replaced the VHDL parser with the VHDL scanner from 1.7.5 to avoid potential ↵ | Dimitri van Heesch | 2014-05-18 | 14 | -6441/+2787 | |
|/ | | | | licensing issues | |||||
* | Merge pull request #171 from hansec/fortran_case_regression | Dimitri van Heesch | 2014-05-07 | 1 | -1/+1 | |
|\ | | | | | Highlighting corrected for case statements without new line (regression) | |||||
| * | Fixes regression due to PR 169 | Chris Hansen | 2014-05-07 | 1 | -1/+1 | |
| | | ||||||
* | | Coded coloring of flow statements corrected (regression) | albert-github | 2014-05-07 | 1 | -2/+2 | |
|/ | | | | | | | | | | | | | | | | | | | | | | Which patch 8e8c9a1 (dd. May 6) the rule: <Start>{FLOW}/[,( \t\n].* has been changed into" <Start>{FLOW}/[,( \t\n] (analogous: <Start>{COMMANDS}/[,( \t\n]) To overcome the warning: fortrancode.l:744: warning, dangerous trailing context. The result is that the code coloring of (e.g.) the if statements in: subroutine test_on_if if (a == b) then c = d endif if(a == b) then c = d endif end subroutine was removed, due to the fact that the rule: <Start>{ID}{BS}/"(" was used instead of the flow coloring rule. This patch fixes the rules so the lines are colored again and there is no warning. | |||||
* | Merge branch 'select_type' of https://github.com/hansec/doxygen into ↵ | Dimitri van Heesch | 2014-05-06 | 1 | -7/+12 | |
|\ | | | | | | | | | | | | | hansec-select_type Conflicts: src/fortrancode.l | |||||
| * | Add type option to FORTRAN select statements | Chris Hansen | 2014-05-05 | 1 | -1/+6 | |
| | | ||||||
* | | Merge pull request #168 from hansec/fortran_keywords | Dimitri van Heesch | 2014-05-06 | 1 | -3/+13 | |
|\ \ | | | | | | | Add FORTRAN 2003 keywords and commands | |||||
| * | | Add FORTRAN 2003 keywords and commands | Chris Hansen | 2014-05-05 | 1 | -3/+13 | |
| |/ | ||||||
* | | Merge pull request #167 from hansec/class_vardef | Dimitri van Heesch | 2014-05-06 | 1 | -2/+3 | |
|\ \ | | | | | | | Add class/procedure vardefs to FORTRAN code highlighting | |||||
| * | | Added class/procedure vardefs to FORTRAN code highlighting | Chris Hansen | 2014-05-05 | 1 | -2/+3 | |
| |/ | ||||||
* | | Fixed keyword type | Chris Hansen | 2014-05-05 | 1 | -3/+1 | |
| | | ||||||
* | | Added import keyword to FORTRAN code highlighting | Chris Hansen | 2014-05-05 | 1 | -4/+18 | |
|/ | ||||||
* | Merge pull request #165 from albert-github/feature/bug_rtf_newline | Dimitri van Heesch | 2014-05-03 | 1 | -1/+1 | |
|\ | | | | | Missing word after \n command in Doxygen rtf output, version 1.8.5 & up | |||||
| * | Missing word after \n command in Doxygen rtf output, version 1.8.5 & up | albert-github | 2014-05-02 | 1 | -1/+1 | |
| | | | | | | | | | | After a \par command no space or new line was present resulting in the joining of the \par with the first word after the \n. Inserting an newline solves this problem | |||||
* | | Bug 729017 - function object in member initializer causes documentation loss | Dimitri van Heesch | 2014-04-27 | 1 | -8/+3 | |
|/ | ||||||
* | Bug 728654 - configuration stops with settings.h missing | albert-github | 2014-04-26 | 1 | -1/+1 | |
| | | | | | | | | | This bug fix fixes, in a general way, a number of issues encountered on Solaris - configure - ! (exclamation mark) not recognized properly, but with mkdir -p no test is necessary - sed problem regarding removing last , (comma) in language list. Is automatically replaced in with a space when translating language names to upper case. - lang_cfg.py - corrected check on number of arguments | |||||
* | Bug 623299 - Fortran: quotation after define causes error | albert-github | 2014-04-21 | 2 | -0/+6 | |
| | | | | For the determination whether the file is free or fixed formatted code just see lines starting with # as comment lines | |||||
* | Merge pull request #157 from albert-github/feature/bug_172072 | Dimitri van Heesch | 2014-04-21 | 2 | -7/+9 | |
|\ | | | | | Bug 172072 - $title doesn't work in LateX header | |||||
| * | Bug 172072 - $title doesn't work in LateX header | albert-github | 2014-04-20 | 2 | -7/+9 | |
| | | | | | | | | | | | | | | | | In case $title is used in the latex header or footer it is now replaced with the empty string (it was left inside, resulting in non translatable LaTeX code), the documentation has been updated too. See also: Bug 668004 - LATEX_HEADER should share common information with HTML_HEADER Bug 401327 - LATEX_HEADER: $title does not get expanded | |||||
* | | Added last and first attributes to index tree node | Dimitri van Heesch | 2014-04-20 | 1 | -0/+7 | |
| | | ||||||
* | | Bug 712251 - Documentation for enumeration not generated | Dimitri van Heesch | 2014-04-20 | 4 | -5/+6 | |
|/ | ||||||
* | Merge branch 'master' of github.com:doxygen/doxygen | Dimitri van Heesch | 2014-04-19 | 1 | -1/+1 | |
|\ | ||||||
| * | Merge pull request #152 from gilelad/master | Dimitri van Heesch | 2014-04-19 | 1 | -1/+1 | |
| |\ | | | | | | | Fix segfault on invalid bounding FIG when patching dot | |||||
| | * | Fix segfault on invalid bounding FIG when patching dot | Gil Elad | 2014-04-15 | 1 | -1/+1 | |
| | | | ||||||
* | | | Merge branch 'master' of github.com:doxygen/doxygen | Dimitri van Heesch | 2014-04-19 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Inconsistency in usage of simplesecr versus simplesectsep corrected | albert-github | 2014-04-19 | 1 | -1/+1 | |
| | | | ||||||
| * | | Undo previous commit | albert-github | 2014-04-19 | 1 | -1/+1 | |
| | | | ||||||
| * | | Inconsistency in usage of simplesecr versus simplesectsep corrected | albert-github | 2014-04-19 | 1 | -1/+1 | |
| | | |