https://github.com/cran/XML
Raw File
Tip revision: 7163f1c93f68f5737b193935f651eb5ebdbde5b9 authored by Duncan Temple Lang on 28 August 2007, 00:00:00 UTC
version 1.92-1
Tip revision: 7163f1c
catalog.R
catalogResolve =
function(id, type = "uri", debug = FALSE)
{
   types = c("uri", "public", "system")
   i = pmatch(tolower(type), types)
   if(is.na(i))
     stop("don't recognize type. Must be one of ", paste(types, collapse = ", "))

   .Call("R_xmlCatalogResolve", as.character(id), i, as.logical(debug))
}  
back to top