mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
b6e3bbc037
- 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
9 lines
335 B
Plaintext
Executable File
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";
|
|
}
|