Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Spelling corrections | albert-github | 2021-04-30 | 1 | -1/+1 |
| | | | | | - small spelling corrections - removing RTF: as this is clear from description. | ||||
* | Merge branch 'feature/bug_xml_settings' of ↵ | Dimitri van Heesch | 2021-04-29 | 1 | -0/+5 |
|\ | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_xml_settings | ||||
| * | Write out used settings when generating XML output | albert-github | 2021-03-28 | 1 | -0/+5 |
| | | | | | | | | | | When generating XML output is is afterwards unknown which settings have been used to generate the XML output, e.g. whether `EXTRACT_PRIVATE` was set or not as the XML output tries to write out all information contained in the sources and not to limit it. By writing out a Doxyfile.xml with all the used settings this can be overcome. | ||||
* | | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit changes the following in relation to string use - The implicit convert from 'QCString' to 'const char *' is removed - Strings parameters use 'const QCString &' as much as possible in favor over 'const char *' - 'if (s)' where s is a QCString has been replaced by 'if(!s.isEmpty())' - data() now always returns a valid C-string and not a 0-pointer. - when passing a string 's' to printf and related functions 'qPrint(s)' is used instead of 's.data()' - for empty string arguments 'QCString()' is used instead of '0' - The copy() operation has been removed - Where possible 'qstrcmp(a,b)==0' has been replaces by 'a==b' and 'qstrcmp(a,b)<0' has been replaced by 'a<b' - Parameters of string type that were default initialized with '= 0' are no initialized with '= QCString()' | ||||
* | | Refactoring: Add TextStream buffer to improve output writing performance | Dimitri van Heesch | 2021-03-28 | 1 | -4/+4 |
|/ | | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance. | ||||
* | Refactoring: replace QFile/FTextStream with fstream/stringstream | Dimitri van Heesch | 2021-03-18 | 1 | -3/+3 |
| | |||||
* | Issue #7831: Error building docs after 0df1623c9363d52a2b04457233dcf2c64319b03c | Dimitri van Heesch | 2020-06-05 | 1 | -1/+0 |
| | |||||
* | Refactor: modernize configuration values | Dimitri van Heesch | 2020-06-04 | 1 | -13/+19 |
| | |||||
* | Remove some doxygen warnings in internal documentation | albert-github | 2019-02-22 | 1 | -0/+2 |
| | | | | Generating the doxygen internal documentation gave some warning messages, these have been corrected. | ||||
* | Bug 751700 - Main page absent in TOC of CHM, if PROJECT_NAME is empty | albert-github | 2018-10-08 | 1 | -1/+1 |
| | | | | In case a string is empty the default should be taken and not left blank. | ||||
* | Difference between standard and used Doxyfile | albert-github | 2018-09-15 | 1 | -0/+5 |
| | | | | | | Writes a the differences between the current configuration and the template configuration. Useful when communicating e.g. in forums. | ||||
* | Changed configuration mechanism to directly access options in order to ↵ | Dimitri van Heesch | 2016-01-17 | 1 | -556/+53 |
| | | | | improve performance | ||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Based on the report of Peter D. Barnes in the doxygen forum ↵ | albert-github | 2015-01-21 | 1 | -1/+17 |
| | | | | | | | (http://doxygen.10944.n7.nabble.com/doxygen-1-8-9-1-upgrade-errors-td6990.html) All lines at the beginning of the file starting with ## are preserved at the beginning of the Doxyfile Consecutive user comments (with +=) are now joined like the options are. | ||||
* | Fixed to small memory leaks | Dimitri van Heesch | 2014-09-28 | 1 | -0/+1 |
| | |||||
* | Extension in config.xml if type=string with format=image | albert-github | 2014-03-01 | 1 | -1/+1 |
| | | | | | | In case of a project logo a preview is shown in the "wizard mode". In "expert mode" only the name is shown. In this patch the config.xml the type=string possibilities are extended with format=image (config.xml, configgen.py, config.h). The doxywizard has been extended so that in "expert mode" this type is supported and that a preview is given (expert.cpp, inputstring.cpp and inputstring.h), furthermore in wizard.cpp a minimum label size has been defined to prevent jumping of the items in case of switching between a message text and an icon. | ||||
* | Updated copyright | Dimitri van Heesch | 2014-02-11 | 1 | -1/+1 |
| | |||||
* | Better message in case doxygen -u is used | albert-github | 2014-02-05 | 1 | -2/+3 |
| | | | | | | | | | | In case of obsolete or not configured entries in the Doxyfile and the option -u is used a message like: Warning: Tag `XML_DTD' at line 1821 of file Doxyfile has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" appears, but the item is removed from the Doxyfile. This patch updates the message (and improves layout) to: Warning: Tag `XML_DTD' at line 1821 of file `Doxyfile' has become obsolete. This tag has been removed. | ||||
* | Bug 693537 - Create possibility to keep user comments in Doxyfile | Dimitri van Heesch | 2013-08-23 | 1 | -1/+2 |
| | |||||
* | Bug 706236 - Confusing use of GENERATE_TAGFILE | Dimitri van Heesch | 2013-08-22 | 1 | -0/+1 |
| | |||||
* | config.xml is now used to generate configoptions.cpp and config.doc | Dimitri van Heesch | 2013-07-28 | 1 | -118/+11 |
| | |||||
* | Release-1.8.3.1-20130512 | Dimitri van Heesch | 2013-05-12 | 1 | -3/+27 |
| | |||||
* | Release-1.8.3.1-20130402 | Dimitri van Heesch | 2013-04-02 | 1 | -6/+45 |
| | |||||
* | Release-1.8.3.1 | Dimitri van Heesch | 2013-01-20 | 1 | -1/+1 |
| | |||||
* | Release-1.8.2-20121118 | Dimitri van Heesch | 2012-11-18 | 1 | -2/+0 |
| | |||||
* | Release-1.8.1.1 | Dimitri van Heesch | 2012-06-10 | 1 | -17/+9 |
| | |||||
* | Release-1.7.6.1-20120220 | Dimitri van Heesch | 2012-02-20 | 1 | -1/+1 |
| | |||||
* | Release-1.7.3-20110123 | Dimitri van Heesch | 2011-01-23 | 1 | -1/+1 |
| | |||||
* | Release-1.7.1 | Dimitri van Heesch | 2010-06-25 | 1 | -22/+23 |
| | |||||
* | Release-1.6.2-20100124 | Dimitri van Heesch | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Release-1.5.9-20090814 | Dimitri van Heesch | 2009-08-14 | 1 | -5/+5 |
| | |||||
* | Release-1.5.7.1-20081206 | Dimitri van Heesch | 2008-12-06 | 1 | -2/+3 |
| | |||||
* | Release-1.5.7.1-20081103 | Dimitri van Heesch | 2008-11-03 | 1 | -0/+28 |
| | |||||
* | Release-1.5.1-20070219 | Dimitri van Heesch | 2007-02-19 | 1 | -0/+3 |
| | |||||
* | Release-1.3.7-20040617 | Dimitri van Heesch | 2004-06-17 | 1 | -2/+8 |
| | |||||
* | Release-1.3.3-20030824 | Dimitri van Heesch | 2003-08-24 | 1 | -2/+9 |
| | |||||
* | Release-1.3.3-20030808 | Dimitri van Heesch | 2003-08-08 | 1 | -1/+21 |
| | |||||
* | Release-1.3-rc3-20030317 | Dimitri van Heesch | 2003-03-17 | 1 | -1/+3 |
| | |||||
* | Release-1.3-rc2-20030106 | Dimitri van Heesch | 2003-01-06 | 1 | -0/+5 |
| | |||||
* | Release-1.2.8-20010723 | Dimitri van Heesch | 2001-07-23 | 1 | -2/+29 |
| | |||||
* | Release-1.2.8-20010715 | Dimitri van Heesch | 2001-07-15 | 1 | -1/+1 |
| | |||||
* | Release-1.2.8 | Dimitri van Heesch | 2001-06-04 | 1 | -77/+38 |
| | |||||
* | Release-1.2.7-20010524 | Dimitri van Heesch | 2001-05-24 | 1 | -22/+120 |
| | |||||
* | Doxygen-1.2.6-20010408 | Dimitri van Heesch | 2001-04-08 | 1 | -5/+11 |
| | |||||
* | Release-1.2.6-20010401 | Dimitri van Heesch | 2001-04-01 | 1 | -145/+426 |
| | |||||
* | Release-1.2.6-20010319 | Dimitri van Heesch | 2001-03-19 | 1 | -1/+2 |
| | |||||
* | Release-1.2.5-20010225 | Dimitri van Heesch | 2001-02-25 | 1 | -113/+122 |
| | |||||
* | Release-1.2.5-20010211 | Dimitri van Heesch | 2001-02-11 | 1 | -1/+3 |
| | |||||
* | Release-1.2.5 | Dimitri van Heesch | 2001-02-04 | 1 | -1/+2 |
| | |||||
* | Release-1.2.4-20010128 | Dimitri van Heesch | 2001-01-28 | 1 | -2/+2 |
| |