r61119 - in /branches/upstream/libpod-xhtml-perl/current: Changes META.yml Makefile.PL README lib/Pod/Xhtml.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Tue Aug 3 06:28:48 UTC 2010


Author: ansgar-guest
Date: Tue Aug  3 06:28:26 2010
New Revision: 61119

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=61119
Log:
[svn-upgrade] new version libpod-xhtml-perl (1.61)

Modified:
    branches/upstream/libpod-xhtml-perl/current/Changes
    branches/upstream/libpod-xhtml-perl/current/META.yml
    branches/upstream/libpod-xhtml-perl/current/Makefile.PL
    branches/upstream/libpod-xhtml-perl/current/README
    branches/upstream/libpod-xhtml-perl/current/lib/Pod/Xhtml.pm

Modified: branches/upstream/libpod-xhtml-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-xhtml-perl/current/Changes?rev=61119&op=diff
==============================================================================
--- branches/upstream/libpod-xhtml-perl/current/Changes (original)
+++ branches/upstream/libpod-xhtml-perl/current/Changes Tue Aug  3 06:28:26 2010
@@ -1,3 +1,6 @@
+Thu Jul 29 17:18:22 2010 - 1.61
+    Add dependency on URI::Escape
+
 Wed Jul 28 18:17:36 2010 - 1.60
     Index entries e.g. X<Topic> should not be rendered
     Check for both old and new URI::Escape behaviour (RT #56324)

Modified: branches/upstream/libpod-xhtml-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-xhtml-perl/current/META.yml?rev=61119&op=diff
==============================================================================
--- branches/upstream/libpod-xhtml-perl/current/META.yml (original)
+++ branches/upstream/libpod-xhtml-perl/current/META.yml Tue Aug  3 06:28:26 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Pod-Xhtml
-version:            1.60
+version:            1.61
 abstract:           Generate well-formed XHTML documents from POD format documentation
 author:
     - British Broadcasting Corporation
@@ -15,6 +15,7 @@
     Pod::ParseUtils:      0
     Test::Assertions::TestScript:  0
     Test::More:           0
+    URI::Escape:          0
 no_index:
     directory:
         - t

Modified: branches/upstream/libpod-xhtml-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-xhtml-perl/current/Makefile.PL?rev=61119&op=diff
==============================================================================
--- branches/upstream/libpod-xhtml-perl/current/Makefile.PL (original)
+++ branches/upstream/libpod-xhtml-perl/current/Makefile.PL Tue Aug  3 06:28:26 2010
@@ -9,6 +9,7 @@
                             Pod::ParseUtils => 0,
                             Test::More => 0,
                             Test::Assertions::TestScript => 0,
+                            URI::Escape => 0,
                            },
               ABSTRACT_FROM => 'lib/Pod/Xhtml.pm',
               AUTHOR        => 'British Broadcasting Corporation',

Modified: branches/upstream/libpod-xhtml-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-xhtml-perl/current/README?rev=61119&op=diff
==============================================================================
--- branches/upstream/libpod-xhtml-perl/current/README (original)
+++ branches/upstream/libpod-xhtml-perl/current/README Tue Aug  3 06:28:26 2010
@@ -1,4 +1,4 @@
-Pod::Xhtml v1.60
+Pod::Xhtml v1.61
 
 (c) BBC 2004. This program is free software; you can redistribute it and/or
 modify it under the GNU GPL.

Modified: branches/upstream/libpod-xhtml-perl/current/lib/Pod/Xhtml.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-xhtml-perl/current/lib/Pod/Xhtml.pm?rev=61119&op=diff
==============================================================================
--- branches/upstream/libpod-xhtml-perl/current/lib/Pod/Xhtml.pm (original)
+++ branches/upstream/libpod-xhtml-perl/current/lib/Pod/Xhtml.pm Tue Aug  3 06:28:26 2010
@@ -1,4 +1,4 @@
-# $Id: Xhtml.pm,v 1.60 2007/12/21 10:52:27 andreww Exp $
+# $Id: Xhtml.pm,v 1.61 2010/07/29 16:17:53 jamiel Exp $
 package Pod::Xhtml;
 
 use strict;
@@ -12,7 +12,7 @@
 $ContentSuffix = "-CONTENT";
 
 @ISA = qw(Pod::Parser);
-($VERSION) = ('$Revision: 1.60 $' =~ m/([\d\.]+)/);
+($VERSION) = ('$Revision: 1.61 $' =~ m/([\d\.]+)/);
 
 # recognized commands
 %COMMANDS = map { $_ => 1 } qw(pod head1 head2 head3 head4 item over back for begin end);
@@ -29,7 +29,6 @@
 	X => \&seqX,
 	Z => \&seqZ,
 );
-
 
 ########## New PUBLIC methods for this class
 sub asString { my $self = shift; return $self->{buffer}; }




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