summaryrefslogtreecommitdiff
path: root/www/p5-HTML-Tree
AgeCommit message (Collapse)AuthorFilesLines
2007-02-18Update to 3.23:wiz2-7/+7
3.23 Sun Nov 12 11:09:31 CST 2006 [THINGS THAT MAY BREAK YOUR CODE OR TESTS] * Mark-Jason Dominus points out that the fix for as_html was not proper, and broken behavior should never be codified. Fixed as_html so an empty string doesn't encode entites, instead of blaming the behavior on HTML::Entities. (RT 18571) 3.22 Sat Nov 11 21:23:22 CST 2006 [THINGS THAT MAY BREAK YOUR CODE OR TESTS] * HTML::Element::as_XML now only escapes five characters, instead of escaping everything but alphanumerics and spaces. This is more in line with the XML spec, and will no longer escape wide characters as two (or more) entities. Resolves RT 14260. Thanks to Carl Franks and somewhere [at] confuzzled.lu for assistance. [FIXES] * A string comparison was commented to use lc() on both sides, but didn't. This caused HTML::Element::look_down to not properly find elements in certain cases. Thanks to Andrew Suhachov. (RT 21114) [TESTS] * Added several new tests and enhanced others. Thanks to Rocco Caputo for t/attributes.t, and several others for providing test cases in their RT bugs. [DOCUMENTATION] * Fixed description of HTML::Element::all_attr_names. Thanks to dsteinbrunner [at] pobox.com for catching it. * Fixed example code in HTML::Element::push_content. Thanks to dsteinbrunner [at] pobox.com for catching it. (RT 21293) * Fixed description of HTML::Element::as_HTML. Thanks to Mark-Jason Dominus for catching it. (RT 18569) 3.21 Sun Aug 6 19:10:00 CDT 2006 [FIXES] * Updated HTML::Parser requirement to 3.46 to fix a bug in tag-rendering.t, noted in RT 20816 and 19796. Thanks to Gordon Lack and Ricardo Signes * Fixed HTML::TreeBuilder to not remove   where it shouldn't, using patch supplied in RT 17481. Thanks to Chris Madsen. [DOCUMENTATION] * HTML-Tree has a new maintainer: Pete Krawczyk
2006-07-12Updated to version 3.20.heinz2-8/+8
Pkgsrc changes: - Introduced USE_LANGUAGES. Relevant changes since version 3.19_01: ======================================= [THINGS THAT MAY BREAK YOUR CODE] * The store_declarations() method has been restored, but defaults to true instead of false. [THINGS THAT MAY BREAK YOUR CODE] * The store_declarations() method has been removed. * Non-closing HTML tags like <IMG> are now rendered as <IMG />. * All values in tags are now double-quoted. Previously, all-numeric values weren't quoted.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-01-01Update to latest stable version, 3.19.01:wiz2-8/+8
2005-11-09 Andy Lester Release 3.19_01 -- No new functionality. New tests, though! Thanks to the Chicago Perl Mongers for their work.
2005-08-06Bump the PKGREVISIONs of all (638) packages that hardcode the locationsjlam1-2/+2
of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam1-2/+2
These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 checksums.wiz1-1/+2
2004-12-20since perl is now built with threads on most platforms, the perl archlibgrant1-1/+2
module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
2004-04-25Bl3ify and enable pkgviews installation.minskim1-2/+4
2004-04-24Relinquish maintainership of packages to tech-pkg@NetBSD.org.jlam1-2/+2
2004-01-18Add HOMEPAGEheinz1-1/+2
2004-01-18Update to 3.18heinz2-5/+5
2003-09-15 Sean M. Burke <sburke@cpan.org> Release 3.18 -- bugfix to test, adding qr// to look_(down|up) Accepting Iain 'Spoon' Truskett's neat patch for qr// as lookdown operators (previously you had to do sub { $_[0]=~ m/.../}). Rewrote some tests, notably parsefile.t, which was pointlessly failing because of an incompatibility with an HTML::Parser version. Removed the disused ancient utils "dtd2pm" and "ent" from the dist.
2003-07-22COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-03-16Update to 3.17 (3.11 is no longer available from CPAN); changes include:kleink2-5/+5
2003-01-18 Sean M. Burke <sburke@cpan.org> Release 3.17 -- minor bugfix HTML::Element : Making as_HTML('',...) work just like as_HTML(undef,...). Also fixing as_XML's docs to remove mention of an unimplemented feature (specifying what characters to escape). 2002-11-06 Sean M. Burke <sburke@cpan.org> Release 3.16 -- just fixing a doc typo. 2002-11-06 Sean M. Burke <sburke@cpan.org> Release 3.15 -- a few new features. Added the aliases "descendents" and "find" to HTML::Element. Added a new method "simplify_pres" to HTML::Element. 2002-10-19 Sean M. Burke <sburke@cpan.org> Release 3.14 -- minor bugfix Just fixes a few problems in HTML::Element with the number_lists method. 2002-08-16 Sean M. Burke <sburke@cpan.org> Release 3.13 -- basically a bugfix version It turns out that 3.12 had a hideous HTML::TreeBuilder bug that made the whole thing damn near useless. Fixed. Many many thanks to Michael Koehne for catching this! Wrote t/parse.t, to catch this sort of thing from happening again. Fixed a bug that would treat <td> outside any table context as <tr><table><td> instead of <table><tr><td> 2002-07-30 Sean M. Burke <sburke@cpan.org> Release 3.12 Added as_trimmed_text method to HTML::Element, as described (prophesied?) in the fantabulous new book /Perl & LWP/. Bugfix: fixed unshift_content when given a LoL. (_parent wasn't getting set right.) HTML::Element and HTML::TreeBuilder now enforce at least some minimal sanity on what can be in a tag name. (Notably, no spaces, slashes, or control characters.) Semi-bugfix: $element->replace_with(...) can now take LoLs in its replacement list. Bumped HTML::Element version up to 3.12 (right from 3.09) Semi-bugfix: as_XML now doesn't use named entities in its return value -- it always uses numeric entities. Added behavior: new_frow_lol can now do clever things in list context. HTML::Tree -- added blurb for /Perl & LWP/ HTML::TreeBuilder -- added blurb for /Perl & LWP/ Also added a few tweaks to do better with XHTML parsing. Added guts() and disembowel() methods, for parsing document fragments. TODO: desperately need to add tests to t/
2002-10-27Use buildlink2. Use perl5/module.mk.seb1-6/+3
2001-11-26Buildlinkify, in the sense that only the perl headers are found injlam1-2/+3
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.
2001-11-01Move pkg/ files into package's toplevel directoryzuntum3-1/+1
2001-10-18SVR4 packages have a limit of 9 chars for a package name.veego1-1/+2
The automatic truncation in gensolpkg doesn't work for packages which have the same package name for the first 5-6 chars. e.g. amanda-server and amanda-client would be named amanda and amanda. Now, we add a SVR4_PKGNAME and use amacl for amanda-client and amase for amanda-server. All svr4 packages also have a vendor tag, so we have to reserve some chars for this tag, which is normaly 3 or 4 chars. Thats why we can only use 6 or 5 chars for SVR4_PKGNAME. I used 5 for all the packages, to give the vendor tag enough room. All p5-* packages and a few other packages have now a SVR4_PKGNAME.
2001-07-09Update to 3.11.tv2-5/+5
2001-04-20Move to sha1 digests, and add distfile sizes.skrll1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc1-1/+1
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-12-04Update to 3.08 (2.04 no longer on CPAN)tv2-4/+4
2000-10-15p5-HTML-Tree: perl5 modules for manipulating HTML syntax treesjlam5-0/+28