gno/doc/refs/posthtml
gdr-ftp b6e3bbc037 mksgml posthtml:
- initial checkin
Makefile:
	- changes to allow for the new gsh ref manual
	- moved *.Z *.gz files into an "uploads" subdir
README:
	- added some comments re the sgml stuff
head.html, index.html, mkmandex, mkhtmlman, manindex.html, mkstatus,
oldrefs.html, refs.html, tail.html:
	- eliminated <base> tags
	- fully specify page colours
refs.html:
	- added links for new gsh manual
index.html:
	- add dates for "NEW" section
	- added comment about new gsh manual
intro.tex:
	- fully specify page colours
	- fixed a typo:  "2.0.4" --> "2.0.6" in installation notes
kern.tex:
	- fully specify page colours
1999-02-21 23:37:13 +00:00

9 lines
335 B
Plaintext
Executable File

#! /usr/bin/perl5 -i
while(<>) {
chomp;
s,><BODY\s*,><BODY bgcolor=\#ffffff textcolor=\#000000 linkcolor=\#0000FF vlinkcolor=\#001177 alinkcolor=\#001177 ,;
s,></BODY\s*,><hr>Back to the <A HREF="../index.html">GNO Home</A> page or the <A HREF="../refs.html">Reference Manuals</A> page.<p></BODY ,;
print $_ . "\n";
}