diff options
-rw-r--r-- | doc/src/sgml/Makefile | 7 | ||||
-rw-r--r-- | doc/src/sgml/release.sgml | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 010cabbf833..48901c46530 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -2,7 +2,7 @@ # # PostgreSQL documentation makefile # -# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.78 2006/10/05 02:04:32 momjian Exp $ +# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.79 2006/10/07 23:28:04 momjian Exp $ # #---------------------------------------------------------------------------- @@ -188,9 +188,12 @@ INSTALL HISTORY regress_README: % : %.html INSTALL.html: standalone-install.sgml installation.sgml version.sgml $(JADE.text) -V nochunks standalone-install.sgml installation.sgml >$@ +# remove links to main documentation HISTORY.html: release.sgml ( echo '<!doctype appendix PUBLIC "-//OASIS//DTD DocBook V4.2//EN">'; \ - cat $< ) >tempfile_HISTORY.sgml + cat $< ) | \ + $(PERL) -p -0 -e 's/<link[\n\s]+linkend[^>]*>//sg' | \ + $(PERL) -p -e 's/<\/link>//g' >tempfile_HISTORY.sgml $(JADE.text) -V nochunks tempfile_HISTORY.sgml >$@ rm tempfile_HISTORY.sgml diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 429a1a8e31b..b28493e8751 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.466 2006/10/07 22:06:25 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.467 2006/10/07 23:28:04 momjian Exp $ --> <!-- Typical markup: @@ -25,7 +25,9 @@ non-ASCII characters convert to HTML4 entity (&) escapes wrap long lines -For new features, add links to the documentation sections. +For new features, add links to the documentation sections. Use </link> +so that perl can remove it so HISTORY.html can be created with no +links to the main documentation. --> |