acceptance {MIfuns}R Documentation

List the history of acceptance.

Description

This function reads "accept.xml" in .Library, if it exists, and prints it with the default method.

Usage

acceptance()

Details

Data is displayed as xml markup.

Value

an object of class XMLNode ...

Author(s)

Tim Bergsma

References

http://metruminstitute.org

See Also

accept, packageCheck

Examples

## The function is currently defined as
function(){
        library(XML)
        filepath <- file.path(.Library,"accept.xml")
        as.XMLNode <- function(x,...)UseMethod("as.XMLNode")
        as.XMLNode.XMLDocument <- function(x,...)xmlTreeParse(x,...)$doc$children[[1]]
        as.XMLNode.character <- function(x,...)xmlTreeParse(x,...)$doc$children[[1]]
        if(file.exists(filepath))return(as.XMLNode.XMLDocument(filepath,asText=FALSE))
        return(NULL)
  }

[Package MIfuns version 3.2.9 Index]