Home
last modified time | relevance | path

Searched refs:doctype (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/poky/bitbake/doc/sphinx-static/
H A Dswitchers.js85 $.each(all_doctypes, function(doctype, title) { argument
86 if (doctype == current_doctype)
87 buf.push('<option value="' + doctype + '" selected="selected">' +
90 buf.push('<option value="' + doctype + '">' + title + '</option>');
/openbmc/openbmc/poky/documentation/sphinx-static/
H A Dswitchers.js.in91 $.each(all_doctypes, function(doctype, title) { argument
92 if (doctype == current_doctype)
93 buf.push('<option value="' + doctype + '" selected="selected">' +
96 buf.push('<option value="' + doctype + '">' + title + '</option>');
99 // In case we're browsing a doctype that is not yet in all_doctypes.
217 // Returns the current doctype based upon the url
/openbmc/openbmc/poky/bitbake/lib/bs4/builder/
H A D_lxml.py348 def doctype(self, name, pubid, system): member in LXMLTreeBuilderForXML
350 doctype = Doctype.for_name_and_ids(name, pubid, system)
351 self.soup.object_was_parsed(doctype)
H A D_html5lib.py163 doctype = Doctype.for_name_and_ids(name, publicId, systemId)
164 self.soup.object_was_parsed(doctype)
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A DCHANGELOG928 * Now that lxml's segfault on invalid doctype has been fixed, fixed a
1390 Beautiful Soup can now parse a doctype that's scoped to an XML namespace.