Update to accept the new google:// links, in addition to the cpan:// links:
Replace the section for the perlmonks URLs with this code:
# URL to use for links into perlmonks, cpan, and google
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=';
my($perlmonksURL_google) = 'http://www.google.com/search?q=';
And update part of the launchBrowser sub with this code (also fixed those escaped slashes...):
printMessage("\n*Launching browser for node $node...");
if ($node =~ s,^id://,,) { $url = $perlmonksURL_id . $n
+ode; }
elsif ($node =~ s,^node_id=,,) { $url = $perlmonksURL_id . $n
+ode; }
elsif ($node =~ s,^cpan://,,) { $url = $perlmonksURL_cpan . $n
+ode; }
elsif ($node =~ s,^google://,,) { $url = $perlmonksURL_google . $n
+ode; }
elsif ($node =~ m,^http:,) { $url = $node;
+ }
elsif ($node =~ s,^/+,,) { $url = $perlmonksURL_base . $n
+ode; }
else { $url = $perlmonksURL_node . $n
+ode; }
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|