There are a couple of different ways to provide URLs for CPAN modules.
The Best Practice (very well documented in this Meta SO post) is to generate a link using http://search.cpan.org/perldoc URL, as follows:
- Desired Module:
Rose::HTML::Form::Field - URL to use:
http://search.cpan.org/perldoc?Rose::HTML::Form::Field - Resulting Link:
Rose::HTML::Form::Field
Unfortunately, there is a problem with following that Best Practice consistently, at least in the usual mode I operate in when answering SO [Perl] tag questions; which for me is:
- Googling for the module name
- Follow the (usually correct) link to the module's POD
- Confirm whatever is needed in the POD and/or copy/paste short examples from Synopsis if needed
- Place the link to the module into the answer by copying and pasting the URL of the POD I opened.
- PROBLEM: cpan.org always automatically re-directs the "canonical" version-independent URL shown above into a version-and-author-specific URL: http://search.cpan.org/~jsiracusa/Rose-HTML-Objects-0.611/lib/Rose/HTML/Form/Field.pm Therefore, the URL I copy/paste into the link in my answer is a bad one, not the canonical one.
I can use the three obvious solutions:
Let cjm edit the answer afterwards with the correct URL. No headache for my lazy head and Gold Copy Editor Badge for cjm :)
Memorize the damn cpan.org's search URL prefix and type it every time. This is not an efficient use of either memory or time IMHO.
Use
p3rl.orgPerl resource re-director: http://p3rl.org/Rose::HTML::Form::FieldThis is a lot easier than #2 as far as effort level, but my concern is "what happens if p3rl.org disappears?". It's also not quite copy/paste and thus subject to typos.
QUESTION
Are there other approaches I can use that are better? I was thinking of some kind of FireFox or greasemonkey add-on that would generate a link. The way I see this would be to piggyback on Markdown editor and perhaps add an icon for "Link to Perl resource" in addition to usual "Make a generic URL" one