207db1c281
2006-04-28 Gisle Aas Release 3.54 Yaakov Belch discovered yet another issue with <script> parsing. Enabling of 'empty_element_tags' got the parser confused if it found such a tag for elements that are normally parsed in literal mode. Of these <script src="..."/> is the only one likely to be found in documents. <http://rt.cpan.org//Ticket/Display.html?id=18965> 2006-04-27 Gisle Aas Release 3.53 When ignore_element was enabled it got confused if the corresponding tags did not nest properly; the end tag was treated it as if it was a start tag. Found and fixed by Yaakov Belch <http://rt.cpan.org/Ticket/Display.html?id=18936> 2006-04-26 Gisle Aas Release 3.52 Make sure the 'start_document' fires exactly once for each document parsed. For earlier releases it did not fire at all for empty documents and could fire multiple times if parse was called with empty chunks. Documentation tweaks and typo fixes. 2006-03-22 Gisle Aas Release 3.51 Named entities outside the Latin-1 range are now only expanded when properly terminated with ";". This makes HTML::Parser compatible with Firefox/Konqueror/MSIE when it comes to how these entities are expanded in attribute values. Firefox does expand unterminated non-Latin-1 entities in plain text, so here HTML::Parser only stays compatible with Konqueror/MSIE. Fixes <http://rt.cpan.org/Ticket/Display.html?id=17962>. Fixed some documentation typos spotted by william at knowmad.com. <http://rt.cpan.org/Ticket/Display.html?id=18062>
25 lines
746 B
Makefile
25 lines
746 B
Makefile
# $NetBSD: Makefile,v 1.38 2006/07/19 22:46:24 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= HTML-Parser-3.54
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5hpa
|
|
CATEGORIES= www perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=HTML/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/HTML-Parser/
|
|
COMMENT= Perl5 module to parse HTML text documents
|
|
|
|
DEPENDS+= p5-HTML-Tagset>=3.0:../../www/p5-HTML-Tagset
|
|
DEPENDS+= p5-URI-[0-9]*:../../www/p5-URI
|
|
# needed for HTTP/Headers self-test, but this would create a circular
|
|
# dependency -- weird.
|
|
#DEPENDS+= p5-libwww-[0-9]*:../../www/p5-libwww
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
PERL5_PACKLIST= auto/HTML/Parser/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|