diff options
author | Jesse Luehrs <doy@tozt.net> | 2012-06-17 19:36:24 -0500 |
---|---|---|
committer | Jesse Luehrs <doy@tozt.net> | 2012-06-17 19:42:47 -0500 |
commit | 02af548d5a877e0987882da81f37ca2ad8355e74 (patch) | |
tree | ab4fcb3f8e83f3f0764248193eddae6f4b9c1b42 /cpan | |
parent | 74216f0477933a6ab02c6e6041e0dc98eb109017 (diff) | |
download | perl-02af548d5a877e0987882da81f37ca2ad8355e74.tar.gz |
Revert "bump Pod::Simple to CPAN version 3.22"
This reverts commit 74216f0477933a6ab02c6e6041e0dc98eb109017.
this update breaks podlators and Pod::HTML, so reverting it until i
figure out how to get those updated
Diffstat (limited to 'cpan')
60 files changed, 705 insertions, 954 deletions
diff --git a/cpan/Pod-Simple/ChangeLog b/cpan/Pod-Simple/ChangeLog index c4268cbf0e..2f00dc7301 100644 --- a/cpan/Pod-Simple/ChangeLog +++ b/cpan/Pod-Simple/ChangeLog @@ -1,47 +1,6 @@ # ChangeLog for Pod::Simple dist #--------------------------------------------------------------------------- -2012-05-27 David E. Wheeler <david@justatheory.org> - * Release 3.22 - - Fix but where Pod::Simple would whine about non-ASCII bytes in - code or comments. Now only does so for Pod (in the absence of an - "=encoding" tag. Broken in 3.21. Grant McLean. - -2012-05-23 David E. Wheeler <david@justatheory.org> - * Release 3.21 - - NOTE: COMPATABILITY CHANGE: The 'codes_in_verbatim' option in - Pod::Simple::XHTML is no longer enabled by default. This brings it - agreement with the other formatting classes, and eliminates - unexpected behavior in XHTML-formatted Pod. Users who depended on - this functionality can still get it by enabling - 'codes_in_verbatim' in their code. - - Fixed some typos in the documentation. Thanks to Jonathan Yu via - the Debian packagers via Florian Ragwitz (RT #75532). - - Now emit a warning the first time a non-ASCII byte is encountered - when no "=encoding" has been seen. Grant McLean. - - When a non-ASCII byte is encounted before an "=encoding" line has - been seen, a heuristic (as described in perlpodspec) is applied to - select UTF-8 encoding if the non-ASCII bytes form a valid UTF-8 - byte sequence, or Latin-1 otherwise. Grant McLean. - - Added 'handle_code' method to Pod::Simple::XHTML. This allows - subclasses to override the handling of verbatim blocks, and makes - for a more cohesive interface, to boot. Gisle Aas. - - Subsequent text segments are now joined together and passed as a - single unit to text handling code. This makes it easier for custom - handlers to process complete blocks of text in a single call to - 'handle_text', rather than in dribs and drabs. Gisle Aas. - - Replaced naive text wrapping code in Pod::Simple::DumpAsXML with - Text::Wrap, which was already used for similar purposes elsewhere - in Pod::Simple. Gisle Aas. - 2012-03-01 David E. Wheeler <david@justatheory.org> * Release 3.20 diff --git a/cpan/Pod-Simple/README b/cpan/Pod-Simple/README index 5fab2f548f..4608038f26 100644 --- a/cpan/Pod-Simple/README +++ b/cpan/Pod-Simple/README @@ -1,4 +1,4 @@ -=head1 Pod::Simple version 3.22 +=head1 Pod::Simple version 3.20 Pod::Simple is a Perl library for parsing text in the Pod ("plain old documentation") markup language that is typically used for writing diff --git a/cpan/Pod-Simple/lib/Pod/Simple.pm b/cpan/Pod-Simple/lib/Pod/Simple.pm index bce6445e0c..ad7a19b8ef 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple.pm @@ -18,7 +18,7 @@ use vars qw( ); @ISA = ('Pod::Simple::BlackBox'); -$VERSION = '3.22'; +$VERSION = '3.20'; @Known_formatting_codes = qw(I B C L E F S X Z); %Known_formatting_codes = map(($_=>1), @Known_formatting_codes); diff --git a/cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm b/cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm index 62c0b40bb3..c17cfd0ad5 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm @@ -23,7 +23,7 @@ use integer; # vroom! use strict; use Carp (); use vars qw($VERSION ); -$VERSION = '3.22'; +$VERSION = '3.20'; #use constant DEBUG => 7; BEGIN { require Pod::Simple; @@ -123,9 +123,6 @@ sub parse_lines { # Usage: $parser->parse_lines(@lines) } } - if(!$self->{'encoding'}) { - $self->_try_encoding_guess($line) - } DEBUG > 5 and print "# Parsing line: [$line]\n"; @@ -398,28 +395,6 @@ sub _handle_encoding_second_level { return; } -sub _try_encoding_guess { - my ($self,$line) = @_; - - if(!$self->{'in_pod'} and $line !~ /^=/m) { - return; # don't whine about non-ASCII bytes in code/comments - } - - return unless $line =~ /[^\x00-\x7f]/; # Look for non-ASCII byte - - my $encoding = $line =~ /[\xC0-\xFD][\x80-\xBF]/ ? 'UTF-8' : 'ISO8859-1'; - $self->_handle_encoding_line( "=encoding $encoding" ); - $self->{'_transcoder'} && $self->{'_transcoder'}->($line); - - my ($word) = $line =~ /(\S*[^\x00-\x7f]\S*)/; - - $self->whine( - $self->{'line_count'}, - "Non-ASCII character seen before =encoding in '$word'. Assuming $encoding" - ); - -} - #~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~` { @@ -1484,12 +1459,10 @@ sub _traverse_treelet_bit { # for use only by the routine above my $scratch; $self->_handle_element_start(($scratch=$name), shift @_); - while (@_) { - my $x = shift; - if (ref($x)) { + foreach my $x (@_) { + if(ref($x)) { &_traverse_treelet_bit($self, @$x); } else { - $x .= shift while @_ && !ref($_[0]); $self->_handle_text($x); } } diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Checker.pm b/cpan/Pod-Simple/lib/Pod/Simple/Checker.pm index 64a8740a77..c97267a86b 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/Checker.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/Checker.pm @@ -9,7 +9,7 @@ use Carp (); use Pod::Simple::Methody (); use Pod::Simple (); use vars qw( @ISA $VERSION ); -$VERSION = '3.22'; +$VERSION = '3.20'; @ISA = ('Pod::Simple::Methody'); BEGIN { *DEBUG = defined(&Pod::Simple::DEBUG) ? \&Pod::Simple::DEBUG diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Debug.pm b/cpan/Pod-Simple/lib/Pod/Simple/Debug.pm index 2230c8d806..5773302842 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/Debug.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/Debug.pm @@ -3,7 +3,7 @@ require 5; package Pod::Simple::Debug; use strict; use vars qw($VERSION ); -$VERSION = '3.22'; +$VERSION = '3.20'; sub import { my($value,$variable); diff --git a/cpan/Pod-Simple/lib/Pod/Simple/DumpAsText.pm b/cpan/Pod-Simple/lib/Pod/Simple/DumpAsText.pm index e7f72455c8..5e2d7ebf5f 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/DumpAsText.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/DumpAsText.pm @@ -1,7 +1,7 @@ require 5; package Pod::Simple::DumpAsText; -$VERSION = '3.22'; +$VERSION = '3.20'; use Pod::Simple (); BEGIN {@ISA = ('Pod::Simple')} diff --git a/cpan/Pod-Simple/lib/Pod/Simple/DumpAsXML.pm b/cpan/Pod-Simple/lib/Pod/Simple/DumpAsXML.pm index f467f430c2..e43422bbd7 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/DumpAsXML.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/DumpAsXML.pm @@ -1,14 +1,13 @@ require 5; package Pod::Simple::DumpAsXML; -$VERSION = '3.22'; +$VERSION = '3.20'; use Pod::Simple (); BEGIN {@ISA = ('Pod::Simple')} use strict; use Carp (); -use Text::Wrap qw(wrap); BEGIN { *DEBUG = \&Pod::Simple::DEBUG unless defined &DEBUG } @@ -50,8 +49,15 @@ sub _handle_text { my $indent = ' ' x $_[0]{'indent'}; my $text = $_[1]; _xml_escape($text); - local $Text::Wrap::huge = 'overflow'; - $text = wrap('', $indent, $text); + $text =~ # A not-totally-brilliant wrapping algorithm: + s/( + [^\n]{55} # Snare some characters from a line + [^\n\ ]{0,50} # and finish any current word + ) + \x20{1,10}(?!\n) # capture some spaces not at line-end + /$1\n$indent/gx # => line-break here + ; + print {$_[0]{'output_fh'}} $indent, $text, "\n"; } return; diff --git a/cpan/Pod-Simple/lib/Pod/Simple/HTML.pm b/cpan/Pod-Simple/lib/Pod/Simple/HTML.pm index 9bebf5dbec..12fad40358 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/HTML.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/HTML.pm @@ -10,7 +10,7 @@ use vars qw( $Doctype_decl $Content_decl ); @ISA = ('Pod::Simple::PullParser'); -$VERSION = '3.22'; +$VERSION = '3.20'; BEGIN { if(defined &DEBUG) { } # no-op diff --git a/cpan/Pod-Simple/lib/Pod/Simple/HTMLBatch.pm b/cpan/Pod-Simple/lib/Pod/Simple/HTMLBatch.pm index 9d322848c2..52e77bcc1b 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/HTMLBatch.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/HTMLBatch.pm @@ -5,7 +5,7 @@ use strict; use vars qw( $VERSION $HTML_RENDER_CLASS $HTML_EXTENSION $CSS $JAVASCRIPT $SLEEPY $SEARCH_CLASS @ISA ); -$VERSION = '3.22'; +$VERSION = '3.20'; @ISA = (); # Yup, we're NOT a subclass of Pod::Simple::HTML! # TODO: nocontents stylesheets. Strike some of the color variations? diff --git a/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm b/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm index b548c9c370..5aa5bc1989 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm @@ -3,12 +3,12 @@ require 5; package Pod::Simple::LinkSection; # Based somewhat dimly on Array::Autojoin use vars qw($VERSION ); -$VERSION = '3.22'; +$VERSION = '3.20'; use strict; use Pod::Simple::BlackBox; use vars qw($VERSION ); -$VERSION = '3.22'; +$VERSION = '3.20'; use overload( # So it'll stringify nice '""' => \&Pod::Simple::BlackBox::stringify_lol, diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Methody.pm b/cpan/Pod-Simple/lib/Pod/Simple/Methody.pm index 085ee46032..4113daf235 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/Methody.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/Methody.pm @@ -4,7 +4,7 @@ package Pod::Simple::Methody; use strict; use Pod::Simple (); use vars qw(@ISA $VERSION); -$VERSION = '3.22'; +$VERSION = '3.20'; @ISA = ('Pod::Simple'); # Yes, we could use named variables, but I want this to be impose diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Progress.pm b/cpan/Pod-Simple/lib/Pod/Simple/Progress.pm index e87feb1899..e85084a1c2 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/Progress.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/Progress.pm @@ -1,7 +1,7 @@ require 5; package Pod::Simple::Progress; -$VERSION = '3.22'; +$VERSION = '3.20'; use strict; # Objects of this class are used for noting progress of an diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParser.pm b/cpan/Pod-Simple/lib/Pod/Simple/PullParser.pm index bacfb4bbce..c9726fd564 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/PullParser.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParser.pm @@ -1,7 +1,7 @@ require 5; package Pod::Simple::PullParser; -$VERSION = '3.22'; +$VERSION = '3.20'; use Pod::Simple (); BEGIN {@ISA = ('Pod::Simple')} diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParserEndToken.pm b/cpan/Pod-Simple/lib/Pod/Simple/PullParserEndToken.pm index d4e2364b64..a45aba18ba 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/PullParserEndToken.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParserEndToken.pm @@ -5,7 +5,7 @@ use Pod::Simple::PullParserToken (); use strict; use vars qw(@ISA $VERSION); @ISA = ('Pod::Simple::PullParserToken'); -$VERSION = '3.22'; +$VERSION = '3.20'; sub new { # Class->new(tagname); my $class = shift; diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm b/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm index 44a7d57829..e9fbaa2b5e 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm @@ -5,7 +5,7 @@ use Pod::Simple::PullParserToken (); use strict; use vars qw(@ISA $VERSION); @ISA = ('Pod::Simple::PullParserToken'); -$VERSION = '3.22'; +$VERSION = '3.20'; sub new { # Class->new(tagname, optional_attrhash); my $class = shift; diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParserTextToken.pm b/cpan/Pod-Simple/lib/Pod/Simple/PullParserTextToken.pm index 92ab9d19a5..34985fdfb0 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/PullParserTextToken.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParserTextToken.pm @@ -5,7 +5,7 @@ use Pod::Simple::PullParserToken (); use strict; use vars qw(@ISA $VERSION); @ISA = ('Pod::Simple::PullParserToken'); -$VERSION = '3.22'; +$VERSION = '3.20'; sub new { # Class->new(text); my $class = shift; diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParserToken.pm b/cpan/Pod-Simple/lib/Pod/Simple/PullParserToken.pm index e32787cdce..b323ece2a3 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/PullParserToken.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParserToken.pm @@ -3,7 +3,7 @@ require 5; package Pod::Simple::PullParserToken; # Base class for tokens gotten from Pod::Simple::PullParser's $parser->get_token @ISA = (); -$VERSION = '3.22'; +$VERSION = '3.20'; use strict; sub new { # Class->new('type', stuff...); ## Overridden in derived classes anyway diff --git a/cpan/Pod-Simple/lib/Pod/Simple/RTF.pm b/cpan/Pod-Simple/lib/Pod/Simple/RTF.pm index 77eeef1cf6..0d184e3a66 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/RTF.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/RTF.pm @@ -8,7 +8,7 @@ package Pod::Simple::RTF; use strict; use vars qw($VERSION @ISA %Escape $WRAP %Tagmap); -$VERSION = '3.22'; +$VERSION = '3.20'; use Pod::Simple::PullParser (); BEGIN {@ISA = ('Pod::Simple::PullParser')} diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Search.pm b/cpan/Pod-Simple/lib/Pod/Simple/Search.pm index 13120c3533..7e507e62b9 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/Search.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/Search.pm @@ -4,7 +4,7 @@ package Pod::Simple::Search; use strict; use vars qw($VERSION $MAX_VERSION_WITHIN $SLEEPY); -$VERSION = '3.22'; ## Current version of this package +$VERSION = '3.20'; ## Current version of this package BEGIN { *DEBUG = sub () {0} unless defined &DEBUG; } # set DEBUG level use Carp (); diff --git a/cpan/Pod-Simple/lib/Pod/Simple/SimpleTree.pm b/cpan/Pod-Simple/lib/Pod/Simple/SimpleTree.pm index 97319a0b38..3671af121f 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/SimpleTree.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/SimpleTree.pm @@ -6,7 +6,7 @@ use strict; use Carp (); use Pod::Simple (); use vars qw( $ATTR_PAD @ISA $VERSION $SORT_ATTRS); -$VERSION = '3.22'; +$VERSION = '3.20'; BEGIN { @ISA = ('Pod::Simple'); *DEBUG = \&Pod::Simple::DEBUG unless defined &DEBUG; diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Subclassing.pod b/cpan/Pod-Simple/lib/Pod/Simple/Subclassing.pod index 6be2defcc8..792d1be5a2 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/Subclassing.pod +++ b/cpan/Pod-Simple/lib/Pod/Simple/Subclassing.pod @@ -378,13 +378,13 @@ That is, they all produce the same event structure (for the most part), namely: "Member Data" </L> -The I<raw> attribute depends on what the raw content of the C<LE<lt>E<gt>> is, -so that is why the event structure is the same "for the most part". +The I<raw> attribute depends on what the raw content of the L<> is, so that is +why the event structure is the same "for the most part". If you have not guessed it yet, the I<raw> attribute contains the raw, -original, unescaped content of the C<LE<lt>E<gt>> formatting code. In addition -to the examples above, take notice of the following event structure produced -by the following C<LE<lt>E<gt>> formatting code. +original, unescaped content of the L<> formatting code. In addition to the +examples above, take notice of the following event structure produced by +the following L<> formatting code. L<click B<here>|page/About the C<-M> switch> @@ -725,10 +725,10 @@ or =end html ...the parser will ignore these sections unless your subclass has -specified that it wants to see sections targeted to "html" (or whatever +specified that it wants to see sections targetted to "html" (or whatever the formatter name is). -If you want to process all sections, even if they're not targeted for you, +If you want to process all sections, even if they're not targetted for you, call this before you start parsing: $parser->accept_targets('*'); diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Text.pm b/cpan/Pod-Simple/lib/Pod/Simple/Text.pm index c7f0d4bd45..3032d0fcd5 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/Text.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/Text.pm @@ -6,7 +6,7 @@ use Carp (); use Pod::Simple::Methody (); use Pod::Simple (); use vars qw( @ISA $VERSION $FREAKYMODE); -$VERSION = '3.22'; +$VERSION = '3.20'; @ISA = ('Pod::Simple::Methody'); BEGIN { *DEBUG = defined(&Pod::Simple::DEBUG) ? \&Pod::Simple::DEBUG diff --git a/cpan/Pod-Simple/lib/Pod/Simple/TextContent.pm b/cpan/Pod-Simple/lib/Pod/Simple/TextContent.pm index 6ab2b751dc..dea1cde7cc 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/TextContent.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/TextContent.pm @@ -6,7 +6,7 @@ use strict; use Carp (); use Pod::Simple (); use vars qw( @ISA $VERSION ); -$VERSION = '3.22'; +$VERSION = '3.20'; @ISA = ('Pod::Simple'); sub new { diff --git a/cpan/Pod-Simple/lib/Pod/Simple/TiedOutFH.pm b/cpan/Pod-Simple/lib/Pod/Simple/TiedOutFH.pm index b8880ce25e..9f2a224a27 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/TiedOutFH.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/TiedOutFH.pm @@ -4,7 +4,7 @@ package Pod::Simple::TiedOutFH; use Symbol ('gensym'); use Carp (); use vars qw($VERSION ); -$VERSION = '3.22'; +$VERSION = '3.20'; #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm b/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm index 0776cf4edb..892436db7f 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm @@ -2,7 +2,7 @@ require 5; package Pod::Simple::Transcode; use vars qw($VERSION ); -$VERSION = '3.22'; +$VERSION = '3.20'; BEGIN { if(defined &DEBUG) {;} # Okay diff --git a/cpan/Pod-Simple/lib/Pod/Simple/TranscodeDumb.pm b/cpan/Pod-Simple/lib/Pod/Simple/TranscodeDumb.pm index 080386d19e..3303090343 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/TranscodeDumb.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/TranscodeDumb.pm @@ -5,7 +5,7 @@ require 5; package Pod::Simple::TranscodeDumb; use strict; use vars qw($VERSION %Supported); -$VERSION = '3.22'; +$VERSION = '3.20'; # This module basically pretends it knows how to transcode, except # only for null-transcodings! We use this when Encode isn't # available. diff --git a/cpan/Pod-Simple/lib/Pod/Simple/TranscodeSmart.pm b/cpan/Pod-Simple/lib/Pod/Simple/TranscodeSmart.pm index e9b71f5fce..a66dedd03b 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/TranscodeSmart.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/TranscodeSmart.pm @@ -9,7 +9,7 @@ use strict; use Pod::Simple; require Encode; use vars qw($VERSION ); -$VERSION = '3.22'; +$VERSION = '3.20'; sub is_dumb {0} sub is_smart {1} diff --git a/cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm b/cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm index 251e741ddd..9d31db0bad 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm @@ -45,7 +45,7 @@ declare the output character set as UTF-8 before parsing, like so: package Pod::Simple::XHTML; use strict; use vars qw( $VERSION @ISA $HAS_HTML_ENTITIES ); -$VERSION = '3.22'; +$VERSION = '3.20'; use Pod::Simple::Methody (); @ISA = ('Pod::Simple::Methody'); @@ -151,7 +151,7 @@ Add additional meta tags here, or blocks of inline CSS or JavaScript A string containing all characters that should be encoded as HTML entities, specified using the regular expression character class syntax (what you find within brackets in regular expressions). This value will be passed as the -second argument to the C<encode_entities> function of L<HTML::Entities>. If +second argument to the C<encode_entities> fuction of L<HTML::Entities>. IF L<HTML::Entities> is not installed, then any characters other than C<&<>"'> will be encoded numerically. @@ -251,6 +251,7 @@ sub new { $new->man_url_prefix('http://man.he.net/man'); $new->html_charset('ISO-8859-1'); $new->nix_X_codes(1); + $new->codes_in_verbatim(1); $new->{'scratch'} = ''; $new->{'to_index'} = []; $new->{'output'} = []; @@ -300,17 +301,11 @@ something like: my ($self, $text) = @_; if ($self->{'in_foo'}) { $self->{'scratch'} .= build_foo_html($text); - return; + } else { + $self->{'scratch'} .= $text; } - $self->SUPER::handle_text($text); } -=head2 handle_code - -This method handles the body of text that is marked up to be code. -You might for instance override this to plug in a syntax highlighter. -The base implementation just escapes the text and wraps it in C<<< <code>...</code> >>>. - =head2 accept_targets_as_html This method behaves like C<accept_targets_as_text>, but also marks the region @@ -332,21 +327,14 @@ sub accept_targets_as_html { } sub handle_text { - if ($_[0]{'in_code'}) { - return $_[0]->handle_code( $_[1] ); - } # escape special characters in HTML (<, >, &, etc) $_[0]{'scratch'} .= $_[0]->__in_literal_xhtml_region ? $_[1] : $_[0]->encode_entities( $_[1] ); } -sub handle_code { - $_[0]{'scratch'} .= '<code>' . $_[0]->encode_entities( $_[1] ) . '</code>'; -} - sub start_Para { $_[0]{'scratch'} = '<p>' } -sub start_Verbatim { $_[0]{'scratch'} = '<pre>'; $_[0]{'in_code'} = 1; } +sub start_Verbatim { $_[0]{'scratch'} = '<pre><code>' } sub start_head1 { $_[0]{'in_head'} = 1 } sub start_head2 { $_[0]{'in_head'} = 2 } @@ -409,8 +397,7 @@ sub end_over_text { sub end_Para { $_[0]{'scratch'} .= '</p>'; $_[0]->emit } sub end_Verbatim { - $_[0]{'scratch'} .= '</pre>'; - delete $_[0]{'in_code'}; + $_[0]{'scratch'} .= '</code></pre>'; $_[0]->emit; } @@ -581,8 +568,8 @@ sub end_Document { sub start_B { $_[0]{'scratch'} .= '<b>' } sub end_B { $_[0]{'scratch'} .= '</b>' } -sub start_C { $_[0]{'in_code'} = 1; } -sub end_C { delete $_[0]{'in_code'}; } +sub start_C { $_[0]{'scratch'} .= '<code>' } +sub end_C { $_[0]{'scratch'} .= '</code>' } sub start_F { $_[0]{'scratch'} .= '<i>' } sub end_F { $_[0]{'scratch'} .= '</i>' } diff --git a/cpan/Pod-Simple/lib/Pod/Simple/XMLOutStream.pm b/cpan/Pod-Simple/lib/Pod/Simple/XMLOutStream.pm index c3a1263307..bbb815a552 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/XMLOutStream.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/XMLOutStream.pm @@ -5,7 +5,7 @@ use strict; use Carp (); use Pod::Simple (); use vars qw( $ATTR_PAD @ISA $VERSION $SORT_ATTRS); -$VERSION = '3.22'; +$VERSION = '3.20'; BEGIN { @ISA = ('Pod::Simple'); *DEBUG = \&Pod::Simple::DEBUG unless defined &DEBUG; diff --git a/cpan/Pod-Simple/t/corpus.t b/cpan/Pod-Simple/t/corpus.t index 2f59302cfb..3427b915e1 100644 --- a/cpan/Pod-Simple/t/corpus.t +++ b/cpan/Pod-Simple/t/corpus.t @@ -168,7 +168,6 @@ foreach my $f (@testfiles) { skip $skippy, 0; } else { print "# $outfilename and $xml don't match!\n"; - print STDERR `diff -u $xml $outfilename`; ok 0; } diff --git a/cpan/Pod-Simple/t/corpus/2202jp.xml b/cpan/Pod-Simple/t/corpus/2202jp.xml index ea662aabf3..e0304954d4 100644 --- a/cpan/Pod-Simple/t/corpus/2202jp.xml +++ b/cpan/Pod-Simple/t/corpus/2202jp.xml @@ -9,11 +9,12 @@ DESCRIPTION </head1> <Para start_line="11"> - This is a test Pod document in ISO-2202-JP. Its content is some Japanese - haiku by famous poets. + This is a test Pod document in ISO-2202-JP. Its content + is some Japanese haiku by famous poets. </Para> <head2 start_line="15"> - MATSUO BASHO (松尾芭蕉 1644 - 1694) : + MATSUO BASHO (松尾芭蕉 1644 - 1694) + : </head2> <Para start_line="17"> 古池や蛙とび込む水の音 @@ -25,8 +26,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="23" xml:space="preserve"> - - 古池や蛙とび込む水の音 + 古池や蛙とび込む水の音 </VerbatimFormatted> <head2 start_line="27"> YOSA BUSON (与謝蕪村1716 - 1783) @@ -41,8 +41,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="35" xml:space="preserve"> - - 方八里雨雲よせぬ牡丹かな + 方八里雨雲よせぬ牡丹かな </VerbatimFormatted> <head2 start_line="37"> MASAOKA SHIKI (正岡子規 1867 - 1902) @@ -57,8 +56,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="45" xml:space="preserve"> - - いちはつの一輪白し春の暮 + いちはつの一輪白し春の暮 </VerbatimFormatted> <Para start_line="47"> 余命いくばくかある夜短し @@ -67,15 +65,15 @@ (yomei / ikubakuka aru / yo mijikashi) </Para> <VerbatimFormatted start_line="51" xml:space="preserve"> - - 余命いくばくかある夜短し + 余命いくばくかある夜短し </VerbatimFormatted> <head1 start_line="53"> AS A LIST </head1> <over-text indent="4" start_line="55"> <item-text start_line="57"> - MATSUO BASHO (松尾芭蕉 1644 - 1694) : + MATSUO BASHO (松尾芭蕉 1644 - 1694) + : </item-text> <Para start_line="59"> 古池や蛙とび込む水の音 @@ -87,8 +85,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="65" xml:space="preserve"> - - 古池や蛙とび込む水の音 + 古池や蛙とび込む水の音 </VerbatimFormatted> <item-text start_line="69"> YOSA BUSON (与謝蕪村1716 - 1783) @@ -103,8 +100,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="77" xml:space="preserve"> - - 方八里雨雲よせぬ牡丹かな + 方八里雨雲よせぬ牡丹かな </VerbatimFormatted> <item-text start_line="79"> MASAOKA SHIKI (正岡子規 1867 - 1902) @@ -119,8 +115,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="87" xml:space="preserve"> - - いちはつの一輪白し春の暮 + いちはつの一輪白し春の暮 </VerbatimFormatted> <Para start_line="89"> 余命いくばくかある夜短し @@ -129,8 +124,7 @@ (yomei / ikubakuka aru / yo mijikashi) </Para> <VerbatimFormatted start_line="93" xml:space="preserve"> - - 余命いくばくかある夜短し + 余命いくばくかある夜短し </VerbatimFormatted> </over-text> <Para start_line="97"> diff --git a/cpan/Pod-Simple/t/corpus/2202jpx.xml b/cpan/Pod-Simple/t/corpus/2202jpx.xml index fde111d542..57cb4ceadc 100644 --- a/cpan/Pod-Simple/t/corpus/2202jpx.xml +++ b/cpan/Pod-Simple/t/corpus/2202jpx.xml @@ -9,11 +9,12 @@ DESCRIPTION </head1> <Para start_line="11"> - This is a test Pod document in ISO-2202-JP. Its content is some Japanese - haiku by famous poets. + This is a test Pod document in ISO-2202-JP. Its content + is some Japanese haiku by famous poets. </Para> <head2 start_line="15"> - MATSUO BASHO (松尾芭蕉 1644 - 1694) : + MATSUO BASHO (松尾芭蕉 1644 - 1694) + : </head2> <Para start_line="17"> 古池や蛙とび込む水の音 @@ -25,8 +26,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="23" xml:space="preserve"> - - 古池や蛙とび込む水の音 + 古池や蛙とび込む水の音 </VerbatimFormatted> <head2 start_line="27"> YOSA BUSON (与謝蕪村1716 - 1783) @@ -41,8 +41,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="35" xml:space="preserve"> - - 方八里雨雲よせぬ牡丹かな + 方八里雨雲よせぬ牡丹かな </VerbatimFormatted> <head2 start_line="37"> MASAOKA SHIKI (正岡子規 1867 - 1902) @@ -57,8 +56,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="45" xml:space="preserve"> - - いちはつの一輪白し春の暮 + いちはつの一輪白し春の暮 </VerbatimFormatted> <Para start_line="47"> 余命いくばくかある夜短し @@ -67,15 +65,15 @@ (yomei / ikubakuka aru / yo mijikashi) </Para> <VerbatimFormatted start_line="51" xml:space="preserve"> - - 余命いくばくかある夜短し + 余命いくばくかある夜短し </VerbatimFormatted> <head1 start_line="53"> AS A LIST </head1> <over-text indent="4" start_line="55"> <item-text start_line="57"> - MATSUO BASHO (松尾芭蕉 1644 - 1694) : + MATSUO BASHO (松尾芭蕉 1644 - 1694) + : </item-text> <Para start_line="59"> 古池や蛙とび込む水の音 @@ -87,8 +85,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="65" xml:space="preserve"> - - 古池や蛙とび込む水の音 + 古池や蛙とび込む水の音 </VerbatimFormatted> <item-text start_line="69"> YOSA BUSON (与謝蕪村1716 - 1783) @@ -103,8 +100,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="77" xml:space="preserve"> - - 方八里雨雲よせぬ牡丹かな + 方八里雨雲よせぬ牡丹かな </VerbatimFormatted> <item-text start_line="79"> MASAOKA SHIKI (正岡子規 1867 - 1902) @@ -119,8 +115,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="87" xml:space="preserve"> - - いちはつの一輪白し春の暮 + いちはつの一輪白し春の暮 </VerbatimFormatted> <Para start_line="89"> 余命いくばくかある夜短し @@ -129,8 +124,7 @@ (yomei / ikubakuka aru / yo mijikashi) </Para> <VerbatimFormatted start_line="93" xml:space="preserve"> - - 余命いくばくかある夜短し + 余命いくばくかある夜短し </VerbatimFormatted> </over-text> <Para start_line="97"> diff --git a/cpan/Pod-Simple/t/corpus/2202jpy.xml b/cpan/Pod-Simple/t/corpus/2202jpy.xml index cc336af786..23d51e1ebb 100644 --- a/cpan/Pod-Simple/t/corpus/2202jpy.xml +++ b/cpan/Pod-Simple/t/corpus/2202jpy.xml @@ -9,11 +9,12 @@ DESCRIPTION </head1> <Para start_line="10"> - This is a test Pod document in ISO-2202-JP. Its content is some Japanese - haiku by famous poets. + This is a test Pod document in ISO-2202-JP. Its content + is some Japanese haiku by famous poets. </Para> <head2 start_line="14"> - MATSUO BASHO (松尾芭蕉 1644 - 1694) : + MATSUO BASHO (松尾芭蕉 1644 - 1694) + : </head2> <Para start_line="16"> 古池や蛙とび込む水の音 @@ -25,8 +26,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="22" xml:space="preserve"> - - 古池や蛙とび込む水の音 + 古池や蛙とび込む水の音 </VerbatimFormatted> <head2 start_line="26"> YOSA BUSON (与謝蕪村1716 - 1783) @@ -41,8 +41,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="34" xml:space="preserve"> - - 方八里雨雲よせぬ牡丹かな + 方八里雨雲よせぬ牡丹かな </VerbatimFormatted> <head2 start_line="36"> MASAOKA SHIKI (正岡子規 1867 - 1902) @@ -57,8 +56,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="44" xml:space="preserve"> - - いちはつの一輪白し春の暮 + いちはつの一輪白し春の暮 </VerbatimFormatted> <Para start_line="46"> 余命いくばくかある夜短し @@ -67,15 +65,15 @@ (yomei / ikubakuka aru / yo mijikashi) </Para> <VerbatimFormatted start_line="50" xml:space="preserve"> - - 余命いくばくかある夜短し + 余命いくばくかある夜短し </VerbatimFormatted> <head1 start_line="52"> AS A LIST </head1> <over-text indent="4" start_line="54"> <item-text start_line="56"> - MATSUO BASHO (松尾芭蕉 1644 - 1694) : + MATSUO BASHO (松尾芭蕉 1644 - 1694) + : </item-text> <Para start_line="58"> 古池や蛙とび込む水の音 @@ -87,8 +85,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="64" xml:space="preserve"> - - 古池や蛙とび込む水の音 + 古池や蛙とび込む水の音 </VerbatimFormatted> <item-text start_line="68"> YOSA BUSON (与謝蕪村1716 - 1783) @@ -103,8 +100,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="76" xml:space="preserve"> - - 方八里雨雲よせぬ牡丹かな + 方八里雨雲よせぬ牡丹かな </VerbatimFormatted> <item-text start_line="78"> MASAOKA SHIKI (正岡子規 1867 - 1902) @@ -119,8 +115,7 @@ As verbatim: </Para> <VerbatimFormatted start_line="86" xml:space="preserve"> - - いちはつの一輪白し春の暮 + いちはつの一輪白し春の暮 </VerbatimFormatted> <Para start_line="88"> 余命いくばくかある夜短し @@ -129,8 +124,7 @@ (yomei / ikubakuka aru / yo mijikashi) </Para> <VerbatimFormatted start_line="92" xml:space="preserve"> - - 余命いくばくかある夜短し + 余命いくばくかある夜短し </VerbatimFormatted> </over-text> <Para start_line="96"> diff --git a/cpan/Pod-Simple/t/corpus/8859_7.xml b/cpan/Pod-Simple/t/corpus/8859_7.xml index 436ac9c042..ffbf0d0855 100644 --- a/cpan/Pod-Simple/t/corpus/8859_7.xml +++ b/cpan/Pod-Simple/t/corpus/8859_7.xml @@ -12,37 +12,31 @@ </head1> <Para start_line="10"> Αρχαίο Πνεύμ' - αθάνατον, - αγνέ πατέρα - του ωραίου, - του μεγάλου - και τ' - αληθινού, + αθάνατον, αγνέ + πατέρα του + ωραίου, του + μεγάλου και + τ' αληθινού, </Para> <Para start_line="13"> - κατέβα, - φανερώσου κι - άστραψ' εδώ + κατέβα, φανερώσου + κι άστραψ' εδώ πέρα στη δόξα της δικής σου - γης και τ' - ουρανού. + γης και τ' ουρανού. </Para> <Para start_line="16"> Στο δρόμο και στο πάλεμα - και στο - λιθάρι, στων - ευγενών + και στο λιθάρι, + στων ευγενών Αγώνων λάμψε την ορμή, </Para> <Para start_line="19"> - και με τ' - αμάραντο - στεφάνωσε - κλωνάρι και - σιδερένιο + και με τ' αμάραντο + στεφάνωσε κλωνάρι + και σιδερένιο πλάσε κι άξιο το κορμί. </Para> @@ -55,12 +49,11 @@ μέγας ναός, </Para> <Para start_line="25"> - και τρέχει στο - ναό εδώ + και τρέχει + στο ναό εδώ προσκυνητής σου. Αρχαίο - Πνεύμ' - αθάνατο, κάθε - λαός. + Πνεύμ' αθάνατο, + κάθε λαός. </Para> </Document> diff --git a/cpan/Pod-Simple/t/corpus/cp1256.xml b/cpan/Pod-Simple/t/corpus/cp1256.xml index 18abda4d41..deacfd6c85 100644 --- a/cpan/Pod-Simple/t/corpus/cp1256.xml +++ b/cpan/Pod-Simple/t/corpus/cp1256.xml @@ -9,37 +9,33 @@ DESCRIPTION </head1> <Para start_line="8"> - This Pod document is a paragraph in Arabic from "The Five Pillars of - Islam" as CP-1256. + This Pod document is a paragraph in Arabic from "The + Five Pillars of Islam" as CP-1256. </Para> <Para start_line="13"> - وعن عمارة بن - حزم قال قال - رسول الله - صلى الله - عليه وسلم: + وعن عمارة + بن حزم قال + قال رسول الله + صلى الله عليه + وسلم: </Para> <Para start_line="15"> اربع فرضهن الله عز وجل في الاسلام - فمن جاء - بثلاث لم - يغنين عنه + فمن جاء بثلاث + لم يغنين عنه </Para> <Para start_line="17"> - شيئا حتى - يأتي بهن - جميعا - الصلاة - والزكاة + شيئا حتى يأتي + بهن جميعا + الصلاة والزكاة وصيام رمضان وحج </Para> <Para start_line="19"> البيت. رواه - احمد - والطبراني + احمد والطبراني في الكبير وفي اسناده ابن لهيعة. @@ -48,22 +44,18 @@ And now as a real single paragraph: </Para> <Para start_line="23"> - وعن عمارة بن - حزم قال قال - رسول الله - صلى الله - عليه وسلم: - اربع فرضهن - الله عز وجل - في الاسلام - فمن جاء - بثلاث لم - يغنين عنه - شيئا حتى - يأتي بهن - جميعا - الصلاة - والزكاة + وعن عمارة + بن حزم قال + قال رسول الله + صلى الله عليه + وسلم: اربع + فرضهن الله + عز وجل في الاسلام + فمن جاء بثلاث + لم يغنين عنه + شيئا حتى يأتي + بهن جميعا + الصلاة والزكاة وصيام رمضان وحج البيت. رواه احمد @@ -76,27 +68,26 @@ And now as a verbatim paragraph: </Para> <VerbatimFormatted start_line="30" xml:space="preserve"> - وعن عمارة بن - حزم قال قال - رسول الله - صلى الله - عليه وسلم: + وعن عمارة + بن حزم قال + قال رسول الله + صلى الله عليه + وسلم: + اربع فرضهن الله عز وجل في الاسلام - فمن جاء - بثلاث لم - يغنين عنه - شيئا حتى - يأتي بهن - جميعا - الصلاة - والزكاة + فمن جاء بثلاث + لم يغنين عنه + + شيئا حتى يأتي + بهن جميعا + الصلاة والزكاة وصيام رمضان وحج + البيت. رواه - احمد - والطبراني + احمد والطبراني في الكبير وفي اسناده ابن لهيعة. diff --git a/cpan/Pod-Simple/t/corpus/encwarn01.txt b/cpan/Pod-Simple/t/corpus/encwarn01.txt deleted file mode 100644 index 550b9c23d8..0000000000 --- a/cpan/Pod-Simple/t/corpus/encwarn01.txt +++ /dev/null @@ -1,11 +0,0 @@ - -=head1 NAME - -Encoding Warning 1 - implicitly Latin-1 - -=head2 DESCRIPTION - -This line should warn that the word café contains a non-ASCII character. - -But château should not generate a warning - once is enough. - diff --git a/cpan/Pod-Simple/t/corpus/encwarn01.xml b/cpan/Pod-Simple/t/corpus/encwarn01.xml deleted file mode 100644 index d64d56f55b..0000000000 --- a/cpan/Pod-Simple/t/corpus/encwarn01.xml +++ /dev/null @@ -1,36 +0,0 @@ -<Document start_line="2"> - <head1 start_line="2"> - NAME - </head1> - <Para start_line="4"> - Encoding Warning 1 - implicitly Latin-1 - </Para> - <head2 start_line="6"> - DESCRIPTION - </head2> - <Para start_line="8"> - This line should warn that the word café contains a non-ASCII - character. - </Para> - <Para start_line="10"> - But château should not generate a warning - once is enough. - </Para> - <head1 errata="1" start_line="-321"> - POD ERRORS - </head1> - <Para errata="1" start_line="-321"> - Hey! - <B> - The above document had some coding errors, which are explained below: - </B> - </Para> - <over-text errata="1" indent="4" start_line="-321"> - <item-text start_line="-321"> - Around line 8: - </item-text> - <Para start_line="-321"> - Non-ASCII character seen before =encoding in 'café'. Assuming - ISO8859-1 - </Para> - </over-text> -</Document> diff --git a/cpan/Pod-Simple/t/corpus/encwarn02.txt b/cpan/Pod-Simple/t/corpus/encwarn02.txt deleted file mode 100644 index fb1052b6c8..0000000000 --- a/cpan/Pod-Simple/t/corpus/encwarn02.txt +++ /dev/null @@ -1,11 +0,0 @@ - -=head1 NAME - -Encoding Warning 1 - implicitly UTF-8 - -=head2 DESCRIPTION - -This line should warn that the price €9.99 contains a non-ASCII character. - -But château should not generate a warning - once is enough. - diff --git a/cpan/Pod-Simple/t/corpus/encwarn02.xml b/cpan/Pod-Simple/t/corpus/encwarn02.xml deleted file mode 100644 index 02eeba37c9..0000000000 --- a/cpan/Pod-Simple/t/corpus/encwarn02.xml +++ /dev/null @@ -1,36 +0,0 @@ -<Document start_line="2"> - <head1 start_line="2"> - NAME - </head1> - <Para start_line="4"> - Encoding Warning 1 - implicitly UTF-8 - </Para> - <head2 start_line="6"> - DESCRIPTION - </head2> - <Para start_line="8"> - This line should warn that the price €9.99 contains a non-ASCII - character. - </Para> - <Para start_line="10"> - But château should not generate a warning - once is enough. - </Para> - <head1 errata="1" start_line="-321"> - POD ERRORS - </head1> - <Para errata="1" start_line="-321"> - Hey! - <B> - The above document had some coding errors, which are explained below: - </B> - </Para> - <over-text errata="1" indent="4" start_line="-321"> - <item-text start_line="-321"> - Around line 8: - </item-text> - <Para start_line="-321"> - Non-ASCII character seen before =encoding in '€9.99'. - Assuming UTF-8 - </Para> - </over-text> -</Document> diff --git a/cpan/Pod-Simple/t/corpus/fet_cont.xml b/cpan/Pod-Simple/t/corpus/fet_cont.xml index 045de1b97e..4f4995f925 100644 --- a/cpan/Pod-Simple/t/corpus/fet_cont.xml +++ b/cpan/Pod-Simple/t/corpus/fet_cont.xml @@ -3,11 +3,10 @@ NAME </head1> <Para start_line="9"> - Когда - читала ты - мучительные - строки -- Fet's "When you - were reading" + Когда читала + ты мучительные + строки -- Fet's + "When you were reading" </Para> <head1 start_line="11"> TEXT @@ -27,7 +26,8 @@ <Para errata="1" start_line="-321"> Hey! <B> - The above document had some coding errors, which are explained below: + The above document had some coding errors, which are explained + below: </B> </Para> <over-text errata="1" indent="4" start_line="-321"> @@ -35,7 +35,8 @@ Around line 13: </item-text> <Para start_line="-321"> - Couldn't do =encoding Shift-JIS: Encoding is already set to koi8-r + Couldn't do =encoding Shift-JIS: Encoding is already + set to koi8-r </Para> </over-text> </Document> diff --git a/cpan/Pod-Simple/t/corpus/fet_dup.xml b/cpan/Pod-Simple/t/corpus/fet_dup.xml index 3259f4e092..c33277deb0 100644 --- a/cpan/Pod-Simple/t/corpus/fet_dup.xml +++ b/cpan/Pod-Simple/t/corpus/fet_dup.xml @@ -3,11 +3,10 @@ NAME </head1> <Para start_line="9"> - Когда - читала ты - мучительные - строки -- Fet's "When you - were reading" + Когда читала + ты мучительные + строки -- Fet's + "When you were reading" </Para> <head1 start_line="11"> TEXT @@ -16,17 +15,14 @@ (This is a test Pod pocument in KOI8-R.) </Para> <Para start_line="15"> - Когда - читала ты - мучительные + Когда читала + ты мучительные строки, / Где - сердца - звучный пыл - сиянье льет - кругом / И - страсти - роковой - вздымаются + сердца звучный + пыл сиянье + льет кругом + / И страсти + роковой вздымаются потоки,- / Не вспомнила ль о чем? @@ -35,33 +31,26 @@ Я верить не хочу! Когда в степи, как - диво, / В - полночной - темноте - безвременно + диво, / В полночной + темноте безвременно горя, / Вдали перед тобой - прозрачно и - красиво / - Вставала + прозрачно + и красиво + / Вставала вдругзаря. </Para> <Para start_line="25"> - И в эту - красоту + И в эту красоту невольно - взор - тянуло, / В - тот - величавый - блеск за - темный весь - предел,- / - Ужель ничто - тебе в то - время не - шепнуло: / - Там человек + взор тянуло, + / В тот величавый + блеск за темный + весь предел,- + / Ужель ничто + тебе в то время + не шепнуло: + / Там человек сгорел! </Para> <Para start_line="30"> @@ -71,58 +60,60 @@ And now, as a verbatim section: </Para> <VerbatimFormatted start_line="34" xml:space="preserve"> - Когда - читала ты - мучительные + Когда читала + ты мучительные строки, + Где сердца звучный пыл сиянье льет кругом + И страсти - роковой - вздымаются + роковой вздымаются потоки,- - Не - вспомнила + + Не вспомнила ль о чем? - + + + Я верить не хочу! Когда в степи, как диво, - В - полночной - темноте - безвременно + + В полночной + темноте безвременно горя, - Вдали - перед тобой - прозрачно и - красиво - Вставала + + Вдали перед + тобой прозрачно + и красиво + + Вставала вдругзаря. </VerbatimFormatted> <VerbatimFormatted start_line="46" xml:space="preserve"> - И в эту - красоту + И в эту красоту невольно - взор - тянуло, - В тот - величавый - блеск за - темный весь - предел,- - Ужель - ничто тебе - в то время + взор тянуло, + + В тот величавый + блеск за темный + весь предел,- + + Ужель ничто + тебе в то время не шепнуло: - Там - человек + + Там человек сгорел! + - 15 февраля 1887 + + 15 февраля + 1887 </VerbatimFormatted> <Para start_line="53"> [end] diff --git a/cpan/Pod-Simple/t/corpus/iso6.xml b/cpan/Pod-Simple/t/corpus/iso6.xml index dae9fadfc9..b597324087 100644 --- a/cpan/Pod-Simple/t/corpus/iso6.xml +++ b/cpan/Pod-Simple/t/corpus/iso6.xml @@ -3,43 +3,40 @@ NAME </head1> <Para start_line="4"> - buniya-iso-6 -- test document: a paragraph in Arabic as ISO-8859-6 + buniya-iso-6 -- test document: a paragraph in Arabic as + ISO-8859-6 </Para> <head1 start_line="6"> DESCRIPTION </head1> <Para start_line="8"> - This document is a paragraph in Arabic from "The Five Pillars of - Islam" as ISO-8859-6. + This document is a paragraph in Arabic from "The Five + Pillars of Islam" as ISO-8859-6. </Para> <Para start_line="13"> - وعن عمارة بن - حزم قال قال - رسول الله - صلى الله - عليه وسلم: + وعن عمارة + بن حزم قال + قال رسول الله + صلى الله عليه + وسلم: </Para> <Para start_line="15"> اربع فرضهن الله عز وجل في الاسلام - فمن جاء - بثلاث لم - يغنين عنه + فمن جاء بثلاث + لم يغنين عنه </Para> <Para start_line="17"> - شيئا حتى - يأتي بهن - جميعا - الصلاة - والزكاة + شيئا حتى يأتي + بهن جميعا + الصلاة والزكاة وصيام رمضان وحج </Para> <Para start_line="19"> البيت. رواه - احمد - والطبراني + احمد والطبراني في الكبير وفي اسناده ابن لهيعة. @@ -48,22 +45,18 @@ And now as a real single paragraph: </Para> <Para start_line="23"> - وعن عمارة بن - حزم قال قال - رسول الله - صلى الله - عليه وسلم: - اربع فرضهن - الله عز وجل - في الاسلام - فمن جاء - بثلاث لم - يغنين عنه - شيئا حتى - يأتي بهن - جميعا - الصلاة - والزكاة + وعن عمارة + بن حزم قال + قال رسول الله + صلى الله عليه + وسلم: اربع + فرضهن الله + عز وجل في الاسلام + فمن جاء بثلاث + لم يغنين عنه + شيئا حتى يأتي + بهن جميعا + الصلاة والزكاة وصيام رمضان وحج البيت. رواه احمد @@ -76,30 +69,30 @@ And now as a verbatim paragraph: </Para> <VerbatimFormatted start_line="30" xml:space="preserve"> - وعن عمارة بن - حزم قال قال - رسول الله - صلى الله - عليه وسلم: + وعن عمارة + بن حزم قال + قال رسول الله + صلى الله عليه + وسلم: + اربع فرضهن الله عز وجل في الاسلام - فمن جاء - بثلاث لم - يغنين عنه - شيئا حتى - يأتي بهن - جميعا - الصلاة - والزكاة + فمن جاء بثلاث + لم يغنين عنه + + شيئا حتى يأتي + بهن جميعا + الصلاة والزكاة وصيام رمضان وحج + البيت. رواه - احمد - والطبراني + احمد والطبراني في الكبير وفي اسناده - ابن لهيعة. + ابن لهيعة. + </VerbatimFormatted> <Para start_line="35"> [end] diff --git a/cpan/Pod-Simple/t/corpus/koi8r.xml b/cpan/Pod-Simple/t/corpus/koi8r.xml index 2c851d41a8..94331d7e4d 100644 --- a/cpan/Pod-Simple/t/corpus/koi8r.xml +++ b/cpan/Pod-Simple/t/corpus/koi8r.xml @@ -3,11 +3,10 @@ NAME </head1> <Para start_line="6"> - Когда - читала ты - мучительные - строки -- Fet's "When you - were reading" + Когда читала + ты мучительные + строки -- Fet's + "When you were reading" </Para> <head1 start_line="8"> TEXT @@ -16,17 +15,14 @@ (This is a test Pod pocument in KOI8-R.) </Para> <Para start_line="12"> - Когда - читала ты - мучительные + Когда читала + ты мучительные строки, / Где - сердца - звучный пыл - сиянье льет - кругом / И - страсти - роковой - вздымаются + сердца звучный + пыл сиянье + льет кругом + / И страсти + роковой вздымаются потоки,- / Не вспомнила ль о чем? @@ -35,33 +31,26 @@ Я верить не хочу! Когда в степи, как - диво, / В - полночной - темноте - безвременно + диво, / В полночной + темноте безвременно горя, / Вдали перед тобой - прозрачно и - красиво / - Вставала + прозрачно + и красиво + / Вставала вдругзаря. </Para> <Para start_line="22"> - И в эту - красоту + И в эту красоту невольно - взор - тянуло, / В - тот - величавый - блеск за - темный весь - предел,- / - Ужель ничто - тебе в то - время не - шепнуло: / - Там человек + взор тянуло, + / В тот величавый + блеск за темный + весь предел,- + / Ужель ничто + тебе в то время + не шепнуло: + / Там человек сгорел! </Para> <Para start_line="27"> @@ -71,57 +60,61 @@ And now, as a verbatim section: </Para> <VerbatimFormatted start_line="31" xml:space="preserve"> - Когда - читала ты - мучительные + Когда читала + ты мучительные строки, + Где сердца звучный пыл сиянье льет кругом + И страсти - роковой - вздымаются + роковой вздымаются потоки,- - Не - вспомнила + + Не вспомнила ль о чем? - + + + Я верить не хочу! Когда в степи, как диво, - В - полночной - темноте - безвременно + + В полночной + темноте безвременно горя, - Вдали - перед тобой - прозрачно и - красиво - Вставала + + Вдали перед + тобой прозрачно + и красиво + + Вставала вдругзаря. - - И в эту - красоту + + + + И в эту красоту невольно - взор - тянуло, - В тот - величавый - блеск за - темный весь - предел,- - Ужель - ничто тебе - в то время + взор тянуло, + + В тот величавый + блеск за темный + весь предел,- + + Ужель ничто + тебе в то время не шепнуло: - Там - человек + + Там человек сгорел! + - 15 февраля 1887 + + 15 февраля + 1887 </VerbatimFormatted> <Para start_line="48"> [end] diff --git a/cpan/Pod-Simple/t/corpus/laozi38.xml b/cpan/Pod-Simple/t/corpus/laozi38.xml index e8c3e6597f..5ff72513ab 100644 --- a/cpan/Pod-Simple/t/corpus/laozi38.xml +++ b/cpan/Pod-Simple/t/corpus/laozi38.xml @@ -22,27 +22,28 @@ And as a verbatim section: </Para> <VerbatimFormatted start_line="20" xml:space="preserve"> - - 上德不德,是以有德﹔ - - 下德不失德,是以無德。 - - 上德無為而無以為﹔ - - 下德無為而有以為。 - - 上仁為之而無以為﹔ - - 上義為之而有以為。 - - 上禮為之而莫之應,則攘臂而扔之。 + 上德不德,是以有德﹔ + + 下德不失德,是以無德。 + + 上德無為而無以為﹔ + + 下德無為而有以為。 + + 上仁為之而無以為﹔ + + 上義為之而有以為。 + + 上禮為之而莫之應,則攘臂而扔之。 + - - 故失道而后德,失德而后仁,失仁而后義,失義而后禮。夫禮者,忠信之薄,而亂之首。 - - 前識者,道之華,而愚之始。 - - 是以大丈夫居其厚,不居其薄﹔居其實,不居其華。 + + 故失道而后德,失德而后仁,失仁而后義,失義而后禮。夫禮者,忠信之薄,而亂之首。 + + 前識者,道之華,而愚之始。 + + 是以大丈夫居其厚,不居其薄﹔居其實,不居其華。 + 故去彼取此。 </VerbatimFormatted> <Para start_line="33"> diff --git a/cpan/Pod-Simple/t/corpus/laozi38b.xml b/cpan/Pod-Simple/t/corpus/laozi38b.xml index e8c3e6597f..5ff72513ab 100644 --- a/cpan/Pod-Simple/t/corpus/laozi38b.xml +++ b/cpan/Pod-Simple/t/corpus/laozi38b.xml @@ -22,27 +22,28 @@ And as a verbatim section: </Para> <VerbatimFormatted start_line="20" xml:space="preserve"> - - 上德不德,是以有德﹔ - - 下德不失德,是以無德。 - - 上德無為而無以為﹔ - - 下德無為而有以為。 - - 上仁為之而無以為﹔ - - 上義為之而有以為。 - - 上禮為之而莫之應,則攘臂而扔之。 + 上德不德,是以有德﹔ + + 下德不失德,是以無德。 + + 上德無為而無以為﹔ + + 下德無為而有以為。 + + 上仁為之而無以為﹔ + + 上義為之而有以為。 + + 上禮為之而莫之應,則攘臂而扔之。 + - - 故失道而后德,失德而后仁,失仁而后義,失義而后禮。夫禮者,忠信之薄,而亂之首。 - - 前識者,道之華,而愚之始。 - - 是以大丈夫居其厚,不居其薄﹔居其實,不居其華。 + + 故失道而后德,失德而后仁,失仁而后義,失義而后禮。夫禮者,忠信之薄,而亂之首。 + + 前識者,道之華,而愚之始。 + + 是以大丈夫居其厚,不居其薄﹔居其實,不居其華。 + 故去彼取此。 </VerbatimFormatted> <Para start_line="33"> diff --git a/cpan/Pod-Simple/t/corpus/laozi38p.xml b/cpan/Pod-Simple/t/corpus/laozi38p.xml index e504af3628..bae00f25d4 100644 --- a/cpan/Pod-Simple/t/corpus/laozi38p.xml +++ b/cpan/Pod-Simple/t/corpus/laozi38p.xml @@ -10,8 +10,8 @@ DESCRIPTION </head1> <Para start_line="10"> - This is a test Pod document in the Big5 encoding. Its content is the 38th - canto from the + This is a test Pod document in the Big5 encoding. Its content + is the 38th canto from the <I> Dao De Jing </I> @@ -39,27 +39,28 @@ And as a verbatim section: </Para> <VerbatimFormatted start_line="30" xml:space="preserve"> - - 上德不德,是以有德﹔ - - 下德不失德,是以無德。 - - 上德無為而無以為﹔ - - 下德無為而有以為。 - - 上仁為之而無以為﹔ + 上德不德,是以有德﹔ + + 下德不失德,是以無德。 + + 上德無為而無以為﹔ + + 下德無為而有以為。 + + 上仁為之而無以為﹔ + + 上義為之而有以為。 + + 上禮為之而莫之應,則攘臂而扔之。 + - 上義為之而有以為。 - - 上禮為之而莫之應,則攘臂而扔之。 - - - 故失道而后德,失德而后仁,失仁而后義,失義而后禮。夫禮者,忠信之薄,而亂之首。 - - 前識者,道之華,而愚之始。 - - 是以大丈夫居其厚,不居其薄﹔居其實,不居其華。 + + 故失道而后德,失德而后仁,失仁而后義,失義而后禮。夫禮者,忠信之薄,而亂之首。 + + 前識者,道之華,而愚之始。 + + 是以大丈夫居其厚,不居其薄﹔居其實,不居其華。 + 故去彼取此。 </VerbatimFormatted> <Para start_line="43"> diff --git a/cpan/Pod-Simple/t/corpus/lat1fr.xml b/cpan/Pod-Simple/t/corpus/lat1fr.xml index e258844a67..017ae6abf7 100644 --- a/cpan/Pod-Simple/t/corpus/lat1fr.xml +++ b/cpan/Pod-Simple/t/corpus/lat1fr.xml @@ -9,25 +9,28 @@ DESCRIPTION </head1> <Para start_line="10"> - This is a test Pod document in Latin-1. Its content is the last two - paragraphs of Baudelaire's + This is a test Pod document in Latin-1. Its content is the + last two paragraphs of Baudelaire's <I> Le Joujou du pauvre </I> . </Para> <Para start_line="13"> - A travers ces barreaux symboliques séparant deux mondes, la grande - route et le château, l'enfant pauvre montrait à - l'enfant riche son propre joujou, que celui-ci examinait avidement - comme un objet rare et inconnu. Or, ce joujou, que le petit souillon - agaçait, agitait et secouait dans une boîte grillée, - c'était un rat vivant ! Les parents, par économie - sans doute, avaient tiré le joujou de la vie elle-même. + A travers ces barreaux symboliques séparant deux mondes, + la grande route et le château, l'enfant pauvre + montrait à l'enfant riche son propre joujou, que + celui-ci examinait avidement comme un objet rare et inconnu. + Or, ce joujou, que le petit souillon agaçait, agitait + et secouait dans une boîte grillée, c'était + un rat vivant +   + ! Les parents, par économie sans doute, avaient tiré + le joujou de la vie elle-même. </Para> <Para start_line="20"> - Et les deux enfants se riaient l'un à l'autre fraternellement, - avec des dents d'une + Et les deux enfants se riaient l'un à l'autre + fraternellement, avec des dents d'une <I> égale </I> @@ -37,20 +40,28 @@ As Verbatim </head2> <VerbatimFormatted start_line="25" xml:space="preserve"> - A travers ces barreaux symboliques séparant deux mondes, la grande - route - et le château, l'enfant pauvre montrait à l'enfant - riche son propre - joujou, que celui-ci examinait avidement comme un objet rare et - inconnu. - Or, ce joujou, que le petit souillon agaçait, agitait et secouait - dans - une boîte grillée, c'était un rat vivant ! + A travers ces barreaux symboliques séparant deux mondes, + la grande route + + et le château, l'enfant pauvre montrait à + l'enfant riche son propre + + joujou, que celui-ci examinait avidement comme un objet + rare et inconnu. + + Or, ce joujou, que le petit souillon agaçait, agitait + et secouait dans + + une boîte grillée, c'était un rat vivant ! Les parents, par économie + sans doute, avaient tiré le joujou de la vie elle-même. + + Et les deux enfants se riaient l'un à l'autre fraternellement, avec des + dents d'une égale blancheur. </VerbatimFormatted> <Para start_line="35"> diff --git a/cpan/Pod-Simple/t/corpus/lat1frim.xml b/cpan/Pod-Simple/t/corpus/lat1frim.xml index 8b9191c7e1..ffbbdb05ac 100644 --- a/cpan/Pod-Simple/t/corpus/lat1frim.xml +++ b/cpan/Pod-Simple/t/corpus/lat1frim.xml @@ -9,25 +9,28 @@ DESCRIPTION </head1> <Para start_line="8"> - This is a test Pod document in Latin-1. Its content is the last two - paragraphs of Baudelaire's + This is a test Pod document in Latin-1. Its content is the + last two paragraphs of Baudelaire's <I> Le Joujou du pauvre </I> . </Para> <Para start_line="11"> - A travers ces barreaux symboliques séparant deux mondes, la grande - route et le château, l'enfant pauvre montrait à - l'enfant riche son propre joujou, que celui-ci examinait avidement - comme un objet rare et inconnu. Or, ce joujou, que le petit souillon - agaçait, agitait et secouait dans une boîte grillée, - c'était un rat vivant ! Les parents, par économie - sans doute, avaient tiré le joujou de la vie elle-même. + A travers ces barreaux symboliques séparant deux mondes, + la grande route et le château, l'enfant pauvre + montrait à l'enfant riche son propre joujou, que + celui-ci examinait avidement comme un objet rare et inconnu. + Or, ce joujou, que le petit souillon agaçait, agitait + et secouait dans une boîte grillée, c'était + un rat vivant +   + ! Les parents, par économie sans doute, avaient tiré + le joujou de la vie elle-même. </Para> <Para start_line="18"> - Et les deux enfants se riaient l'un à l'autre fraternellement, - avec des dents d'une + Et les deux enfants se riaient l'un à l'autre + fraternellement, avec des dents d'une <I> égale </I> @@ -37,41 +40,31 @@ As Verbatim </head2> <VerbatimFormatted start_line="23" xml:space="preserve"> - A travers ces barreaux symboliques séparant deux mondes, la grande - route - et le château, l'enfant pauvre montrait à l'enfant - riche son propre - joujou, que celui-ci examinait avidement comme un objet rare et - inconnu. - Or, ce joujou, que le petit souillon agaçait, agitait et secouait - dans - une boîte grillée, c'était un rat vivant ! + A travers ces barreaux symboliques séparant deux mondes, + la grande route + + et le château, l'enfant pauvre montrait à + l'enfant riche son propre + + joujou, que celui-ci examinait avidement comme un objet + rare et inconnu. + + Or, ce joujou, que le petit souillon agaçait, agitait + et secouait dans + + une boîte grillée, c'était un rat vivant ! Les parents, par économie + sans doute, avaient tiré le joujou de la vie elle-même. + + Et les deux enfants se riaient l'un à l'autre fraternellement, avec des + dents d'une égale blancheur. </VerbatimFormatted> <Para start_line="33"> [end] </Para> - <head1 errata="1" start_line="-321"> - POD ERRORS - </head1> - <Para errata="1" start_line="-321"> - Hey! - <B> - The above document had some coding errors, which are explained below: - </B> - </Para> - <over-text errata="1" indent="4" start_line="-321"> - <item-text start_line="-321"> - Around line 11: - </item-text> - <Para start_line="-321"> - Non-ASCII character seen before =encoding in 'séparant'. - Assuming ISO8859-1 - </Para> - </over-text> </Document> diff --git a/cpan/Pod-Simple/t/corpus/pasternak_cp1251.xml b/cpan/Pod-Simple/t/corpus/pasternak_cp1251.xml index c1f59011ba..2276551b31 100644 --- a/cpan/Pod-Simple/t/corpus/pasternak_cp1251.xml +++ b/cpan/Pod-Simple/t/corpus/pasternak_cp1251.xml @@ -3,8 +3,8 @@ NAME </head1> <Para start_line="6"> - Зимняя ночь -- - Pasternak Russian test file (cp1251) + Зимняя ночь + -- Pasternak Russian test file (cp1251) </Para> <head1 start_line="8"> TEXT @@ -16,100 +16,76 @@ Зимняя ночь. </Para> <Para start_line="14"> - Мело, мело по - всей земле / - Во все - пределы. / - Свеча - горела на - столе, / - Свеча + Мело, мело + по всей земле + / Во все пределы. + / Свеча горела + на столе, / Свеча горела. </Para> <Para start_line="19"> Как летом - роем - мошкора / - Летит на - пламя, / - Слетались + роем мошкора + / Летит на пламя, + / Слетались хлопья со - двора / К - оконной + двора / К оконной раме. </Para> <Para start_line="24"> - Метель - лепила на - столе / - Кружки и - стрелы. / - Свеча + Метель лепила + на столе / Кружки + и стрелы. / Свеча горела на - столе, / - Свеча + столе, / Свеча горела. </Para> <Para start_line="29"> - На - озаренный - потолок / - Ложились - тени, / - Скрещенья - рук, - скркщенья + На озаренный + потолок / Ложились + тени, / Скрещенья + рук, скркщенья ног, / Судьбы скрещенья. </Para> <Para start_line="34"> И падали два - башмачка / - Со стуком - на пол, / И - воск + башмачка + / Со стуком + на пол, / И воск слезами с ночника / На - платье - капал. + платье капал. </Para> <Para start_line="39"> - И все - терялось в - снежной + И все терялось + в снежной мгле / Седой - и белой. / - Свеча + и белой. / Свеча горела на - столе, / - Свеча + столе, / Свеча горела. </Para> <Para start_line="44"> На свечку - дуло из - угла, / И жар - соблазна / - Вздымал, - как ангел, - два крыла / - Крестообразно. + дуло из угла, + / И жар соблазна + / Вздымал, как + ангел, два + крыла / Крестообразно. / </Para> <Para start_line="49"> Мело весь - месяц в - феврале, / И - то и дело / - Свеча - горела на - столе, / - Свеча + месяц в феврале, + / И то и дело + / Свеча горела + на столе, / Свеча горела. </Para> <Para start_line="54"> - -- Борис - Пастернак, 1946 + -- Борис Пастернак, + 1946 </Para> <head2 start_line="57"> As Preformatted @@ -119,98 +95,115 @@ </Para> <VerbatimFormatted start_line="61" xml:space="preserve"> Зимняя ночь. + + Мело, мело - по всей - земле - Во все - пределы. - Свеча - горела на - столе, - Свеча - горела. + по всей земле + + Во все пределы. + + Свеча горела + на столе, + + Свеча горела. + + Как летом - роем - мошкора - Летит на - пламя, + роем мошкора + + Летит на пламя, + Слетались хлопья со двора + К оконной раме. + - Метель - лепила на - столе - Кружки и - стрелы. - Свеча - горела на - столе, - Свеча - горела. + + Метель лепила + на столе + + Кружки и стрелы. + + Свеча горела + на столе, + + Свеча горела. + - На - озаренный + + На озаренный потолок + Ложились тени, + Скрещенья - рук, - скркщенья + рук, скркщенья ног, - Судьбы - скрещенья. + + Судьбы скрещенья. + - И падали - два + + И падали два башмачка + Со стуком на пол, - И воск - слезами с - ночника + + И воск слезами + с ночника + На платье капал. + - И все - терялось в - снежной + + И все терялось + в снежной мгле - Седой и - белой. - Свеча - горела на - столе, - Свеча - горела. + + Седой и белой. + + Свеча горела + на столе, + + Свеча горела. + + На свечку - дуло из - угла, - И жар - соблазна - Вздымал, - как ангел, - два крыла - - Крестообразно. + дуло из угла, + + И жар соблазна + + Вздымал, как + ангел, два + крыла + + Крестообразно. + + Мело весь - месяц в - феврале, + месяц в феврале, + И то и дело - Свеча - горела на - столе, - Свеча - горела. + + Свеча горела + на столе, + + Свеча горела. + - -- Борис - Пастернак, 1946 + + -- Борис Пастернак, + 1946 </VerbatimFormatted> <Para start_line="105"> [end] diff --git a/cpan/Pod-Simple/t/corpus/plain.xml b/cpan/Pod-Simple/t/corpus/plain.xml index 9358a5f202..05dc732ee5 100644 --- a/cpan/Pod-Simple/t/corpus/plain.xml +++ b/cpan/Pod-Simple/t/corpus/plain.xml @@ -12,12 +12,13 @@ The quick brown fox jumps over the lazy dog. </Para> <Para start_line="10"> - Military Intelligence Yukon rhosts penrep Weekly World News DSD Time Cohiba - finks rail gun DF ~ Corporate Security NATOA CCS DEVGRP + Military Intelligence Yukon rhosts penrep Weekly World News + DSD Time Cohiba finks rail gun DF ~ Corporate Security NATOA + CCS DEVGRP </Para> <Para start_line="13"> - CONUS Khaddafi NATIA data havens Spetznaz afsatcom BOP Semtex garbage KGB - ^? 737 1080H 1080H Satellite imagery smuggle + CONUS Khaddafi NATIA data havens Spetznaz afsatcom BOP Semtex + garbage KGB ^? 737 1080H 1080H Satellite imagery smuggle </Para> <Para start_line="16"> [end] diff --git a/cpan/Pod-Simple/t/corpus/plain_explicit.xml b/cpan/Pod-Simple/t/corpus/plain_explicit.xml index 3fafb99bf5..1db06b81f8 100644 --- a/cpan/Pod-Simple/t/corpus/plain_explicit.xml +++ b/cpan/Pod-Simple/t/corpus/plain_explicit.xml @@ -12,12 +12,13 @@ The quick brown fox jumps over the lazy dog. </Para> <Para start_line="12"> - Military Intelligence Yukon rhosts penrep Weekly World News DSD Time Cohiba - finks rail gun DF ~ Corporate Security NATOA CCS DEVGRP + Military Intelligence Yukon rhosts penrep Weekly World News + DSD Time Cohiba finks rail gun DF ~ Corporate Security NATOA + CCS DEVGRP </Para> <Para start_line="15"> - CONUS Khaddafi NATIA data havens Spetznaz afsatcom BOP Semtex garbage KGB - ^? 737 1080H 1080H Satellite imagery smuggle + CONUS Khaddafi NATIA data havens Spetznaz afsatcom BOP Semtex + garbage KGB ^? 737 1080H 1080H Satellite imagery smuggle </Para> <Para start_line="18"> [end] diff --git a/cpan/Pod-Simple/t/corpus/plain_latin1.xml b/cpan/Pod-Simple/t/corpus/plain_latin1.xml index c55f67feff..74f9baeb73 100644 --- a/cpan/Pod-Simple/t/corpus/plain_latin1.xml +++ b/cpan/Pod-Simple/t/corpus/plain_latin1.xml @@ -3,7 +3,8 @@ NAME </head1> <Para start_line="8"> - simple_text_document -- an explicitly Latin-1 (ASCII subset) test document + simple_text_document -- an explicitly Latin-1 (ASCII subset) + test document </Para> <head1 start_line="10"> TEXT @@ -12,12 +13,13 @@ The quick brown fox jumps over the lazy dog. </Para> <Para start_line="14"> - Military Intelligence Yukon rhosts penrep Weekly World News DSD Time Cohiba - finks rail gun DF ~ Corporate Security NATOA CCS DEVGRP + Military Intelligence Yukon rhosts penrep Weekly World News + DSD Time Cohiba finks rail gun DF ~ Corporate Security NATOA + CCS DEVGRP </Para> <Para start_line="17"> - CONUS Khaddafi NATIA data havens Spetznaz afsatcom BOP Semtex garbage KGB - ^? 737 1080H 1080H Satellite imagery smuggle + CONUS Khaddafi NATIA data havens Spetznaz afsatcom BOP Semtex + garbage KGB ^? 737 1080H 1080H Satellite imagery smuggle </Para> <Para start_line="20"> [end] diff --git a/cpan/Pod-Simple/t/corpus/plain_utf8.xml b/cpan/Pod-Simple/t/corpus/plain_utf8.xml index d6939a488a..f78846b54a 100644 --- a/cpan/Pod-Simple/t/corpus/plain_utf8.xml +++ b/cpan/Pod-Simple/t/corpus/plain_utf8.xml @@ -3,7 +3,8 @@ NAME </head1> <Para start_line="8"> - simple_text_document -- an explicitly UTF8 (ASCII subset) test document + simple_text_document -- an explicitly UTF8 (ASCII subset) + test document </Para> <head1 start_line="10"> TEXT @@ -12,12 +13,13 @@ The quick brown fox jumps over the lazy dog. </Para> <Para start_line="14"> - Military Intelligence Yukon rhosts penrep Weekly World News DSD Time Cohiba - finks rail gun DF ~ Corporate Security NATOA CCS DEVGRP + Military Intelligence Yukon rhosts penrep Weekly World News + DSD Time Cohiba finks rail gun DF ~ Corporate Security NATOA + CCS DEVGRP </Para> <Para start_line="17"> - CONUS Khaddafi NATIA data havens Spetznaz afsatcom BOP Semtex garbage KGB - ^? 737 1080H 1080H Satellite imagery smuggle + CONUS Khaddafi NATIA data havens Spetznaz afsatcom BOP Semtex + garbage KGB ^? 737 1080H 1080H Satellite imagery smuggle </Para> <Para start_line="20"> [end] diff --git a/cpan/Pod-Simple/t/corpus/polish_utf8.xml b/cpan/Pod-Simple/t/corpus/polish_utf8.xml index d8e91d8656..1aa77ec029 100644 --- a/cpan/Pod-Simple/t/corpus/polish_utf8.xml +++ b/cpan/Pod-Simple/t/corpus/polish_utf8.xml @@ -3,29 +3,32 @@ NAME </head1> <Para start_line="6"> - WŚRÓD NOCNEJ CISZY -- explicitly utf8 test document in Polish + WŚRÓD NOCNEJ CISZY -- explicitly utf8 test document + in Polish </Para> <head1 start_line="8"> DESCRIPTION </head1> <Para start_line="10"> - This is a test Pod document in UTF8. Its content is the lyrics to the - Polish Christmas carol "Wśród nocnej ciszy". + This is a test Pod document in UTF8. Its content is the + lyrics to the Polish Christmas carol "Wśród + nocnej ciszy". </Para> <Para start_line="13"> - Wśród nocnej ciszy głos się rozchodzi: / Wstańcie, - pasterze, Bóg się nam rodzi! / Czym prędzej się - wybierajcie, / Do Betlejem pospieszajcie / Przywitać Pana. + Wśród nocnej ciszy głos się rozchodzi: + / Wstańcie, pasterze, Bóg się nam rodzi! + / Czym prędzej się wybierajcie, / Do Betlejem + pospieszajcie / Przywitać Pana. </Para> <Para start_line="19"> - Poszli, znaleźli Dzieciątko w żłobie / Z wszystkimi - znaki danymi sobie. / Jako Bogu cześć Mu dali, / A - witając zawołali / Z wielkiej radości: + Poszli, znaleźli Dzieciątko w żłobie + / Z wszystkimi znaki danymi sobie. / Jako Bogu cześć + Mu dali, / A witając zawołali / Z wielkiej radości: </Para> <Para start_line="25"> - Ach, witaj Zbawco z dawno żądany, / Wiele tysięcy lat - wyglądany / Na Ciebie króle, prorocy / Czekali, a Tyś - tej nocy / Nam się objawił. + Ach, witaj Zbawco z dawno żądany, / Wiele tysięcy + lat wyglądany / Na Ciebie króle, prorocy / Czekali, + a Tyś tej nocy / Nam się objawił. </Para> <Para start_line="31"> I my czekamy na Ciebie, Pana, / A skoro przyjdziesz na głos @@ -40,27 +43,49 @@ </Para> <VerbatimFormatted start_line="41" xml:space="preserve"> Wśród nocnej ciszy głos się rozchodzi: + Wstańcie, pasterze, Bóg się nam rodzi! + Czym prędzej się wybierajcie, + Do Betlejem pospieszajcie + Przywitać Pana. + + Poszli, znaleźli Dzieciątko w żłobie + Z wszystkimi znaki danymi sobie. + Jako Bogu cześć Mu dali, + A witając zawołali + Z wielkiej radości: + + Ach, witaj Zbawco z dawno żądany, + Wiele tysięcy lat wyglądany + Na Ciebie króle, prorocy + Czekali, a Tyś tej nocy + Nam się objawił. + + I my czekamy na Ciebie, Pana, + A skoro przyjdziesz na głos kapłana, + Padniemy na twarz przed Tobą, + Wierząc, żeś jest pod osłoną + Chleba i wina. </VerbatimFormatted> <Para start_line="65"> diff --git a/cpan/Pod-Simple/t/corpus/s2763_sjis.xml b/cpan/Pod-Simple/t/corpus/s2763_sjis.xml index f6f704283b..55a4fd0027 100644 --- a/cpan/Pod-Simple/t/corpus/s2763_sjis.xml +++ b/cpan/Pod-Simple/t/corpus/s2763_sjis.xml @@ -9,8 +9,8 @@ DESCRIPTION </head1> <Para start_line="10"> - This is a test Pod document in Shift-JIS. Its content is some uninteresting - product specs I found on the Net. + This is a test Pod document in Shift-JIS. Its content is + some uninteresting product specs I found on the Net. </Para> <Para start_line="13"> It's an textitem list: @@ -26,8 +26,7 @@ 光源 </item-text> <Para start_line="23"> - GZ4 - ダイクロイックミラーランプ + GZ4 ダイクロイックミラーランプ 12V 10W×1 </Para> <item-text start_line="25"> @@ -46,8 +45,7 @@ 材質 </item-text> <Para start_line="35"> - 樹脂 - アルミ、アルマイト仕上 + 樹脂 アルミ、アルマイト仕上 ガラス </Para> <item-text start_line="37"> diff --git a/cpan/Pod-Simple/t/corpus/thai_iso11.xml b/cpan/Pod-Simple/t/corpus/thai_iso11.xml index 79fcff08b6..a9f4bb7a6e 100644 --- a/cpan/Pod-Simple/t/corpus/thai_iso11.xml +++ b/cpan/Pod-Simple/t/corpus/thai_iso11.xml @@ -9,54 +9,37 @@ DESCRIPTION </head1> <Para start_line="10"> - This is a test Pod document in ISO-8859-11. Its content is a poem to (by?) - Khun Thong Dang - (ภาพมิ่งมงคล), + This is a test Pod document in ISO-8859-11. Its content + is a poem to (by?) Khun Thong Dang (ภาพมิ่งมงคล), the pet of Bhumibol, the King of Thailand. </Para> <Para start_line="14"> As four flowed paragraphs: </Para> <Para start_line="16"> - ๏ - พระเมตตาแจ่มจับใจไผทสยาม - / - พระทัยงาม...มองภาพถ่ายมิถ่ายถอน - / เกล้าฯ - น้อมเกล้าฯ + ๏ พระเมตตาแจ่มจับใจไผทสยาม + / พระทัยงาม...มองภาพถ่ายมิถ่ายถอน + / เกล้าฯ น้อมเกล้าฯ พจน์เรียงเผดียงกลอน - / - สื่อสะท้อนพระการุณย์อุ่นดวงมาน๚ + / สื่อสะท้อนพระการุณย์อุ่นดวงมาน๚ </Para> <Para start_line="21"> - ๏ - ทุกภาพมิ่งมงคลยลแล้วยิ้ม - / - เอื้ออกอิ่มล้ำค่ามหาศาล - / - อยากเป็นคุณทองแดงนักจักอยู่งาน - / - เฝ้าคลอเคลียบทมาลย์พระภูมิพล๚ + ๏ ทุกภาพมิ่งมงคลยลแล้วยิ้ม + / เอื้ออกอิ่มล้ำค่ามหาศาล + / อยากเป็นคุณทองแดงนักจักอยู่งาน + / เฝ้าคลอเคลียบทมาลย์พระภูมิพล๚ </Para> <Para start_line="26"> - ๏ - พระหัตถ์บุญทรงเบิกหล้าพลิกหล้าเขียว - / - พระโอษฐ์เรียวตรัสห้ามสงครามฉล - / พระทัย ธ - โอภาสผ่องถ่องสกล - / - พระยุคลบาทย่างสืบสร้างไทย๚ + ๏ พระหัตถ์บุญทรงเบิกหล้าพลิกหล้าเขียว + / พระโอษฐ์เรียวตรัสห้ามสงครามฉล + / พระทัย ธ โอภาสผ่องถ่องสกล + / พระยุคลบาทย่างสืบสร้างไทย๚ </Para> <Para start_line="31"> - ๏ - น้อมเกล้าเทิดองค์ราชันศรันย์ศรี - / - บารมีหมื่นคู่คงอสงไขย - / - กรรดิราชกฤษฎาก้องหล้าไกล - / - ปลื้มประทับถ้วนทุกใจแห่งไท้เอย๚ะ๛ + ๏ น้อมเกล้าเทิดองค์ราชันศรันย์ศรี + / บารมีหมื่นคู่คงอสงไขย + / กรรดิราชกฤษฎาก้องหล้าไกล + / ปลื้มประทับถ้วนทุกใจแห่งไท้เอย๚ะ๛ </Para> <head2 start_line="36"> Verbatim Section @@ -65,42 +48,44 @@ And as a verbatim section: </Para> <VerbatimFormatted start_line="40" xml:space="preserve"> - ๏ - พระเมตตาแจ่มจับใจไผทสยาม - - พระทัยงาม...มองภาพถ่ายมิถ่ายถอน - เกล้าฯ - น้อมเกล้าฯ + ๏ พระเมตตาแจ่มจับใจไผทสยาม + + พระทัยงาม...มองภาพถ่ายมิถ่ายถอน + + เกล้าฯ น้อมเกล้าฯ พจน์เรียงเผดียงกลอน - - สื่อสะท้อนพระการุณย์อุ่นดวงมาน๚ + + สื่อสะท้อนพระการุณย์อุ่นดวงมาน๚ + - ๏ - ทุกภาพมิ่งมงคลยลแล้วยิ้ม - - เอื้ออกอิ่มล้ำค่ามหาศาล - - อยากเป็นคุณทองแดงนักจักอยู่งาน - - เฝ้าคลอเคลียบทมาลย์พระภูมิพล๚ + + ๏ ทุกภาพมิ่งมงคลยลแล้วยิ้ม + + เอื้ออกอิ่มล้ำค่ามหาศาล + + อยากเป็นคุณทองแดงนักจักอยู่งาน + + เฝ้าคลอเคลียบทมาลย์พระภูมิพล๚ + - ๏ - พระหัตถ์บุญทรงเบิกหล้าพลิกหล้าเขียว - - พระโอษฐ์เรียวตรัสห้ามสงครามฉล - พระทัย ธ - โอภาสผ่องถ่องสกล - - พระยุคลบาทย่างสืบสร้างไทย๚ + + ๏ พระหัตถ์บุญทรงเบิกหล้าพลิกหล้าเขียว + + พระโอษฐ์เรียวตรัสห้ามสงครามฉล + + พระทัย ธ โอภาสผ่องถ่องสกล + + พระยุคลบาทย่างสืบสร้างไทย๚ + - ๏ - น้อมเกล้าเทิดองค์ราชันศรันย์ศรี - - บารมีหมื่นคู่คงอสงไขย - - กรรดิราชกฤษฎาก้องหล้าไกล - - ปลื้มประทับถ้วนทุกใจแห่งไท้เอย๚ะ๛ + + ๏ น้อมเกล้าเทิดองค์ราชันศรันย์ศรี + + บารมีหมื่นคู่คงอสงไขย + + กรรดิราชกฤษฎาก้องหล้าไกล + + ปลื้มประทับถ้วนทุกใจแห่งไท้เอย๚ะ๛ </VerbatimFormatted> <Para start_line="60"> [end] diff --git a/cpan/Pod-Simple/t/x_nixer.t b/cpan/Pod-Simple/t/x_nixer.t index 34018109c5..f43518706a 100644 --- a/cpan/Pod-Simple/t/x_nixer.t +++ b/cpan/Pod-Simple/t/x_nixer.t @@ -44,14 +44,16 @@ ok( Pod::Simple::DumpAsXML->_out( "=pod\n\nZ<>F<C<Z<>fE<111>o> I<bar>> B<stuff X ' <Para>', ' <F>', ' <C>', - ' foo', + ' f', + ' o', + ' o', ' </C>', - ' ', + ' ', ' <I>', ' bar', ' </I>', ' </F>', - ' ', + ' ', ' <B>', ' stuff ', ' <X>', @@ -75,16 +77,19 @@ ok( Pod::Simple::DumpAsXML->_out( \&nixy, "=pod\n\nZ<>F<C<Z<>fE<111>o> I<bar>> B ' <Para>', ' <F>', ' <C>', - ' foo', + ' f', + ' o', + ' o', ' </C>', - ' ', + ' ', ' <I>', ' bar', ' </I>', ' </F>', - ' ', + ' ', ' <B>', - ' stuff baz', + ' stuff ', + ' baz', ' </B>', ' </Para>', '</Document>', @@ -104,12 +109,12 @@ ok( Pod::Simple::DumpAsXML->_out( \&mergy, "=pod\n\nZ<>F<C<Z<>fE<111>o> I<bar>> ' <C>', ' foo', ' </C>', - ' ', + ' ', ' <I>', ' bar', ' </I>', ' </F>', - ' ', + ' ', ' <B>', ' stuff ', ' <X>', @@ -135,12 +140,12 @@ ok( Pod::Simple::DumpAsXML->_out( \&nixy_mergy, "=pod\n\nZ<>F<C<Z<>fE<111>o> I<b ' <C>', ' foo', ' </C>', - ' ', + ' ', ' <I>', ' bar', ' </I>', ' </F>', - ' ', + ' ', ' <B>', ' stuff baz', ' </B>', @@ -189,12 +194,12 @@ ok( Pod::Simple::DumpAsXML->_out( \&nixy_mergy, "=pod\n\nZ<>F<C<Z<>fE<111>L<E<78 ' </L>', ' o', ' </C>', - ' ', + ' ', ' <I>', ' bar', ' </I>', ' </F>', - ' ', + ' ', ' <B>', ' stuff baz', ' </B>', diff --git a/cpan/Pod-Simple/t/xhtml01.t b/cpan/Pod-Simple/t/xhtml01.t index 07a746b192..32e875ef12 100644 --- a/cpan/Pod-Simple/t/xhtml01.t +++ b/cpan/Pod-Simple/t/xhtml01.t @@ -657,7 +657,6 @@ SKIP: for my $use_html_entities (0, 1) { } local $Pod::Simple::XHTML::HAS_HTML_ENTITIES = $use_html_entities; initialize($parser, $results); - $parser->codes_in_verbatim(1); $parser->parse_string_document(<<'EOPOD'); =pod @@ -667,7 +666,7 @@ SKIP: for my $use_html_entities (0, 1) { EOPOD is($results, <<"EOHTML", "Verbatim text with markup and embedded formatting"); <pre><code> # this header is very important & dont you forget it - </code><b><code>my \$file = <FILE> || Blank!;</code></b><code> + <b>my \$file = <FILE> || Blank!;</b> my \$text = "File is: " . <FILE>;</code></pre> EOHTML diff --git a/cpan/Pod-Simple/t/xhtml20.t b/cpan/Pod-Simple/t/xhtml20.t deleted file mode 100644 index 06a05ae064..0000000000 --- a/cpan/Pod-Simple/t/xhtml20.t +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/perl -w - -# t/xhtml20.t - test subclassing of Pod::Simple::XHTML - -use strict; -use warnings; -use Test::More tests => 2; - -BEGIN { - package MyXHTML; - use base 'Pod::Simple::XHTML'; - - sub handle_code { - my($self, $code) = @_; - $code = "[$code]"; - $self->SUPER::handle_code($code); - } -} - - - -my ($parser, $results); - -initialize(); -$parser->parse_string_document(<<'EOT'); -=head1 Foo - -This is C<$code> and so is: - - my $foo = 1; -EOT - -like $results, qr/<code>\[\$code]<\/code>/; -like $results , qr/<pre><code>\[ my \$foo = 1;/; - - -sub initialize { - $parser = MyXHTML->new; - $parser->output_string( \$results ); - $results = ''; -} |