From ff39e4022dc11244df40b4f96088d5c11a89fa70 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Mon, 23 Nov 2015 20:33:01 +0000 Subject: [PATCH] Doxygen: Disable verbose output https://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_quiet * To make the standard output in Jenkins more useful, disable the verbose messages about "Loading file .." in between all the errors. * Remove obsolete config options XML_SCHEMA and XML_DTD that were producing warnings. We weren't using these anyway (set to their default blank value). Change-Id: I6876cf4d783f7795a12d99623c8ce3717e9a51f5 --- maintenance/Doxyfile | 4 +--- maintenance/mwdocgen.php | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/maintenance/Doxyfile b/maintenance/Doxyfile index 1f70f4524b..0c89c05c85 100644 --- a/maintenance/Doxyfile +++ b/maintenance/Doxyfile @@ -132,7 +132,7 @@ CITE_BIB_FILES = #--------------------------------------------------------------------------- # Configuration options related to warning and progress messages #--------------------------------------------------------------------------- -QUIET = NO +QUIET = YES WARNINGS = YES WARN_IF_UNDOCUMENTED = YES WARN_IF_DOC_ERROR = YES @@ -322,8 +322,6 @@ MAN_LINKS = NO #--------------------------------------------------------------------------- GENERATE_XML = NO XML_OUTPUT = xml -XML_SCHEMA = -XML_DTD = XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # Configuration options related to the DOCBOOK output diff --git a/maintenance/mwdocgen.php b/maintenance/mwdocgen.php index 49eae4a539..00a15e560d 100644 --- a/maintenance/mwdocgen.php +++ b/maintenance/mwdocgen.php @@ -86,8 +86,7 @@ class MWDocGen extends Maintenance { $this->output = $this->getOption( 'output', "$IP/docs" ); - $this->inputFilter = wfShellWikiCmd( - $IP . '/maintenance/mwdoc-filter.php' ); + $this->inputFilter = wfShellWikiCmd( $IP . '/maintenance/mwdoc-filter.php' ); $this->template = $IP . '/maintenance/Doxyfile'; $this->excludes = array( 'vendor', -- 2.20.1