summaryrefslogtreecommitdiffstats
path: root/src/docparser.h
Commit message (Collapse)AuthorAgeFilesLines
* Bug 770660 - Code snippet always shows line numbers from 1albert-github2016-09-031-1/+2
| | | | | | | | | This patch makes the handling of the \snippet and other commands consistent between the different languages (no line numbers anymore with python) and also introduces analogous to \includelineno the command \snippetlineno. Some non relevant changes: - *code.l Calculation of the end line was incorrect, in case of a snippet the end line was the number of lines of the snippet and not reltive to the start line. - *code.l made consistent over the different laguages, enabling exBlock and inlineFragment - testing/indexpage.xml in test 14 the \snippet command was used with python and giving line numbers, linenumbers are now gone (consistency)
* Introducing commands includedoc and snippetdocalbert-github2016-08-211-1/+1
| | | | | Purpose to have the possibility to have repeating texts not repeated in the comments. The commands include and snippet introduce code blocks whilst the commands includedoc and snippetdoc inclode the text as is and it will be parsed by doxygen.
* Bug 746162 - formulas creating invalid HTML codeDimitri van Heesch2015-12-261-3/+11
|
* Bug 756604 - Unable to prevent a numbered listDimitri van Heesch2015-11-011-1/+1
|
* Improved handling of <caption> in tables for LaTeX output.Dimitri van Heesch2015-08-081-8/+15
|
* Using tabu package for LaTeX tablesDimitri van Heesch2015-07-121-2/+17
|
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* various fixes and restructuringDimitri van Heesch2014-12-221-5/+5
|
* Merge branch 'feature/bug_size_latex' of ↵Dimitri van Heesch2014-12-201-1/+10
|\ | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_size_latex Conflicts: src/doctokenizer.h src/latexgen.cpp
| * Limit images sizes and make more uniform (LaTeX)albert-github2014-11-281-2/+11
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adjusts some problems regarding image sizes in LaTeX output of doxygen (a.o. Bug 738299 - When using msc or PlantUML, the default latex for the created image should include [width=\linewidth]) this has been done is such a way that all the "image" commands (i.e. image, dot, dotfile, msc, mscfile, diafile, startuml) operate in a similar way / have the same possibilities. - commands.doc Adjusted documentation to reflect changes. - cmdmapper.cpp - cmdmapper.h Added utility function to map command id back to command name - doctokenizer.h - doctokenizer.l Handle Caption and Size indication. Required also that some other rules had to be tightened a bit (like usage of {} in startuml and usage of "" for captions. This was already described in the documentation in this way). - docparser.cpp - docparser.h Created routine to uniformly handle the Caption and size indications and store them in a general way. - latexgen.cpp Replaced graphicx package by adjustbox package (includes graphicx) to support "min width" etc. - doxygen.sty templates\latex Added commands to make commands with and without caption behave similar. - docbookvisitor.cpp - docbookvisitor.h - htmldocvisitor.cpp - latexdocvisitor.cpp - latexdocvisitor.h - printdocvisitor.h - xmldocvisitor.cpp Created routine to uniformly handle the Caption and size indications in a general way. - indexpage.xml (testing\022) - indexpage.xml (testing\031) - class_receiver.xml (testing\037) - class_sender.xml (testing\037) Adjusted example output.
* Bug 731947 - Support for PlantUMLDimitri van Heesch2014-08-101-1/+1
|
* Docbook output improvementsDimitri van Heesch2014-06-201-1/+1
| | | | | | 1. New Feature: Adapted Class Graph generation for DOCBOOK 2. Fixed DOCBOOK Code documentation formatting 3. Fixed Doxygen to handle FULL_PATH_NAMES for DOCBOOK generation
* Added support for \-- and \--- to prevent interpretation as ndash and mdashDimitri van Heesch2014-04-131-1/+1
|
* Added optional [block] option to \htmlonlyDimitri van Heesch2014-03-291-1/+3
|
* Added \latexinclude command (thanks to Juan Zaratiegui for the patch)Dimitri van Heesch2014-03-271-1/+1
|
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Recognize all HTML4 special character entitiesalbert-github2014-02-081-21/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In doxygen a limited number of HTML4 special character entities are recognized, with this patch the full list of HTML4 special character entities (see http://www.w3.org/TR/html4/sgml/entities.html) is supported (as far as they can be represented in the output format). - doxygen_manual.tex - latexgen.cpp Added wasysym package to support per thousand sign (perthousand command from textcomp didn't work properly) Added option for textcomp package so currency symbol would work properly - htmlcmds.doc Adjusted documentation, listing all entities - compound.xsd - xmlgen.cpp Removed in xsd file all references for special HTML4 character entities and placed placeholder so doxygen (in xmlgen.cpp)can automatically add the right element names. - util.cpp - util.h Define all entities with their representation for all output formats. Define access routines to the different representations Mapping (for recognition of the entities) based on running through the list of available entities, after validation of the order of the entities. A few entities contain now besides letters also numbers at the end. - docparser.h Define symbols for all entities as well as a helper struct and enum. The member m_letter is not used anymore and thus removed. All existing symbols were renamed so no confusion (i.e. errors when forgetting to rename some symbols) can occur. Obsolete references to letter removed, all letters with accents etc. are explicitly defined and not through the generic accent name plus an extra letter. - docparser.cpp Adjust used symbols to their new names. Remove references to letter (as used for accents etc.) Replace list of explicitly supported entities with call to symbol code access routine. - docbookvisitor.cpp - htmldocvisitor.cpp - latexdocvisitor.cpp - mandocvisitor.cpp - perlmodgen.cpp - printdocvisitor.h - rtfdocvisitor.cpp - textdocvisitor.cpp - xmldocvisitor.cpp Replace list of explicitly supported entities with call to access routine and use returned value to output.
* Bug 707713 - Add support for dia diagramsDimitri van Heesch2013-10-061-1/+27
|
* Added @parblock and @endparblock commandsDimitri van Heesch2013-09-241-1/+15
|
* Fixed a number of compiler warnings reported by newer clang compilerDimitri van Heesch2013-09-181-4/+1
|
* Release-1.8.3.1-20130512Dimitri van Heesch2013-05-121-2/+4
|
* Release-1.8.3.1-20130209Dimitri van Heesch2013-02-091-1/+1
|
* Release-1.8.3.1Dimitri van Heesch2013-01-201-1/+1
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-1/+14
|
* Release-1.8.2-20120930Dimitri van Heesch2012-09-301-1/+1
|
* Release-1.8.2Dimitri van Heesch2012-08-111-4/+0
|
* Release-1.8.1.2Dimitri van Heesch2012-07-121-1/+13
|
* Release-1.8.1.1Dimitri van Heesch2012-06-101-72/+54
|
* Release-1.8.0-20120429Dimitri van Heesch2012-04-291-1/+1
|
* Release-1.8.0Dimitri van Heesch2012-03-171-11/+27
|
* Release-1.8.0Dimitri van Heesch2012-02-251-0/+2
|
* Release-1.7.6.1-20120220Dimitri van Heesch2012-02-201-1/+1
|
* Release-1.7.6.1-20120122Dimitri van Heesch2012-01-221-3/+8
|
* Release-1.7.6.1-20120110Dimitri van Heesch2012-01-101-36/+42
|
* Release-1.7.6.1-20111226Dimitri van Heesch2011-12-261-0/+1
|
* Release-1.7.6Dimitri van Heesch2011-12-031-8/+14
|
* Release-1.7.5Dimitri van Heesch2011-08-141-20/+20
|
* Release-1.7.4-20110727Dimitri van Heesch2011-07-271-2/+25
|
* Release-1.7.4-20110606Dimitri van Heesch2011-06-061-1/+1
|
* Release-1.7.4-20110426Dimitri van Heesch2011-04-261-2/+6
|
* Release-1.7.3-20110217Dimitri van Heesch2011-02-171-1/+1
|
* Release-1.7.3-20110123Dimitri van Heesch2011-01-231-1/+1
|
* Release-1.7.2-20101118Dimitri van Heesch2010-11-181-1/+1
|
* Release-1.7.1-20100920Dimitri van Heesch2010-09-201-7/+47
|
* Release-1.7.1Dimitri van Heesch2010-06-251-146/+52
|
* Release-1.6.3-20100507Dimitri van Heesch2010-05-071-177/+176
|
* Release-1.6.3-20100418Dimitri van Heesch2010-04-181-1/+1
|
* Release-1.6.2-20100124Dimitri van Heesch2010-01-241-1/+1
|
* Release-1.6.2Dimitri van Heesch2009-12-301-0/+1
|
* Release-1.6.1-20091027Dimitri van Heesch2009-10-271-9/+14
|