r32294 - in /trunk/libpod-pom-perl: Changes META.yml debian/changelog lib/Pod/POM.pm t/testcases/120-verbatim-paragraphs.yml t/testcases/130-blockquote-paragraphs.yml t/testcases/140-lists.yml t/testcases/220-mixed-sequences.yml

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Tue Mar 24 01:09:10 UTC 2009


Author: ryan52-guest
Date: Tue Mar 24 01:09:06 2009
New Revision: 32294

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=32294
Log:
another new upstream

Modified:
    trunk/libpod-pom-perl/Changes
    trunk/libpod-pom-perl/META.yml
    trunk/libpod-pom-perl/debian/changelog
    trunk/libpod-pom-perl/lib/Pod/POM.pm
    trunk/libpod-pom-perl/t/testcases/120-verbatim-paragraphs.yml
    trunk/libpod-pom-perl/t/testcases/130-blockquote-paragraphs.yml
    trunk/libpod-pom-perl/t/testcases/140-lists.yml
    trunk/libpod-pom-perl/t/testcases/220-mixed-sequences.yml

Modified: trunk/libpod-pom-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-pom-perl/Changes?rev=32294&op=diff
==============================================================================
--- trunk/libpod-pom-perl/Changes (original)
+++ trunk/libpod-pom-perl/Changes Tue Mar 24 01:09:06 2009
@@ -10,8 +10,20 @@
 #   Andrew Ford    <A.Ford at ford-mason.co.uk>
 #
 #------------------------------------------------------------------------
-# $Id: Changes 63 2009-03-20 12:50:56Z ford $
+# $Id: Changes 67 2009-03-21 10:18:17Z ford $
 #========================================================================
+
+#------------------------------------------------------------------------
+# Version 0.24  2009-03-21
+#------------------------------------------------------------------------
+
+* fixed broken YAML files in testcases that were causing tests to fail on
+  some platforms
+
+* added text and HTML verbatim paragraph view tests
+
+* fixed typo in synopsis in Pod::POM
+
 
 #------------------------------------------------------------------------
 # Version 0.23  2009-03-20

Modified: trunk/libpod-pom-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-pom-perl/META.yml?rev=32294&op=diff
==============================================================================
--- trunk/libpod-pom-perl/META.yml (original)
+++ trunk/libpod-pom-perl/META.yml Tue Mar 24 01:09:06 2009
@@ -22,4 +22,4 @@
   Test::More: 0
   Text::Wrap: 0
   YAML::Any: 0
-version: 0.23
+version: 0.24

Modified: trunk/libpod-pom-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-pom-perl/debian/changelog?rev=32294&op=diff
==============================================================================
--- trunk/libpod-pom-perl/debian/changelog (original)
+++ trunk/libpod-pom-perl/debian/changelog Tue Mar 24 01:09:06 2009
@@ -1,9 +1,9 @@
-libpod-pom-perl (0.23-1) UNRELEASED; urgency=low
+libpod-pom-perl (0.24-1) UNRELEASED; urgency=low
 
   * New upstream release
   * add myself to uploaders
 
- -- Ryan Niebur <ryanryan52 at gmail.com>  Sat, 21 Mar 2009 01:48:28 -0700
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Mon, 23 Mar 2009 18:08:23 -0700
 
 libpod-pom-perl (0.18-1) unstable; urgency=low
 

Modified: trunk/libpod-pom-perl/lib/Pod/POM.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-pom-perl/lib/Pod/POM.pm?rev=32294&op=diff
==============================================================================
--- trunk/libpod-pom-perl/lib/Pod/POM.pm (original)
+++ trunk/libpod-pom-perl/lib/Pod/POM.pm Tue Mar 24 01:09:06 2009
@@ -18,7 +18,7 @@
 #   modify it under the same terms as Perl itself.
 #
 # REVISION
-#   $Id: POM.pm 57 2009-03-20 12:33:18Z ford $
+#   $Id: POM.pm 66 2009-03-21 10:18:03Z ford $
 #
 #========================================================================
 
@@ -34,7 +34,7 @@
 use vars qw( $VERSION $DEBUG $ERROR $ROOT $TEXTSEQ $DEFAULT_VIEW );
 use base qw( Exporter );
 
-$VERSION = '0.23';
+$VERSION = '0.24';
 $DEBUG   = 0 unless defined $DEBUG;
 $ROOT    = 'Pod::POM::Node::Pod';               # root node class
 $TEXTSEQ = 'Pod::POM::Node::Sequence';          # text sequence class
@@ -505,7 +505,7 @@
         || die $parser->error();
 
     # parse from a file specified by name or filehandle
-    my $pom = $parser->parse_text($file)
+    my $pom = $parser->parse_file($file)
         || die $parser->error();
 
     # parse from text or file 
@@ -1592,7 +1592,7 @@
 
 =head1 VERSION
 
-This is version 0.23 of the Pod::POM module.
+This is version 0.24 of the Pod::POM module.
 
 =head1 COPYRIGHT
 

Modified: trunk/libpod-pom-perl/t/testcases/120-verbatim-paragraphs.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-pom-perl/t/testcases/120-verbatim-paragraphs.yml?rev=32294&op=diff
==============================================================================
--- trunk/libpod-pom-perl/t/testcases/120-verbatim-paragraphs.yml (original)
+++ trunk/libpod-pom-perl/t/testcases/120-verbatim-paragraphs.yml Tue Mar 24 01:09:06 2009
@@ -1,1 +1,9 @@
-# verbatim paragraphs options
+# verbatim paragraphs options
+---
+notes: >
+  Verbatim paragraphs consist of lines that are indented.
+  A blank line between two indended lines will initially be seen
+  as separating the verbatim paragraphs, but the parser will 
+  note that the second verbatim paragraphs follows the first
+  and will coalesce the paragraphs into a single verbatim block,
+  preserving the whitespace on the separating lines.

Modified: trunk/libpod-pom-perl/t/testcases/130-blockquote-paragraphs.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-pom-perl/t/testcases/130-blockquote-paragraphs.yml?rev=32294&op=diff
==============================================================================
--- trunk/libpod-pom-perl/t/testcases/130-blockquote-paragraphs.yml (original)
+++ trunk/libpod-pom-perl/t/testcases/130-blockquote-paragraphs.yml Tue Mar 24 01:09:06 2009
@@ -1,1 +1,6 @@
 # blockquote paragraphs
+---
+notes: >
+  Blockquote paragraphs consist of text within an =over/=back sequence without
+  any =item directives.  Such paragraphs can contain further blockquote paragraphs
+  or lists.

Modified: trunk/libpod-pom-perl/t/testcases/140-lists.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-pom-perl/t/testcases/140-lists.yml?rev=32294&op=diff
==============================================================================
--- trunk/libpod-pom-perl/t/testcases/140-lists.yml (original)
+++ trunk/libpod-pom-perl/t/testcases/140-lists.yml Tue Mar 24 01:09:06 2009
@@ -1,3 +1,6 @@
+---
+notes: >
+  Lists consist of =over/=back sequences containing =items.
 view-html:
   todo: definition lists not working properly yet
 view-text:

Modified: trunk/libpod-pom-perl/t/testcases/220-mixed-sequences.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-pom-perl/t/testcases/220-mixed-sequences.yml?rev=32294&op=diff
==============================================================================
--- trunk/libpod-pom-perl/t/testcases/220-mixed-sequences.yml (original)
+++ trunk/libpod-pom-perl/t/testcases/220-mixed-sequences.yml Tue Mar 24 01:09:06 2009
@@ -1,2 +1,6 @@
+---
+notes: >
+  Sequences can be expressed as N<text> or N<< text >>.  This test mixes those
+  formats.
 view-pod:
   todo: pod view output not as expected




More information about the Pkg-perl-cvs-commits mailing list