From 5b336ac46f60606cdcf77889d624ce15cdd62530 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 19 Oct 2015 15:28:19 +0200 Subject: Implement package search by terms --- web/xhtml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'web') diff --git a/web/xhtml b/web/xhtml index 9c092bf..b4c1a0d 100644 --- a/web/xhtml +++ b/web/xhtml @@ -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"); } } -- cgit v1.1