Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make templated HTML output more similar to hardcoded output. | Dimitri van Heesch | 2021-05-20 | 1 | -26/+16 |
| | |||||
* | classes incorrectly appeared in the navgiation index | Dimitri van Heesch | 2021-04-24 | 1 | -4/+5 |
| | | | | | When GENERATE_TREEVIEW was enabled and the classlist was disabled in the DoxygenLayout.xml | ||||
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -223/+223 |
| | | | | | | | | | | | | | | | | | 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()' | ||||
* | issue #8498: Concepts do not respect groups in tree view | Dimitri van Heesch | 2021-04-13 | 1 | -23/+17 |
| | |||||
* | issue #2732: Adding support for C++ concepts (Origin: bugzilla #499352) | Dimitri van Heesch | 2021-04-08 | 1 | -14/+291 |
| | |||||
* | Refactoring: Add TextStream buffer to improve output writing performance | Dimitri van Heesch | 2021-03-28 | 1 | -11/+11 |
| | | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance. | ||||
* | Refactoring: move qcstring and remove qtools | Dimitri van Heesch | 2021-03-25 | 1 | -1/+1 |
| | |||||
* | Refactoring: replace QGString by std::ostringstream | Dimitri van Heesch | 2021-03-23 | 1 | -8/+8 |
| | |||||
* | issue #8375: Lowercase search does not find non-ASCII uppercase pages and ↵ | Dimitri van Heesch | 2021-03-22 | 1 | -18/+21 |
| | | | | vice versa | ||||
* | Refactoring: replace QFile/FTextStream with fstream/stringstream | Dimitri van Heesch | 2021-03-18 | 1 | -41/+29 |
| | |||||
* | Refactoring: some cleanup and removed text direction logic | Dimitri van Heesch | 2021-03-04 | 1 | -3/+3 |
| | |||||
* | Refactoring: replace QTextStream by ifstream | Dimitri van Heesch | 2021-03-03 | 1 | -1/+0 |
| | |||||
* | Disable qregex.h and fix some warnings and issues | Dimitri van Heesch | 2021-02-20 | 1 | -1/+0 |
| | |||||
* | Refactoring: replace QRegExp by std::regex in util.cpp | Dimitri van Heesch | 2021-02-20 | 1 | -4/+4 |
| | |||||
* | Regression: invalid LaTeX output for file index | Dimitri van Heesch | 2021-02-08 | 1 | -2/+4 |
| | | | | | - found when running tests with TEST_FLAGS="--pdf" - due to an empty list when using FULL_PATH_NAMES = YES | ||||
* | Refactoring: qtools cleanup + remove QDateTime use from rtfgen.cpp | Dimitri van Heesch | 2021-02-05 | 1 | -1/+0 |
| | |||||
* | Refactoring: modernize FileList | Dimitri van Heesch | 2021-01-22 | 1 | -31/+13 |
| | |||||
* | Refactoring: modernize OutputNameList/OutputNameDict | Dimitri van Heesch | 2021-01-22 | 1 | -27/+31 |
| | |||||
* | Refactoring: modernize IncludeInfo list | Dimitri van Heesch | 2021-01-22 | 1 | -1/+1 |
| | |||||
* | Refactoring: modernize MemberList | Dimitri van Heesch | 2021-01-22 | 1 | -23/+11 |
| | |||||
* | Refactoring: modernize LayoutNavEntry and LayoutDocEntry lists | Dimitri van Heesch | 2021-01-22 | 1 | -33/+19 |
| | |||||
* | issue #8335: "failed to run html help compiler on index.hhp" with doxygen is ↵ | Dimitri van Heesch | 2021-01-16 | 1 | -1/+2 |
| | | | | 1.9.1 | ||||
* | bug 668003 Default LaTeX header misses $-placeholders | albert-github | 2021-01-05 | 1 | -4/+1 |
| | | | | Create, analogous to HTML, also for LaTeX default header and footer files. | ||||
* | Refactoring: avoid copying MemberLists by not embedding them directly | Dimitri van Heesch | 2021-01-04 | 1 | -2/+2 |
| | |||||
* | Refactoring: modernize getMemberLists() | Dimitri van Heesch | 2021-01-04 | 1 | -6/+4 |
| | |||||
* | Refactoring: replace Doxygen::directories by Doxygen::dirLinkedMap | Dimitri van Heesch | 2021-01-01 | 1 | -11/+7 |
| | |||||
* | Refactoring: replace Doxygen::groupSDict by Doxygen::groupLinkedMap | Dimitri van Heesch | 2020-12-31 | 1 | -17/+11 |
| | |||||
* | Refactoring: replaced PageSDict by PageLinked*Map | Dimitri van Heesch | 2020-12-31 | 1 | -42/+26 |
| | |||||
* | Refactoring: change MemberGroupSDict to MemberGroupList | Dimitri van Heesch | 2020-12-30 | 1 | -1/+1 |
| | |||||
* | Fix size_t->int related compiler warnings on Windows 64bit | Dimitri van Heesch | 2020-12-30 | 1 | -4/+4 |
| | |||||
* | Refactoring: modernise member indices | Dimitri van Heesch | 2020-12-30 | 1 | -257/+151 |
| | |||||
* | Refactoring: replace NamespaceSDict by NamespaceLinkedMap | Dimitri van Heesch | 2020-12-23 | 1 | -19/+11 |
| | |||||
* | Refactoring: replaced getNamespaceSDict() by getNamespaces() | Dimitri van Heesch | 2020-12-23 | 1 | -124/+151 |
| | |||||
* | Merge pull request #8265 from albert-github/feature/bug_bld_warn | Dimitri van Heesch | 2020-12-21 | 1 | -2/+2 |
|\ | | | | | Remove some build warnings | ||||
| * | Remove some build warnings | albert-github | 2020-12-20 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | Removing some build warnings like: ``` D:\a\doxygen\doxygen\src\groupdef.cpp(628): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data D:\a\doxygen\doxygen\src\index.cpp(3950): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data ``` | ||||
* | | Refactoring: modernize class index | Dimitri van Heesch | 2020-12-21 | 1 | -297/+130 |
|/ | |||||
* | Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMap | Dimitri van Heesch | 2020-12-19 | 1 | -119/+90 |
| | |||||
* | issue #8246 The prefix &#х202А; for files is displayed incorrectly in the ↵ | albert-github | 2020-12-14 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | file names. Each index generator should handle its Left-To-Right / Right-To-Left handling on its own as otherwise we get for e.g. treeview in the js file: ``` [ "\u202A‪afx3.h", "a00002_source.html", null ] ``` instead of: ``` [ "\u202A;afx3.h", "a00002_source.html", null ] ``` resulting in the problems from this issue. in the htmlhelp (index.hhc): ``` ... value="‪‪afx3.h" ... ``` i.e. a double `‪` which is not nice. In "XML" type formats (not the doxygen xml output!), here qhp index.qhp: ``` ... title="&#x202A;afx3.h" ... ``` where the LTR sequence is escaped. | ||||
* | Refactoring: remove isVisited/setVisited from index | Dimitri van Heesch | 2020-11-15 | 1 | -18/+16 |
| | |||||
* | Refactoring: replacing dynamic_cast by static_cast to improve performance | Dimitri van Heesch | 2020-11-13 | 1 | -1/+1 |
| | |||||
* | Refactoring: Introduce immutable and mutable interfaces | Dimitri van Heesch | 2020-11-09 | 1 | -3/+4 |
| | | | | | | Split Definition/ClassDef/NamespaceDef/MemberDef into a immutable and mutable part Aliases are immutable, other symbols are stored using an immutable interface but can be made mutable explicitly by dynamic casting. | ||||
* | Refactoring: Remove unused DefinitionIntf and DefinitionList classes | Dimitri van Heesch | 2020-10-23 | 1 | -1/+1 |
| | |||||
* | Refactoring: modernize TooltipManager class and source reference lists | Dimitri van Heesch | 2020-10-20 | 1 | -1/+0 |
| | | | | | - Tooltips are now collected per file instead of globally - Source reference lists now use STL containers | ||||
* | issue #8103: C++ Table of content, namespace list does not contains ↵ | Dimitri van Heesch | 2020-10-19 | 1 | -5/+5 |
| | | | | namespace without class (part 2) | ||||
* | issue #8103: C++ Table of content, namespace list does not contains ↵ | Dimitri van Heesch | 2020-10-19 | 1 | -304/+291 |
| | | | | namespace without class | ||||
* | Performance tweak: Pass BaseClassList by const reference | Dimitri van Heesch | 2020-10-17 | 1 | -1/+1 |
| | |||||
* | Refactoring: Modernize BaseClassList | Dimitri van Heesch | 2020-10-12 | 1 | -7/+6 |
| | |||||
* | Reworked changes a bit | Dimitri van Heesch | 2020-10-04 | 1 | -1/+1 |
| | | | | | | - topLine is replaced by startLine - changed unputDocnl macro into a more self contained function-like macro | ||||
* | Miscounting of lines in respect to page command | albert-github | 2020-09-24 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | All examples together are a bit big so they are all in the attached file together with the warnings before and after this patch. When looking at the output we see that a number of lines are off by 1 ore more due to the insertion of extra lines in the code or due to the fact that there is a reference to the start of the documentation of the page and not the line of the page command. - commentscan.l in case of a rule contaiinge {DOCNL} this can be `=n` or `\ilinebr` in the later case this should not be replaced by `\n` as this results in an increase of the line count later on. in case of a page like command also register the line of the command as "topline". - entry.h, entry.cpp storage space for the "topline" registering the line of the page like commands. - doxygen.cpp setting and using the "topline" - markdown.cpp, markdown.h don't add a `\n` as this increases the line count but use the `\ilinebr` to get correct warnings see to it that when having empty lines at the top of the page and a page is added that the empty lines appear after the page command. - index.cpp using the "topline" instead of the "docLine" to get the correct warning - pagedef.cpp, pagedef.h set and retrieve the "topline" for page like commands. - util.cpp, util.h setting and using the "topline" in `addRelatedPage` use the known file name and line for the warning regarding the section label - cite.cpp, context.cpp, reflist.cpp changed to have good function calls. | ||||
* | Refactor: modernize markdown and make it thread-safe | Dimitri van Heesch | 2020-06-16 | 1 | -9/+16 |
| |