Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

(yakko: URL handler tweaks) Re: Perl/Tk Chatterbox Client

by yakko (Friar)
on Feb 04, 2001 at 04:16 UTC ( [id://56262]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use URI::Escape; # escape funky chars out of URLs
    
  2. or download this
    ...
        else                            { $url = $perlmonksURL      . $nod
    +e; }
        if ($^O =~ /MSWin32/i) {
    ...
    
  3. or download this
        # escape URL to keep netscape and/or the shell from choking
        # " " is also unsafe (causes "Doc contains no data"
        $url=~s/+/%2B/g; # real "+" is preserved
        $url=~s/\s/+/g; # get rid of whitespace, not just " "
        $url=uri_escape($url,"\',");
    
  4. or download this
    ...
        eval '
    ...
                $url =~ s/\s/+/g;
            if ($pid == 0) {
    ...
    
  5. or download this
        $url=uri_escape($url," \',+");
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (5)
As of 2024-04-19 16:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found