--- a/doc/doxygen.warnings.report.sh Thu May 30 13:53:56 2013 -0700
+++ b/doc/doxygen.warnings.report.sh Fri May 31 12:01:51 2013 -0700
@@ -91,6 +91,9 @@
sort -k 2 \
)
+# Sorted by number, decreasing
+undocsort=$(echo "$undocfiles" | sort -r )
+
# Total number of files
filecount=$( \
echo "$undocfiles" | \
@@ -117,7 +120,7 @@
printf "%6d directories with warnings\n" $modcount
echo
echo
-echo "Warnings by file"
+echo "Warnings by file (alphabetical)"
echo
echo "Count File"
echo "----- ----------------------------------"
@@ -126,8 +129,19 @@
printf "%6d files with warnings\n" $filecount
echo
echo
+echo "Warnings by file (numerical)"
+echo
+echo "Count File"
+echo "----- ----------------------------------"
+echo "$undocsort"
+echo "----------------------------------------"
+printf "%6d files with warnings\n" $filecount
+echo
+echo
echo "Doxygen Warnings Summary"
echo "----------------------------------------"
printf "%6d directories\n" $modcount
printf "%6d files\n" $filecount
printf "%6d warnings\n" $warncount
+
+