<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tech[niques] &#187; search</title>
	<atom:link href="http://tech.niques.info/tag/search/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.niques.info</link>
	<description>Technology applied to modern life</description>
	<lastBuildDate>Mon, 14 Jun 2010 11:27:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Creating Your Own Firefox Search Plugin in 5 Minutes or Less!</title>
		<link>http://tech.niques.info/diy-firefox-opensearch-plugin/</link>
		<comments>http://tech.niques.info/diy-firefox-opensearch-plugin/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 11:00:53 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[opensearch]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://tech.niques.info/diy-firefox-opensearch-plugin/</guid>
		<description><![CDATA[Ever wished Firefox's search box supported your favourite site, but it didn't recognise it?  Find out how to DIY a search plugin in less than 5 minutes!]]></description>
			<content:encoded><![CDATA[Copyright © 2012 <a href="http://tech.niques.info">Tech[niques]</a>. Visit the original article at <a href="http://tech.niques.info/diy-firefox-opensearch-plugin/">http://tech.niques.info/diy-firefox-opensearch-plugin/</a>.<br /><div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:14f59fb1-89c5-46ea-ae2f-a6e111980205" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/diy" rel="tag">diy</a>,<a href="http://technorati.com/tags/firefox" rel="tag">firefox</a>,<a href="http://technorati.com/tags/opensearch" rel="tag">opensearch</a>,<a href="http://technorati.com/tags/search" rel="tag">search</a></div>
<p><a href="http://tech.niques.info/wp-content/uploads/2008/02/diy-firefox-search-plugin.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="31" alt="diy-firefox-search-plugin" src="http://tech.niques.info/wp-content/uploads/2008/02/diy-firefox-search-plugin-thumb.png" width="248" align="right" border="0" /></a> As an avid Firefox user I rely on its inbuilt search box to help me navigate the web.&#160; One of its best features is its ability to add support additional websites you are interested in.&#160; The <a title="Mycroft project" href="http://mycroft.mozdev.org/" target="_blank">Mycroft project</a> contains an extensive list of compatible plugins covering thousands of websites.&#160; But if the site you want isn&#8217;t listed there don&#8217;t despair &#8211; its easy to create your own!</p>
<p>I&#8217;ve been using <a title="Fishpond Online Books/DVD/CD Store" href="http://www.fishpond.com.au/index.php?ref=448" target="_blank">Fishpond</a> to buy books and DVDs because they are consistently among the cheapest online stores in Australia.&#160; To make it easier to shop there I decided to create a search plugin for Firefox.&#160; </p>
<p>The whole process was pretty painless:</p>
<ol>
<li>Go to the <a title="Mycroft search plugin submission page" href="http://mycroft.mozdev.org/submitos.html" target="_blank">Mycroft search plugin submission page</a> and start entering basic description, classification and author information for the plugin. </li>
<li>Choose an icon for the search plugin.&#160; Typically the best choice is the favicon for the website you are searching.&#160; You can download it by opening the favicon.ico file in the root directory for the website. e.g.      <br /><code>http://www.fishpond.com.au/favicon.ico </code></li>
<li>Open a new tab, go to the website you are building the plugin for and execute a search using a simple term.&#160; Once the search page appears copy the URL from the location bar.&#160; In my case I searched on the term &quot;TEST&quot; and got the following URL: <small>(Note: Single URL line wrapped)</small>     <br /><code>http://www.fishpond.com.au/advanced_search_result.php?<br/>      keywords=TEST&amp;x=50&amp;y=13 </code></li>
<li>Replace the search term (e.g. TEST) with the value &quot;{searchTerms}&quot;.&#160; This should be pasted into the &quot;Search URL&quot; field on the submission form.&#160; e.g. <small>(Note: Single URL line wrapped)</small>     <br /><code>http://www.fishpond.com.au/advanced_search_result.php?<br/>      keywords={searchTerms}&amp;x=50&amp;y=13 </code></li>
<li>The &quot;Search Form&quot; field needs to be filled in with the page containing the search results.&#160; This will be the search URL minus everything to the right of the question. e.g. <code>http://www.fishpond.com.au/advanced_search_result.php </code></li>
<li>Hit the &quot;Generate Plugin&quot; button, look at the generated XML, and if it looks OK hit the &quot;Submit&quot; button. </li>
<li>If all goes well you will be taken to a page showing your submitted plugins.&#160; Install and test the new plugin, and if it searches as expected you are done! </li>
</ol>
<p>The whole process takes less than 5 minutes and you will now be able to search this site from the convenience of your browser&#8217;s search box!</p>
<p><strong>Note:</strong> Please see the <a title="Mozilla developer pages for OpenSearch" href="http://developer.mozilla.org/en/docs/Creating_OpenSearch_plugins_for_Firefox">Mozilla developer page</a> if you need more detail on how to create OpenSearch plugins.&#160; You might also consider adding your new search plugin to <a title="Opensearchlist" href="http://www.opensearchlist.com/" target="_blank">Opensearchlist</a> or <a title="http://www.searchplugins.net/" href="http://www.searchplugins.net/" target="_blank">Searchplugins</a> so more people can find it.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Ftech.niques.info%2Fdiy-firefox-opensearch-plugin%2F';
  addthis_title  = 'Creating+Your+Own+Firefox+Search+Plugin+in+5+Minutes+or+Less%21';
  addthis_pub    = 'DawMatt';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://tech.niques.info/diy-firefox-opensearch-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running Windows Desktop Search 3 (and 2) Queries From Launchy</title>
		<link>http://tech.niques.info/launchy-search-using-wds/</link>
		<comments>http://tech.niques.info/launchy-search-using-wds/#comments</comments>
		<pubDate>Mon, 24 Dec 2007 04:34:16 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[wds]]></category>
		<category><![CDATA[windows desktop search]]></category>

		<guid isPermaLink="false">http://tech.niques.info/2007/12/24/running-windows-desktop-search-3-and-2-queries-from-launchy/</guid>
		<description><![CDATA[Launchy is an application launcher that can help you quickly access programs without cluttering your desktop.  Find out how to run Windows Desktop Search queries from Launchy instead of using the Windows Search Deskbar or Windows Explorer.]]></description>
			<content:encoded><![CDATA[Copyright © 2012 <a href="http://tech.niques.info">Tech[niques]</a>. Visit the original article at <a href="http://tech.niques.info/launchy-search-using-wds/">http://tech.niques.info/launchy-search-using-wds/</a>.<br /><div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:91f07c65-64ee-4d0b-8d8e-039bbacc8c89" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/configuration" rel="tag">configuration</a>,<a href="http://technorati.com/tags/search" rel="tag">search</a>,<a href="http://technorati.com/tags/wds" rel="tag">wds</a>,<a href="http://technorati.com/tags/windows%20desktop%20search" rel="tag">windows desktop search</a></div>
<p><img src="http://tech.niques.info/wp-content/uploads/2007/12/launchyandwds-wdsexample4.png" style="border-width: 0px" alt="Launchy and WDS Example" border="0" height="116" width="240" /></p>
<p><a href="http://www.launchy.net/" target="_blank">Launchy</a> is an application launcher that can help you quickly access programs without cluttering your desktop with icons or toolbars. By default it indexes all of the programs listed in your Start Menu, and with a few keystrokes lets you start any of those programs. No mouse input is required.</p>
<p>It also has plugin support so third party developers can extend its capabilities. Weby and Runner are two plugins that are part of the Launchy standard install. Using these we will integrate with Windows Desktop Search to launch local searches.</p>
<p>Windows Desktop Search (WDS) queries are typically run from Windows Explorer or the Windows Search Deskbar. Both options are easy enough to use, but for the power user they just add desktop clutter or slow down access to WDS. WDS 2 also offered a way to initiate searches from the <a href="http://msdn2.microsoft.com/en-us/library/aa965713.aspx" target="_blank">command line</a>. With WDS 3 the command line option has been replaced with the less intuitive <a href="http://msdn2.microsoft.com/en-us/library/bb266520.aspx" target="_blank">search-ms protocol</a>.</p>
<p><strong>Note:</strong> If you are unsure which version of WDS you have, please try the Windows Desktop Search 3.x instructions first.</p>
<h2>Step by Step: Configuring for Windows Desktop Search 3.x</h2>
<p>To configure Launchy for Windows Desktop Search 3.x:</p>
<ol>
<li>Invoke Launchy (default shortcut: Alt + Space)</li>
<li>Right click on the Launchy window and select Options from the menu</li>
<li>Click on the Plugins tab, and ensure Weby is selected in the &#8220;Available Plugins&#8221; list</li>
<li>Select the &#8220;+&#8221; button</li>
<li>Fill in the new row as depicted below</li>
<li>Click OK to save the settings</li>
</ol>
<p><a href="http://tech.niques.info/wp-content/uploads/2007/12/launchyandwdswebyconfig.png"><img src="http://tech.niques.info/wp-content/uploads/2007/12/launchyandwdswebyconfig-thumb.png" style="border-width: 0px" alt="LaunchyAndWDS-WebyConfig" border="0" height="144" width="404" /></a></p>
<table border="0" cellpadding="2" cellspacing="0">
<tr>
<th valign="top" width="45"><strong>Name</strong></th>
<th valign="top" width="168"><strong>URL</strong></th>
<th valign="top"><strong>Query</strong></th>
</tr>
<tr>
<td valign="top">WDS</td>
<td valign="top">search-ms://</td>
<td valign="top">query=%s&amp;</td>
</tr>
</table>
<p><strong>Update:</strong> The query string requires an ampersand character (&amp;) at the end to avoid a trailing slash being appended to your query.</p>
<h2>Step by Step: Configuring for Windows Desktop Search 2.x</h2>
<p>To configure Launchy for Windows Desktop Search 2.x:</p>
<ol>
<li>Invoke Launchy (default shortcut: Alt + Space)</li>
<li>Right click on the Launchy window and select Options from the menu</li>
<li>Click on the Plugins tab, and ensure Runner is selected in the &#8220;Available Plugins&#8221; list</li>
<li>Select the &#8220;+&#8221; button</li>
<li>Fill in the new row as depicted below</li>
<li>Click OK to save the settings</li>
</ol>
<p><a href="http://tech.niques.info/wp-content/uploads/2007/12/launchyandwdsrunnerconfig.png"><img src="http://tech.niques.info/wp-content/uploads/2007/12/launchyandwdsrunnerconfig-thumb.png" style="border-width: 0px" alt="LaunchyAndWDS-RunnerConfig" border="0" height="111" width="404" /></a></p>
<table border="0" cellpadding="2" cellspacing="0">
<tr>
<th valign="top" width="45"><strong>Name</strong></th>
<th valign="top" width="168"><strong>Program</strong></th>
<th valign="top"><strong>Arguments</strong></th>
</tr>
<tr>
<td valign="top">WDS</td>
<td valign="top">C:\Windows\System32\cmd.exe</td>
<td valign="top">&#8220;WindowsSearch.exe /url search:query=$$&#8221;</td>
</tr>
</table>
<p><strong>Note:</strong> If you are unsure which version of WDS you have, or the Runner plugin instructions don&#8217;t work for you, you probably have WDS 3.x installed so please remove the Runner configuration entry you just created and try the Weby plugin option instead.</p>
<h2>Calling Windows Desktop Search from Launchy</h2>
<p>After completing the configuration, searching your hard drive should be as simple as:</p>
<ol>
<li>Invoke Launchy (default shortcut: Alt + Space)</li>
<li>Type WDS then press the Tab key</li>
<li>Type in your query text then hit Enter</li>
</ol>
<p>A WDS window should open with your search results populated.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Ftech.niques.info%2Flaunchy-search-using-wds%2F';
  addthis_title  = 'Running+Windows+Desktop+Search+3+%28and+2%29+Queries+From+Launchy';
  addthis_pub    = 'DawMatt';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://tech.niques.info/launchy-search-using-wds/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

