Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | -2/+3 |
| | | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance. | ||||
* | Refactoring: make qcstring.h a local include | Dimitri van Heesch | 2021-03-26 | 1 | -1/+1 |
| | |||||
* | Refactoring: replace QFile/FTextStream with fstream/stringstream | Dimitri van Heesch | 2021-03-18 | 1 | -3/+2 |
| | |||||
* | Refactoring: move Doc*Visitor::push/popEnabled | Dimitri van Heesch | 2021-01-22 | 1 | -16/+8 |
| | | | | New class & name: DocVisitor::push/popHidden | ||||
* | Remove not used class | albert-github | 2019-07-07 | 1 | -2/+0 |
| | | | | | | | As per comment in `docvisitor.h`: ``` class DocCopy; // TODO: no longer generated => remove ``` | ||||
* | Improved const correctness and added support for inline namespaces | Dimitri van Heesch | 2019-04-21 | 1 | -2/+2 |
| | |||||
* | Restructured code to avoid the need for global state | Dimitri van Heesch | 2018-11-25 | 1 | -2/+2 |
| | |||||
* | Incorrect number of start / end paragraph tags for xhtml with htmlonly | albert-github | 2018-11-24 | 1 | -2/+2 |
| | | | | | In case of `\htmlonly[block]` the a force closed paragraph is not always force opened again. Problem can be seen with the default doxygen test 20 (`[020_only.dox]: test the \*only and \*endonly commands`). | ||||
* | issue_6517: Emoji support | albert-github | 2018-10-01 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added issue support for the different output types. - Sources of the emoji - based on the Unicode definition v11.0: - https://unicode.org/emoji/charts/full-emoji-list.html - http://www.unicode.org/emoji/charts/full-emoji-modifiers.html - github definition list: - https://api.github.com/emojis - Input of emoji: :<test>: with the restriction that direct after the opening colon and direct before the closing colon no space is allowed - doctokinizer.l, adding detection of emoji and new command `\:` - doktokinizer.h, adding "word" type TK_EMOJI - docparser.* handling of new "word" type TK_EMOJI (analogous to HTML Entities), handling of new command `\:` - cmdmapper,cpp, cmdmapper.h, adding new command `\:` - htmlentity.cpp, adding new definition required for new command `\:` - Emoji - emoji.cpp, emoji.h, class for handling emoji analogous to HTML Entities, including small directions on how to update the code when a new emoji is defined. Not everything is converted to lowercase for comparison and accents are removed. - doxygen.cpp possibility to create list of supported emoji - handling emoji for output types (analogous to HTML Entities), see documentation for different output types - docparser.h, *docvisitor.* - rtfdocvisitor.* converting output to UTF-16 (based on http://scruss.com/blog/2017/03/12/in-the-unlikely-event-you-need-to-represent-emoji-in-rtf-using-perl/) - latexdocvisitor.*, handling arguments for emoji in output (see also latexgen.cpp for meaning of the arguments of doxygenemoji). - latexgen.cpp, adding new latex command for doxygen (doxygenemoji) and prevent too many open file (code before documentclass) - config.xml, definition of `LATEX_EMOJI_DIRECTORY` with path to images required for LaTeX output - Documentation: - emojisup.doc, user description - commands.doc, description of new command `\:` - index.doc, reference to emoji chapter - xmlcmds.doc, adjust reference to next chapter as a new chapter is added - Doxyfile*, adding emoji chapter Build system - CMakeLists.txt adding new files | ||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Bug 731947 - Support for PlantUML | Dimitri van Heesch | 2014-08-10 | 1 | -0/+1 |
| | |||||
* | Updated copyright | Dimitri van Heesch | 2014-02-11 | 1 | -1/+1 |
| | |||||
* | Bug 707713 - Add support for dia diagrams | Dimitri van Heesch | 2013-10-06 | 1 | -0/+3 |
| | |||||
* | Added @parblock and @endparblock commands | Dimitri van Heesch | 2013-09-24 | 1 | -0/+2 |
| | |||||
* | Fixed a number of compiler warnings reported by newer clang compiler | Dimitri van Heesch | 2013-09-18 | 1 | -2/+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 | -0/+2 |
| | |||||
* | Release-1.8.2 | Dimitri van Heesch | 2012-08-11 | 1 | -1/+5 |
| | |||||
* | Release-1.8.0-20120408 | Dimitri van Heesch | 2012-04-08 | 1 | -0/+1 |
| | |||||
* | Release-1.7.6.1-20120220 | Dimitri van Heesch | 2012-02-20 | 1 | -1/+1 |
| | |||||
* | Release-1.7.6.1-20120110 | Dimitri van Heesch | 2012-01-10 | 1 | -0/+2 |
| | |||||
* | Release-1.7.4-20110727 | Dimitri van Heesch | 2011-07-27 | 1 | -0/+1 |
| | |||||
* | Release-1.7.3-20110123 | Dimitri van Heesch | 2011-01-23 | 1 | -1/+1 |
| | |||||
* | Release-1.7.1-20100920 | Dimitri van Heesch | 2010-09-20 | 1 | -0/+2 |
| | |||||
* | Release-1.6.3-20100507 | Dimitri van Heesch | 2010-05-07 | 1 | -9/+8 |
| | |||||
* | Release-1.6.2-20100124 | Dimitri van Heesch | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Release-1.5.9-20090622 | Dimitri van Heesch | 2009-06-22 | 1 | -0/+1 |
| | |||||
* | Release-1.5.9-20090522 | Dimitri van Heesch | 2009-05-22 | 1 | -0/+4 |
| | |||||
* | Release-1.5.4-20080101 | Dimitri van Heesch | 2008-01-17 | 1 | -2/+2 |
| | |||||
* | Release-1.5.4 | Dimitri van Heesch | 2008-01-16 | 1 | -1/+1 |
| | |||||
* | Release-1.5.3-20070925 | Dimitri van Heesch | 2007-09-25 | 1 | -2/+2 |
| | |||||
* | Release-1.5.1-20070315 | Dimitri van Heesch | 2007-03-15 | 1 | -0/+1 |
| | |||||
* | Release-1.5.1-20070219 | Dimitri van Heesch | 2007-02-19 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20070107 | Dimitri van Heesch | 2007-01-07 | 1 | -2/+3 |
| | |||||
* | 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.3-20050615 | Dimitri van Heesch | 2005-06-15 | 1 | -7/+5 |
| | |||||
* | Release-1.4.1 | Dimitri van Heesch | 2005-01-11 | 1 | -1/+1 |
| | |||||
* | Release-1.3.9.1-20041228 | Dimitri van Heesch | 2004-12-28 | 1 | -2/+2 |
| | |||||
* | Release-1.3.7-20040718 | Dimitri van Heesch | 2004-07-18 | 1 | -1/+1 |
| | |||||
* | Release-1.3.6-20040324 | Dimitri van Heesch | 2004-03-24 | 1 | -1/+1 |
| | |||||
* | Release-1.3.5-20040105 | Dimitri van Heesch | 2004-01-05 | 1 | -1/+1 |
| | |||||
* | Release-1.3.3-20030915 | Dimitri van Heesch | 2003-09-15 | 1 | -0/+1 |
| | |||||
* | Release-1.3-20030421 | Dimitri van Heesch | 2003-04-21 | 1 | -0/+1 |
| | |||||
* | Release-1.3-rc2-20030119 | Dimitri van Heesch | 2003-01-19 | 1 | -1/+6 |
| | |||||
* | Release-1.2.18-20021106 | Dimitri van Heesch | 2002-11-06 | 1 | -2/+2 |
| | |||||
* | Release-1.2.18-20021006 | Dimitri van Heesch | 2002-10-06 | 1 | -0/+2 |
| | |||||
* | Release-1.2.18-20020927 | Dimitri van Heesch | 2002-09-27 | 1 | -3/+3 |
| | |||||
* | Release-1.2.17-20020915 | Dimitri van Heesch | 2002-09-15 | 1 | -2/+1 |
| |