summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bug 719422 - private java class is mentioned in inherited by list of super classDimitri van Heesch2013-12-081-0/+2
|
* Bug 719463 - Invalid null key and segmentation faultDimitri van Heesch2013-12-081-16/+16
|
* Bug 719591 - expand_as_defined macro does not properly workDimitri van Heesch2013-12-081-0/+5
|
* Bug 720046 - Document inline objective-C blocksDimitri van Heesch2013-12-081-7/+21
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2013-12-071-1/+1
|\
| * Merge pull request #59 from albert-github/feature/bug_715172Dimitri van Heesch2013-12-071-1/+1
| |\ | | | | | | Bug 715172 - Consistently document Fortran's equivalent function bodies
| | * Bug 715172 - Consistently document Fortran's equivalent function bodiesalbert-github2013-12-011-1/+1
| | | | | | | | | | | | Although controversioal but for consistency converted type for fortran functions to lowercase
* | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2013-12-079-18/+43
|\ \ \ | |/ /
| * | Merge pull request #61 from albert-github/feature/bug_719639Dimitri van Heesch2013-12-078-8/+43
| |\ \ | | | | | | | | Bug 719639 - @xrefitem with empty heading string
| | * | Bug 719639 - @xrefitem with empty heading stringalbert-github2013-12-017-14/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaced: if (!(x->title().length())) return; by: if (x->title().isEmpty()) return;
| | * | Bug 719639 - @xrefitem with empty heading stringalbert-github2013-12-018-8/+43
| | |/ | | | | | | | | | Adjusted documentation and in case the title is the empty string in a DocXRefItem the visitPre and visitPost do nothing.
| * | Merge pull request #62 from albert-github/feature/bug_docu_indexDimitri van Heesch2013-12-071-10/+0
| |\ \ | | | | | | | | Some texts can be independent of \htmlonly / \latexonly
| | * | Some texts can be independent of \htmlonly / \latexonlyalbert-github2013-12-011-10/+0
| | |/
* | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2013-12-072-3/+3
|\ \ \ | |/ /
| * | Merge pull request #63 from albert-github/feature/bug_668424Dimitri van Heesch2013-12-072-3/+3
| |\ \ | | | | | | | | Bug 668424 - HTML links in RTF output are broken
| | * | Bug 668424 - HTML links in RTF output are brokenalbert-github2013-12-012-3/+3
| | |/ | | | | | | | | | There are different types of hyperlinks: external and internal. The internal hyperlinks should have \\l behind the word HYPERLINK, the external shouldnt.
* | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2013-12-071-1/+8
|\ \ \ | |/ /
| * | Merge pull request #64 from albert-github/feature/bug_719489Dimitri van Heesch2013-12-071-1/+8
| |\ \ | | | | | | | | Bug 719489 - Label "abstract" instead of "pure virtual" for Java language
| | * | Bug 719489 - Label "abstract" instead of "pure virtual" for Java languagealbert-github2013-12-021-1/+8
| | |/ | | | | | | | | | Proposed patch so the word abstract is recorded correctly in case of Java
* | | Bug 711378 - Nested Aliases fail when the nested alias has two or more ↵Dimitri van Heesch2013-12-071-7/+7
|/ / | | | | | | arguments.
* | Merge pull request #60 from albert-github/feature/bug_impureDimitri van Heesch2013-12-012-5/+5
|\ \ | | | | | | Fortran added keyword IMPURE
| * | Fortran added keyword IMPUREalbert-github2013-12-012-5/+5
| |/ | | | | | | Added keyword IMPURE analogous to keyword PURE
* | Merge pull request #58 from albert-github/feature/bug_719525Dimitri van Heesch2013-11-301-4/+8
|\ \ | | | | | | Bug 719525 - Can't build because the definitions of ***YY_flex_debug are...
| * | Bug 719525 - Can't build because the definitions of ***YY_flex_debug are ↵albert-github2013-11-301-4/+8
| |/ | | | | | | | | | | missing. Update the documentation in respect to the version of flex and bison that can be used.
* | Merge branch 'master' into templateDimitri van Heesch2013-11-294-12/+80
|\ \ | | | | | | | | | | | | | | | Conflicts: src/memberdef.cpp src/memberdef.h
| * | Added missing docs tagDimitri van Heesch2013-11-292-12/+29
| | |
| * | Bug 692004 - show includes for free functionsDimitri van Heesch2013-11-263-0/+50
| | |
* | | More context and template additionsDimitri van Heesch2013-11-299-88/+994
|/ /
* | Bug 712795 - segmentation fault in memberdef.cppDimitri van Heesch2013-11-231-1/+1
| |
* | Added missing space after @parblockDimitri van Heesch2013-11-231-1/+1
|/
* Fixed constness warningDimitri van Heesch2013-11-171-7/+4
|
* Merge pull request #56 from albert-github/feature/debug_lexDimitri van Heesch2013-11-172-2/+17
|\ | | | | Debug output for lexical analyzer
| * Debug output for lexical analyzerAlbert2013-11-172-2/+17
| | | | | | | | | | | | The previous commit (pull request) was missing the debug output possibility for config.l and partial for doctokinizer.l. The later is called on different places by means of the generic definition doctokinizerYYlex, which is declared by means of YY_DECL. To be able to add the debug output the YY_DECL had to be redefined to be a new function and the new function, with the debug output possibility, has to be called through the original function name.
* | Merge pull request #57 from albert-github/feature/doc_buildDimitri van Heesch2013-11-172-19/+55
|\ \ | | | | | | Adjust internationalization part to current situation
| * | Adjust internationalization part to current situationAlbert2013-11-172-19/+55
|/ /
* | Merge pull request #55 from albert-github/feature/debug_lexDimitri van Heesch2013-11-1720-2/+79
|\ \ | |/ | | Debug output for lexical analyzer
| * Debug output for lexical analyzerAlbert2013-11-1320-2/+79
|/ | | | | | | | | | | | | | In case of error messages like: input buffer overflow, can't enlarge buffer because scanner uses REJECT it is not always directly clear from which lexical analyzer (.l file) this problem comes. This patch helps to find these problems and does the following things: - when using the option -d lex with doxygen each time a lexical analyzer is called at the start a line like the following line will be given: Entering lexical analyzer: pre.l (for: ..../file.c) and at the end: Finished lexical analyzer: pre.l (for: ..../file.c) - in case the lexical analyzer has been translated with the -d option of lex / flex the above mentioned lines will be given as part of the lexical analyzer output (to stderr) and look like: --entering lexical analyzer: pre.l (for: ..../file.c) --finished lexical analyzer: pre.l (for: ..../file.c)
* Bug 711004 - Vertical bars cannot be sent straight to makeindexDimitri van Heesch2013-11-111-1/+1
|
* Removed redundant backslashes in regexp patternDimitri van Heesch2013-11-111-7/+7
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2013-11-113-5/+11
|\
| * Merge pull request #54 from albert-github/feature/space_in_err_msgDimitri van Heesch2013-11-111-1/+1
| |\ | | | | | | Space missing in error message.
| | * Space missing in error message.Albert2013-11-101-1/+1
| | | | | | | | | | | | the word 'in' and the vale of filesOption were concatenated
| * | Merge pull request #53 from albert-github/feature/bug_711787Dimitri van Heesch2013-11-112-4/+10
| |\ \ | | |/ | |/| Bug 711787 - Long initialization line in C stops doxygen
| | * Bug 711787 - Long initialization line in C stops doxygenAlbert2013-11-102-4/+10
| |/ | | | | | | An extra "breakpoint" in the input string has been created in the form of a , (comma), so for initialization lines the line will be shorter and the , (comma) will be copied later on.
* | Bug 710998 - latex_count=5 is not enoughDimitri van Heesch2013-11-111-4/+4
| |
* | Bug 711639 - [PATCH] #include does not work with absolute pathsDimitri van Heesch2013-11-111-0/+14
| |
* | Bug 711723 - Comment /**/ confuses doxygenDimitri van Heesch2013-11-111-0/+3
| |
* | Added compile support for MavericksDimitri van Heesch2013-11-111-1/+4
| |
* | More template and context updatesDimitri van Heesch2013-11-1114-1417/+3353
|/
* Undo changes to doxywizard.pro.inDimitri van Heesch2013-11-021-1/+1
|