summaryrefslogtreecommitdiffstats
path: root/addon
Commit message (Collapse)AuthorAgeFilesLines
* Fix compilation issue in doxyparse.cppDimitri van Heesch2021-05-011-0/+1
|
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-222-38/+33
| | | | | | | | | | | | | | | | | 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()'
* Removing some left over qtoolsalbert-github2021-03-271-1/+0
| | | | Removing some references to removed qtools
* Refactoring: move qcstring and remove qtoolsDimitri van Heesch2021-03-254-12/+6
|
* Refactoring: replace QRegExp by std::regex in doxyparse.cppDimitri van Heesch2021-02-201-3/+2
|
* Merge pull request #8346 from albert-github/feature/bug_doxyw_strlistDimitri van Heesch2021-02-081-2/+2
|\ | | | | Non default value not shown properly in doxywizard
| * Non default value not shown properly in doxywizardalbert-github2021-01-191-2/+2
| | | | | | | | | | In case of a string list with no default values the changed item was not shown with a red color when the list to be used had elements. The test was done against the wrong list.
* | Refactoring: make doxyindexer independent of qtoolsDimitri van Heesch2021-02-062-66/+61
| |
* | Refactoring: Move xml parser to a separate directoryDimitri van Heesch2021-02-062-0/+2
| |
* | Merge pull request #8367 from albert-github/feature/bug_doxyw_splitDimitri van Heesch2021-02-051-0/+4
|\ \ | | | | | | Remove deprecated warnings for QString::SkipEmptyParts in doxywizard
| * | Remove deprecated warnings for QString::SkipEmptyParts in doxywizardalbert-github2021-01-311-0/+4
| | | | | | | | | | | | Qt made `QString::SkipEmptyParts` deprecated (as of version 5.14) in favor of `Qt::SkipEmptyParts`
* | | Merge pull request #8366 from albert-github/feature/bug_doxyw_endlDimitri van Heesch2021-02-052-9/+9
|\ \ \ | | | | | | | | Remove deprecated warnings for endl in doxywizard
| * | | Remove deprecated warnings for endl in doxywizardalbert-github2021-01-312-9/+9
| |/ / | | | | | | | | | Qt made `endl` deprecated (as of version 5.15) in favor of `Qt:endl`, to compile with Qt4 and (all) Qt5 we use the more system independent `\n`.
* | | Detect generateDS and recreate index.py/compound.py automaticallyDimitri van Heesch2021-02-032-9/+25
| | |
* | | Replace the C++ doxmlparser libary by a python based moduleDimitri van Heesch2021-02-0244-10304/+24616
|/ /
* | Refactoring: restore a few qtools headers still used by doxmlparserDimitri van Heesch2021-01-231-31/+31
| |
* | Refactoring: modernize IncludeInfo listDimitri van Heesch2021-01-221-2/+2
| |
* | Refactoring: modernize MemberListDimitri van Heesch2021-01-221-8/+4
|/
* Update doxywizard copyright (year)Dimitri van Heesch2021-01-081-2/+2
|
* GitHub actions experiments (#8305)Dimitri van Heesch2021-01-041-3/+15
| | | | | | | | Changes: - Build for Ubuntu-18.04 (gcc) and Ubuntu-20.04 (clang) - Build with libclang (Ubuntu 20.04) - Build with use_search enabled (Ubuntu 18.04) - Build with use_wizard enabled
* Refactoring: remove unused Doxygen::entryDBFileName and Doxygen::objDBFileNameDimitri van Heesch2021-01-012-5/+0
|
* issue #8282 Error on ALIAS declaration without quotesalbert-github2020-12-292-30/+40
| | | | | - also escape a "," (comma) when writing out string values (doxygen and doxywizard) - check on empty lists in stringlist for the wizard
* Workaround for older versions of QtDimitri van Heesch2020-12-271-3/+4
| | | | That don't support QByteArray::toStdString()
* Refactoring: Fix some issues in reporting warnings for Doxywizard's config ↵Dimitri van Heesch2020-12-251-3/+3
| | | | parser
* Refactoring: removed some dead codeDimitri van Heesch2020-12-251-140/+0
|
* Refactoring: better processing of (un)quoted values for tags in the ↵Dimitri van Heesch2020-12-251-24/+266
| | | | configuration file (part 2)
* Refactoring: replaced getNamespaceSDict() by getNamespaces()Dimitri van Heesch2020-12-231-2/+2
|
* Merge pull request #8263 from albert-github/feature/bug_addon_versionDimitri van Heesch2020-12-219-27/+130
|\ | | | | Usage of version and help in addons
| * Usage of version and help in addonsalbert-github2020-12-199-27/+130
| | | | | | | | More consequent and consistent usage of help and version in addons.
* | Merge branch 'ClassSDict'Dimitri van Heesch2020-12-192-12/+7
|\ \ | |/ |/|
| * Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMapDimitri van Heesch2020-12-192-12/+7
| |
* | Show configuration warnings unconditionally in the doxywizardalbert-github2020-12-171-38/+11
|/ | | | Show the configuration warnings in the doxywizard unconditionally so there is no need to use the `--debug` option
* Improvements of reading the configuration filealbert-github2020-12-169-63/+138
| | | | | | - making the parsing of the configuration consistent with the reading of the configuration file a doxygen run - adding a number of warnings in case of problems in the configuration file - making the configuration warnings better visible (popping up the "Output log Window").
* Recent file list of doxywizard not cleared properlyalbert-github2020-12-151-1/+1
| | | | | Only half of the items in the list of recently loaded configuration files were removed, (One notices this e.g. after clearing the list, leave the wizard, start wizard and look in the recent loaded files list)
* Incorrect end tag in doxywizardalbert-github2020-12-144-4/+4
| | | | The closing `</qt` was not properly closed to `</qt>`.
* Correction of spelling errorsalbert-github2020-12-031-2/+2
| | | | Correction of spelling errors (as found by Fossies).
* Merge pull request #8219 from analizo/fix-doxyparse-yaml-output-syntaxDimitri van Heesch2020-12-021-2/+2
|\ | | | | quotes added surrounding inheritance tokens on doxyparse output
| * quotes added surrounding inheritance tokens on doxyparse outputJoenio Marques da Costa2020-12-011-2/+2
| | | | | | | | closes analizo/analizo#173
* | add .md extension on Doxyparse README docJoenio Marques da Costa2020-12-011-0/+0
| | | | | | | | closes analizo/analizo#169
* | better description of Doxyparse on README docJoenio Marques da Costa2020-12-011-13/+25
|/ | | | closes analizo/analizo#169
* fix: convert links to the main doxygen site to https. Trailing whitespace ↵Allan Bowe2020-11-291-1/+1
| | | | was also removed (hope this is ok, was a default setting). Closes #8212
* issue #8184 Bad parsing of CMakeLists.txtalbert-github2020-11-241-1/+1
| | | | | | - Removing the `txt` and `doc` extension from the default list of `FILE_PATTERNS - Updating documentation - Incorrect parsing for the doxywizard of some \ref items (i.e. when the description contains a space, made compatible again with that happens in configgen.py).
* Fix compile issue for doxyparse.cppDimitri van Heesch2020-11-211-2/+3
| | | | This regression was introduced after removing support for isVisited/setVisited
* Show QT version in doxywizardalbert-github2020-11-131-2/+17
| | | | When debugging problems in respect to the doxywizard it always good to know with which version the doxywizard has been build a which runtime version is being used(especially when not linking statically)
* Merge pull request #8128 from albert-github/feature/bug_configDimitri van Heesch2020-11-065-89/+234
|\ | | | | Incorrect handling of string with spaces and no quotes
| * Incorrect handling of string with spaces and no quotesalbert-github2020-10-252-4/+4
| | | | | | | | Correcting some (Cygwin) compilation warnings / errors
| * Incorrect handling of string with spaces and no quotesalbert-github2020-10-255-88/+233
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During some tests on the documentation of LLVM the (CMake generated) doxygen configuration file contained the line: ``` DOT_PATH=D:\Program Files (x86)\Graphviz2.38\bin\dot.exe ``` and this was interpreted by doxygen as ``` DOT_PATH = D:\ProgramFiles(x86)\Graphviz2.38\bin\dot.exe ``` without any message other than that later on the `dot` executable could not be found. It is clear that here the double quotes were missing. This problem has been solved by giving a warning and setting the value to the default value. - configimpl.l - config_doxyw.l during the checking some debug facilities for the doxywizard were required and this has been implemented: - config_doxyw.l - doxywizard.h - doxywizard.cpp it was also discovered that in case of none existing int or bool values were specified the wrong "defaults" were taken (it was set to `0` / `false`), now the correct defaults are taken - inputbool.cpp - inputint.cpp
* | Handling Enable / Disable menu items (doxywizard)albert-github2020-11-032-2/+15
| | | | | | | | | | Only enable menu item "Reset to factory defaults" in case the current settings are different from the default settings. Only enable "Clear recent list" and "Open recent" in case there are recent files.
* | Merge pull request #8152 from albert-github/feature/bug_doxyw_strlist_defaultDimitri van Heesch2020-11-021-13/+52
|\ \ | | | | | | Incorrect checking between default and used values for strList in doxywizard
| * | Incorrect checking between default and used values for strList in doxywizardalbert-github2020-11-021-13/+52
| | | | | | | | | | | | | | | In case we use a default doxygen configuration file `doxygen -g` and use this as `doxywizard Doxyfile` we would expect not to see any differences between the used values and the default values, though we see in expert tab that `ABBREVIATE_BRIEF`, `STRIP_FROM_PATH` and `INPUT` don't have the default values (item is "red"). This can also be observed in the run tab when selecting "Condensed" "Show configuration". In the `isDefault()` not only the `strList` itself should be tested but also its values.