Home | History | Annotate | Download | only in libxml2

Lines Matching refs:DTD

606  *  DTD:       1 means that this element is valid only in the Loose DTD
607 * 2 means that this element is valid only in the Frameset DTD
609 * Name,Start Tag,End Tag,Save End,Empty,Deprecated,DTD,inline,Description
1110 * TODO: extend that list by reading the HTML SGML DTD on
1289 * The HTML DTD allows an ending tag to implicitly close other tags.
1353 * The HTML DTD allows a tag to implicitly close other tags.
1389 * The HTML DTD allows a tag to implicitly close other tags.
1416 * The HTML DTD allows a tag to implicitly close other tags.
1440 * The HTML DTD allows a tag to exists only implicitly
2177 * all tags allowing pc data from the html 4.01 loose dtd
2206 xmlDtdPtr dtd;
2222 dtd = xmlGetIntSubset(ctxt->myDoc);
2223 if (dtd != NULL && dtd->ExternalID != NULL) {
2224 if (!xmlStrcasecmp(dtd->ExternalID, BAD_CAST "-//W3C//DTD HTML 4.01//EN") ||
2225 !xmlStrcasecmp(dtd->ExternalID, BAD_CAST "-//W3C//DTD HTML 4//EN"))
2260 * @URI: URI for the dtd, or NULL
2261 * @ExternalID: the external ID of the DTD, or NULL
2263 * Creates a new HTML document without a DTD node if @URI and @ExternalID
2266 * Returns a new document, do not initialize the DTD if not provided
2306 * @URI: URI for the dtd, or NULL
2307 * @ExternalID: the external ID of the DTD, or NULL
2317 BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd",
2318 BAD_CAST "-//W3C//DTD HTML 4.0 Transitional//EN"));
2817 * http://www.w3.org/TR/html4/sgml/dtd.html#Script
2818 * http://www.w3.org/TR/html4/sgml/dtd.html#StyleSheet
2823 * Script data ( %Script; in the DTD) can be the content of the SCRIPT
4225 * Check for an Empty Element from DTD definition
4365 * Check for an Empty Element from DTD definition
4574 xmlDtdPtr dtd;
4679 dtd = xmlGetIntSubset(ctxt->myDoc);
4680 if (dtd == NULL)
4683 BAD_CAST "-//W3C//DTD HTML 4.0 Transitional//EN",
4684 BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd");
5219 "HPP: try DTD\n");break;
5553 * Check for an Empty Element from DTD definition
5762 "HPP: internal error, state == DTD\n",
5812 "HPP: entering DTD\n");
5877 xmlDtdPtr dtd;
5878 dtd = xmlGetIntSubset(ctxt->myDoc);
5879 if (dtd == NULL)
5882 BAD_CAST "-//W3C//DTD HTML 4.0 Transitional//EN",
5883 BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd");
6307 return ( elt->dtd == 0 ) ? HTML_VALID : HTML_DEPRECATED ;