From: Antoine Musso Date: Mon, 22 Oct 2012 09:57:49 +0000 (+0200) Subject: doxygen now recognizes README and .txt files X-Git-Tag: 1.31.0-rc.0~21916^2 X-Git-Url: http://git.cyclocoop.org/%24dirpuce/puce%24spip_lang_rtl.gif?a=commitdiff_plain;h=fb82f1cf8049e2364ea9860b85d1761ce597057a;p=lhc%2Fweb%2Fwiklou.git doxygen now recognizes README and .txt files The default doxygen configuration file only accepts source files such as php or python. Some of our documentation is in flat files which we might want to include in our Doxygen inline documentation. The culprit is that those document files needs to respect Doxygen syntax, i.e. the text content need to be enclosed in a comment block such as: /*! \page page_title My Page Title My awesome documentation */ Doyxgen 1.8 supports markdown syntax, we might want to switch to that eventually. Change-Id: I78a0ce36314b2a7b9f89395e3ae3902b17cf5038 --- diff --git a/maintenance/Doxyfile b/maintenance/Doxyfile index e3ba4e5a1d..34e66e52e0 100644 --- a/maintenance/Doxyfile +++ b/maintenance/Doxyfile @@ -171,7 +171,9 @@ FILE_PATTERNS = *.c \ *.PHP5 \ *.M \ *.MM \ - *.PY + *.PY \ + *.txt \ + README RECURSIVE = YES EXCLUDE_SYMLINKS = YES EXCLUDE_PATTERNS = LocalSettings.php AdminSettings.php StartProfiler.php .svn */.git/* {{EXCLUDE_PATTERNS}}