summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Bug 746361 - Doxygen thinks C++ class is Objective-CDimitri van Heesch2015-12-271-1/+1
|
* Bug 578720 - [Python] Add pyw as a valid extensionalbert-github2015-12-261-0/+1
| | | | Added pyw as extension, based also on: https://docs.python.org/2/tutorial/appendix.html (15.1.2. Executable Python Scripts)
* Bug 759381 - unable to @ref or @link C++ templated operator overloadsDimitri van Heesch2015-12-191-1/+6
|
* Fixed problem with latex and PDF bookmarksDimitri van Heesch2015-11-221-0/+23
|
* Bug 755080 - xrefitem link to list incorrect when using SHORT_NAMESDimitri van Heesch2015-10-241-5/+1
|
* [Bug 755225] On Windows, generated layout is with UNIX EOLDimitri van Heesch2015-09-191-0/+26
|
* Bug 753500 - $file when using @name is wrongDimitri van Heesch2015-09-141-2/+4
|
* Template enhancements and various other small fixesDimitri van Heesch2015-09-081-1/+34
|
* Merge branch 'feature/bug_extension' of ↵Dimitri van Heesch2015-08-311-2/+19
|\ | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_extension Conflicts: src/util.cpp
| * Make list of default extensions consistent with language mapping listalbert-github2015-08-161-0/+21
| | | | | | | | In the forum a discrepancy was noted between config.l and config.xml (http://doxygen.10944.n7.nabble.com/FILE-PATTERNS-one-custom-plus-all-defaults-td7308.html). The config.xml list was based on the function initDefaultExtensionMapping in util.cpp and the list in the function Config::check in config.l. Now both routines use the same list.
* | Started with generating LaTeX output via the template engineDimitri van Heesch2015-08-271-1/+89
| |
* | Fixed various issues found by PVS-Studio.Dimitri van Heesch2015-08-181-2/+2
|/
* Bug 751984 - PATCH: Honour SOURCE_DATE_EPOCH environment variable for ↵Dimitri van Heesch2015-07-191-0/+30
| | | | reproducible output
* Using tabu package for LaTeX tablesDimitri van Heesch2015-07-121-2/+1
|
* Escape "@" in names as it is not allowed in XML / Docbook names (comming ↵Hauke Wintjen2015-05-271-0/+1
| | | | from anon namespaces)
* Removed dbus XML parser, various refinementsDimitri van Heesch2015-04-191-2/+5
|
* Merge branch 'master' of https://github.com/Cryclops/doxygen into ↵Dimitri van Heesch2015-04-161-1/+1
|\ | | | | | | Cryclops-master
| * Add support for basic XML syntax highlighting.Weston Thayer2015-01-061-1/+1
| |
* | Guarded debug prints against printing a NULL pointer.Dimitri van Heesch2015-04-061-2/+2
| |
* | Fix for rendering the template parameters of members of variadic template ↵Dimitri van Heesch2015-03-221-1/+5
| | | | | | | | classes.
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2015-02-261-4/+2
|\ \
| * | Adding commands \hidecallgraph and \hidecallergraphalbert-github2015-02-221-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the new commands \hidecallgraph and \hidecallergraph it is possible to suppress a call or caller graph even though the corresponding option CALL_GRAPH or CALLER_GRAPH is set. commands.doc config.xml diagrams.doc - updating documentation to support new commands entry.cpp - initialize callgraph and callergraph with the value from the config file commentscan.l - add handling for the new commands context.cpp memberdef.cpp util.cpp - getting the option for CALL_GRAPH and CALLER_GRAPH is not necessary anymore as it is incorporated in the initialization of an Entry item dbusxmlscanner.cpp - initialization is done in the Entry item vhdljjparser.cpp - gBlock was a static variable and therefore initialized before the doxygen main routine started. A Entry element sets now the default for callgraph and callergraph based on the config file and as the config file is not yet known at that moment the value for CALL_GRAPH and CALLER_GRAPH were set to False. By making a pointer of gBlock and doing an appropriate new Entry call this problem is overcome.
* | | Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|/ /
* | Merge pull request #297 from albert-github/feature/dot_index_pngDimitri van Heesch2015-02-211-0/+6
|\ \ | | | | | | Support generating index-color PNG files
| * | Support generating index-color PNG filesalbert-github2015-02-081-0/+6
| | | | | | | | | | | | | | | | | | | | | Based on the request http://stackoverflow.com/questions/27036474/how-do-make-doxygen-generate-index-color-png-files for index colored png files, this functionality will be included in the newer versions (2.39) of dot. The functionality -Tpng:cairo:gd will automatically be used by doxygen, though the file extension would be wrong (.png:cairo:gd). With this patch the :cairo:gd is stripped from the image extension, but not from the -T of the dot command. In the doxywizard the different possibilities are supplied as well. Note however that the DOT_IMAGE_FORMAT name is not checked when read from the Doxyfile so it is possible to use other renderer / formats as well due to the generic solution with getDot ImageExtension.
* | | Added type constraint relations for Java generics to dot graphs and XML outputDimitri van Heesch2015-02-211-2/+9
|/ /
* | increase the size of l when result is modifiedSebastien Loriot2015-01-311-1/+5
| |
* | Update of search from "endless search to 'Character search: criterion.albert-github2015-01-231-1/+2
| | | | | | | | | | Updated search criterion Incremented q, as otherwise ';' remained (visible in PDF).
* | Bug 739680 - Using HTML entities in PROJECT_NAMEalbert-github2015-01-111-1/+30
| | | | | | | | Implementation for LaTeX of special symbols by scanning string in case a & is found.
* | Merge pull request #272 from albert-github/feature/bug_unusedDimitri van Heesch2015-01-031-3/+1
|\ \ | | | | | | Remove unused local and static global variables
| * | Remove unused local and static global variablesalbert-github2014-12-271-3/+1
| |/ | | | | | | Remove unused local and static global variables. Variables have been identified by Understand (version 758) from Scitools.
* | Fixed a couple of cases where sharing string data could lead to corruptionDimitri van Heesch2015-01-021-9/+9
|/ | | | | Also made dangerous string access more visible by introducing rawData(). This replaces data() which will now return a constant string.
* Bug 704090 - Allow Class{T}.Method in cref to refer to a generic class in ↵Dimitri van Heesch2014-12-191-0/+7
| | | | XML comments
* Bug 740218 - Full scope needed when making link inside cross-referenced ↵Dimitri van Heesch2014-12-191-1/+1
| | | | section (fixed regression)
* Merge pull request #253 from albert-github/feature/bug_687576Dimitri van Heesch2014-12-091-3/+12
|\ | | | | Bug 687576 - Add support for LATEX_EXTRA_STYLESHEET
| * Removed some comment statements.albert-github2014-11-291-5/+0
| |
| * Bug 687576 - Add support for LATEX_EXTRA_STYLESHEETalbert-github2014-11-291-3/+17
| | | | | | | | Added the possibility for LATEX_EXTRA_STYLESHEET analogous to HTML_EXTRA_STYLESHEET. Special attention has been paid to the extension as ".sty" is automatically added by the \usepackage
* | Merge pull request #249 from albert-github/feature/bug_latex_single_quotesDimitri van Heesch2014-11-291-0/+2
|\ \ | |/ |/| LaTeX problem with 2 consecutive single quotes
| * LaTeX problem with 2 consecutive single quotesalbert-github2014-11-271-0/+2
| | | | | | | | In LaTeX 2 consecutive single quotes are joined to 1 double quote. This leads in texts where 2 single quotes are intended to a strange view. An example is the initial value for variables. E.g. in Fortran: character(len=10) :: A = '' (i.e an empty string which can either be defined as '' or as "") or in C: char *sq = "''". In the source listings this is OK but in the description text it was not OK.
* | Bug 739863 - Regression: Base classes incorrect when using CRTP with default ↵Dimitri van Heesch2014-11-221-2/+3
| | | | | | | | template parameter
* | Bug 740218 - Full scope needed when making link inside cross-referenced sectionDimitri van Heesch2014-11-171-1/+2
| |
* | Fixed several Coverity warningsDimitri van Heesch2014-11-151-1/+1
|/
* Compilation fixes for Windows for new string implementation.Dimitri van Heesch2014-10-251-2/+2
|
* Introduce new optimized string implementation (attempt 2)Dimitri van Heesch2014-10-231-4/+42
|
* Bug 736386 - [PATCH] Fix another potential null pointer dereference in ↵Dimitri van Heesch2014-09-231-1/+1
| | | | src/util.cpp
* Bug 736385 - [PATCH] Fix potential null pointer dereference in src/util.cppDimitri van Heesch2014-09-231-1/+1
|
* Regression class<T extends V> resulted in class<V> as the page titleDimitri van Heesch2014-09-141-1/+5
|
* Bug 733722 - XML Output invalid: XML_PROGRAMLISTING=YES copies Unicode form ↵Dimitri van Heesch2014-08-151-0/+5
| | | | feed character (U+000C) to XML files
* Made bread crumb trails enabled unconditionallyDimitri van Heesch2014-08-041-8/+10
|
* Merge branch 'feature-groupbreadcrumbs' of ↵Dimitri van Heesch2014-08-041-8/+22
|\ | | | | | | https://github.com/NimbusKit/doxygen into NimbusKit-feature-groupbreadcrumbs