Get definitions of any namespaces defined in this XML node
If the given node has any namespace definitions declared within it,
i.e. of the form xmlns:myNamespace="http://www.myNS.org"
,
xmlNamespaceDefinitions
provides access to these definitions.
While they appear in the XML node in the document as attributes,
they are treated differently by the parser and so do not show up
in the nodes attributes via xmlAttrs
.
getDefaultNamespace
is used to get the default namespace
for the top-level node in a document.
The recursive
parameter allows one to conveniently find all the namespace
definitions in a document or sub-tree without having to examine the file.
This can be useful when working with XPath queries via
getNodeSet
.
xmlNamespaceDefinitions(x, addNames = TRUE, recursive = FALSE, simplify = FALSE, ...) xmlNamespaces(x, addNames = TRUE, recursive = FALSE, simplify = FALSE, ...) getDefaultNamespace(doc, ns = xmlNamespaceDefinitions(doc, simplify = simplify), simplify = FALSE)
x |
the |
addNames |
a logical indicating whether to compute the names for the elements in the resulting list. The names are convenient, but one can avoid the (very small) overhead of computing these with this parameter. |
doc |
the XMLInternalDocument object obtained from a call to
|
recursive |
a logical value indicating whether to extract the
namespace definitions for just this node ( |
simplify |
a logical value. If this is |
ns |
the collection of namespaces. This is typically omitted but can be specified if it has been computed in an earlier step. |
... |
additional parameters for methods |
A list with as many elements as there are namespace definitions.
Each element is an object of class XMLNameSpace,
containing fields giving the local identifier, the associated defining
URI and a logical value indicating whether the definition is local to
this node.
The name of each element is the prefix or alias used for that
namespace definition, i.e. the value of the id
field in the
namespace definition. For default namespaces, i.e. those that have no
prefix/alias, the name is ""
.
Duncan Temple Lang
f = system.file("exampleData", "longitudinalData.xml", package = "XML") n = xmlRoot(xmlTreeParse(f)) xmlNamespaceDefinitions(n) xmlNamespaceDefinitions(n, recursive = TRUE) # Now using internal nodes. f = system.file("exampleData", "namespaces.xml", package = "XML") doc = xmlInternalTreeParse(f) n = xmlRoot(doc) xmlNamespaceDefinitions(n) xmlNamespaceDefinitions(n, recursive = TRUE)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.