Rev 7747 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{xmlHandler}\alias{xmlHandler}\title{ Example XML Event Parser Handler Functions}\description{A closure containing simple functions for the differenttypes of events potentially called by the \link{xmlEventParse},and some tag-specific functions to illustrate how one canadd functions for specific DTDs and XML element types.Contains a local \link{list} which can be mutatedby invocations of the closure's function.}\usage{xmlHandler()}\value{List containing the functions enumeratedin the closure definition along with the\link{list}.}\author{Duncan Temple Lang}\note{This is just an example.}\seealso{\link{xmlEventParse}, \link{xmlTreeParse}}\examples{\dontrun{xmlURL <- "https://www.omegahat.net/Scripts/Data/mtcars.xml"xmlText <- paste(scan(xmlURL, what="", sep="\n"),"\n",collapse="\n")}xmlURL <- system.file("exampleData", "mtcars.xml", package="XML")xmlText <- paste(readLines(xmlURL), "\n", collapse="")xmlEventParse(xmlText, handlers = NULL, asText=TRUE)xmlEventParse(xmlText, xmlHandler(), useTagName=TRUE, asText=TRUE)}\keyword{file}\keyword{IO}