Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

•Re: Change URIs in Text to HTML-Links

by merlyn (Sage)
on Nov 07, 2002 at 16:37 UTC ( [id://211110]=note: print w/replies, xml ) Need Help??


in reply to Change URIs in Text to HTML-Links

You left out the mandatory "escape HTML entity" calls. Shame on you.
use HTML::Entities qw(encode_entities); use URI::Find; ... my $finder = URI::Find->new # instead of URI::Find::Schemeless ( sub { my ($uri, $originalUri) = @_; return join "", q/<a href="/, encode_entities("$uri"), q/">/, encode_entities($originalUri), q/>/; } ); ...
Yes, I've already complained to the author. He "fixed" the manpage incorrectly, by escaping the entire source text first. That breaks in-page URLs that look like http://example.com/foo/bar?a=b&c=d. {sigh} I was too worn out explaining to him why that was wrong to submit another fix.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://211110]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (7)
As of 2024-04-19 14:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found