From: Sam Reed Date: Mon, 27 Dec 2010 16:56:50 +0000 (+0000) Subject: *(bug 26404) Enable call graphs for doxygen-generated doc X-Git-Tag: 1.31.0-rc.0~33057 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=a9d769b27bc78f4682792e51bda1dd3b250a59ce;p=lhc%2Fweb%2Fwiklou.git *(bug 26404) Enable call graphs for doxygen-generated doc --- diff --git a/maintenance/Doxyfile b/maintenance/Doxyfile index b1a1b7aed2..54af6e0cc3 100644 --- a/maintenance/Doxyfile +++ b/maintenance/Doxyfile @@ -255,7 +255,7 @@ PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- CLASS_DIAGRAMS = NO HIDE_UNDOC_RELATIONS = YES -HAVE_DOT = NO +HAVE_DOT = {{HAVE_DOT}} CLASS_GRAPH = YES COLLABORATION_GRAPH = YES GROUP_GRAPHS = YES diff --git a/maintenance/mwdocgen.php b/maintenance/mwdocgen.php index a414e39ec1..9fceeb2dbd 100644 --- a/maintenance/mwdocgen.php +++ b/maintenance/mwdocgen.php @@ -1,15 +1,13 @@ $svnstat, '{{INPUT}}' => $input, '{{EXCLUDE}}' => $exclude, + '{{HAVE_DOT}}' => `which dot` ? 'YES' : 'NO', ); $tmpCfg = str_replace( array_keys( $replacements ), array_values( $replacements ), $template ); $tmpFileName = tempnam( wfTempDir(), 'mwdocgen-' );