Remove handling of CVS entries for TODO/FAQ, because they are removed
authorBruce Momjian <bruce@momjian.us>
Sat, 29 Aug 2009 17:09:20 +0000 (17:09 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 29 Aug 2009 17:09:20 +0000 (17:09 +0000)
now.

src/tools/pgcvslog

index 258d99fd30aa4e548558ddc2682c81197a08a5f8..9b3c29cb22511097a31503c587543d64f551e2fb 100755 (executable)
 #
 # To find branch time, look for "branches:" tag in CVS commit logs
 # e.g. "branches:  1.398.4;" matches "REL8_0_STABLE: 1.398.0.4".
-#
-# Remove these from the log file before processing to reduce the number
-# of unneeded log entries:
-#
-#      /cvsroot/pgsql/doc/TODO
-#      /cvsroot/pgsql/doc/FAQ
-#      /cvsroot/pgsql/doc/src/FAQ/TODO.html
-#      /cvsroot/pgsql/doc/src/FAQ/FAQ.html
-#
 
 HTML="N"
 DEL="N"
@@ -80,12 +71,6 @@ awk '        BEGIN   {html="'"$HTML"'"; lineno = 0;}
        # store working directory
        $0 ~ /^Working file:/   {workingfile = "/" $3}
 
-       # no need to show TODO or FAQ changes in the output
-       $0 !~ /^====*$/ &&
-       (workingfile == "/doc/TODO" || workingfile == "/doc/src/FAQ/TODO.html" ||
-        workingfile == "/doc/FAQ" || workingfile == "/doc/src/FAQ/FAQ.html") \
-               {next}
-
        ($0 ~ /^====*$/ || $0 ~ /^----*$/) \
        {
                # print blank line to separate entries