Query: xml::namespacefactory
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
NamespaceFactory(3pm) User Contributed Perl Documentation NamespaceFactory(3pm)NAMEXML::NamespaceFactory - Simple factory objects for SAX namespaced namesSYNOPSISuse 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-totoABSTRACTA 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.DESCRIPTIONSimply 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 :)MAINTAINERChris Prather <chris@prather.org>AUTHORRobin Berjon based on a suggestion by Ken MacLeod.COPYRIGHT AND LICENSECopyright 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)
Related Man Pages |
---|
xml::sax::expat5.18(3) - mojave |
xml::sax(3) - suse |
xml::sax::expat(3) - osx |
xml::namespace(3pm) - debian |
xml::sax::expat(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
LS with spaces |
Fusion de 2 fichiers |
Geek Lovers |
Merging several line in one based on an occurrence |