Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 585806c

Browse files
committed
Remove handling of CVS entries for TODO/FAQ, because they are removed
now.
1 parent 234c7ce commit 585806c

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

src/tools/pgcvslog

+1-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
# $PostgreSQL: pgsql/src/tools/pgcvslog,v 1.39 2007/10/09 02:56:44 momjian Exp $
3+
# $PostgreSQL: pgsql/src/tools/pgcvslog,v 1.40 2009/08/29 17:09:20 momjian Exp $
44

55
# This utility is used to generate a compact list of changes
66
# for each release, bjm 2000-02-22
@@ -29,15 +29,6 @@
2929
#
3030
# To find branch time, look for "branches:" tag in CVS commit logs
3131
# e.g. "branches: 1.398.4;" matches "REL8_0_STABLE: 1.398.0.4".
32-
#
33-
# Remove these from the log file before processing to reduce the number
34-
# of unneeded log entries:
35-
#
36-
# /cvsroot/pgsql/doc/TODO
37-
# /cvsroot/pgsql/doc/FAQ
38-
# /cvsroot/pgsql/doc/src/FAQ/TODO.html
39-
# /cvsroot/pgsql/doc/src/FAQ/FAQ.html
40-
#
4132

4233
HTML="N"
4334
DEL="N"
@@ -80,12 +71,6 @@ awk ' BEGIN {html="'"$HTML"'"; lineno = 0;}
8071
# store working directory
8172
$0 ~ /^Working file:/ {workingfile = "/" $3}
8273
83-
# no need to show TODO or FAQ changes in the output
84-
$0 !~ /^====*$/ &&
85-
(workingfile == "/doc/TODO" || workingfile == "/doc/src/FAQ/TODO.html" ||
86-
workingfile == "/doc/FAQ" || workingfile == "/doc/src/FAQ/FAQ.html") \
87-
{next}
88-
8974
($0 ~ /^====*$/ || $0 ~ /^----*$/) \
9075
{
9176
# print blank line to separate entries

0 commit comments

Comments
 (0)