X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlfaq9.pod;h=d2f2034e1be701389938455102ae9b5c5ebb2962;hb=2be4c08b6f13de9eea531f8a8a2229b3bd245b1a;hp=7fc0cdc3c1540a4ef9e48fc565c5fa3a670a0731;hpb=1d7c184104c076988718a01b77c8706aae05b092;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlfaq9.pod b/pod/perlfaq9.pod index 7fc0cdc..d2f2034 100644 --- a/pod/perlfaq9.pod +++ b/pod/perlfaq9.pod @@ -20,7 +20,7 @@ may not be so well received. The useful FAQs and related documents are: CGI FAQ - http://www.webthing.com/page.cgi/cgifaq + http://www.webthing.com/tutorials/cgifaq.html Web FAQ http://www.boutell.com/faq/ @@ -77,7 +77,7 @@ stamp prepended. =head2 How do I remove HTML from a string? The most correct way (albeit not the fastest) is to use HTML::Parser -from CPAN (part of the HTML-Tree package on CPAN). Another correct +from CPAN. Another mostly correct way is to use HTML::FormatText which not only removes HTML but also attempts to do a little simple formatting of the resulting plain text. @@ -170,7 +170,7 @@ through proxies: # or print HTML from a URL use LWP::Simple; - getprint "http://www.sn.no/libwww-perl/"; + getprint "http://www.linpro.no/lwp/"; # or print ASCII from HTML from a URL # also need HTML-Tree package from CPAN @@ -219,7 +219,7 @@ all the non-alphanumunder character (C<\W>) into their hex escapes. It's important that characters with special meaning like C and C I be translated. Probably the easiest way to get this right is to avoid reinventing the wheel and just use the URI::Escape module, -which is part of the libwww-perl package (LWP) available from CPAN. +available from CPAN. =head2 How do I redirect to another page?