https://github.com/cran/XML
Raw File
Tip revision: 091f0758b7514fc416e42b21590f65663a1e019b authored by Duncan Temple Lang on 10 June 2006, 00:00:00 UTC
version 0.99-8
Tip revision: 091f075
DTDRef.R
# These are classes and facilities for referring to a DTD for the
# DOCTYPE field of an XML document

setClass("Doctype", representation(name = "character",
                                   system = "character",
                                   public = "character"))

Doctype =
function(system = "", public = "", name = "")
{
  new("Doctype", name = name, system = system, public = public)
}

setAs("Doctype", "character",
       function(from) {

         if(sum(nchar(from@public), nchar(from@system)))
            extra = c("SYSTEM", ifelse(from@public != "", dQuote(from@public), ""), 
                                ifelse(from@system != "", dQuote(from@system), ""))
         paste("<!DOCTYPE", from@name, paste(extra, collapse = " "), ">")
       })



back to top