You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
57 lines
1.9 KiB
17 years ago
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<title>YaCy '#[clientname]#': Websearch Comparison</title>
|
||
|
#%env/templates/metas.template%#
|
||
|
</head>
|
||
|
<body>
|
||
|
#(display)#
|
||
|
#%env/templates/simpleheader.template%#
|
||
|
::
|
||
|
#%env/templates/header.template%#
|
||
|
::
|
||
|
#%env/templates/embeddedheader.template%#
|
||
|
#(/display)#
|
||
|
<h2>Websearch Comparison</h2>
|
||
|
<p>This page lets you compare two search engines. Please select search engines
|
||
|
and enter your searchword(s) below.</p>
|
||
|
<fieldset>
|
||
|
<legend>Parameters</legend>
|
||
|
<form action="" method="get">
|
||
|
<dl>
|
||
|
<dt>Left Search Engine</dt>
|
||
|
<dd>
|
||
|
<select name="left">
|
||
|
#{searchengines}#
|
||
|
<option #(leftengine)#::selected="selected"#(/leftengine)#>#[searchengine]#</option>
|
||
|
#{/searchengines}#
|
||
|
</select>
|
||
|
</dd>
|
||
|
<dt>Right Search Engine</dt>
|
||
|
<dd>
|
||
|
<select name="right">
|
||
|
#{searchengines}#
|
||
|
<option #(rightengine)#::selected="selected"#(/rightengine)#>#[searchengine]#</option>
|
||
|
#{/searchengines}#
|
||
|
</select>
|
||
|
</dd>
|
||
|
<dt>Query</dt>
|
||
|
<dd>
|
||
|
<input type="text" name="query" value="#[search_query]#" size="60">
|
||
|
</dd>
|
||
|
</dl>
|
||
|
<input type="submit" />
|
||
|
</form>
|
||
|
</fieldset>
|
||
|
#(search)#
|
||
|
::
|
||
|
<fieldset>
|
||
|
<legend>Search Result</legend>
|
||
|
<iframe src="#[left]##[query]#" width="49%" height="1600"></iframe>
|
||
|
<iframe src="#[right]##[query]#" width="49%" height="1600"></iframe>
|
||
|
</fieldset>
|
||
|
#(/search)#
|
||
|
#%env/templates/footer.template%#
|
||
|
</body>
|
||
|
</html>
|