Change 30688 by [EMAIL PROTECTED] on 2007/03/22 14:45:36

        Misc. L<> fixes in core docs : don't link to man pages;
        provide full urls when linking to web sites.

Affected files ...

... //depot/perl/pod/perlipc.pod#66 edit
... //depot/perl/pod/perllocale.pod#40 edit
... //depot/perl/pod/perlpacktut.pod#14 edit

Differences ...

==== //depot/perl/pod/perlipc.pod#66 (text) ====
Index: perl/pod/perlipc.pod
--- perl/pod/perlipc.pod#65~30525~      2007-03-09 09:47:22.000000000 -0800
+++ perl/pod/perlipc.pod        2007-03-22 07:45:36.000000000 -0700
@@ -543,7 +543,7 @@
 The fork() has to come before the setsid() to ensure that you aren't a
 process group leader (the setsid() will fail if you are).  If your
 system doesn't have the setsid() function, open F</dev/tty> and use the
-C<TIOCNOTTY> ioctl() on it instead.  See L<tty(4)> for details.
+C<TIOCNOTTY> ioctl() on it instead.  See tty(4) for details.
 
 Non-Unix users should check their Your_OS::Process module for other
 solutions.

==== //depot/perl/pod/perllocale.pod#40 (text) ====
Index: perl/pod/perllocale.pod
--- perl/pod/perllocale.pod#39~28965~   2006-10-08 10:07:42.000000000 -0700
+++ perl/pod/perllocale.pod     2007-03-22 07:45:36.000000000 -0700
@@ -177,7 +177,7 @@
 If no second argument is provided and the category is LC_ALL, the
 result is implementation-dependent.  It may be a string of
 concatenated locales names (separator also implementation-dependent)
-or a single locale name.  Please consult your L<setlocale(3)> for
+or a single locale name.  Please consult your setlocale(3) man page for
 details.
 
 If a second argument is given and it corresponds to a valid locale,
@@ -197,11 +197,11 @@
 If the second argument does not correspond to a valid locale, the locale
 for the category is not changed, and the function returns I<undef>.
 
-For further information about the categories, consult L<setlocale(3)>.
+For further information about the categories, consult setlocale(3).
 
 =head2 Finding locales
 
-For locales available in your system, consult also L<setlocale(3)> to
+For locales available in your system, consult also setlocale(3) to
 see whether it leads to the list of available locales (search for the
 I<SEE ALSO> section).  If that fails, try the following command lines:
 
@@ -289,7 +289,7 @@
 other locale variables) may affect other programs as well, not just
 Perl.  In particular, external programs run from within Perl will see
 these changes.  If you make the new settings permanent (read on), all
-programs you run see the changes.  See L<ENVIRONMENT> for
+programs you run see the changes.  See L<"ENVIRONMENT"> for
 the full list of relevant environment variables and L<USING LOCALES>
 for their effects in Perl.  Effects in other programs are 
 easily deducible.  For example, the variable LC_COLLATE may well affect

==== //depot/perl/pod/perlpacktut.pod#14 (text) ====
Index: perl/pod/perlpacktut.pod
--- perl/pod/perlpacktut.pod#13~30493~  2007-03-07 05:23:23.000000000 -0800
+++ perl/pod/perlpacktut.pod    2007-03-22 07:45:36.000000000 -0700
@@ -623,7 +623,7 @@
 range, up to 255. After some more Latin extensions we find the character
 sets from languages using non-Roman alphabets, interspersed with a
 variety of symbol sets such as currency symbols, Zapf Dingbats or Braille.
-(You might want to visit L<www.unicode.org> for a look at some of
+(You might want to visit L<http://www.unicode.org/> for a look at some of
 them - my personal favourites are Telugu and Kannada.)
 
 The Unicode character sets associates characters with integers. Encoding
@@ -668,7 +668,7 @@
 
 The pack code C<w> has been added to support a portable binary data
 encoding scheme that goes way beyond simple integers. (Details can
-be found at L<Casbah.org>, the Scarab project.)  A BER (Binary Encoded
+be found at L<http://Casbah.org/>, the Scarab project.)  A BER (Binary Encoded
 Representation) compressed unsigned integer stores base 128
 digits, most significant digit first, with as few digits as possible.
 Bit eight (the high bit) is set on each byte except the last. There
End of Patch.

Reply via email to