jenkins-bot has submitted this change and it was merged. Change subject: Use README.md as doxygen main page ......................................................................
Use README.md as doxygen main page From doxygen documentation: http://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_use_mdfile_as_mainpage USE_MDFILE_AS_MAINPAGE If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that is part of the input, its contents will be placed on the main page (index.html). This can be useful if you have a project on for instance GitHub and want to reuse the introduction page also for the doxygen output. Bug: 73530 Change-Id: I812a32f0bd11f05aa10a73db334bccd49875adca --- M Doxyfile 1 file changed, 3 insertions(+), 1 deletion(-) Approvals: Chad: Looks good to me, approved Legoktm: Looks good to me, approved jenkins-bot: Verified diff --git a/Doxyfile b/Doxyfile index 95de898..e77e75a 100644 --- a/Doxyfile +++ b/Doxyfile @@ -10,9 +10,11 @@ WARN_NO_PARAMDOC = YES -INPUT = src/ +INPUT = README.md src/ FILE_PATTERNS = *.php RECURSIVE = YES +# Requires doxygen 1.8.3+ +USE_MDFILE_AS_MAINPAGE = README.md HTML_DYNAMIC_SECTIONS = YES GENERATE_TREEVIEW = YES -- To view, visit https://gerrit.wikimedia.org/r/174093 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I812a32f0bd11f05aa10a73db334bccd49875adca Gerrit-PatchSet: 1 Gerrit-Project: cdb Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> Gerrit-Reviewer: Chad <[email protected]> Gerrit-Reviewer: Legoktm <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
