NODE 8c4cb948fixing netscape
Alex Strasheim <alex@proust.suba.com>Tue, 7 May 1996 16:58:40 +0800
http://reality.sgi.com/grafica/framefree
This doesn't have any direct crypto relevance -- it's a program that
improves navigator binaries by modifying them so they won't understand
frames.
I'm a little surprised that we didn't think of this when we were waiting
for Jeff to allow us to turn off javascript.
--
Alex Strasheim, alex@proust.suba.com
NODE e0e1a18fRe: fixing netscape
John Robert LoVerso <John@loverso.southborough.ma.us>Wed, 8 May 1996 03:30:33 +0800
It's a shame he wrote all that C code when this suffices
perl -i.orig -pe '
s/\bnoframes\b/nofraMes/g;
s/\bframeset\b/fraMeset/g' netscape*
also, you don't need to xxxx out the tags; Netscape downcases incoming HTML
and then uses strcmp().
John