~ubuntu-branches/debian/jessie/libcaca/jessie

« back to all changes in this revision

Viewing changes to doc/doxygen.cfg.in

  • Committer: Package Import Robot
  • Author(s): Sam Hocevar
  • Date: 2014-06-02 22:38:19 UTC
  • Revision ID: package-import@ubuntu.com-20140602223819-utew76be5dudmm7i
Tags: 0.99.beta19-2
debian/patches/100_doxygen.diff: remove deprecated Doxygen variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Doxyfile 1.8.6
 
1
# Doxyfile 1.8.7
2
2
 
3
3
# This file describes the settings to be used by the documentation system
4
4
# doxygen (www.doxygen.org) for a project.
70
70
 
71
71
CREATE_SUBDIRS         = NO
72
72
 
 
73
# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
 
74
# characters to appear in the names of generated files. If set to NO, non-ASCII
 
75
# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
 
76
# U+3044.
 
77
# The default value is: NO.
 
78
 
 
79
ALLOW_UNICODE_NAMES    = NO
 
80
 
73
81
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
74
82
# documentation generated by doxygen is written. Doxygen will use this
75
83
# information to generate all constant output in the proper language.
261
269
# extension. Doxygen has a built-in mapping, but you can override or extend it
262
270
# using this tag. The format is ext=language, where ext is a file extension, and
263
271
# language is one of the parsers supported by doxygen: IDL, Java, Javascript,
264
 
# C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make
265
 
# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
266
 
# (default is Fortran), use: inc=Fortran f=C.
 
272
# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran:
 
273
# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran:
 
274
# Fortran. In the later case the parser tries to guess whether the code is fixed
 
275
# or free formatted code, this is the default for Fortran type files), VHDL. For
 
276
# instance to make doxygen treat .inc files as Fortran files (default is PHP),
 
277
# and .f files as C (default is Fortran), use: inc=Fortran f=C.
267
278
#
268
279
# Note For files without extension you can use no_extension as a placeholder.
269
280
#
1242
1253
CHM_INDEX_ENCODING     =
1243
1254
 
1244
1255
# The BINARY_TOC flag controls whether a binary table of contents is generated (
1245
 
# YES) or a normal table of contents ( NO) in the .chm file.
 
1256
# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it
 
1257
# enables the Previous and Next buttons.
1246
1258
# The default value is: NO.
1247
1259
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1248
1260
 
1482
1494
 
1483
1495
# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1484
1496
# implemented using a web server instead of a web client using Javascript. There
1485
 
# are two flavours of web server based searching depending on the
1486
 
# EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for
1487
 
# searching and an index file used by the script. When EXTERNAL_SEARCH is
1488
 
# enabled the indexing and searching needs to be provided by external tools. See
1489
 
# the section "External Indexing and Searching" for details.
 
1497
# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
 
1498
# setting. When disabled, doxygen will generate a PHP script for searching and
 
1499
# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
 
1500
# and searching needs to be provided by external tools. See the section
 
1501
# "External Indexing and Searching" for details.
1490
1502
# The default value is: NO.
1491
1503
# This tag requires that the tag SEARCHENGINE is set to YES.
1492
1504
 
1774
1786
 
1775
1787
MAN_EXTENSION          = .3caca
1776
1788
 
 
1789
# The MAN_SUBDIR tag determines the name of the directory created within
 
1790
# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
 
1791
# MAN_EXTENSION with the initial . removed.
 
1792
# This tag requires that the tag GENERATE_MAN is set to YES.
 
1793
 
 
1794
MAN_SUBDIR             =
 
1795
 
1777
1796
# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
1778
1797
# will generate one additional man file for each entity documented in the real
1779
1798
# man page(s). These additional files only source the real man page, but without
1801
1820
 
1802
1821
XML_OUTPUT             = xml
1803
1822
 
1804
 
# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a
1805
 
# validating XML parser to check the syntax of the XML files.
1806
 
# This tag requires that the tag GENERATE_XML is set to YES.
1807
 
 
1808
 
XML_SCHEMA             =
1809
 
 
1810
 
# The XML_DTD tag can be used to specify a XML DTD, which can be used by a
1811
 
# validating XML parser to check the syntax of the XML files.
1812
 
# This tag requires that the tag GENERATE_XML is set to YES.
1813
 
 
1814
 
XML_DTD                =
1815
 
 
1816
1823
# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program
1817
1824
# listings (including syntax highlighting and cross-referencing information) to
1818
1825
# the XML output. Note that enabling this will significantly increase the size
1961
1968
                         __class
1962
1969
 
1963
1970
# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
1964
 
# remove all refrences to function-like macros that are alone on a line, have an
1965
 
# all uppercase name, and do not end with a semicolon. Such function macros are
1966
 
# typically used for boiler-plate code, and will confuse the parser if not
 
1971
# remove all references to function-like macros that are alone on a line, have
 
1972
# an all uppercase name, and do not end with a semicolon. Such function macros
 
1973
# are typically used for boiler-plate code, and will confuse the parser if not
1967
1974
# removed.
1968
1975
# The default value is: YES.
1969
1976
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1983
1990
# where loc1 and loc2 can be relative or absolute paths or URLs. See the
1984
1991
# section "Linking to external documentation" for more information about the use
1985
1992
# of tag files.
1986
 
# Note: Each tag file must have an unique name (where the name does NOT include
 
1993
# Note: Each tag file must have a unique name (where the name does NOT include
1987
1994
# the path). If a tag file is not located in the directory in which doxygen is
1988
1995
# run, you must also specify the path to the tagfile here.
1989
1996
 
2061
2068
# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
2062
2069
# Bell Labs. The other options in this section have no effect if this option is
2063
2070
# set to NO
2064
 
# The default value is: NO.
 
2071
# The default value is: YES.
2065
2072
 
2066
2073
HAVE_DOT               = NO
2067
2074
 
2083
2090
# The default value is: Helvetica.
2084
2091
# This tag requires that the tag HAVE_DOT is set to YES.
2085
2092
 
2086
 
#DOT_FONTNAME           = FreeSans
 
2093
DOT_FONTNAME           = Helvetica
2087
2094
 
2088
2095
# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
2089
2096
# dot graphs.
2213
2220
# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
2214
2221
# to make the SVG files visible in IE 9+ (other browsers do not have this
2215
2222
# requirement).
2216
 
# Possible values are: png, jpg, gif and svg.
 
2223
# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd,
 
2224
# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo,
 
2225
# gif:cairo:gd, gif:gd, gif:gd:gd and svg.
2217
2226
# The default value is: png.
2218
2227
# This tag requires that the tag HAVE_DOT is set to YES.
2219
2228