URI::NamespaceMap(3pm) | User Contributed Perl Documentation | URI::NamespaceMap(3pm) |
URI::NamespaceMap - Class holding a collection of namespaces
Version 1.10
use URI::NamespaceMap; my $map = URI::NamespaceMap->new( { xsd => 'http://www.w3.org/2001/XMLSchema#' } ); $map->namespace_uri('xsd')->as_string; my $foaf = URI::Namespace->new( 'http://xmlns.com/foaf/0.1/' ); $map->add_mapping(foaf => $foaf); $map->add_mapping(rdf => 'http://www.w3.org/1999/02/22-rdf-syntax-ns#' ); $map->list_prefixes; # ( 'foaf', 'rdf', 'xsd' ) $map->foaf; # Returns URI::Namespace object while (my ($prefix, $nsURI) = $map->each_map) { $node->setNamespace($nsURI->as_string, $prefix); # For use with XML::LibXML }
This module provides an object to manage multiple namespaces for creating URI::Namespace objects and for serializing.
You may also pass an arrayref containing just prefixes and/or namespace URIs, and the module will try to guess the missing part. To use this feature, you need RDF::NS::Curated, RDF::NS, XML::CommonNS or RDF::Prefixes, or preferably all of them. With that, you can do e.g.
my $map = URI::NamespaceMap->new( 'rdf', 'xsd', 'foaf' );
and have the correct mappings added automatically.
$map->foaf
and get a URI::Namespace object for the FOAF namespace. Since URI::Namespace does the same for local names, you can then say e.g.
$map->foaf->name
to get a full URI.
my $str = $nsmap->abbreviate($uri_node) || $uri->as_string;
may be useful for certain serialization tasks.
Avoid using the names 'can', 'isa', 'VERSION', and 'DOES' as namespace prefix, because these names are defined as method for every Perl object by default. The method names 'new' and 'uri' are also forbidden. Names of methods of Moose::Object must also be avoided.
Using them will result in an error.
Chris Prather, "<chris@prather.org>" Kjetil Kjernsmo, "<kjetilk@cpan.org>" Gregory Todd Williams, "<gwilliams@cpan.org>" Toby Inkster, "<tobyink@cpan.org>"
Dorian Taylor Paul Williams
Please report any bugs using github <https://github.com/kjetilk/URI-NamespaceMap/issues>
You can find documentation for this module with the perldoc command.
perldoc URI::NamespaceMap
Copyright 2012,2013,2014,2015,2016,2017,2018,2019 Gregory Todd Williams, Chris Prather and Kjetil Kjernsmo
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2022-10-14 | perl v5.34.0 |