View the DQSD CVS repository here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/
Update of /cvsroot/dqsd/dqsd/searches
In directory sc8-pr-cvs1:/tmp/cvs-serv16243/searches
Added Files:
cs.xml hb.xml otn.xml
Log Message:
added cs.xml, hb.xml, and otn.xml from Gregory Krohne
--- NEW FILE: cs.xml ---
<search function="cs">
<name>Consumer Search</name>
<category>Shopping</category>
<contributor>Gregory Krohne</contributor>
<link>http://www.consumersearch.com</link>
<email>[EMAIL PROTECTED]</email>
<description>
Search Consumer Search's meta-reviews of other reviews.
<div class="helpboxDescLabels">Switches:</div>
<table class="helpboxDescTable">
<tr><td>/match:all</td><td> - </td><td>Search pages based on type of match. Use
<div style="padding: 0 0 0 20px">
/match:all - all search terms<br/>
/match:any - any search terms<br/>
/match:boolean - boolean match of terms
</div>
</td></tr>
<tr><td>/format</td><td> - </td><td>Search format to return. Use
<div style="padding: 0 0 0 20px">
/format:long - long form<br/>
/format:short - short form
</div>
</td></tr>
<tr><td>/sort</td><td> - </td><td>Order of pages returned. Use
<div style="padding: 0 0 0 20px">
/sort:relevancy - most relevant results first<br/>
/sort:date - newest results first<br/>
/sort:title - closest title matches first
</div>
</td></tr>
</table>
<div class="helpboxDescLabels">Examples:</div>
<table class="helpboxDescTable">
<tr><td>cs /sort:date mutual funds</td></tr>
<tr><td>cs washing machines /match:all /form:short</td></tr>
<tr><td>cs TV and (DVD or VCR) /match:boolean</td></tr>
</table>
</description>
<form name="csf"
method="get"
action="http://www.consumersearch.com/perl/htwrap.cgi">
<input type="hidden" name="config" value="htdig-www" />
<input type="hidden" name="restrict" value="" />
<input type="hidden" name="exclude" value="" />
<input type="hidden" name="words" value="" />
<input type="hidden" name="method" value="and" />
<COMMENT>
The input element above, "method", was a SELECT element with the following
options...
<select name="method">
<option value="and">All</option>
<option value="or">Any</option>
<option value="boolean">Boolean</option>
</select>
</COMMENT>
<input type="hidden" name="format" value="builtin-long" />
<COMMENT>
The input element above, "format", was a SELECT element with the following
options...
<select name="format">
<option value="builtin-long">Long</option>
<option value="builtin-short">Short</option>
</select>
</COMMENT>
<input type="hidden" name="sort" value="score" />
<COMMENT>
The input element above, "sort", was a SELECT element with the following
options...
<select name="sort">
<option value="score">Relevancy</option>
<option value="time">Date</option>
<option value="title">Title</option>
</select>
</COMMENT>
</form>
<script><![CDATA[
function cs(q)
{
var args = parseArgs(q, "match, format, sort");
if( nullArgs("cs", q) )
return;
for (var iSwitch = 0; iSwitch < args.switches.length; iSwitch++)
{
switch( args.switches[iSwitch].name )
{
case "match":
switch( args.switches[iSwitch].value )
{
case "all":
document.csf.method.value = "and";
break;
case "any":
document.csf.method.value = "or";
break;
case "boolean":
document.csf.method.value = "boolean";
break;
}
break;
case "format":
switch( args.switches[iSwitch].value )
{
case "long":
document.csf.format.value = "builtin-long";
break;
case "short":
document.csf.format.value = "builtin-short";
break;
}
break;
case "sort":
switch( args.switches[iSwitch].value )
{
case "relevancy":
document.csf.sort.value = "score";
break;
case "date":
document.csf.sort.value = "time";
break;
case "title":
document.csf.sort.value = "title";
break;
}
break;
default:
break;
}
}
document.csf.words.value = args.q;
submitForm(csf);
}
]]></script>
<copyright>
The following applies if this file is included and distributed with Dave's Quick
Search Deskbar:
Copyright (c) 2002 David Bau; Distributed under the terms of the GNU Public
License, Version 2 (http://www.gnu.org/copyleft/gpl.txt)
</copyright>
<created_by>
This search file was initially created on 12/17/02 at 14:25:18
by Dave's Quick Search Deskbar Search Wizard version 1.0.1 ,
Copyright (c) 2002 Glenn Carr; Distributed under the terms of the GNU General
Public License, Version 2
</created_by>
</search>
--- NEW FILE: hb.xml ---
<search function="hb">
<name>HotBot</name>
<description>
Search FAST, Google, Inktomi, or Teoma on HotBot.<br/>
<div class="helpboxDescLabels">Switches:</div>
<table class="helpboxDescTable">
<tr><td>/fst</td><td> - </td><td>FAST - AllTheWeb's search engine.</td></tr>
<tr><td>/gg</td><td> - </td><td>Google search engine.</td></tr>
<tr><td>/ink</td><td> - </td><td>Inktomi search engine (HotBot
default).</td></tr>
<tr><td>/tm</td><td> - </td><td>Teoma search using Subject Specific
Popularity.</td></tr>
</table>
<div class="helpboxDescLabels">Example:</div>
<table class="helpboxDescTable">
<tr><td>hb jeep</td></tr>
</table>
</description>
<category>Search the Web</category>
<link>http://www.hotbot.com/</link>
<form name="hbf"
action="http://www.hotbot.com/default.asp"
method="get">
<input type="radio" name="prov"/>
<input type="hidden" name="ps" value=""/>
<input type="hidden" name="loc" value="searchbox"/>
<input type="hidden" name="tab" value="web"/>
<input type="hidden" name="query"/>
</form>
<script><![CDATA[
function hb(q)
//by GAK
{
var args = parseArgs(q, "fst, gg, ink, tm");
var mode = "";
if( nullArgs("hb", args.q) )
return false;
else if( args.switches.length == 1 )
{
switch (args.switches[0].name)
{
case "fst": mode = "FAST"; break;
case "gg": mode = "Google"; break;
case "ink": mode = "Inktomi"; break;
case "tm": mode = "Teoma"; break;
default: mode = "";
}
document.hbf.prov.value = mode;
document.hbf.prov.checked = "checked";
}
document.hbf.query.value = args.q;
submitForm(hbf);
}
]]></script>
<copyright>
Copyright (c) 2002 Gregory Krohne
Distributed under the terms of the
GNU Public License, Version 2 (http://www.gnu.org/copyleft/gpl.txt)
</copyright>
</search>
--- NEW FILE: otn.xml ---
<search function="otn">
<name>Oracle Technology Network</name>
<category>Computers<category>Reference</category></category>
<contributor>Gregory Krohne</contributor>
<link>http://otn.oracle.com/</link>
<email>[EMAIL PROTECTED]</email>
<description>
Search for articles and documentation on Oracle corporation's tech site.
<div class="helpboxDescLabels">Examples:</div>
<table class="helpboxDescTable">
<tr><td>otn jdbc</td></tr>
<tr><td>otn xml</td></tr>
</table>
</description>
<form name="otnf"
method="get"
action="http://otn.oracle.com/ultrasearch/wwws_otn/searchotn.jsp">
<input type="hidden" name="p_Action" value="Search" />
<input type="hidden" name="p_Query" value="" />
<input type="hidden" name="p_Group" value="4" />
<COMMENT>
The input element above, "p_Group", was a checkbox that was checked.
</COMMENT>
<input type="hidden" name="p_Group" value="5" />
<COMMENT>
The input element above, "p_Group", was a checkbox that was checked.
</COMMENT>
</form>
<script><![CDATA[
function otn(q)
{
if( nullArgs("otn", q) )
return;
document.otnf.p_Query.value = q;
submitForm(otnf);
}
]]></script>
<copyright>
The following applies if this file is included and distributed with Dave's Quick
Search Deskbar:
Copyright (c) 2002 David Bau; Distributed under the terms of the GNU Public
License, Version 2 (http://www.gnu.org/copyleft/gpl.txt)
</copyright>
<created_by>
This search file was initially created on 12/17/02 at 10:31:48
by Dave's Quick Search Deskbar Search Wizard version 1.0.1 ,
Copyright (c) 2002 Glenn Carr; Distributed under the terms of the GNU General
Public License, Version 2
</created_by>
</search>
-------------------------------------------------------
This SF.NET email is sponsored by: Order your Holiday Geek Presents Now!
Green Lasers, Hip Geek T-Shirts, Remote Control Tanks, Caffeinated Soap,
MP3 Players, XBox Games, Flying Saucers, WebCams, Smart Putty.
T H I N K G E E K . C O M http://www.thinkgeek.com/sf/
_______________________________________________
DQSD-CVS mailing list
https://lists.sourceforge.net/lists/listinfo/dqsd-cvs
DQSD CVS repository:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/