diff options
author | Bruce Momjian | 2009-08-29 17:09:20 +0000 |
---|---|---|
committer | Bruce Momjian | 2009-08-29 17:09:20 +0000 |
commit | a6a766a1ddc382548141989b3bb4f437a1277834 (patch) | |
tree | c9383245f0c3a6cdb001755e4cd1684a73902da9 | |
parent | 1e63ba5241c9a53c9ed91427738a8506d2738e68 (diff) |
Remove handling of CVS entries for TODO/FAQ, because they are removed
now.
-rwxr-xr-x | src/tools/pgcvslog | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/tools/pgcvslog b/src/tools/pgcvslog index 258d99fd30..9b3c29cb22 100755 --- a/src/tools/pgcvslog +++ b/src/tools/pgcvslog @@ -29,15 +29,6 @@ # # 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 |