From: Myun2 Date: Sun, 16 Jan 2011 14:15:25 +0000 (+0900) Subject: web/html_doctype.hpp Add. X-Git-Tag: 20111130_shapeup_prev^2~40 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9840767e28784b209699eecaa1be9615dd9555ec;p=roast%2Froast.git web/html_doctype.hpp Add. --- 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__