Change 20107 by [EMAIL PROTECTED] on 2003/07/10 04:55:03
Integrate:
[ 20103]
perlfaq sync.
[ 20104]
Deprecate v-strings.
[ 20106]
Upgrade to podlators 1.27.
Affected files ...
... //depot/maint-5.8/perl/lib/Pod/Text/Termcap.pm#3 integrate
... //depot/maint-5.8/perl/pod/perldata.pod#8 integrate
... //depot/maint-5.8/perl/pod/perlfaq1.pod#5 integrate
Differences ...
==== //depot/maint-5.8/perl/lib/Pod/Text/Termcap.pm#3 (text) ====
Index: perl/lib/Pod/Text/Termcap.pm
--- perl/lib/Pod/Text/Termcap.pm#2~20072~ Tue Jul 8 02:24:42 2003
+++ perl/lib/Pod/Text/Termcap.pm Wed Jul 9 21:55:03 2003
@@ -1,5 +1,5 @@
# Pod::Text::Termcap -- Convert POD data to ASCII text with format escapes.
-# $Id: Termcap.pm,v 1.10 2002/07/15 05:46:00 eagle Exp $
+# $Id: Termcap.pm,v 1.11 2003/07/09 21:52:30 eagle Exp $
#
# Copyright 1999, 2001, 2002 by Russ Allbery <[EMAIL PROTECTED]>
#
@@ -30,7 +30,7 @@
# Don't use the CVS revision as the version, since this module is also in Perl
# core and too many things could munge CVS magic revision strings. This
# number should ideally be the same as the CVS revision in podlators, however.
-$VERSION = 1.10;
+$VERSION = 1.11;
##############################################################################
@@ -43,8 +43,8 @@
my $self = shift;
my ($ospeed, $term, $termios);
- # The default Term::Cap path won't work on Solaris.
- # $ENV{HOME} is usually not set on MSWin32.
+ # $ENV{HOME} is usually not set on Windows. The default Term::Cap path
+ # may not work on Solaris.
my $home = exists $ENV{HOME} ? "$ENV{HOME}/.termcap:" : '';
$ENV{TERMPATH} = $home . '/etc/termcap:/usr/share/misc/termcap'
. ':/usr/share/lib/termcap';
==== //depot/maint-5.8/perl/pod/perldata.pod#8 (text) ====
Index: perl/pod/perldata.pod
--- perl/pod/perldata.pod#7~20101~ Wed Jul 9 10:49:23 2003
+++ perl/pod/perldata.pod Wed Jul 9 21:55:03 2003
@@ -341,6 +341,10 @@
=head3 Version Strings
+B<Note:> Version Strings (v-strings) have been deprecated. They will
+not be available after Perl 5.8. The marginal benefits of v-strings
+were greatly outweighed by the potential for Surprise and Confusion.
+
A literal of the form C<v1.20.300.4000> is parsed as a string composed
of characters with the specified ordinals. This form, known as
v-strings, provides an alternative, more readable way to construct
==== //depot/maint-5.8/perl/pod/perlfaq1.pod#5 (text) ====
Index: perl/pod/perlfaq1.pod
--- perl/pod/perlfaq1.pod#4~18466~ Thu Jan 9 06:07:25 2003
+++ perl/pod/perlfaq1.pod Wed Jul 9 21:55:03 2003
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq1 - General Questions About Perl ($Revision: 1.11 $, $Date: 2002/12/06
07:40:11 $)
+perlfaq1 - General Questions About Perl ($Revision: 1.12 $, $Date: 2003/07/09
15:47:28 $)
=head1 DESCRIPTION
@@ -91,6 +91,16 @@
"perl5" altogether. It's not really that big a deal, though.
See L<perlhist> for a history of Perl revisions.
+
+=head2 What is Ponie?
+
+At The O'Reilly Open Source Software Convention in 2003, Artur
+Bergman, Fotango, and The Perl Foundation announced a project to
+run perl5 on the Parrot virtual machine named Ponie. Ponie stands for
+Perl On New Internal Engine. The Perl 5.10 language implementation
+will be used for Ponie, and there will be no language level
+differences between perl5 and ponie. Ponie is not a complete rewrite
+of perl5.
=head2 What is perl6?
End of Patch.