diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-10-19 15:28:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-10-28 01:53:51 +0200 |
commit | 5b336ac46f60606cdcf77889d624ce15cdd62530 (patch) | |
tree | 469c0dd598b072d13b9a27f458c96c8353745638 /web | |
parent | 3e37999a5f9efd4caf44c40985b3e1254660a625 (diff) |
Implement package search by terms
Diffstat (limited to 'web')
-rw-r--r-- | web/xhtml | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -301,6 +301,7 @@ namespace web static const element BODY ("body"); static const element DIV ("div"); + static const element FORM ("form"); static const element H1 ("h1"); static const element H2 ("h2"); static const element H3 ("h3"); @@ -314,13 +315,14 @@ namespace web static const element TITLE ("title"); static const element UL ("ul"); - static const inline_element A ("a"); - static const inline_element B ("b"); - static const inline_element BR ("br"); - static const inline_element EM ("em"); - static const inline_element I ("i"); - static const inline_element SPAN ("span"); - static const inline_element U ("u"); + static const inline_element A ("a"); + static const inline_element B ("b"); + static const inline_element BR ("br"); + static const inline_element EM ("em"); + static const inline_element I ("i"); + static const inline_element INPUT ("input"); + static const inline_element SPAN ("span"); + static const inline_element U ("u"); // Attributes. // @@ -331,6 +333,7 @@ namespace web static const attribute NAME ("name"); static const attribute STYLE ("style"); static const attribute TYPE ("type"); + static const attribute VALUE ("value"); } } |