|
1 | 1 | #!/bin/sh |
2 | 2 |
|
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 $ |
4 | 4 |
|
5 | 5 | # This utility is used to generate a compact list of changes |
6 | 6 | # for each release, bjm 2000-02-22 |
|
29 | 29 | # |
30 | 30 | # To find branch time, look for "branches:" tag in CVS commit logs |
31 | 31 | # 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 | | -# |
41 | 32 |
|
42 | 33 | HTML="N" |
43 | 34 | DEL="N" |
@@ -80,12 +71,6 @@ awk 'BEGIN{html="'"$HTML"'"; lineno = 0;} |
80 | 71 | # store working directory |
81 | 72 | $0 ~ /^Working file:/{workingfile = "/" $3} |
82 | 73 |
|
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 | | -
|
89 | 74 | ($0 ~ /^====*$/ || $0 ~ /^----*$/) \ |
90 | 75 | { |
91 | 76 | # print blank line to separate entries |
|