From 9840767e28784b209699eecaa1be9615dd9555ec Mon Sep 17 00:00:00 2001 From: Myun2 Date: Sun, 16 Jan 2011 23:15:25 +0900 Subject: [PATCH] web/html_doctype.hpp Add. --- roast/include/roast/web/html_doctype.hpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 roast/include/roast/web/html_doctype.hpp diff --git a/roast/include/roast/web/html_doctype.hpp b/roast/include/roast/web/html_doctype.hpp new file mode 100644 index 00000000..15a89cb5 --- /dev/null +++ b/roast/include/roast/web/html_doctype.hpp @@ -0,0 +1,32 @@ +// Roast+ License + +/* +*/ +#ifndef __SFJP_ROAST__net__web__html_doctype_HPP__ +#define __SFJP_ROAST__net__web__html_doctype_HPP__ + +namespace roast +{ + namespace html + { + namespace doctype + { + // DOCTYPE + namespace str + { + ROAST_LEXICAL_FIXSTR(doctype, "DOCTYPE"); + ROAST_LEXICAL_FIXSTR(html_public, "HTML PUBLIC"); + ROAST_LEXICAL_FIXSTR(en, "EN"); + + ROAST_LEXICAL_FIXSTR(w3c_dtd_html_401, "-//W3C//DTD HTML 4.01"); + ROAST_LEXICAL_FIXSTR(transitional, "Transitional"); + ROAST_LEXICAL_FIXSTR(frameset, "Frameset"); + ROAST_LEXICAL_FIXSTR(html4_strict_dtd_url, "http://www.w3.org/TR/html4/strict.dtd"); + ROAST_LEXICAL_FIXSTR(html4_loose_dtd_url, "http://www.w3.org/TR/html4/loose.dtd"); + ROAST_LEXICAL_FIXSTR(html4_frameset_dtd_url, "http://www.w3.org/TR/html4/frameset.dtd"); + } + } + } +} + +#endif//__SFJP_ROAST__net__web__html_doctype_HPP__ -- 2.11.0