<?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>indiWiz.com &#187; webbrowser</title>
	<atom:link href="http://indiwiz.com/tag/webbrowser/feed/" rel="self" type="application/rss+xml" />
	<link>http://indiwiz.com</link>
	<description>Subhash&#039;s Tech Log</description>
	<lastBuildDate>Sun, 29 Apr 2012 15:11:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>OpenSearch search providers and browsers</title>
		<link>http://indiwiz.com/2009/11/25/opensearch-search-providers-and-browsers/</link>
		<comments>http://indiwiz.com/2009/11/25/opensearch-search-providers-and-browsers/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 05:06:10 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[opensearch]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[webbrowser]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=587</guid>
		<description><![CDATA[All the major browser vendors support the OpenSearch format (yes, this means including Microsoft IE8) for registering a search provider in your browser. Writing a OpenSearch provider Recently I wrote a search provider for my favorite book-buying site, Pustak.co.in: Hosting your search provider To let people use your search provider, you need to host it [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>All the major browser vendors support the OpenSearch format (yes, this means including Microsoft IE8) for registering a search provider in your browser.</p>
<h4>Writing a OpenSearch provider</h4>
<p>Recently I wrote a search provider for my favorite book-buying site, <a href="http://pustak.co.in/">Pustak.co.in</a>:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;OpenSearchDescription xmlns=&quot;http://a9.com/-/spec/opensearch/1.1/&quot;&gt;
	&lt;ShortName&gt;Pustak.co.in&lt;/ShortName&gt;
	&lt;Description&gt;Pustak.co.in provider&lt;/Description&gt;
	&lt;InputEncoding&gt;UTF-8&lt;/InputEncoding&gt;
	&lt;Url type=&quot;text/html&quot;
		template=&quot;http://pustak.co.in/pustak/books/search?q={searchTerms}&amp;amp;type=book&amp;amp;page=1&quot;/&gt;
&lt;/OpenSearchDescription&gt;
</pre>
<h4>Hosting your search provider</h4>
<p>To let people use your search provider, you need to host it in the web. For our example, let us assume that you host it here: <em>http://yourhost/your_opensearch.xml</em>.</p>
<p>The MIME type of this document can be left to its default <em>application/xml</em>, or can be made OpenSearch specific: <em>application/opensearchdescription+xml</em>.</p>
<h4>Using JavaScript to register a provider</h4>
<p>After deploying the OpenSearch XML in your host, we need to write a JavaScript function to register the provider with your browser:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
function registerYourSearchProvider(){
  window.external.AddSearchProvider(&quot;http://yourhost/your_opensearch.xml&quot;);
}
&lt;/script&gt;
</pre>
<p>This JavaScript worked with Firefox, IE8 and Google Chrome. Opera 10 was not able to understand it.</p>
<h4>Auto-discovering OpenSearch providers</h4>
<p>Recently when I saw my Google Chrome search providers, I saw this list:</p>
<p><a href="http://www.flickr.com/photos/subwiz/4132146183/" title="Chrome Search Providers by subWiz, on Flickr"><img src="http://farm3.static.flickr.com/2784/4132146183_4b96fbc9b2_o.png" width="485" height="394" alt="Chrome Search Providers" /></a></p>
<p>I was surprised to see this list because there are providers that I have not added specifically. How was Google Chrome &#8220;discovering&#8221; these providers?</p>
<p>A look into the HTML source of one of the auto-registering search provider, I found the following info (in the &lt;head&gt; section):</p>
<pre class="brush: xml; title: ; notranslate">
&lt;link rel=&quot;search&quot;
       href=&quot;/mavensearch.xml&quot;
       type=&quot;application/opensearchdescription+xml&quot;
       title=&quot;mavensearch.net&quot; /&gt;
</pre>
<p>To let browsers auto-discover you as a search-provider, add the above in your sites!</p>
<div class="shr-publisher-587"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/11/25/opensearch-search-providers-and-browsers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Best WebDeveloper plugins for Firefox</title>
		<link>http://indiwiz.com/2009/08/07/best-webdeveloper-plugins-for-firefox/</link>
		<comments>http://indiwiz.com/2009/08/07/best-webdeveloper-plugins-for-firefox/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 04:56:29 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[webbrowser]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=419</guid>
		<description><![CDATA[I found this interesting link listing the most interesting Firefox plugins.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>I found <a href="https://addons.mozilla.org/en-US/firefox/collection/webdeveloper">this interesting link</a> listing the most interesting Firefox plugins.</p>
<div class="shr-publisher-419"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/08/07/best-webdeveloper-plugins-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome in Linux</title>
		<link>http://indiwiz.com/2009/06/17/google-chrome-in-linux/</link>
		<comments>http://indiwiz.com/2009/06/17/google-chrome-in-linux/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 03:33:22 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[webbrowser]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=332</guid>
		<description><![CDATA[Get it from the Early Access Release Channel.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p><a href="http://www.flickr.com/photos/subwiz/3634711134/" title="Google Chrome in Linux by subWiz, on Flickr"><img src="http://farm4.static.flickr.com/3344/3634711134_73b068d6fb_m.jpg" width="240" height="176" alt="Google Chrome in Linux" /></a></p>
<p>Get it from the <a href="http://dev.chromium.org/getting-involved/dev-channel">Early Access Release Channel</a>.</p>
<div class="shr-publisher-332"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/06/17/google-chrome-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

