[Libreoffice-commits] .: bin/find-undocumented-classes
Miklos Vajna
vmiklos at kemper.freedesktop.org
Wed Jan 19 15:22:16 PST 2011
bin/find-undocumented-classes | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
New commits:
commit 3a1b3cc84ed3972339bb352573f98ba0f8770b95
Author: Miklos Vajna <vmiklos at frugalware.org>
Date: Thu Jan 20 00:16:35 2011 +0100
find-undocumented-classes: move from build repo
diff --git a/bin/find-undocumented-classes b/bin/find-undocumented-classes
new file mode 100755
index 0000000..3040660
--- /dev/null
+++ b/bin/find-undocumented-classes
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+# finds undocumented classes in the current directory (recursive)
+
+filter=
+quiet=n
+if [ "$1" = "-q" ]; then
+ filter=">/dev/null"
+ quiet=y
+ shift
+fi
+
+doxygen=$(mktemp -d)
+eval doxygen -g $doxygen/doxygen.cfg $filter
+sed -i "/HTML_OUTPUT/s|html|$doxygen/html|" $doxygen/doxygen.cfg
+sed -i '/GENERATE_LATEX/s/= YES/= NO/' $doxygen/doxygen.cfg
+sed -i '/RECURSIVE/s/= NO/= YES/' $doxygen/doxygen.cfg
+# do we have any arguments?
+if [ -n "$*" ]; then
+ sed -i "/^INPUT[^_]/s|=.*|= $*|" $doxygen/doxygen.cfg
+fi
+eval doxygen $doxygen/doxygen.cfg $filter 2> $doxygen/errors.txt
+if [ "$quiet" == "n" ]; then
+ echo
+ echo "The following classes are undocumented:"
+ echo
+fi
+cat $doxygen/errors.txt|grep -i 'Warning: Compound.*is not documented'
+rm -rf $doxygen
+
+# vim:set shiftwidth=4 softtabstop=4 expandtab:
More information about the Libreoffice-commits
mailing list