summaryrefslogtreecommitdiffstats
path: root/doc/commands.doc
Commit message (Collapse)AuthorAgeFilesLines
...
* Corrected small typealbert-github2017-05-031-2/+2
|
* Bug 770660 - Code snippet always shows line numbers from 1albert-github2016-09-031-5/+14
| | | | | | | | | 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-4/+40
| | | | | 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.
* Fix documentation typosJakub Wilk2016-02-021-1/+1
|
* Adjusted Doxygen to doxygen in running text in the manualDimitri van Heesch2016-01-031-3/+3
|
* Tweaked the htmlonly sections in the manual so it produces valid HTML outputDimitri van Heesch2015-12-261-26/+29
|
* Add examples to LaTeX / PDF doxygen manualalbert-github2015-09-061-14/+14
| | | | | | | | - doc/*.doc use include instead of verbinclude to make use of the code coloring in the examples - examples/*.cfg some examples automatically display the code from the include file (*.h), for the examples it is better to show the comment as well.
* Add examples to LaTeX / PDF doxygen manualalbert-github2015-09-051-1/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the examples a shown in the HTML / CHM documentation also to the LaTeX / PDF documentation. - doc/*.doc added latexonly part referencing the example in the appendix - doc/Doxyfile silence the generation of the manual - doc/doxygen_manual.tex add the examples as appendices to the manual, by means of the subinputfrom command the parts included by refman_doc are taken from the specified directory - examples/*.cfg adjusted configuration files ("Doxyfile") to generate LaTeX output - examples/*.h and examples/*.cpp make names unique so no conflicts occur when adding all the examples - examples/CMakeLists.txt add generation of the file to be included (see strip_example.py), adjust dependencies and add the refman_doc.tex as output target - examples/input_test.cpp file added (adjusted copy of example_test.cpp) to overcome name clashes (example_test.cpp would have been included twice) - examples/strip_example.py we are only interested in the documentation files as included in the different examples, so we get those commands. The preamble will be handled by the doxygen_manual.tex and we have already an index in the doxygen_manual.tex so we don't need a separate one from each example. The module / diagram documentation is dependent on the presence of 'dot', this is reflected in the docblocks.doc, CMakeLists.txt and doxygen_manual.tex
* Fix spelling in doc/commands.doc (descriptionm)Étienne Simon2015-07-071-6/+6
|
* Added cmake rules to build the examples that are also part of the manualDimitri van Heesch2015-06-131-15/+15
|
* Missing cross reference linkalbert-github2015-03-211-1/+1
| | | | Added cross reference link that was missing
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2015-02-261-3/+43
|\
| * Adding commands \hidecallgraph and \hidecallergraphalbert-github2015-02-221-3/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
|/
* various fixes and restructuringDimitri van Heesch2014-12-221-14/+11
|
* Limit images sizes and make more uniform (LaTeX)albert-github2014-11-281-24/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Create an easy possibility to take a snippet from the current file.albert-github2014-08-151-1/+2
| | | | | | In case the snippet of code is in the current file one has to specify the name of the file and also see to it that the file is reachable through the EXAMPLE_PATH. A use case is the case of a list of initial values here it is quite often more convenient to have the values listed in a 'nice' list than direct in the definition line. With this patch it is possible to specify the name of the file where the snippet resides as: this
* Bug 731947 - Support for PlantUMLDimitri van Heesch2014-08-101-0/+61
|
* Bug 734099 - Add support for non-parsed languageDimitri van Heesch2014-08-041-0/+14
|
* Consistency of usage of the word LaTeX in the documentationalbert-github2014-04-131-13/+13
| | | | | | The word LaTeX was used as just the word and on other places as \f$\mbox{\LaTeX}\f$ This has been made more consistent by means of the definition of the Alia \LaTeX (similar for \TeX) Some names of executables etc. were not set in a 'code' font.
* Added support for \-- and \--- to prevent interpretation as ndash and mdashDimitri van Heesch2014-04-131-0/+16
|
* Added optional [block] option to \htmlonlyDimitri van Heesch2014-03-291-5/+10
|
* Added \latexinclude command (thanks to Juan Zaratiegui for the patch)Dimitri van Heesch2014-03-271-0/+14
|
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Merge pull request #95 from albert-github/feature/bug_latex_index_1Dimitri van Heesch2014-02-031-2/+6
|\ | | | | Enabling possibility to have { and } in (latex) index items
| * Enabling possibility to have { and } in (latex) index itemsalbert-github2014-01-151-2/+6
| | | | | | | | | | | | | | | | | | In the doxygen manual the index items for \{ and \} were missing due to the missing support for the usage of { and } in parts of the code. This patch fixes this problem by introducing 2 new latex commands. See also http://tex.stackexchange.com/questions/153291/index-unmatched-braces-in-latex Further improvements in the index are: - consistency in different places - correction of index for \:: - placing \~ on a more logical place (together with other special characters, ~ is in the ASCII table after a-z whilst other characters are before this range)
* | Documentation correctionsalbert-github2014-01-121-14/+16
|/ | | | Corrected some spelling errors and added / correceted some references
* \xmlonly aoppeared twice in see also section of \htmlonly and \docbookonlyalbert-github2013-12-291-2/+0
|
* Bug 719639 - @xrefitem with empty heading stringalbert-github2013-12-011-1/+21
| | | | Adjusted documentation and in case the title is the empty string in a DocXRefItem the visitPre and visitPost do nothing.
* Bug 707713 - Add support for dia diagramsDimitri van Heesch2013-10-061-0/+19
|
* Added @parblock and @endparblock commandsDimitri van Heesch2013-09-241-0/+31
|
* Documentation fixes provided by AlbertDimitri van Heesch2013-05-201-2/+2
|
* Release-1.8.4Dimitri van Heesch2013-05-191-211/+307
|
* Release-1.8.3.1-20130512Dimitri van Heesch2013-05-121-2/+4
|
* Release-1.8.3.1-20130324Dimitri van Heesch2013-03-241-0/+6
|
* Release-1.8.3.1-20130209Dimitri van Heesch2013-02-091-0/+18
|
* Release-1.8.3.1Dimitri van Heesch2013-01-201-1/+1
|
* Release-1.8.3Dimitri van Heesch2012-12-261-30/+13
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-13/+27
|
* Release-1.8.2-20120930Dimitri van Heesch2012-09-301-3/+26
|
* Release-1.8.1.2-20120729Dimitri van Heesch2012-07-291-0/+1
|
* Release-1.8.0-20120408Dimitri van Heesch2012-04-081-3/+1
|
* Release-1.8.0Dimitri van Heesch2012-02-251-2/+2
|
* Release-1.7.6.1-20120220Dimitri van Heesch2012-02-201-9/+43
|
* Release-1.7.6.1-20120122Dimitri van Heesch2012-01-221-4/+26
|
* Release-1.7.6.1-20120110Dimitri van Heesch2012-01-101-14/+16
|
* Release-1.7.6.1Dimitri van Heesch2011-12-101-1/+1
|
* Release-1.7.5.1-20111027Dimitri van Heesch2011-10-271-2/+1
|
* Release-1.7.5Dimitri van Heesch2011-08-141-0/+55
|
* Release-1.7.4-20110727Dimitri van Heesch2011-07-271-0/+15
|