[Bug 1521] Have doxygen log more warnings; remove obsolete items from log report script.
--- a/doc/doxygen.conf Mon Nov 05 12:10:55 2012 -0800
+++ b/doc/doxygen.conf Mon Nov 05 13:52:58 2012 -0800
@@ -357,7 +357,7 @@
# Private class members and static file members will be hidden unless
# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
-EXTRACT_ALL = YES
+EXTRACT_ALL = NO
# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
# will be included in the documentation.
--- a/doc/doxygen.warnings.report.sh Mon Nov 05 12:10:55 2012 -0800
+++ b/doc/doxygen.warnings.report.sh Mon Nov 05 13:52:58 2012 -0800
@@ -23,42 +23,12 @@
undocparam=` \
grep -v "^$rootdir" $logfile | \
grep -v "not generated, too many nodes" | \
- grep "^ parameter '" | \
+ grep "^ parameter '" $logfile | \
wc -l | \
sed 's/^[ \t]*//;s/[ \t]*$//' `
-echo "+ $undocparam undocumented parameters."
+echo "+ $undocparam additional undocumented parameters."
echo
-
-function sort_tags {
- local conf=${1:-doxygen.conf}
- local tags=${2:-$1.tags}
- grep -v "^#" $conf | \
- sed '/^$/d' | \
- sed ':a;/\\$/N;s/\\\n/|n /;ta' | \
- sort | \
- sed 's/|n /\\\n/g' > $tags
-}
-
-orig=doxygen-r7657.conf
-conf=doxygen.conf
-tags=doxygen.conf.tags
-delt=$tags.changed
-
-sort_tags $orig
-sort_tags $conf $tags
-
-# Show only changed lines from second file
-diff --changed-group-format='%>' \
- --unchanged-group-format='' \
- $orig.tags $tags > $delt
-
-deltn=`cat $delt | \
- wc -l | \
- sed 's/^[ \t]*//;s/[ \t]*$//' `
-
-echo "R7657 sorted tags in: $orig.tags"
-echo "Sorted doxygen tags in: $tags"
-echo "Changed doxygen tags in: $delt, ($deltn lines)"
+echo "(All counts are lower bounds.)"
echo