summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bug 731363 - Callgraphs for C# only generated for methods inside the same classDimitri van Heesch2014-06-101-75/+81
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2014-06-091-1/+1
|\
| * Merge pull request #178 from ellert/masterDimitri van Heesch2014-06-091-1/+1
| |\ | | | | | | \usepackage{fixltx2e} must come before use \usepackage{float}
| | * \usepackage{fixltx2e} must come before use \usepackage{float}Mattias Ellert2014-06-041-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 730887 - [PATCH] Fix potential copy and paste error in inputstring.cppDimitri van Heesch2014-06-071-1/+1
| | |
* | | Bug 731238 - Dead links in html documentation when using tabs for ↵Dimitri van Heesch2014-06-071-2/+3
|/ / | | | | | | indentation in c++
* | Bug 727732 - Nested C structures/unions does not work with groupsDimitri van Heesch2014-06-061-0/+12
|/
* Fix warning about unused functions in qstring.cppDimitri van Heesch2014-05-291-3/+2
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2014-05-294-34/+47
|\
| * Merge pull request #172 from hansec/fortran_typdefDimitri van Heesch2014-05-291-28/+35
| |\ | | | | | | Fix unnecessary rules for FORTRAN user defined types
| | * Fix FORTRAN code function scope testChris Hansen2014-05-271-1/+1
| | |
| | * Fix highlighting issuesChris Hansen2014-05-191-6/+25
| | | | | | | | | | | | | | | - Fixed highlighting defined type in variable declarations - Corrected parser state following docBlock closure
| | * Fix unnecessary rules for FORTRAN typesChris Hansen2014-05-121-22/+10
| | |
| * | Merge pull request #176 from jwakely/patch-1Dimitri van Heesch2014-05-291-1/+1
| |\ \ | | | | | | | | Fix description of USE_PDFLATEX
| | * | Fix description of USE_PDFLATEXJonathan Wakely2014-05-291-1/+1
| | | | | | | | | | | | The tag is USE_PDFLATEX, not LATEX_PDFLATEX
| * | | Merge pull request #177 from albert-github/feature/missing_htmlDimitri van Heesch2014-05-291-1/+7
| |\ \ \ | | |/ / | |/| | Added documentation for some missing HTML commands
| | * | Added documentation for some missing HTML commandsalbert-github2014-05-291-1/+7
| |/ / | | | | | | | | | Added documentation for H4, H5 and H6 command to be complete and extended IMG description a bit
| * | Merge pull request #174 from jannick0/patch-1Dimitri van Heesch2014-05-261-0/+4
| |\ \ | | | | | | | | make.bat: change current directory
| | * | Update latexgen.cppjannick02014-05-211-0/+1
| | | | | | | | | | | | added reset of var Dir_Old at the end.
| | * | make.bat: change current directoryjannick02014-05-211-1/+3
| | | | | | | | | | | | amendment for switching between drives and flipping back to initial cur dir at end of make.bat
| | * | make.bat: change current directoryjannick02014-05-211-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.
| * | | Merge pull request #175 from ↵Dimitri van Heesch2014-05-261-4/+0
| |\ \ \ | | | | | | | | | | | | | | | | | | | | albert-github/feature/bug_not_implemented_html_commands Removed not implemented HTML commands from documentation
| | * | | Removed not implemented HTML commands from documentationalbert-github2014-05-261-4/+0
| |/ / / | | | | | | | | | | | | This concerns the BODY and MULTICOL tags.
* | | | Bug 730888 - [PATCH] Fix missing '&' in Boolean operation in qstring.cppDimitri van Heesch2014-05-291-1/+1
|/ / /
* | | Removed unsupported HTML commands from the docsDimitri van Heesch2014-05-261-4/+0
|/ /
* | Merge pull request #173 from albert-github/feature/bug_730418Dimitri van Heesch2014-05-201-1/+1
|\ \ | | | | | | Bug 730418 - man page extension is incorrect
| * | Bug 730418 - man page extension is incorrectalbert-github2014-05-201-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 Heesch2014-05-1815-6493/+2787
| | | | | | | | licensing issues
* | Set deployment targets for MacOSX 10.5+ versionsDimitri van Heesch2014-05-153-3/+3
|/
* Merge pull request #171 from hansec/fortran_case_regressionDimitri van Heesch2014-05-071-1/+1
|\ | | | | Highlighting corrected for case statements without new line (regression)
| * Fixes regression due to PR 169Chris Hansen2014-05-071-1/+1
| |
* | Merge pull request #170 from albert-github/feature/fortran_code_color_regressionDimitri van Heesch2014-05-071-2/+2
|\ \ | |/ |/| Coded coloring of flow statements corrected (regression)
| * Coded coloring of flow statements corrected (regression)albert-github2014-05-071-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 'hansec-select_type'Dimitri van Heesch2014-05-061-7/+12
|\
| * Merge branch 'select_type' of https://github.com/hansec/doxygen into ↵Dimitri van Heesch2014-05-061-7/+12
| |\ |/ / | | | | | | | | | | hansec-select_type Conflicts: src/fortrancode.l
| * Add type option to FORTRAN select statementsChris Hansen2014-05-051-1/+6
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2014-05-061-9/+32
|\ \
| * \ Merge pull request #168 from hansec/fortran_keywordsDimitri van Heesch2014-05-061-3/+13
| |\ \ | | | | | | | | Add FORTRAN 2003 keywords and commands
| | * | Add FORTRAN 2003 keywords and commandsChris Hansen2014-05-051-3/+13
| | |/
| * | Merge pull request #167 from hansec/class_vardefDimitri van Heesch2014-05-061-2/+3
| |\ \ | | | | | | | | Add class/procedure vardefs to FORTRAN code highlighting
| | * | Added class/procedure vardefs to FORTRAN code highlightingChris Hansen2014-05-051-2/+3
| | |/
| * | Merge pull request #166 from hansec/fortran_importDimitri van Heesch2014-05-061-4/+16
| |\ \ | | |/ | |/| Add import keyword to FORTRAN code highlighting
| | * Fixed keyword typeChris Hansen2014-05-051-3/+1
| | |
| | * Added import keyword to FORTRAN code highlightingChris Hansen2014-05-051-4/+18
| |/
* | Bug 729427 - [PATCH] Propagate configure's perl to makefilesDimitri van Heesch2014-05-031-0/+1
|/
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2014-05-032-30/+23
|\
| * Merge pull request #165 from albert-github/feature/bug_rtf_newlineDimitri van Heesch2014-05-031-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 & upalbert-github2014-05-021-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
| * | Merge pull request #164 from albert-github/feature/faq_listDimitri van Heesch2014-05-031-29/+22
| |\ \ | | | | | | | | Make index for faq
| | * | Make index for faqalbert-github2014-05-011-29/+22
| | |/ | | | | | | | | | Currently the FAQs are in a numbered list, no index / overview. This patch places the FAQs in paragraphs resulting in a readable overview (in index or with a tableofcontents in HTML