GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
XML::XPath::PerlSAX(3) User Contributed Perl Documentation XML::XPath::PerlSAX(3)

XML::XPath::PerlSAX - A PerlSAX event generator for my weird node structure

        use XML::XPath;
        use XML::XPath::PerlSAX;
        use XML::DOM::PerlSAX;

        my $xp = XML::XPath->new(filename => 'test.xhtml');
        my $paras = $xp->find('/html/body/p');

        my $handler = XML::DOM::PerlSAX->new();
        my $generator = XML::XPath::PerlSAX->new( Handler => $handler );

        foreach my $node ($paras->get_nodelist) {
                my $domtree = $generator->parse($node);
                # do something with $domtree
        }

This module generates PerlSAX events to pass to a PerlSAX handler such as XML::DOM::PerlSAX. It operates specifically on my weird tree format.

Unfortunately SAX doesn't seem to cope with namespaces, so these are lost completely. I believe SAX2 is doing namespaces.

The XML::DOM::PerlSAX handler I tried was completely broken (didn't even compile before I patched it a bit), so I don't know how correct this is or how far it will work.

This module is copyright 2000 AxKit.com Ltd. This is free software, and as such comes with NO WARRANTY. No dates are used in this module. You may distribute this module under the terms of either the Gnu GPL, or the Artistic License (the same terms as Perl itself).
2018-10-11 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.