summaryrefslogtreecommitdiffstats
path: root/src/mangen.cpp
Commit message (Collapse)AuthorAgeFilesLines
* bug_674442 CREATE_FOLDERS should not create unused foldersalbert-github2021-06-121-0/+7
| | | | | | Also known as issue #4672 The folders are still created but in case the folders are empty after the doxygen run the directories are removed.
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-44/+44
| | | | | | | | | | | | | | | | | 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 performanceDimitri van Heesch2021-03-281-94/+94
| | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance.
* issue #8375: Lowercase search does not find non-ASCII uppercase pages and ↵Dimitri van Heesch2021-03-221-1/+2
| | | | vice versa
* Refactoring: replace QFile/FTextStream with fstream/stringstreamDimitri van Heesch2021-03-181-54/+51
|
* Refactoring: Replaced QDir with DirDimitri van Heesch2021-03-181-5/+5
| | | | | - Dir is based on ghc::filesystem, a std::filesystem compatible implementation that does not require C++17.
* Disable qregex.h and fix some warnings and issuesDimitri van Heesch2021-02-201-1/+0
|
* Issue #8206: Incorrect XHTML resultsDimitri van Heesch2020-11-271-2/+2
| | | | | | | | | | | | 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
* Fix for broken LaTeX output.Dimitri van Heesch2020-09-271-1/+1
| | | | | | Fixes error: "\begin{DoxyCodeInclude} on input line 93 ended by \end{DoxyCode}" while generating the LaTeX version of the manual
* Refactoring: prepare output generators for multi-threaded useDimitri van Heesch2020-09-271-1/+1
|
* Refactoring: OutputList & OutputGenDimitri van Heesch2020-08-241-9/+17
| | | | | | | | | | | | | | - 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.
* Refactor: modernize configuration valuesDimitri van Heesch2020-06-041-79/+79
|
* Restructure section handlingDimitri van Heesch2020-02-211-12/+12
|
* Minor fixesDimitri van Heesch2019-12-251-142/+126
| | | | | 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 1Dimitri van Heesch2019-12-221-2/+2
|
* Better termination messagealbert-github2019-11-221-4/+2
| | | | | 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.
* Improved const correctness and added support for inline namespacesDimitri van Heesch2019-04-211-1/+1
|
* Merge pull request #6468 from arm-in/masterDimitri van Heesch2018-09-031-1/+1
|\ | | | | Typos found by running "codespell"
| * Update mangen.cppArmin Müller2018-08-211-1/+1
| |
* | Renamed (start/end)SimpleSect to (start/end)Examples.Dimitri van Heesch2018-08-261-3/+22
| |
* | Bug 693515 - The 'Examples:' section; bad/missing style and incorrect spellingalbert-github2018-06-291-1/+1
|/ | | | Made implementation analogous to the implementation for parameters in respect to padding and the use of colon (:).
* Better HTML output for VHDL Portsalbert-github2018-03-291-4/+4
| | | | Small alignment improvement of HTML output for VHDL Ports so that the mode will be in a separate column
* Bug 774138 - Please add HTML classes to "Definition at..." & "Referenced ↵albert-github2016-11-131-1/+1
| | | | | | | by..." for CSS Added class= to html output for "Definition at..." resulting in p.definition in the css file and for "Referenced by .. " and "References ..." resulting in p.definition in css file. (also corrected some error messages).
* For manpages remove trailing dash when no brief descriptionArtur Kink2016-09-251-1/+1
|
* Unified display of enum values across output formats and languagesDimitri van Heesch2016-08-311-3/+10
|
* Style fixes and added numbering to overloaded membersDimitri van Heesch2016-07-301-1/+1
|
* Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-10/+10
| | | | improve performance
* Bug 747780 - man output should escape minus signsalbert-github2015-04-131-0/+1
| | | | Escaped minus sign
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Remove unused local and static global variablesalbert-github2014-12-271-1/+0
| | | | Remove unused local and static global variables. Variables have been identified by Understand (version 758) from Scitools.
* Bug 735482 - [PATCH] Remove a not needed initialization of a local variable ↵Dimitri van Heesch2014-08-301-1/+1
| | | | in src/mangen.cpp
* 651859 - Brief description misplaced in man page outputMattias Ellert2014-08-261-6/+1
|
* Bug 730418 - man page extension is incorrectalbert-github2014-05-201-1/+1
| | | | Test in respect to handling extension was tone wit equal less than / greater than sign and should only be less than and greater than. Resulting in the fact that in case of a chosen extension starting with .0 or .9 an 3 was pre-pended.
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Make the MAN_SUBDIR setting overide the name of the directry the man pages ↵Hakan Ardo2014-01-141-5/+15
| | | | are placed in.
* Release-1.8.3.1-20130402Dimitri van Heesch2013-04-021-7/+33
|
* Release-1.8.3.1-20130324Dimitri van Heesch2013-03-241-1/+1
|
* Release-1.8.3.1Dimitri van Heesch2013-01-201-1/+1
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-2/+1
|
* Release-1.8.2Dimitri van Heesch2012-08-111-2/+2
|
* Release-1.8.0-20120429Dimitri van Heesch2012-04-291-1/+1
|
* Release-1.8.0-20120408Dimitri van Heesch2012-04-081-0/+15
|
* Release-1.7.6.1-20120220Dimitri van Heesch2012-02-201-2/+2
|
* Release-1.7.6.1-20111226Dimitri van Heesch2011-12-261-1/+1
|
* Release-1.7.5Dimitri van Heesch2011-08-141-0/+2
|
* Release-1.7.4-20110727Dimitri van Heesch2011-07-271-7/+50
|
* Release-1.7.4Dimitri van Heesch2011-03-281-7/+30
|
* Release-1.7.3-20110123Dimitri van Heesch2011-01-231-1/+1
|
* Release-1.6.3-20100507Dimitri van Heesch2010-05-071-2/+2
|
* Release-1.6.3-20100418Dimitri van Heesch2010-04-181-1/+4
|