.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "XML::NamespaceFactory 3pm" .TH XML::NamespaceFactory 3pm 2024-01-21 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME XML::NamespaceFactory \- Simple factory objects for SAX namespaced names. .SH VERSION .IX Header "VERSION" version 1.02 .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 2 \& use XML::NamespaceFactory; \& my $FOO = XML::NamespaceFactory\->new(\*(Aqhttp://foo.org/ns/\*(Aq); \& \& print $FOO\->title; # {http://foo.org/ns/}title \& print $FOO\->{\*(Aqbar.baz\-toto\*(Aq}; # {http://foo.org/ns/}bar.baz\-toto .Ve .SH DESCRIPTION .IX Header "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). .PP 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. .PP 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. .PP If this is not clear, hopefully the SYNOPSIS should help :) .SH ABSTRACT .IX Header "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. .SH AUTHORS .IX Header "AUTHORS" .IP \(bu 4 Robin Berjon .IP \(bu 4 Chris Prather .SH "COPYRIGHT AND LICENSE" .IX Header "COPYRIGHT AND LICENSE" This software is copyright (c) 2013 by Robin Berjon. .PP This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.