2024-03-27 23:44:45 +00:00
|
|
|
# Doxyfile 1.9.8
|
2006-04-19 15:46:24 +00:00
|
|
|
|
2013-06-20 18:19:35 +00:00
|
|
|
# This file describes the settings to be used by the documentation system
|
|
|
|
|
# doxygen (www.doxygen.org) for MediaWiki.
|
2006-04-19 15:46:24 +00:00
|
|
|
#
|
|
|
|
|
# Some placeholders have been added for MediaWiki usage:
|
2015-07-17 18:29:05 +00:00
|
|
|
# OUTPUT_DIRECTORY = {{OUTPUT_DIRECTORY}}
|
|
|
|
|
# CURRENT_VERSION = {{CURRENT_VERSION}}
|
|
|
|
|
# INPUT = {{INPUT}}
|
2008-08-05 13:42:02 +00:00
|
|
|
#
|
2010-09-01 11:25:04 +00:00
|
|
|
# To generate documentation run: php mwdocgen.php --no-extensions
|
2006-04-19 15:46:24 +00:00
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
# Project related configuration options
|
|
|
|
|
#---------------------------------------------------------------------------
|
2012-02-07 10:12:09 +00:00
|
|
|
DOXYFILE_ENCODING = UTF-8
|
2006-04-19 15:46:24 +00:00
|
|
|
PROJECT_NAME = MediaWiki
|
2008-06-25 13:42:01 +00:00
|
|
|
PROJECT_NUMBER = {{CURRENT_VERSION}}
|
2012-02-07 10:12:09 +00:00
|
|
|
PROJECT_BRIEF =
|
|
|
|
|
PROJECT_LOGO =
|
2006-04-19 15:46:24 +00:00
|
|
|
OUTPUT_DIRECTORY = {{OUTPUT_DIRECTORY}}
|
2008-08-11 04:39:00 +00:00
|
|
|
CREATE_SUBDIRS = NO
|
2006-04-19 15:46:24 +00:00
|
|
|
OUTPUT_LANGUAGE = English
|
|
|
|
|
BRIEF_MEMBER_DESC = YES
|
|
|
|
|
REPEAT_BRIEF = YES
|
|
|
|
|
ABBREVIATE_BRIEF = "The $name class" \
|
|
|
|
|
"The $name widget" \
|
|
|
|
|
"The $name file" \
|
|
|
|
|
is \
|
|
|
|
|
provides \
|
|
|
|
|
specifies \
|
|
|
|
|
contains \
|
|
|
|
|
represents \
|
|
|
|
|
a \
|
|
|
|
|
an \
|
|
|
|
|
the
|
|
|
|
|
ALWAYS_DETAILED_SEC = NO
|
|
|
|
|
INLINE_INHERITED_MEMB = NO
|
|
|
|
|
FULL_PATH_NAMES = YES
|
2011-09-19 18:53:26 +00:00
|
|
|
STRIP_FROM_INC_PATH =
|
2006-04-19 15:46:24 +00:00
|
|
|
SHORT_NAMES = NO
|
2007-04-24 06:36:23 +00:00
|
|
|
JAVADOC_AUTOBRIEF = YES
|
2012-02-07 10:12:09 +00:00
|
|
|
QT_AUTOBRIEF = NO
|
2006-04-19 15:46:24 +00:00
|
|
|
MULTILINE_CPP_IS_BRIEF = NO
|
|
|
|
|
INHERIT_DOCS = YES
|
|
|
|
|
SEPARATE_MEMBER_PAGES = NO
|
2013-06-01 09:50:04 +00:00
|
|
|
TAB_SIZE = 4
|
2014-11-15 12:46:26 +00:00
|
|
|
ALIASES = "type{1}=<b> \1 </b>:" \
|
|
|
|
|
"types{2}=<b> \1 </b> or <b> \2 </b>:" \
|
|
|
|
|
"types{3}=<b> \1 </b>, <b> \2 </b>, or <b> \3 </b>:" \
|
docs: Improve Doxygen aliases and map more tool annotations to @noop
For some reason, @access is outputting a literal "\n" instead of the
newline that's supposed to generate. It seems to only ever be followed
by "public", "private", or "protected", so just remove the newline.
On the other hand, "@private" and so on are sometimes followed by text.
Instead of using @access, use a custom @par to produce nicer output.
"@internal" is being used now something like "@private", to indicate
things that are public for PHP access rules but should be treated as
private. Unfortunately Doxygen has its own "@internal", so we need to
override it.
We've also started using "@unstable", which Doxygen doesn't know about.
Doxygen 1.8.17 introduces "@noop", which allows us to alias annotations
such that they do not result in strange of partial output in docs.
Wikimedia CI is now on 1.8.19.
Fix "@suppress", "@codeCoverageIgnore", and
"@codingStandardsIgnore(Start|End)" by using this.
Bug: T233788
Bug: T241182
Change-Id: Idc7ef2afa6cdf8c15f0ca5e7e96e67c3a4374a8a
2020-02-11 18:15:17 +00:00
|
|
|
"access=\par Access:" \
|
|
|
|
|
"private=\par \"Access: private\"" \
|
|
|
|
|
"protected=\par \"Access: protected\"" \
|
|
|
|
|
"internal=\par \"Access: internal\"" \
|
|
|
|
|
"unstable=\par \"Stability: unstable\"" \
|
|
|
|
|
"stable=\par \"Stability: stable\"" \
|
2021-12-15 02:04:26 +00:00
|
|
|
"newable=\par \"Stability: newable\"" \
|
2014-11-15 12:46:26 +00:00
|
|
|
"copyright=\note" \
|
|
|
|
|
"license=\note" \
|
2019-09-05 15:22:16 +00:00
|
|
|
"inheritDoc=\inheritdoc" \
|
docs: Improve Doxygen aliases and map more tool annotations to @noop
For some reason, @access is outputting a literal "\n" instead of the
newline that's supposed to generate. It seems to only ever be followed
by "public", "private", or "protected", so just remove the newline.
On the other hand, "@private" and so on are sometimes followed by text.
Instead of using @access, use a custom @par to produce nicer output.
"@internal" is being used now something like "@private", to indicate
things that are public for PHP access rules but should be treated as
private. Unfortunately Doxygen has its own "@internal", so we need to
override it.
We've also started using "@unstable", which Doxygen doesn't know about.
Doxygen 1.8.17 introduces "@noop", which allows us to alias annotations
such that they do not result in strange of partial output in docs.
Wikimedia CI is now on 1.8.19.
Fix "@suppress", "@codeCoverageIgnore", and
"@codingStandardsIgnore(Start|End)" by using this.
Bug: T233788
Bug: T241182
Change-Id: Idc7ef2afa6cdf8c15f0ca5e7e96e67c3a4374a8a
2020-02-11 18:15:17 +00:00
|
|
|
"codeCoverageIgnore=\noop" \
|
|
|
|
|
"codingStandardsIgnoreEnd=\noop" \
|
|
|
|
|
"codingStandardsIgnoreStart=\noop" \
|
|
|
|
|
"phan=\noop" \
|
2023-11-08 14:51:47 +00:00
|
|
|
"param-taint=\noop" \
|
|
|
|
|
"return-taint=\noop" \
|
2021-03-17 01:14:49 +00:00
|
|
|
"suppress=\noop" \
|
|
|
|
|
"noVarDump=\noop"
|
2006-04-19 15:46:24 +00:00
|
|
|
OPTIMIZE_OUTPUT_FOR_C = NO
|
|
|
|
|
OPTIMIZE_OUTPUT_JAVA = NO
|
2012-02-07 10:12:09 +00:00
|
|
|
OPTIMIZE_FOR_FORTRAN = NO
|
|
|
|
|
OPTIMIZE_OUTPUT_VHDL = NO
|
|
|
|
|
EXTENSION_MAPPING =
|
2014-11-15 12:46:26 +00:00
|
|
|
MARKDOWN_SUPPORT = YES
|
|
|
|
|
AUTOLINK_SUPPORT = YES
|
2006-04-19 15:46:24 +00:00
|
|
|
BUILTIN_STL_SUPPORT = NO
|
2012-02-07 10:12:09 +00:00
|
|
|
CPP_CLI_SUPPORT = NO
|
|
|
|
|
SIP_SUPPORT = NO
|
2013-06-20 18:19:35 +00:00
|
|
|
IDL_PROPERTY_SUPPORT = YES
|
2008-08-05 13:42:02 +00:00
|
|
|
DISTRIBUTE_GROUP_DOC = YES
|
2006-04-19 15:46:24 +00:00
|
|
|
SUBGROUPING = YES
|
2012-02-07 10:12:09 +00:00
|
|
|
INLINE_GROUPED_CLASSES = NO
|
|
|
|
|
INLINE_SIMPLE_STRUCTS = NO
|
|
|
|
|
TYPEDEF_HIDES_STRUCT = NO
|
2014-11-12 10:24:27 +00:00
|
|
|
LOOKUP_CACHE_SIZE = 2
|
2024-03-27 23:44:45 +00:00
|
|
|
TIMESTAMP = YES
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
# Build related configuration options
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
EXTRACT_ALL = YES
|
2022-04-08 15:18:37 +00:00
|
|
|
EXTRACT_PRIVATE = NO
|
2014-11-15 12:46:26 +00:00
|
|
|
EXTRACT_PACKAGE = NO
|
2006-04-19 15:46:24 +00:00
|
|
|
EXTRACT_STATIC = YES
|
|
|
|
|
EXTRACT_LOCAL_CLASSES = YES
|
|
|
|
|
EXTRACT_LOCAL_METHODS = NO
|
2012-02-07 10:12:09 +00:00
|
|
|
EXTRACT_ANON_NSPACES = NO
|
2006-04-19 15:46:24 +00:00
|
|
|
HIDE_UNDOC_MEMBERS = NO
|
|
|
|
|
HIDE_UNDOC_CLASSES = NO
|
|
|
|
|
HIDE_FRIEND_COMPOUNDS = NO
|
2008-08-21 08:39:31 +00:00
|
|
|
HIDE_IN_BODY_DOCS = YES
|
2006-04-19 15:46:24 +00:00
|
|
|
INTERNAL_DOCS = NO
|
|
|
|
|
CASE_SENSE_NAMES = YES
|
|
|
|
|
HIDE_SCOPE_NAMES = NO
|
|
|
|
|
SHOW_INCLUDE_FILES = YES
|
2014-11-15 12:46:26 +00:00
|
|
|
SHOW_GROUPED_MEMB_INC = NO
|
2012-02-07 10:12:09 +00:00
|
|
|
FORCE_LOCAL_INCLUDES = NO
|
2006-04-19 15:46:24 +00:00
|
|
|
INLINE_INFO = YES
|
|
|
|
|
SORT_MEMBER_DOCS = YES
|
2012-02-07 10:12:09 +00:00
|
|
|
SORT_BRIEF_DOCS = YES
|
|
|
|
|
SORT_MEMBERS_CTORS_1ST = NO
|
2024-08-23 22:38:11 +00:00
|
|
|
SORT_GROUP_NAMES = YES
|
2006-04-19 15:46:24 +00:00
|
|
|
SORT_BY_SCOPE_NAME = NO
|
2012-02-07 10:12:09 +00:00
|
|
|
STRICT_PROTO_MATCHING = NO
|
2006-04-19 15:46:24 +00:00
|
|
|
GENERATE_TODOLIST = YES
|
2019-09-13 22:57:35 +00:00
|
|
|
GENERATE_TESTLIST = NO
|
|
|
|
|
GENERATE_BUGLIST = NO
|
2006-04-19 15:46:24 +00:00
|
|
|
GENERATE_DEPRECATEDLIST= YES
|
2011-09-19 18:53:26 +00:00
|
|
|
ENABLED_SECTIONS =
|
2006-04-19 15:46:24 +00:00
|
|
|
MAX_INITIALIZER_LINES = 30
|
|
|
|
|
SHOW_USED_FILES = YES
|
2012-02-07 10:12:09 +00:00
|
|
|
SHOW_FILES = YES
|
2010-09-01 19:24:08 +00:00
|
|
|
SHOW_NAMESPACES = NO
|
2012-09-26 22:52:36 +00:00
|
|
|
FILE_VERSION_FILTER =
|
2012-02-07 10:12:09 +00:00
|
|
|
LAYOUT_FILE =
|
|
|
|
|
CITE_BIB_FILES =
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
2014-11-15 12:46:26 +00:00
|
|
|
# Configuration options related to warning and progress messages
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
2015-11-23 20:33:01 +00:00
|
|
|
QUIET = YES
|
2006-04-19 15:46:24 +00:00
|
|
|
WARNINGS = YES
|
2019-10-29 20:42:09 +00:00
|
|
|
WARN_IF_UNDOCUMENTED = NO
|
|
|
|
|
WARN_IF_DOC_ERROR = NO
|
2006-04-19 15:46:24 +00:00
|
|
|
WARN_NO_PARAMDOC = NO
|
|
|
|
|
WARN_FORMAT = "$file:$line: $text"
|
2011-09-19 18:53:26 +00:00
|
|
|
WARN_LOGFILE =
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
2014-11-15 12:46:26 +00:00
|
|
|
# Configuration options related to the input files
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
INPUT = {{INPUT}}
|
2012-02-07 10:12:09 +00:00
|
|
|
INPUT_ENCODING = UTF-8
|
2019-09-04 21:46:31 +00:00
|
|
|
FILE_PATTERNS = *.php \
|
2020-09-23 10:59:31 +00:00
|
|
|
*.md
|
2006-04-19 15:46:24 +00:00
|
|
|
RECURSIVE = YES
|
2013-05-21 22:04:11 +00:00
|
|
|
EXCLUDE = {{EXCLUDE}}
|
2008-06-25 13:42:01 +00:00
|
|
|
EXCLUDE_SYMLINKS = YES
|
2014-11-15 12:46:26 +00:00
|
|
|
EXCLUDE_PATTERNS = LocalSettings.php \
|
|
|
|
|
.svn \
|
|
|
|
|
*/.git/* \
|
2022-09-09 23:13:32 +00:00
|
|
|
*/node_modules \
|
|
|
|
|
*/resources \
|
|
|
|
|
*/tests \
|
|
|
|
|
*/vendor \
|
2019-09-27 00:56:33 +00:00
|
|
|
*/includes/libs/*/README.md \
|
2024-03-09 02:44:23 +00:00
|
|
|
*/maintenance/*/README.md
|
2012-02-07 10:12:09 +00:00
|
|
|
EXCLUDE_SYMBOLS =
|
2011-09-19 18:53:26 +00:00
|
|
|
EXAMPLE_PATH =
|
2006-04-19 15:46:24 +00:00
|
|
|
EXAMPLE_PATTERNS = *
|
|
|
|
|
EXAMPLE_RECURSIVE = NO
|
2011-09-19 18:53:26 +00:00
|
|
|
IMAGE_PATH =
|
2012-08-02 14:19:27 +00:00
|
|
|
INPUT_FILTER = "{{INPUT_FILTER}}"
|
2011-09-19 18:53:26 +00:00
|
|
|
FILTER_PATTERNS =
|
2006-04-19 15:46:24 +00:00
|
|
|
FILTER_SOURCE_FILES = NO
|
2012-02-07 10:12:09 +00:00
|
|
|
FILTER_SOURCE_PATTERNS =
|
2014-11-15 12:46:26 +00:00
|
|
|
USE_MDFILE_AS_MAINPAGE =
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
2014-11-15 12:46:26 +00:00
|
|
|
# Configuration options related to source browsing
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
SOURCE_BROWSER = YES
|
|
|
|
|
INLINE_SOURCES = NO
|
|
|
|
|
STRIP_CODE_COMMENTS = YES
|
|
|
|
|
REFERENCED_BY_RELATION = YES
|
|
|
|
|
REFERENCES_RELATION = YES
|
2012-02-07 10:12:09 +00:00
|
|
|
REFERENCES_LINK_SOURCE = YES
|
2014-11-15 12:46:26 +00:00
|
|
|
SOURCE_TOOLTIPS = YES
|
2006-04-19 15:46:24 +00:00
|
|
|
USE_HTAGS = NO
|
|
|
|
|
VERBATIM_HEADERS = YES
|
|
|
|
|
#---------------------------------------------------------------------------
|
2014-11-15 12:46:26 +00:00
|
|
|
# Configuration options related to the alphabetical class index
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
ALPHABETICAL_INDEX = NO
|
2011-09-19 18:53:26 +00:00
|
|
|
IGNORE_PREFIX =
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
2014-11-15 12:46:26 +00:00
|
|
|
# Configuration options related to the HTML output
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
GENERATE_HTML = YES
|
|
|
|
|
HTML_OUTPUT = html
|
|
|
|
|
HTML_FILE_EXTENSION = .html
|
2011-09-19 18:53:26 +00:00
|
|
|
HTML_HEADER =
|
|
|
|
|
HTML_FOOTER =
|
|
|
|
|
HTML_STYLESHEET =
|
2014-11-15 12:46:26 +00:00
|
|
|
HTML_EXTRA_STYLESHEET =
|
2012-02-07 10:12:09 +00:00
|
|
|
HTML_EXTRA_FILES =
|
|
|
|
|
HTML_COLORSTYLE_HUE = 220
|
|
|
|
|
HTML_COLORSTYLE_SAT = 100
|
2013-06-20 18:19:35 +00:00
|
|
|
HTML_COLORSTYLE_GAMMA = 80
|
2012-02-07 10:12:09 +00:00
|
|
|
HTML_DYNAMIC_SECTIONS = NO
|
2014-11-15 12:46:26 +00:00
|
|
|
HTML_INDEX_NUM_ENTRIES = 100
|
2012-02-07 10:12:09 +00:00
|
|
|
GENERATE_DOCSET = NO
|
|
|
|
|
DOCSET_FEEDNAME = "Doxygen generated docs"
|
|
|
|
|
DOCSET_BUNDLE_ID = org.doxygen.Project
|
|
|
|
|
DOCSET_PUBLISHER_ID = org.doxygen.Publisher
|
|
|
|
|
DOCSET_PUBLISHER_NAME = Publisher
|
2006-04-19 15:46:24 +00:00
|
|
|
GENERATE_HTMLHELP = NO
|
2011-09-19 18:53:26 +00:00
|
|
|
CHM_FILE =
|
|
|
|
|
HHC_LOCATION =
|
2006-04-19 15:46:24 +00:00
|
|
|
GENERATE_CHI = NO
|
2012-02-07 10:12:09 +00:00
|
|
|
CHM_INDEX_ENCODING =
|
2006-04-19 15:46:24 +00:00
|
|
|
BINARY_TOC = NO
|
2008-08-07 10:43:36 +00:00
|
|
|
TOC_EXPAND = YES
|
2012-02-07 10:12:09 +00:00
|
|
|
GENERATE_QHP = NO
|
|
|
|
|
QCH_FILE =
|
|
|
|
|
QHP_NAMESPACE = org.doxygen.Project
|
|
|
|
|
QHP_VIRTUAL_FOLDER = doc
|
|
|
|
|
QHP_CUST_FILTER_NAME =
|
|
|
|
|
QHP_CUST_FILTER_ATTRS =
|
|
|
|
|
QHP_SECT_FILTER_ATTRS =
|
|
|
|
|
QHG_LOCATION =
|
|
|
|
|
GENERATE_ECLIPSEHELP = NO
|
|
|
|
|
ECLIPSE_DOC_ID = org.doxygen.Project
|
2006-04-19 15:46:24 +00:00
|
|
|
DISABLE_INDEX = NO
|
|
|
|
|
GENERATE_TREEVIEW = YES
|
2014-11-15 12:46:26 +00:00
|
|
|
ENUM_VALUES_PER_LINE = 4
|
2006-04-19 15:46:24 +00:00
|
|
|
TREEVIEW_WIDTH = 250
|
2012-02-07 10:12:09 +00:00
|
|
|
EXT_LINKS_IN_WINDOW = NO
|
|
|
|
|
FORMULA_FONTSIZE = 10
|
|
|
|
|
USE_MATHJAX = NO
|
2014-11-15 12:46:26 +00:00
|
|
|
MATHJAX_FORMAT = HTML-CSS
|
2012-02-07 10:12:09 +00:00
|
|
|
MATHJAX_RELPATH = http://www.mathjax.org/mathjax
|
|
|
|
|
MATHJAX_EXTENSIONS =
|
2014-11-15 12:46:26 +00:00
|
|
|
MATHJAX_CODEFILE =
|
2012-02-07 10:12:09 +00:00
|
|
|
SEARCHENGINE = YES
|
|
|
|
|
SERVER_BASED_SEARCH = YES
|
2014-11-15 12:46:26 +00:00
|
|
|
EXTERNAL_SEARCH = NO
|
|
|
|
|
SEARCHENGINE_URL =
|
|
|
|
|
SEARCHDATA_FILE = searchdata.xml
|
|
|
|
|
EXTERNAL_SEARCH_ID =
|
|
|
|
|
EXTRA_SEARCH_MAPPINGS =
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
2020-05-22 09:39:44 +00:00
|
|
|
# Configuration options related to the LaTeX output
|
|
|
|
|
#---------------------------------------------------------------------------
|
2024-03-27 23:44:45 +00:00
|
|
|
GENERATE_LATEX = NO
|
2020-05-22 09:39:44 +00:00
|
|
|
#---------------------------------------------------------------------------
|
2011-09-19 18:53:26 +00:00
|
|
|
# Configuration options related to the preprocessor
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
ENABLE_PREPROCESSING = YES
|
|
|
|
|
MACRO_EXPANSION = NO
|
|
|
|
|
EXPAND_ONLY_PREDEF = NO
|
|
|
|
|
SEARCH_INCLUDES = YES
|
2011-09-19 18:53:26 +00:00
|
|
|
INCLUDE_PATH =
|
|
|
|
|
INCLUDE_FILE_PATTERNS =
|
|
|
|
|
PREDEFINED =
|
|
|
|
|
EXPAND_AS_DEFINED =
|
2006-04-19 15:46:24 +00:00
|
|
|
SKIP_FUNCTION_MACROS = YES
|
|
|
|
|
#---------------------------------------------------------------------------
|
2014-11-15 12:46:26 +00:00
|
|
|
# Configuration options related to external references
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
2011-09-19 18:53:26 +00:00
|
|
|
TAGFILES =
|
2010-09-01 11:25:04 +00:00
|
|
|
GENERATE_TAGFILE = {{OUTPUT_DIRECTORY}}/html/tagfile.xml
|
2006-04-19 15:46:24 +00:00
|
|
|
ALLEXTERNALS = NO
|
|
|
|
|
EXTERNAL_GROUPS = YES
|
2014-11-15 12:46:26 +00:00
|
|
|
EXTERNAL_PAGES = YES
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
2024-03-27 23:44:45 +00:00
|
|
|
# Configuration options related to diagram generator tools
|
2006-04-19 15:46:24 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
HIDE_UNDOC_RELATIONS = YES
|
2010-12-27 16:56:50 +00:00
|
|
|
HAVE_DOT = {{HAVE_DOT}}
|
2012-02-07 10:12:09 +00:00
|
|
|
DOT_NUM_THREADS = 0
|
|
|
|
|
DOT_FONTPATH =
|
2022-09-09 23:20:45 +00:00
|
|
|
CLASS_GRAPH = TEXT
|
2006-04-19 15:46:24 +00:00
|
|
|
COLLABORATION_GRAPH = YES
|
|
|
|
|
GROUP_GRAPHS = YES
|
|
|
|
|
UML_LOOK = NO
|
2014-11-15 12:46:26 +00:00
|
|
|
UML_LIMIT_NUM_FIELDS = 10
|
2006-04-19 15:46:24 +00:00
|
|
|
TEMPLATE_RELATIONS = NO
|
|
|
|
|
INCLUDE_GRAPH = YES
|
|
|
|
|
INCLUDED_BY_GRAPH = YES
|
2012-03-18 20:10:47 +00:00
|
|
|
CALL_GRAPH = NO
|
|
|
|
|
CALLER_GRAPH = NO
|
2006-04-19 15:46:24 +00:00
|
|
|
GRAPHICAL_HIERARCHY = YES
|
|
|
|
|
DIRECTORY_GRAPH = YES
|
|
|
|
|
DOT_IMAGE_FORMAT = png
|
2012-02-07 10:12:09 +00:00
|
|
|
INTERACTIVE_SVG = NO
|
2011-09-19 18:53:26 +00:00
|
|
|
DOT_PATH =
|
|
|
|
|
DOTFILE_DIRS =
|
2024-03-27 23:44:45 +00:00
|
|
|
DIA_PATH =
|
2014-11-15 12:46:26 +00:00
|
|
|
DIAFILE_DIRS =
|
2020-04-07 21:38:17 +00:00
|
|
|
DOT_GRAPH_MAX_NODES = 200
|
2006-04-19 15:46:24 +00:00
|
|
|
MAX_DOT_GRAPH_DEPTH = 1000
|
2013-06-20 18:27:04 +00:00
|
|
|
DOT_MULTI_TARGETS = YES
|
2006-04-19 15:46:24 +00:00
|
|
|
GENERATE_LEGEND = YES
|
|
|
|
|
DOT_CLEANUP = YES
|
2024-03-27 23:44:45 +00:00
|
|
|
MSCFILE_DIRS =
|