https://github.com/cran/XML
Raw File
Tip revision: a7a3d04b1a71ce0b3281d456b33e0aba751e6edc authored by ORPHANED on 16 April 2018, 18:07:42 UTC
version 3.98-1.11
Tip revision: a7a3d04
catalog.R
# Examples of manipulating the catalog for resolving URIs.



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

loadCatalogs("~/Classes/StatComputing/XDynDocs/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