XML (version 1.6-0)

parseDTD: Read a Document Type Definition (DTD)

Description

Represents the contents of a DTD as a user-level object containing the element and entity definitions.

Usage

parseDTD(extId, asText=FALSE, name="", isURL=FALSE)

Arguments

Value

  • A list with two entries, one for the entities and the other for the elements defined within the DTD.
  • entitiesa named list of the entities defined in the DTD. Each entry is indexed by the name of the corresponding entity. Each is an object of class XMLEntity or alternatively XMLExternalEntity if the entity refers to an external definition. The fields of these types of objects are name{the name of the entity by which users refer to it.} content{the expanded value or definition of the entity} original{the value of the entity, but with references to other entities not expanded, but maintained in symbolic form.}
  • elementsa named list of the elements defined in the DTD, with the name of each element being the identifier of the element being defined. Each entry is an object of class XMLElementDef which has 4 fields. name{the name of the element.} type{a named integer indicating the type of entry in the DTD, usually either element or mixed. The name of the value is a user-level type. The value is used for programming, both internally and externally. } contents{a description of the elements that can be nested within this element. This is an object of class XMLElementContent or one of its specializations - XMLSequenceContent, XMLOrContent. Each of these encodes the number of such elements permitted (one, one or more, zero or one, or zero or more); the type indicating whether the contents consist of a single element type, an ordered sequence of elements, or one of a set of elements. Finally, the actual contents description is described in the elements field. This is a list of one or more XMLElementContent, XMLSequenceContent and XMLOrContent objects. } attributes{a named list of the attributes defined for this element in the DTD. Each element is of class XMLAttributeDef which has 4 fields. name{name of the attribute, i.e. the left hand side} type{the type of the value, e.g. an CDATA, Id, Idref(s), Entity(s), NMToken(s), Enumeration, Notation} defaultType{the defined type, one of None, Implied, Fixed or Required.} defaultValue{the default value if it is specified, or the enumerated values as a character vector, if the type is Enumeration.} }

WARNING

Errors in the DTD are stored as warnings for programmatic access.

Details

Parses and converts the contents of the DTD in the specified file into a user-level object containing all the information about the DTD.

References

http://www.w3.org

See Also

xmlTreeParse, WritingXML.html in the distribution.

Examples

Run this code
dtdFile <- system.file("exampleData", "foo.dtd",package="XML")
 parseDTD(dtdFile)

    # Read from text
 txt <- readLines(dtdFile)
 txt <- paste(txt, "", collapse="")
 d <- parseDTD(txt, asText=TRUE)

url <- "http://www.omegahat.org/XML/DTDs/DatasetByRecord.dtd"
 d <- parseDTD(url, asText=FALSE)

Run the code above in your browser using DataLab