fix default text for pod links to other modules
authorMischa POSLAWSKY <perl@shiar.org>
Mon, 24 Mar 2008 06:44:13 +0000 (06:44 +0000)
committerMischa POSLAWSKY <perl@shiar.org>
Mon, 24 Mar 2008 06:56:42 +0000 (06:56 +0000)
Do not provide an explicit link presentation for stand-alone module
references (no context, so let the renderer do what it thinks best).
In a running text we want the opposite though: make sure modules names
aren't 'linkified' when they shouldn't (e.g. "use the XML::Quote
manpage" when we mean just the module).

PLP/Backend/Apache.pm
PLP/Backend/CGI.pm
PLP/Backend/FastCGI.pm
PLP/Functions.pm

index 94d38bf9cbaf0fe014c2384ce6265f608956d359..89e32c632a9dac5af972c02e72d722e40923ec8d 100644 (file)
@@ -125,5 +125,5 @@ Mischa POSLAWSKY <perl@shiar.org>
 
 =head1 SEE ALSO
 
-L<PLP|PLP>, L<PLP::Backend::FastCGI|PLP::Backend::FastCGI>, L<mod_perl|Apache>
+L<PLP>, L<PLP::Backend::FastCGI>, L<mod_perl>
 
index 3b4c4003f1e8a7cce2c5598e2a6740bd1b964872..7058b3ec5b4d7f5c57fc02db40d6179f652e1d7f 100644 (file)
@@ -122,5 +122,5 @@ Mischa POSLAWSKY <perl@shiar.org>
 
 =head1 SEE ALSO
 
-L<PLP|PLP>, L<PLP::Backend::FastCGI|PLP::Backend::FastCGI>
+L<PLP>, L<PLP::Backend::FastCGI>
 
index 8ee326172d1fa8dcfb114ed9aab9f9befc26e29d..205ece19e7e577b6544ea478388cf22832c9992e 100644 (file)
@@ -65,5 +65,5 @@ Mischa POSLAWSKY <perl@shiar.org>
 
 =head1 SEE ALSO
 
-L<PLP|PLP>, L<PLP::Backend::CGI|PLP::Backend::CGI>, L<FCGI|FCGI>
+L<PLP>, L<PLP::Backend::CGI>, L<FCGI>
 
index 3eb07cacef913d6080d49eb81ca3aa5586e6fbde..28815cd2e2ba2559b22a77ee49596e808101ff14 100644 (file)
@@ -213,7 +213,8 @@ In void context, B<changes> the values of the given variables. In other contexts
     <: print Entity($user_input); :>
 
 Be warned that this function also HTMLizes consecutive whitespace and newlines (using &nbsp; and <br> respectively).
-For simple escaping, use L<XML::Quote>. To escape high-bit characters as well, use L<HTML::Entities>.
+For simple escaping, use L<XML::Quote|XML::Quote>.
+To escape high-bit characters as well, use L<HTML::Entities|HTML::Entities>.
 
 =item EncodeURI LIST
 
@@ -227,11 +228,13 @@ Note that the following reserved characters are I<not> percent-encoded, even tho
 
        / ? : @ $
 
-This should be safe for escaping query values (as in the example above), but it may be a better idea to use L<URI::Escape> instead.
+This should be safe for escaping query values (as in the example above),
+but it may be a better idea to use L<URI::Escape|URI::Escape> instead.
 
 =item DecodeURI LIST
 
-Decodes %-encoded strings. Unlike L<URI::Escape>, it also translates + characters to spaces (as browsers use those).
+Decodes %-encoded strings. Unlike L<URI::Escape|URI::Escape>,
+it also translates + characters to spaces (as browsers use those).
 
 In void context, B<changes> the values of the given variables. In other contexts, returns the changed versions.