Help for this page

Select Code to Download


  1. or download this
    # URL to use for links into perlmonks & cpan
    my($perlmonksURL_base) = 'http://www.perlmonks.org/';
    my($perlmonksURL_node) = 'http://www.perlmonks.org/index.pl?node=';
    my($perlmonksURL_id)   = 'http://www.perlmonks.org/index.pl?node_id=';
    my($perlmonksURL_cpan) = 'http://search.cpan.org/search?mode=module&qu
    +ery=';
    
  2. or download this
        printMessage("\n*Launching browser for node $node...");
        if    ($node =~ s/^id:\/\///)   { $url = $perlmonksURL_id   . $nod
    +e; }
        elsif ($node =~ s/^node_id=//)  { $url = $perlmonksURL_id   . $nod
    +e; }
    ...
        elsif ($node =~ /^http:/)       { $url = $node;                   
    +   }
        elsif ($node =~ s/^\/+//)       { $url = $perlmonksURL_base . $nod
    +e; }
        else                            { $url = $perlmonksURL_node . $nod
    +e; }