![]() |
|
|
| |
|
||||
A Document Type Definition (DTD for short) is a declaration in an SGML or XML document that specifies constraints on the structure of the document. It may be included within the document file, but is normally stored in a separate ASCII-text file. The syntax of SGML and XML DTDs is very similar but not identical. Defining a DTD specifies the syntax of an application of SGML or XML, which may be a widely-used standard such as XHTML or a local application. DTDs are usually employed to determine the structure of an XML or SGML document. A DTD will typically describe each allowable element within the document, the possible attributes and (optionally) the allowed attribute values for each element. Further, it will describe the nesting and occurrences of elements. Most of a DTD is usually composed of ELEMENT definitions and ATTLIST definitions.
ExampleAn example of a very simple XML DTD to describe a list of persons is given below: <!ELEMENT people_list (person*)> <!ELEMENT person (name, birthdate?, gender?, socialsecuritynumber?)> <!ELEMENT name (#PCDATA) > <!ELEMENT birthdate (#PCDATA) > <!ELEMENT gender (#PCDATA) > <!ELEMENT socialsecuritynumber (#PCDATA) > Taking this line by line, it says:
An example of an XML file which makes use of this DTD follows: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE people_list SYSTEM "example.dtd"> <people_list> <person> <name>Fred Bloggs</name> <birthdate>27/11/2008</birthdate> <gender>Male</gender> </person> </people_list> The DTD given above requires a name element within every person element; the people_list element is also mandatory, but the rest are optional. It is possible to render this in an XML-enabled browser (such as IE5 or Mozilla) by pasting and saving the DTD component above to a text file named example.dtd and the XML file to a differently-named text file, and opening the XML file with the browser. The files should both be saved in the same directory. However, many browsers do not check that an XML document conforms to the rules in the DTD; they are only required to check that the DTD is syntactically correct. DTD criticisms and alternativesWhile DTD support in XML tools is widespread due to its inclusion in the XML 1.0 standard, it is seen as limited for the following reasons:
Two newer XML schema languages that are much more powerful have achieved Recommendation status within the W3C and are increasingly favored over DTDs:
See alsoExternal links
de:Dokumenttypdefinition es:DTD eo:Dokumento-Speco-Difino fr:Définition de type de document nl:Document Type Definitie ja:Document Type Definition pl:DTD ru:DTD sv:DTD zh:文件类型描述 |
||
|
|
|
|
|
|
Copyright 2008 WordIQ.com - Privacy Policy
::
Terms of Use
:: Contact Us
:: About Us This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Document Type Definition". |