r62812 - in /branches/upstream/libhtml-encoding-perl/current: Changes META.yml lib/HTML/Encoding.pm

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Fri Sep 24 10:44:26 UTC 2010


Author: periapt-guest
Date: Fri Sep 24 10:44:13 2010
New Revision: 62812

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=62812
Log:
[svn-upgrade] new version libhtml-encoding-perl (0.61)

Modified:
    branches/upstream/libhtml-encoding-perl/current/Changes
    branches/upstream/libhtml-encoding-perl/current/META.yml
    branches/upstream/libhtml-encoding-perl/current/lib/HTML/Encoding.pm

Modified: branches/upstream/libhtml-encoding-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhtml-encoding-perl/current/Changes?rev=62812&op=diff
==============================================================================
--- branches/upstream/libhtml-encoding-perl/current/Changes (original)
+++ branches/upstream/libhtml-encoding-perl/current/Changes Fri Sep 24 10:44:13 2010
@@ -1,4 +1,7 @@
 Revision history for Perl extension HTML::Encoding.
+
+0.61  Fri Sep 24 00:00:00 2010
+	- Fixed https://rt.cpan.org/Ticket/Display.html?id=61603
 
 0.60  Sun Jun 30 09:55:00 2008
 	- minor bugfixes

Modified: branches/upstream/libhtml-encoding-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhtml-encoding-perl/current/META.yml?rev=62812&op=diff
==============================================================================
--- branches/upstream/libhtml-encoding-perl/current/META.yml (original)
+++ branches/upstream/libhtml-encoding-perl/current/META.yml Fri Sep 24 10:44:13 2010
@@ -1,17 +1,25 @@
 --- #YAML:1.0
-name:                HTML-Encoding
-version:             0.60
-abstract:            Determine the encoding of HTML/XML/XHTML documents
-license:             perl
-author:              
+name:               HTML-Encoding
+version:            0.61
+abstract:           Determine the encoding of HTML/XML/XHTML documents
+author:
     - Bjoern Hoehrmann <bjoern at hoehrmann.de>
-generated_by:        ExtUtils::MakeMaker version 6.44
-distribution_type:   module
-requires:     
-    Encode:                        0
-    HTML::Parser:                  0
-    HTTP::Headers::Util:           0
-    HTTP::Response:                0
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Encode:               0
+    HTML::Parser:         0
+    HTTP::Headers::Util:  0
+    HTTP::Response:       0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.55_02
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: branches/upstream/libhtml-encoding-perl/current/lib/HTML/Encoding.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhtml-encoding-perl/current/lib/HTML/Encoding.pm?rev=62812&op=diff
==============================================================================
--- branches/upstream/libhtml-encoding-perl/current/lib/HTML/Encoding.pm (original)
+++ branches/upstream/libhtml-encoding-perl/current/lib/HTML/Encoding.pm Fri Sep 24 10:44:13 2010
@@ -8,7 +8,7 @@
 
 use base qw(Exporter);
 
-our $VERSION = '0.60';
+our $VERSION = '0.61';
 
 our @EXPORT_OK =
 qw/
@@ -157,6 +157,7 @@
     {
         my %hash = %{$_->[1]};
         next unless defined $hash{'content'};
+        next unless exists $hash{'http-equiv'};
         next unless lc $hash{'http-equiv'} eq "content-type";
         my $char = encoding_from_content_type($hash{'content'});
         push @resu, $char if defined $char and length $char;




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