summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Bug 721878 - Dia diagrams not displayed by FirefoxDimitri van Heesch2014-01-201-2/+2
|
* Fixed issues with SEPARATE_MEMBER_PAGES and INLINE_SIMPLE_STRUCTSDimitri van Heesch2014-01-196-63/+84
|
* Merge pull request #89 from albert-github/feature/docu_updateDimitri van Heesch2014-01-181-5/+5
|\ | | | | Documentation corrections
| * Documentation correctionsalbert-github2014-01-121-5/+5
| | | | | | | | Corrected some spelling errors and added / correceted some references
* | Merge pull request #99 from CraigNoble/masterDimitri van Heesch2014-01-181-1/+1
|\ \ | | | | | | Fix to VHDL scanner.
| * | Fix to VHDL scanner.Craig Thomas Noble2014-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following code should produce two groups, each containing one page, within the same documentation scope, currently it nests these groups and pages, resulting in incorrect documentation. --! \defgroup group1 Group 1 --! \{ --! @brief Group 1 --! \} --! \ingroup group1 --! \{ --! \page group1_page1 Page 1 --! \verbatim --! Some Page 1 text --! \endverbatim --! \} --! \defgroup group2 Group 2 --! \{ --! @brief Group 2 --! \} --! \ingroup group2 --! \{ --! \page group2_page1 Page 1 --! \verbatim --! Some Page 1 text --! \endverbatim --! \} Similar C code to demonstrate the correct output. //! \defgroup group1 Group 1 //! \{ //! @brief Group 1 //! \} //! \ingroup group1 //! \{ //! \page group1_page1 Page 1 //! \verbatim //! Some Page 1 text //! \endverbatim //! \} //! \defgroup group2 Group 2 //! \{ //! @brief Group 2 //! \} //! \ingroup group2 //! \{ //! \page group2_page1 Page 1 //! \verbatim //! Some Page 1 text //! \endverbatim //! \}
* | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2014-01-182-14/+20
|\ \ \ | |/ /
| * | Wrong UTF 8 codesalbert-github2014-01-151-2/+2
| | | | | | | | | | | | The utf-8 code for eta was identical to the code for theta and the code for Prime was identical to the one for prime
| * | sqlite3: clear bindings on errors and more care with returnAdrian Negreanu2014-01-141-12/+18
| | | | | | | | | | | | | | | | | | | | | * call sqlite3_clear_bindings when step fails * more miss-placed returns Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
* | | Fixed potential crash caused by overloading the variadic warn functionDimitri van Heesch2014-01-183-4/+4
| | |
* | | Use hook arrow for hyphens in symbol names in the LaTeX output.Dimitri van Heesch2014-01-122-3/+4
|/ /
* | Fixed problem handling Obj-C protocol list when proceeded by a newlineDimitri van Heesch2014-01-121-1/+2
|/
* added option to have numbers in the bookmark pane (PDF output)Dimitri van Heesch2014-01-111-1/+5
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2014-01-091-9/+10
|\
| * sqlite3: remove some debug messagesAdrian Negreanu2014-01-091-2/+0
| | | | | | | | | | | | these were causing a major performance hit Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
| * sqlite3: leave out insertMemberReference until xref location is validAdrian Negreanu2014-01-091-1/+2
| | | | | | | | | | | | | | the code comes from the early stage of sqlite3gen, when xref keys were kept as "file:line:column", not as function name. Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
| * Merge pull request #86 from groleo/qtools-API-updateDimitri van Heesch2014-01-081-6/+8
| |\ | | | | | | sqlite3: use the new qtools API
| | * sqlite3: use the new qtools APIAdrian Negreanu2014-01-081-6/+8
| | | | | | | | | | | | Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
* | | Bug 683115 - Command ignored when using umlauts in markdown and also ↵Dimitri van Heesch2014-01-082-10/+3
| | | | | | | | | | | | C-comments in markdown didn't work properly
* | | Bug 721169 - Wrong call graph in simple situationDimitri van Heesch2014-01-081-3/+34
| | |
* | | Bug 721618 - Move contructors and move assignment operators of embedded ↵Dimitri van Heesch2014-01-081-1/+10
| | | | | | | | | | | | classes of template classes cannot be matched.
* | | Bug 721462 - Parsing problem with C++11 empty initializer listsDimitri van Heesch2014-01-081-0/+5
|/ /
* | Simplified LaTeX header/footer escapingDimitri van Heesch2014-01-081-20/+16
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2014-01-081-8/+20
|\ \ | |/
| * Merge pull request #79 from albert-github/feature/bug_626172Dimitri van Heesch2014-01-051-8/+20
| |\ | | | | | | Bug 626172 - Latex $projectname with "&" gets no escaped
| | * Bug 626172 - Latex $projectname with "&" gets no escapedalbert-github2014-01-041-8/+20
| | | | | | | | | | | | The variable elements in the header en footer should be converted to latex string, now they are in the format as defined in the Doxyfile
* | | Add warning when encountering a nested comment start (/*) without matching ↵Dimitri van Heesch2014-01-081-0/+5
|/ / | | | | | | end (*/).
* | Bug 705499 - Nested namespace causes incorrect display when referenced via ↵Dimitri van Heesch2014-01-052-18/+25
| | | | | | | | .tag file
* | Fixed issues with @parblock and added regression test caseDimitri van Heesch2014-01-043-1/+10
| |
* | Fixed Tidy's 'empty span' warning in HTML outputDimitri van Heesch2014-01-031-1/+1
|/
* Bug 720691 - Code coloring in case of file without extensionDimitri van Heesch2014-01-021-1/+1
|
* Merge pull request #78 from albert-github/feature/bug_721302Dimitri van Heesch2014-01-024-0/+4
|\ | | | | Bug 721302 - [Latex/PDF] Merging brief and detailed description in file section
| * Bug 721302 - [Latex/PDF] Merging brief and detailed description in file sectionalbert-github2014-01-014-0/+4
| | | | | | | | | | | | Not only for Man pages the extra returns are necessary but also for LaTeX output. The change in filedef.cpp is a direct consequence of t the bug report. The groupdef.cpp has been tested on propriety code and the namespacedef.cpp and dirdef.cpp directly follow from code similarity.
* | Merge pull request #71 from t-ashula/jqueryxssDimitri van Heesch2014-01-021-3/+3
|\ \ | | | | | | add css-escape to avoid jquery based xss
| * | add css-escape to avoid jquery based xsst-ashula2013-12-151-3/+3
| | |
* | | Merge pull request #77 from albert-github/feature/bug_436885Dimitri van Heesch2014-01-021-2/+2
|\ \ \ | | | | | | | | Bug 436885 - c-source and h-source missing for latex
| * | | Bug 436885 - c-source and h-source missing for latexalbert-github2013-12-311-2/+2
| | |/ | |/| | | | | | | Original title does not cover problem anymore. Problem has evolved to that when clicking on the name for the source file (in LaTeX) a jump to the beginning of the document was made. This problem is fixed with this patch.
* | | Improved performance of rendering large index pages, by replacing images in ↵Dimitri van Heesch2014-01-024-115/+136
|/ / | | | | | | the tables by spans
* | Bug 705220 - Enables using unicode (non ASCII) to name output filesDimitri van Heesch2013-12-302-16/+91
| |
* | Removed generated file src/settings.h from source repositoryDimitri van Heesch2013-12-301-12/+0
| |
* | Reduced and improved functionality of QListDimitri van Heesch2013-12-3059-895/+849
| | | | | | | | | | | | | | | | | | - operations on current index and node (next(), prev(), last(), first()) have been removed. - access to internal nodes has been removed. - old QList has been renamed to QInternalList for use inside qtools only. - added type safe compare, new, and delete operations (compareValues(), newValue(), deleteValue()). - add compareValues also to QDict for consistency. - changed doxygen's implementation to comply with the new QList and QDict interface.
* | More work on the template and context mechanismsDimitri van Heesch2013-12-2914-306/+1284
| |
* | Bug 721032 - Trouble with /cond /endcondDimitri van Heesch2013-12-251-1/+1
| |
* | Bug 720580 - inline source browser shows wrong code with muilti-line c++11's ↵Dimitri van Heesch2013-12-242-2/+2
| | | | | | | | raw strings
* | Bug 712819 - Some external namespaces appear in list despite having ↵Dimitri van Heesch2013-12-242-2/+7
| | | | | | | | ALLEXTERNALS = NO
* | Fixed regression in argument matching for the template exampleDimitri van Heesch2013-12-241-1/+8
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2013-12-243-14/+44
|\ \
| * \ Merge pull request #74 from pianofab/masterDimitri van Heesch2013-12-243-14/+44
| |\ \ | | | | | | | | Add support for honoring svg image format preference in msc
| | * | Add support for honoring svg image format preference in mscFabrizio Oddone2013-12-243-14/+44
| | | |
* | | | Corrected some inconsistencies in the commentsDimitri van Heesch2013-12-233-3/+3
| | | |