r62814 - in /trunk/libhtml-encoding-perl: Changes META.yml debian/changelog lib/HTML/Encoding.pm

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


Author: periapt-guest
Date: Fri Sep 24 10:46:02 2010
New Revision: 62814

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=62814
Log:
New upstream release

Modified:
    trunk/libhtml-encoding-perl/Changes
    trunk/libhtml-encoding-perl/META.yml
    trunk/libhtml-encoding-perl/debian/changelog
    trunk/libhtml-encoding-perl/lib/HTML/Encoding.pm

Modified: trunk/libhtml-encoding-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-encoding-perl/Changes?rev=62814&op=diff
==============================================================================
--- trunk/libhtml-encoding-perl/Changes (original)
+++ trunk/libhtml-encoding-perl/Changes Fri Sep 24 10:46:02 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: trunk/libhtml-encoding-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-encoding-perl/META.yml?rev=62814&op=diff
==============================================================================
--- trunk/libhtml-encoding-perl/META.yml (original)
+++ trunk/libhtml-encoding-perl/META.yml Fri Sep 24 10:46:02 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: trunk/libhtml-encoding-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-encoding-perl/debian/changelog?rev=62814&op=diff
==============================================================================
--- trunk/libhtml-encoding-perl/debian/changelog (original)
+++ trunk/libhtml-encoding-perl/debian/changelog Fri Sep 24 10:46:02 2010
@@ -1,3 +1,9 @@
+libhtml-encoding-perl (0.61-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Fri, 24 Sep 2010 11:46:17 +0100
+
 libhtml-encoding-perl (0.60-1) unstable; urgency=low
 
   * Initial Release. (Closes: #590059)

Modified: trunk/libhtml-encoding-perl/lib/HTML/Encoding.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-encoding-perl/lib/HTML/Encoding.pm?rev=62814&op=diff
==============================================================================
--- trunk/libhtml-encoding-perl/lib/HTML/Encoding.pm (original)
+++ trunk/libhtml-encoding-perl/lib/HTML/Encoding.pm Fri Sep 24 10:46:02 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