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.
Changes:
1.43 (tjmather) 07/28/2003
- Fixed bug that manifests itself with XML::Parser 2.32 and greater,
specify external style as 'XML::Parser::Dom' rather than just 'Dom'.
(Matt Sergeant)
- Fixed bug where XML::DOM doesn't encode some characters in
attribute values under Perl 5.8.0
- Added t/dom_encode.t test to check encoding on attribute values
- Fixed warning message and use in XML::DOM::PerlSAX
- included XML-Parser-2.31.patch, required for XML::Parser
to work with 5.8.0 unicode
- use utf8 in unicode test scripts, fixes 5.8.0 test failures
NOTE - you should use the utf8 pragma in your programs if you
are passing utf8 to XML::DOM.
- only use encodeText for Perl < 5.6.0
- replace match w/ substitution in AttDef::new, workaround for 5.8.0 unicode
- replace match w/ substitution in Default handler for non-paramter
entity reference, workaround for 5.8.0 unicode
- Fixed problem when defining user LWP object
- Autodetect whether to 'use bytes'
- Added dispose method to XML::DOM::Parser Synopsis
- Fixed warning message in Attr.getValue method
Changes :
1.39 (tjmather) 04/16/2002
- Deletes value if both System ID and value are defined
(Brian Thomas)
- Fixed bug, now TextNode->getData doesn't expand entities when
NoExpand => 1, added t/dom_noexpand.t test script (Brian Thomas)
1.38 (tjmather) 04/05/2002
- Removed bin/pretty.pl, it is now in XML-Filter-Reindent
- Removed return from addCDATA function to fix memory leak
(Steve Hay)
- Added missing _to_sax method to ProcessingInstruction class
(Patrick Whittle)
- Removed extranous debugging statement from ExternEnt subroutine
(Jon Grov)
1.37 (tjmather) 02/15/2002
- parameter should be last argument of DocumentType::addEntity
(Patrick Whittle)
Changes :
- Removed dependency on p5-Parse-Yapp
- Separated out XML::UM, XML::Filter::* and XML::Builder::* modules
into sperate modules
- Added use bytes pragma to XML::DOM to fix unicode problems
- The '>' character is now encoded in attribute values
- hasFeature now is case-insensitve for name of feature
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.
foo-* to foo-[0-9]*. This is to cause the dependencies to match only the
packages whose base package name is "foo", and not those named "foo-bar".
A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net. Also
change dependency examples in Packages.txt to reflect this.
This is a Perl extension to XML::Parser. It adds a new 'Style' to
XML::Parser, called 'Dom', that allows XML::Parser to build an Object
Oriented datastructure with a DOM Level 1 compliant interface.
For a description of the DOM (Document Object Model), see
http://www.w3.org/DOM/