summaryrefslogtreecommitdiffstats
path: root/src/config.l
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'feature/bug_extension' of ↵Dimitri van Heesch2015-08-311-65/+1
|\ | | | | | | | | | | | | 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-65/+1
| | | | | | | | 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.
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2015-08-301-2/+3
|\ \
| * \ Merge pull request #382 from albert-github/feature/bug_config_typoDimitri van Heesch2015-08-291-2/+2
| |\ \ | | | | | | | | Correcting print format error in config.l
| | * | Correcting print format error in config.lalbert-github2015-08-161-2/+2
| | |/ | | | | | | | | | This patch corrects a format error in config.l, and a spelling error in comment.
| * | Stop when doxygen configuration file ("Doxyfile") cannot be readalbert-github2015-08-231-0/+1
| |/ | | | | | | | | When the configuration file cannot be read a default configuration is used ad as the error message "error: cannot open file `Doxyfile' for reading" is show at the top of the output this is easily overseen. By stopping the doxygen process it is made clearer that there is an error.
* | Started with generating LaTeX output via the template engineDimitri van Heesch2015-08-271-2/+3
| |
* | Add mathjax support to template & context.Dimitri van Heesch2015-08-271-0/+6
|/
* drop #include <unistd.h>Adrian Negreanu2015-05-151-1/+2
| | | | Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Merge pull request #273 from albert-github/feature/bug_configDimitri van Heesch2015-02-211-47/+65
|\ | | | | Consistency in handling HTML and LaTeX in respect to header and footer
| * Consistency in handling HTML and LaTeX in respect to header and footeralbert-github2014-12-281-47/+65
| | | | | | | | | | There was a discrepancy in the handling of the header and footer files between HTML and LaTeX. Also the wrong error / warning routine was called and the config_err and config_warn have been made more consistent with the messages(.cpp)
* | Correction on previous commit (wrong file)albert-github2015-01-221-9/+6
| |
* | Based on the report of Peter D. Barnes in the doxygen forum ↵albert-github2015-01-211-0/+13
| | | | | | | | | | | | | | (http://doxygen.10944.n7.nabble.com/doxygen-1-8-9-1-upgrade-errors-td6990.html) All lines at the beginning of the file starting with ## are preserved at the beginning of the Doxyfile Consecutive user comments (with +=) are now joined like the options are.
* | Bug 742408 - Configuring doxyfile to only output docbook produces erroneous ↵albert-github2015-01-061-0/+1
| | | | | | | | | | | | warning Added missing test in list
* | Merge pull request #272 from albert-github/feature/bug_unusedDimitri van Heesch2015-01-031-8/+0
|\ \ | | | | | | Remove unused local and static global variables
| * | Remove unused local and static global variablesalbert-github2014-12-271-8/+0
| |/ | | | | | | 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-5/+5
|/ | | | | Also made dangerous string access more visible by introducing rawData(). This replaces data() which will now return a constant string.
* Bug 731947 - Support for PlantUMLDimitri van Heesch2014-08-101-0/+31
|
* Disabled config dependency check to avoid regressionDimitri van Heesch2014-03-231-0/+4
|
* Removed message, minor restructuringDimitri van Heesch2014-03-231-6/+7
|
* config.l: dependency checks for booleansAdrian Negreanu2014-03-061-0/+19
| | | | | | | | Disable the boolean option that has its dependency disabled. This fixes the case where GENERATE_TREE_VIEW is set to TRUE even when its dependency GENERATE_HTML is FALSE. Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Better message in case doxygen -u is usedalbert-github2014-02-051-9/+28
| | | | | | | | | | In case of obsolete or not configured entries in the Doxyfile and the option -u is used a message like: Warning: Tag `XML_DTD' at line 1821 of file Doxyfile has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" appears, but the item is removed from the Doxyfile. This patch updates the message (and improves layout) to: Warning: Tag `XML_DTD' at line 1821 of file `Doxyfile' has become obsolete. This tag has been removed.
* Reduced and improved functionality of QListDimitri van Heesch2013-12-301-15/+13
| | | | | | | | | - operations on current index and node (next(), prev(), last(), first()) have been removed. - access to internal nodes has been removed. - old QList has been renamed to QInternalList for use inside qtools only. - added type safe compare, new, and delete operations (compareValues(), newValue(), deleteValue()). - add compareValues also to QDict for consistency. - changed doxygen's implementation to comply with the new QList and QDict interface.
* Debug output for lexical analyzerAlbert2013-11-171-1/+6
| | | | | | The previous commit (pull request) was missing the debug output possibility for config.l and partial for doctokinizer.l. The later is called on different places by means of the generic definition doctokinizerYYlex, which is declared by means of YY_DECL. To be able to add the debug output the YY_DECL had to be redefined to be a new function and the new function, with the debug output possibility, has to be called through the original function name.
* Bug 707713 - Add support for dia diagramsDimitri van Heesch2013-10-061-1/+24
|
* Bug 693537 - Create possibility to keep user comments in DoxyfileDimitri van Heesch2013-08-231-1/+1
|
* Bug 706236 - Confusing use of GENERATE_TAGFILEDimitri van Heesch2013-08-221-1/+14
|
* config.xml is now used to generate configoptions.cpp and config.docDimitri van Heesch2013-07-281-117/+91
|
* Bug 703301 - Misleading warning about DOT fontDimitri van Heesch2013-06-301-1/+1
|
* Bug 702590 - Crash with TAB_SIZE=-1Dimitri van Heesch2013-06-181-1/+4
|
* Release-1.8.4Dimitri van Heesch2013-05-191-2/+3
|
* Release-1.8.3.1-20130512Dimitri van Heesch2013-05-121-43/+74
|
* Release-1.8.3.1-20130402Dimitri van Heesch2013-04-021-4/+53
|
* Release-1.8.3.1Dimitri van Heesch2013-01-201-1/+1
|
* Release-1.8.3Dimitri van Heesch2012-12-261-19/+2
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-0/+7
|
* Release-1.8.1.2-20120729Dimitri van Heesch2012-07-291-4/+6
|
* Release-1.8.1.2Dimitri van Heesch2012-07-121-1/+1
|
* Release-1.8.0-20120408Dimitri van Heesch2012-04-081-9/+9
|
* Release-1.8.0Dimitri van Heesch2012-03-171-7/+11
|
* Release-1.8.0Dimitri van Heesch2012-02-251-4/+4
|
* Release-1.7.6.1-20120220Dimitri van Heesch2012-02-201-1/+1
|
* Release-1.7.6.1-20120110Dimitri van Heesch2012-01-101-3/+10
|
* Release-1.7.6Dimitri van Heesch2011-12-031-8/+16
|
* Release-1.7.5Dimitri van Heesch2011-08-141-0/+2
|
* Release-1.7.4Dimitri van Heesch2011-03-281-0/+7
|
* Release-1.7.3-20110123Dimitri van Heesch2011-01-231-1/+13
|
* Release-1.7.2-20101224Dimitri van Heesch2010-12-241-0/+1
|