https://github.com/cran/XML
Raw File
Tip revision: 7b298f47d0bfa49587703e7f8aec755e91d7a933 authored by Duncan Temple Lang on 17 October 2008, 00:00:00 UTC
version 1.98-1
Tip revision: 7b298f4
catalog.R
# Examples of manipulating the catalog for resolving URIs.



# Get this from catalog.xml
catalogResolve("http://www.omegahat.org/XSL/")

loadCatalogs("~/Classes/StatComputing/IDynDocs/inst/XML/catalog.xml")

# Found in the first/original catalog, not IDynDocs.
catalogResolve("http://docbook.sourceforge.net/release/xsl/current/foo")

catalogResolve("http://www.statdocs.org/foo")


catalogAdd(c("http://www.r-project.org/XSL/" = "/Users/duncan/R/XSL"))
catalogResolve("http://www.r-project.org/XSL/bob.xsl")
back to top