Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xml::namespacefactory(3pm) [debian man page]

NamespaceFactory(3pm)					User Contributed Perl Documentation				     NamespaceFactory(3pm)

NAME
XML::NamespaceFactory - Simple factory objects for SAX namespaced names SYNOPSIS
use XML::NamespaceFactory; my $FOO = XML::NamespaceFactory->new('http://foo.org/ns/'); print $FOO->title; # {http://foo.org/ns/}title print $FOO->{'bar.baz-toto'}; # {http://foo.org/ns/}bar.baz-toto ABSTRACT
A number of accessors for namespaces in SAX use the JClark notation, {namespace}local-name. Those are a bit painful to type repeatedly, and somewhat error-prone as hash keys. This module makes life easier. DESCRIPTION
Simply create a new XML::NamespaceFactory object with the namespace you wish to use as its single parameter. If you wish to use the empty namespace, simply pass in an empty string (but undef will not do). Then, when you want to get a JClark name, call a method on that object the name of which is the local name you wish to have. It'll return the JClark notation for that local name in your namespace. Unfortunately, some local names legal in XML are not legal in Perl. To circumvent this, you can use the hash notation in which you access a key on the object the name of which is the local name you wish to have. This will work just as the method call name but will accept more characters. Note that it does not check that the name you ask for is a valid XML name. This form is more general but slower. If this is not clear, hopefully the SYNOPSIS should help :) MAINTAINER
Chris Prather <chris@prather.org> AUTHOR
Robin Berjon based on a suggestion by Ken MacLeod. COPYRIGHT AND LICENSE
Copyright 2003-2010 by Robin Berjon This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-04-13 NamespaceFactory(3pm)

Check Out this Related Man Page

Expat(3)						User Contributed Perl Documentation						  Expat(3)

NAME
XML::SAX::Expat - SAX2 Driver for Expat (XML::Parser) SYNOPSIS
use XML::SAX::Expat; use XML::SAX::MyFooHandler; my $h = XML::SAX::MyFooHandler->new; my $p = XML::SAX::Expat->new(Handler => $h); $p->parse_file('/path/to/foo.xml'); DESCRIPTION
This is an implementation of a SAX2 driver sitting on top of Expat (XML::Parser) which Ken MacLeod posted to perl-xml and which I have updated. It is still incomplete, though most of the basic SAX2 events should be available. The SAX2 spec is currently available from <http://perl-xml.sourceforge.net/perl-sax/>. A more friendly URL as well as a PODification of the spec are in the works. METHODS
The methods defined in this class correspond to those listed in the PerlSAX2 specification, available above. FEATURES AND CAVEATS
supported_features Returns: * http://xml.org/sax/features/external-general-entities * http://xml.org/sax/features/external-parameter-entities * [ Features supported by ancestors ] Turning one of the first two on also turns the other on (this maps to the XML::Parser ParseParamEnts option). This may be fixed in the future, so don't rely on this behaviour. MISSING PARTS
XML::Parser has no listed callbacks for the following events, which are therefore not presently generated (ways may be found in the future): * ignorable_whitespace * skipped_entity * start_entity / end_entity * resolve_entity Ways of signalling them are welcome. In addition to those, set_document_locator is not yet called. TODO
- reuse Ken's tests and add more AUTHOR
Robin Berjon; stolen from Ken Macleod, ken@bitsko.slc.ut.us, and with suggestions and feedback from perl-xml. Currently maintained by Bjoern Hoehrmann, <http://bjoern.hoehrmann.de/>. COPYRIGHT AND LICENSE
Copyright (c) 2001-2008 Robin Berjon. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
XML::Parser::PerlSAX perl v5.18.2 2014-01-20 Expat(3)
Man Page