Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Optimize performance by using FILE* instead of ofstream for outputgen | Dimitri van Heesch | 2021-04-27 | 1 | -4/+4 |
| | |||||
* | Fix issues caused by QCString::rawData and QCString::operator[] | Dimitri van Heesch | 2021-04-26 | 1 | -2/+2 |
| | | | | | - methods were marked const but still returned a non-const reference, cause wrongly optimized code for some platforms/compilers | ||||
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | 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 | -6/+7 |
| | | | | | - 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 | -10/+8 |
| | |||||
* | Issue #8206: Incorrect XHTML results | Dimitri van Heesch | 2020-11-27 | 1 | -0/+1 |
| | | | | | | | | | | | | Changes: - Change TooltipManager back into a singleton - Give the OutputList object a unique output id - Increment the id at each startFile() atomically - Pass the id to the HTML code generator - Store tooltips per output id. - Keep track of tooltips that are already written for a given id - for output formats other than HTML the output id is 0 and tooltips are not collected and written | ||||
* | Refactoring: OutputList & OutputGen | Dimitri van Heesch | 2020-08-24 | 1 | -21/+92 |
| | | | | | | | | | | | | | | - Initialized member variables inside the class - Added copy & assign operators for OutputGenerator and Derived classes. - throw a runtime exception when OutputGenerator is copied while is file is still in progress. - Added clone method to make a copy of OutputList. - Moved the implementation of enable() & disable() and friend into OutputGen instead of having the same implementation in each derived class. - Made m_dir and m_fileName readonly (members dir() and fileName()) - Removed call to new while adding generators to OutputList - Replaced QStack by std::stack for the "enabled" state. | ||||
* | Minor fixes | Dimitri van Heesch | 2019-12-25 | 1 | -16/+16 |
| | | | | | Avoid code duplication by adding function addHtmlExtensionIfMissing() and avoid member shadowing by using 'm_' prefix for member variables | ||||
* | Removed exitCode parameter as it is always 1 | Dimitri van Heesch | 2019-12-22 | 1 | -1/+1 |
| | |||||
* | Better termination message | albert-github | 2019-11-22 | 1 | -2/+1 |
| | | | | | In case a `WARN_LOGFILE` is used it in this file no clear whether doxygen finished correctly or exited beforehand in case a fatal error. Now a 'Exiting...' is also given in the warning log file in case an error is a fatal error. | ||||
* | Fixed various issues found by PVS-Studio. | Dimitri van Heesch | 2015-08-18 | 1 | -5/+0 |
| | |||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Updated copyright | Dimitri van Heesch | 2014-02-11 | 1 | -1/+1 |
| | |||||
* | 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 | -1/+2 |
| | |||||
* | Release-1.7.6.1-20120220 | Dimitri van Heesch | 2012-02-20 | 1 | -1/+1 |
| | |||||
* | Release-1.7.4-20110629 | Dimitri van Heesch | 2011-06-29 | 1 | -2/+3 |
| | |||||
* | Release-1.7.4 | Dimitri van Heesch | 2011-03-28 | 1 | -0/+2 |
| | |||||
* | Release-1.7.3-20110123 | Dimitri van Heesch | 2011-01-23 | 1 | -1/+1 |
| | |||||
* | Release-1.6.3-20100603 | Dimitri van Heesch | 2010-06-03 | 1 | -1/+2 |
| | |||||
* | Release-1.6.3-20100507 | Dimitri van Heesch | 2010-05-07 | 1 | -48/+2 |
| | |||||
* | Release-1.6.2-20100124 | Dimitri van Heesch | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Release-1.5.4-20080101 | Dimitri van Heesch | 2008-01-17 | 1 | -5/+3 |
| | |||||
* | Release-1.5.4 | Dimitri van Heesch | 2008-01-16 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20070219 | Dimitri van Heesch | 2007-02-19 | 1 | -4/+31 |
| | |||||
* | Release-1.5.1-20070107 | Dimitri van Heesch | 2007-01-07 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20061202 | Dimitri van Heesch | 2006-12-02 | 1 | -1/+1 |
| | |||||
* | Release-1.4.6-20060507 | Dimitri van Heesch | 2006-05-07 | 1 | -1/+1 |
| | |||||
* | Release-1.4.1 | Dimitri van Heesch | 2005-01-11 | 1 | -1/+1 |
| | |||||
* | Release-1.3.5-20040105 | Dimitri van Heesch | 2004-01-05 | 1 | -1/+1 |
| | |||||
* | Release-1.3-rc2-20030119 | Dimitri van Heesch | 2003-01-19 | 1 | -1/+1 |
| | |||||
* | Doxygen-1.2.13-20020122 | Dimitri van Heesch | 2002-01-22 | 1 | -1/+1 |
| | |||||
* | Release-1.2.5 | Dimitri van Heesch | 2001-02-04 | 1 | -0/+1 |
| | |||||
* | Release-1.2.4-20010107 | Dimitri van Heesch | 2001-01-07 | 1 | -1/+1 |
| | |||||
* | Release-1.1.5_20000709 | Dimitri van Heesch | 2000-07-09 | 1 | -4/+5 |
| | |||||
* | Release 1.1.2 | Dimitri van Heesch | 2000-04-09 | 1 | -0/+3 |
| | |||||
* | Release 2000-04-03 | Dimitri van Heesch | 2000-04-03 | 1 | -1/+2 |
| | |||||
* | Release-1.1.1-20000326 | Dimitri van Heesch | 2000-03-26 | 1 | -1/+1 |
| | |||||
* | Upgrade to 1.1.0 | Dimitri van Heesch | 2000-02-15 | 1 | -1/+16 |
| | |||||
* | mods for doxygen-0.49-990728 | Dimitri van Heesch | 1999-12-15 | 1 | -4/+5 |
| | |||||
* | initial version | Dimitri van Heesch | 1999-12-15 | 1 | -0/+77 |