debian/0000755000000000000000000000000012230231536007163 5ustar debian/watch0000644000000000000000000000016212143130366010215 0ustar version=3 https://metacpan.org/release/HTML-Parser/ .*/HTML-Parser-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/rules0000755000000000000000000000024712143130366010250 0ustar #!/usr/bin/make -f PACKAGE=$(shell dh_listpackages) %: dh $@ override_dh_fixperms: dh_fixperms chmod a+x debian/$(PACKAGE)/usr/share/doc/$(PACKAGE)/examples/h* debian/copyright0000644000000000000000000000302212143130366011115 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: HTML-Parser Upstream-Contact: Gisle Aas Source: https://metacpan.org/release/HTML-Parser/ Files: * Copyright: 1995-2009, Gisle Aas 1999-2000, Michael A. Chase. All rights reserved. License: Artistic or GPL-1+ Files: debian/* Copyright: 1998-2001, Michael Alan Dorman 2002, Ivan Kohler 2002, Joey Hess 2003, 2004, 2005, Kenneth J. Pronovici 2005, 2006, 2007, Krzysztof Krzyzaniak (eloy) 2005, Florian Ragwitz 2008, Damyan Ivanov 2009-2013, Salvatore Bonaccorso 2009, Rene Mayorga 2010, Nicholas Bamber License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/libhtml-parser-perl.docs0000644000000000000000000000000512143130366013717 0ustar TODO debian/source/0000755000000000000000000000000012143130366010465 5ustar debian/source/format0000644000000000000000000000001412143130366011673 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012143130366010614 5ustar debian/patches/example_selfdocs.patch0000644000000000000000000000723112143130366015155 0ustar Author: Nicholas Bamber Subject: Fix issues with example scripts - Make sure all the scripts have some explanatory comment - Add a README file in the eg directory - Make sure the scripts run cleanly Bug: http://rt.cpan.org/Public/Bug/Display.html?id=58016 Bug-Debian: http://bugs.debian.org/584088 Last-Update: 2010-09-27 --- a/eg/hanchors +++ b/eg/hanchors @@ -6,6 +6,7 @@ # See also HTML::LinkExtor use HTML::Parser; +use Encode; my $p = HTML::Parser->new(api_version => 3, start_h => [\&a_start_handler, "self,tagname,attr"], @@ -35,7 +36,7 @@ sub a_end_handler { my($self, $tag) = @_; - my $text = join("", @{$self->handler("text")}); + my $text = encode('utf8',join("", @{$self->handler("text")})); $text =~ s/^\s+//; $text =~ s/\s+$//; $text =~ s/\s+/ /g; --- /dev/null +++ b/eg/README @@ -0,0 +1,23 @@ +For most of these scripts if you run them with a file argument, where the file +contains some HTML, you should get some output. The 'h*sub' scripts take two +arguments the first of which is a perl expression and the second an HTML file. +In any case all of the files have an exlanatory comment. + +For example try running: + +lynx -dump -source -raw http://www.debian.org > /tmp/a.txt +./hanchors /tmp/a.txt + +Of course if http://www.debian.org is not your favourite web site you can +make the appropriate substitution. + +hanchors - List all anchors in the HTML +hlc - Correct any upper case tags to lower case +hstrip - Removes deprecated scripting and styling tags and attributes +htextsub - Apply arbirary perl expression to all text within HTML +hrefsub - Apply arbirary perl expression to all hrefs within HTML +htitle - Print title of the HTML document +hdump - Output event information whilst parsing HTML document +hform - Print analysis of form controls present in HTML +htext - Print all the text from the HTML + --- a/eg/hlc +++ b/eg/hlc @@ -1,5 +1,9 @@ #!/usr/bin/perl -w +# This script will assume that the first command line argument +# is a file containing HTML, and return a version +# where all the tags are converted to lowercase. + use strict; use HTML::Parser (); --- a/eg/hstrip +++ b/eg/hstrip @@ -1,6 +1,7 @@ #!/usr/bin/perl -w -# This script cleans up an HTML document +# This script cleans up an HTML document. +# Specifically it removes deprecated styling and scripting tags. use strict; use HTML::Parser (); --- a/eg/hdump +++ b/eg/hdump @@ -1,5 +1,8 @@ #!/usr/bin/perl -w +# This script will output event information as it parses the HTML document. +# This gives the user a "Parser's eye view" of an HTML document. + use HTML::Parser (); use Data::Dump (); --- a/eg/hform +++ b/eg/hform @@ -1,5 +1,6 @@ #!/usr/bin/perl -w +# Print information about forms and their controls present in the HTML. # See also HTML::Form module use HTML::PullParser (); --- a/eg/htext +++ b/eg/htext @@ -4,6 +4,7 @@ use strict; use HTML::Parser 3.00 (); +use Encode; my %inside; @@ -17,7 +18,7 @@ sub text { return if $inside{script} || $inside{style}; - print $_[0]; + print encode('utf8',$_[0]); } HTML::Parser->new(api_version => 3, --- a/eg/htextsub +++ b/eg/htextsub @@ -3,6 +3,9 @@ # Shows how to mangle all plain text in an HTML document, using an arbitrary # Perl expression. Plain text is all text not within a tag declaration, i.e. # not in

, but possibly between

and

+# Example (Reverse 'Debian' in all text) : +# lynx -dump -source -raw http://www/debian.org > /tmp/a.txt +# ./htextsub '$_ =~ s/Debian/Naibed/gi' /tmp/a.txt use strict; my $code = shift || usage(); debian/patches/debian_examples_location.patch0000644000000000000000000000172212143130366016647 0ustar Description: On Debian systems the examples are in another directory. Thus modify description where to find more examples. Note: not to be forwarded upstream Origin: vendor Forwarded: not-needed Last-Update: 2009-08-15 --- a/Parser.pm +++ b/Parser.pm @@ -1053,9 +1053,10 @@ $p->parse_file(shift || die) || die $!; print "\n"; -More examples are found in the F directory of the C -distribution: the program C shows how you can edit all links -found in a document; the program C shows how to edit the text only; the +On a Debian box, more examples can be found in the +/usr/share/doc/libhtml-parser-perl/examples directory. +The program C shows how you can edit all links +found in a document and C how to edit the text only; the program C shows how you can strip out certain tags/elements and/or attributes; and the program C show how to obtain the plain text, but not any script/style content. debian/patches/series0000644000000000000000000000006612143130366012033 0ustar debian_examples_location.patch example_selfdocs.patch debian/compat0000644000000000000000000000000212143130366010363 0ustar 9 debian/control0000644000000000000000000000306112143130366010570 0ustar Source: libhtml-parser-perl Section: perl Priority: optional Build-Depends: perl, debhelper (>= 9.20120312), liburi-perl, libhtml-tagset-perl, libtest-pod-perl Maintainer: Debian Perl Group Uploaders: Krzysztof Krzyzaniak (eloy) , Damyan Ivanov , Nicholas Bamber , Antonio Radici , Rene Mayorga , Jonathan Yu , Salvatore Bonaccorso , Dominic Hargreaves Standards-Version: 3.9.4 Homepage: https://metacpan.org/release/HTML-Parser/ Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libhtml-parser-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libhtml-parser-perl.git Package: libhtml-parser-perl Architecture: any Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, liburi-perl, libhtml-tagset-perl Suggests: libdata-dump-perl Enhances: libwww-perl Description: collection of modules that parse HTML text documents HTML::Parser is a collection of modules useful for handling HTML documents. These modules used to be part of the libwww-perl distribution, but are now unbundled in order to facilitate a separate development track. . Objects of the HTML::Parser class will recognize markup and separate it from content data. As different kinds of markup are recognized, the corresponding event handler is invoked. The document to be parsed may also be supplied in arbitrary chunks, making on-the-fly parsing of network documents possible. debian/changelog0000644000000000000000000005017412230231536011044 0ustar libhtml-parser-perl (3.71-1build1) devel; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Fri, 18 Oct 2013 14:10:54 +0100 libhtml-parser-perl (3.71-1) unstable; urgency=low * Imported Upstream version 3.70 and 3.71 * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs * Update debian/copyright file information. Update format to cpyright-format 1.0 as released together with Debian policy 3.9.3. Update copyright years for debian/* packaging files. * Bump Standards-Version to 3.9.4 -- Salvatore Bonaccorso Sun, 06 Jan 2013 22:01:59 +0100 libhtml-parser-perl (3.69-2) unstable; urgency=low * Bump debhelper compat level to 9 to enable hardening flags * Update Standards-Version (no changes) -- Dominic Hargreaves Sun, 01 Apr 2012 16:51:05 +0100 libhtml-parser-perl (3.69-1) unstable; urgency=low [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * Imported Upstream version 3.69 * Email change: Salvatore Bonaccorso -> carnil@debian.org * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. * Refresh offset for debian_examples_location.patch * Bump Debhelper compat level to 8 * Bump versioned Build-Depends on debhelper (>= 8) * Update copyright for debian/* packaging. Update copyright years * Bump Standards-Version to 3.9.2. -- Salvatore Bonaccorso Sat, 15 Oct 2011 23:32:56 +0200 libhtml-parser-perl (3.68-1) unstable; urgency=low [ Salvatore Bonaccorso ] * New upstream release * Bump Standards-Version to 3.9.1. * Refresh debian/copyright file. [ Nicholas Bamber ] * Added myself to Uploaders * Added patch to address example issues: (Closes: #584088) - Added comments to several scripts in eg directory. - Added README to eg directory. - Encoding text in certain scripts to ensure clean run on wide chars. - Adding rule to examples install * Added myself to copyright * Updated debhelper dependency to 7.0.50~ -- Nicholas Bamber Mon, 27 Sep 2010 10:00:41 +0100 libhtml-parser-perl (3.66-1) unstable; urgency=low * New upstream release * Remove Kenneth Pronovici from Uploaders as requested in http://lists.alioth.debian.org/pipermail/pkg-perl-maintainers/2010-July/034136.html * Refresh debian/copyright file. * Bump Standards-Version to 3.9.0 (no changes needed). -- Salvatore Bonaccorso Sat, 10 Jul 2010 09:04:49 +0200 libhtml-parser-perl (3.65-1) unstable; urgency=low [ Salvatore Bonaccorso ] * New upstream release * Refresh debian/copyright to the format specification proposed in DEP5 for machine readable copyright information. * Drop fix_spelling-error-in-binary_endianness.patch patch as it is applied upstream now. * Convert to '3.0 (quilt)' package source format. Drop README.source file and remove --with quilt usage in debian/rules. Adjust Build-Depends on debhelper to (>= 7) and remove quilt Build-Depends. * Bump Standards-Version to 3.8.4 (no changes). [ gregor herrmann ] * debian/control: remove versioned Conflicts/Replaces on libwww-perl and libhtml-tree-perl, the versions are older than what oldstable contains. -- Salvatore Bonaccorso Fri, 09 Apr 2010 10:56:01 +0200 libhtml-parser-perl (3.64-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Standards-Version 3.8.3 (drop perl version dependency) * Add myself to Uploaders and Copyright * Rewrote control description and harmonized the layout [ Salvatore Bonaccorso ] * New upstream release * Add fix_spelling-error-in-binary_endianness.patch to fix a spelling error of 'endianness'. -- Salvatore Bonaccorso Sun, 25 Oct 2009 22:07:29 +0100 libhtml-parser-perl (3.62-1) unstable; urgency=low [ Salvatore Bonaccorso ] * New upstream release * debian/patches: - Refresh debian_examples_location.patch. - Add header to patch as proposed by DEP3. [ Rene Mayorga ] * Remove debian/examples/* from libhtml-parser-perl.examples -- Rene Mayorga Sat, 15 Aug 2009 16:45:14 -0600 libhtml-parser-perl (3.61-1) unstable; urgency=low [ gregor herrmann ] * Remove Florian Ragwitz from Uploaders (closes: #523284). [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Salvatore Bonaccorso ] * New upstream release * Bump Standards-Version to 3.8.2 (no changes) * Use minimal debian/rules and adjust Build-Depends for debhelper and quilt to required versions. * Adjust copyright information for debian/* * Drop patch fix_hanchors_description.patch (fixed upstream). * Add myself to Uploaders. -- Salvatore Bonaccorso Sun, 21 Jun 2009 16:46:01 +0200 libhtml-parser-perl (3.60-1) unstable; urgency=low [ Antonio Radici ] * New upstream release * Removing debian/patches/fix_htextsub_description.patch because it was incorporated by upstream * Added patches/fix_hanchors_description.patch (Closes: #464950) * debian/copyright: + bump years of copyright [ Rene Mayorga ] * rename examples and docs to libhtml-parser-perl.docs and libhtml-parser-perl.examples * debian/copyright: + convert to the new proposal fromat + add individual contributors for debian/* based on debian/changelog * debian/control: + Add myself to uploaders + remove leading article on `Description' + Add module-name to extended description -- Rene Mayorga Tue, 10 Feb 2009 23:52:20 -0600 libhtml-parser-perl (3.59-1) unstable; urgency=low [ Damyan Ivanov ] * Take over for the Debian Perl Group with eloy's permission * New upstream release + bump years of copyright * adopt debelper 7; adjust rules, control and compat * split canges to upstream sources into patches * drop the patch that replaces usage od Data::Dump with Data::Dumper in the hform example. Instead, add libdata-dump-perl to Suggests * add myself to Uploaders and drop Debian Catalyst Maintainers [ Ryan Niebur ] * switch to quilt * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza); ${misc:Depends} to Depends: field. Changed: Maintainer set to Debian Perl Group (was: Debian Catalyst Maintainers ) * debian/watch: use dist-based URL. * Add debian/README.source to document quilt usage, as required by Debian Policy since 3.8.0. * Upgrade to policy version 3.8.0 -- Damyan Ivanov Tue, 02 Dec 2008 10:28:02 +0200 libhtml-parser-perl (3.56-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Thu, 18 Jan 2007 11:50:21 +0100 libhtml-parser-perl (3.55-1) unstable; urgency=low * New upstream release * debian/compat: + increased to 5 * debian/control: + Standards-Version: upgraded to 3.7.2.1 without additional changes -- Krzysztof Krzyzaniak (eloy) Thu, 13 Jul 2006 10:24:58 +0200 libhtml-parser-perl (3.54-1) unstable; urgency=low * New upstream release (bugfix) * debian/control: - Standards-Version: upgraded to 3.7.0 without additional changes -- Krzysztof Krzyzaniak (eloy) Thu, 4 May 2006 10:03:39 +0200 libhtml-parser-perl (3.52-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Thu, 27 Apr 2006 13:28:01 +0200 libhtml-parser-perl (3.51-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Thu, 23 Mar 2006 11:08:33 +0100 libhtml-parser-perl (3.50-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Fri, 17 Feb 2006 10:10:06 +0100 libhtml-parser-perl (3.49-1) unstable; urgency=low * New upstream release * debian/watched updated * debian/control - added liburi-perl to dependencies -- Krzysztof Krzyzaniak (eloy) Wed, 8 Feb 2006 22:53:55 +0100 libhtml-parser-perl (3.48-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Mon, 5 Dec 2005 09:36:55 +0100 libhtml-parser-perl (3.47-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Wed, 23 Nov 2005 22:40:52 +0100 libhtml-parser-perl (3.46-1) unstable; urgency=low [ Krzysztof Krzyzaniak ] * New upstream release (closes: #336002) * chmod on hform example (closes: #330090) -- Krzysztof Krzyzaniak (eloy) Fri, 28 Oct 2005 12:16:53 +0200 libhtml-parser-perl (3.45-4) unstable; urgency=low * debian/rules: Install todo using dh_installdocs. * debian/control: Added me to Uploaders. -- Florian Ragwitz Fri, 30 Sep 2005 02:33:10 +0200 libhtml-parser-perl (3.45-3) unstable; urgency=low [ Krzysztof Krzyzaniak ] * debian/control - catalyst team takes package * Bumped standards version to 3.6.2 * Don't intall README & TODO files since they are for install purposes -- Krzysztof Krzyzaniak (eloy) Thu, 29 Sep 2005 10:13:48 +0200 libhtml-parser-perl (3.45-2) unstable; urgency=low * Add comment saying what example/htextsub program does (closes: #299853). - Asked submitter for suggestions on what should be added. - Ended up taking very brief explanation from manpage. - Open to adding something better if someone has a suggestion. -- Kenneth J. Pronovici Wed, 23 Mar 2005 17:27:44 -0600 libhtml-parser-perl (3.45-1) unstable; urgency=low * New upstream release. -- Kenneth J. Pronovici Sun, 9 Jan 2005 11:45:23 -0600 libhtml-parser-perl (3.44-1) unstable; urgency=low * New upstream release. -- Kenneth J. Pronovici Tue, 4 Jan 2005 10:51:59 -0600 libhtml-parser-perl (3.43-1) unstable; urgency=low * New upstream release (release early, release often, once again). -- Kenneth J. Pronovici Mon, 6 Dec 2004 17:01:38 -0600 libhtml-parser-perl (3.41-1) unstable; urgency=low * New upstream release. -- Kenneth J. Pronovici Thu, 2 Dec 2004 10:40:08 -0600 libhtml-parser-perl (3.40-1) unstable; urgency=low * New upstream release. * Removed Debian-specific code from Makefile.PL; no longer needed because Unicode support is no longer optional. -- Kenneth J. Pronovici Tue, 30 Nov 2004 12:41:01 -0600 libhtml-parser-perl (3.38-1) unstable; urgency=low * New upstream release. -- Kenneth J. Pronovici Thu, 11 Nov 2004 23:32:00 -0600 libhtml-parser-perl (3.36-1) unstable; urgency=low * New upstream release. -- Kenneth J. Pronovici Mon, 5 Apr 2004 18:49:29 -0500 libhtml-parser-perl (3.35-1) unstable; urgency=low * New upstream release. -- Kenneth J. Pronovici Sat, 13 Dec 2003 10:26:24 -0600 libhtml-parser-perl (3.34-1) unstable; urgency=low * New upstream release. - Includes fix to segfault problem exposed by XMLTV (closes: #217616). -- Kenneth J. Pronovici Mon, 27 Oct 2003 17:48:36 -0600 libhtml-parser-perl (3.33-1) unstable; urgency=low * New upstream release. -- Kenneth J. Pronovici Sat, 18 Oct 2003 13:17:45 -0500 libhtml-parser-perl (3.32-1) unstable; urgency=low * New upstream release. -- Kenneth J. Pronovici Sun, 12 Oct 2003 13:43:50 -0500 libhtml-parser-perl (3.31-4) unstable; urgency=low * Add build dependency on perl (>= 5.8.1) to complete fix for #213529. * Updated standards version to 3.6.1 per PTS recommendation. -- Kenneth J. Pronovici Wed, 1 Oct 2003 18:37:05 -0500 libhtml-parser-perl (3.31-3) unstable; urgency=low * Rebuild with Perl 5.8.1 to fix libwww-perl problem (closes: #213529). -- Kenneth J. Pronovici Wed, 1 Oct 2003 13:46:08 -0500 libhtml-parser-perl (3.31-2) unstable; urgency=low * Apply patch to fix 'hform' example (closes: #206546). * Make hform example executable by default. -- Kenneth J. Pronovici Thu, 21 Aug 2003 21:36:01 -0500 libhtml-parser-perl (3.31-1) unstable; urgency=low * New upstream release (release early, release often... wow). -- Kenneth J. Pronovici Wed, 20 Aug 2003 10:59:21 -0500 libhtml-parser-perl (3.30-1) unstable; urgency=low * New upstream release. -- Kenneth J. Pronovici Mon, 18 Aug 2003 11:44:02 -0500 libhtml-parser-perl (3.29-1) unstable; urgency=low * New upstream release. - The patch closing #195500 has been applied by upstream. -- Kenneth J. Pronovici Fri, 15 Aug 2003 08:33:34 -0500 libhtml-parser-perl (3.28-3) unstable; urgency=low * Fix for out-of-memory problem on 64-bit architectures (closes: #195500). - Debian-only, since upstream has never replied to the CPAN bug report or my emails. - I applied the patch directly from the Debian bug report, since it looked sensible. - All of the regression tests still pass, at least on i386 and alpha. -- Kenneth J. Pronovici Sat, 12 Jul 2003 16:12:13 -0500 libhtml-parser-perl (3.28-2) unstable; urgency=low * Now reference "examples/" directory rather than "eg/" directory in Parser.pm's POD manpage documentation (closes: #199707). -- Kenneth J. Pronovici Mon, 7 Jul 2003 13:21:56 -0500 libhtml-parser-perl (3.28-1) unstable; urgency=low * New upstream release, made separately from new maintainer release for clarity. * Updated year in debian/copyright, to be consistent with README. -- Kenneth J. Pronovici Tue, 1 Jul 2003 21:05:51 -0500 libhtml-parser-perl (3.26-1) unstable; urgency=low * New maintainer. * Updated debian/copyright. * Changed section from 'interpreters' to 'perl'. * Bumped standards version to 3.5.9. * Added debian/compat file at level 4; now require debhelper (>= 4.1.0). * Got rid of duplicated section/priority in debian/control. * Reworked debian/rules to standardize with my other packages. * Added OPTIMIZE="-O2 -g -Wall" to build rule. * Removed "." from description synopsis to quiet Lintian. * Fix typo in Makefile.PL (closes: #166806). * Added debian/watch file. -- Kenneth J. Pronovici Tue, 1 Jul 2003 18:23:14 -0500 libhtml-parser-perl (3.26-0.1) unstable; urgency=low * NMU (inactive maintainer) * New upstream version (closes: Bug#168084) * Add pedantic boilerplate to debian/copyright (closes: Bug#157593) * Add examples to doc/examples (closes: Bug#155776, Bug#138132) -- Ivan Kohler Wed, 6 Nov 2002 11:07:36 -0800 libhtml-parser-perl (3.25-1.1) unstable; urgency=low * NMU for perl 5.8. No changes except build-dep on perl 5.8. * Corrected case of Build-Depends line. -- Joey Hess Wed, 31 Jul 2002 05:12:35 +0000 libhtml-parser-perl (3.25-1) unstable; urgency=low * New upstream release, fixes build problem. -- Michael Alan Dorman Sat, 12 May 2001 22:15:58 -0400 libhtml-parser-perl (3.24-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Wed, 9 May 2001 11:45:46 -0400 libhtml-parser-perl (3.23-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Tue, 8 May 2001 09:51:12 -0400 libhtml-parser-perl (3.22-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Wed, 18 Apr 2001 08:13:01 -0400 libhtml-parser-perl (3.21-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Fri, 13 Apr 2001 10:01:43 -0400 libhtml-parser-perl (3.20-1) unstable; urgency=low * New upstream release * Close some old bugs (closes: bug#81351, bug#86442) -- Michael Alan Dorman Wed, 4 Apr 2001 18:07:09 -0400 libhtml-parser-perl (3.19-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Mon, 12 Mar 2001 08:11:48 -0500 libhtml-parser-perl (3.18-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Fri, 9 Mar 2001 16:15:06 -0500 libhtml-parser-perl (3.17-2) unstable; urgency=low * Damn, forgot to depend on debhelper (closes: bug#88394) -- Michael Alan Dorman Mon, 5 Mar 2001 04:54:54 -0800 libhtml-parser-perl (3.17-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Sat, 24 Feb 2001 14:35:22 -0800 libhtml-parser-perl (3.15-3) unstable; urgency=low * Fix build-depends and depends. -- Michael Alan Dorman Wed, 24 Jan 2001 16:54:19 -0500 libhtml-parser-perl (3.15-2) unstable; urgency=low * Fix debian/rules * Recompiled with 5.6. Sorry to anyone using an embedded 5.005. (closes: bug#80707, bug#82651, bug#79601, bug#82942) -- Michael Alan Dorman Sun, 21 Jan 2001 20:23:07 -0500 libhtml-parser-perl (3.15-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Wed, 27 Dec 2000 09:43:39 -0500 libhtml-parser-perl (3.14-1) unstable; urgency=low * New upstream release * Rebuild makes it 5.6 compatible (closes: bug#76847) -- Michael Alan Dorman Fri, 8 Dec 2000 09:24:05 -0500 libhtml-parser-perl (3.13-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Mon, 18 Sep 2000 07:58:13 -0400 libhtml-parser-perl (3.12-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Fri, 15 Sep 2000 08:31:35 -0400 libhtml-parser-perl (3.11-1) unstable; urgency=low * New upstream release * Added new dependency on libhtml-tagset-perl -- Michael Alan Dorman Tue, 22 Aug 2000 09:43:43 -0400 libhtml-parser-perl (3.10-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Mon, 10 Jul 2000 14:30:50 -0400 libhtml-parser-perl (3.08-1) unstable; urgency=low * New upstream release -- Michael Alan Dorman Mon, 29 May 2000 11:48:14 -0400 libhtml-parser-perl (3.07-1) unstable; urgency=low * New upstream version. * End of comment bug has been fixed upstream for a few versions (closes: bug#60678) -- Michael Alan Dorman Tue, 28 Mar 2000 11:03:02 -0500 libhtml-parser-perl (3.05-1) unstable; urgency=low * New upstream version. -- Michael Alan Dorman Sun, 23 Jan 2000 16:47:57 -0500 libhtml-parser-perl (3.04-1) unstable; urgency=low * Should have checked for a new version first... -- Michael Alan Dorman Sun, 16 Jan 2000 10:06:20 -0500 libhtml-parser-perl (3.02-2) unstable; urgency=low * Oops, forgot that it was changing to be arch-dep (closes: bug#55254) -- Michael Alan Dorman Sun, 16 Jan 2000 09:59:28 -0500 libhtml-parser-perl (3.02-1) unstable; urgency=low * New upstream version. Now a much faster XS module. -- Michael Alan Dorman Wed, 12 Jan 2000 20:19:39 -0500 libhtml-parser-perl (2.23-2) unstable; urgency=low * Modified for new perl packages. * Modified to use debhelper. -- Michael Alan Dorman Sun, 4 Jul 1999 22:32:25 +0000 libhtml-parser-perl (2.23-1) unstable; urgency=low * New upstream release. -- Michael Alan Dorman Sat, 12 Jun 1999 16:24:24 -0400 libhtml-parser-perl (2.22-1) unstable; urgency=low * Changed Conflicts to Replaces to accomodate dpkg-http -- Michael Alan Dorman Fri, 26 Feb 1999 12:37:13 -0500 libhtml-parser-perl (2.20-1) unstable; urgency=low * New upstream release. * Create new libhtml-parser-perl and libhtml-tree-perl to reflect upstream split from libwww-perl. -- Michael Alan Dorman Fri, 7 Aug 1998 10:26:09 -0500 debian/libhtml-parser-perl.examples0000644000000000000000000000000512143130366014605 0ustar eg/*