https://github.com/cran/XML
Raw File
Tip revision: 9ee7aebbd4099fb9a462c14f75a73eb3755b1612 authored by Duncan Temple Lang on 03 October 2007, 00:00:00 UTC
version 1.93-2
Tip revision: 9ee7aeb
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