<?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>Paul Cowles &#187; google</title>
	<atom:link href="http://www.paulcowles.com/category/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paulcowles.com</link>
	<description>on-going</description>
	<lastBuildDate>Fri, 19 Mar 2010 17:39:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using Google spell checker via Googiespell and your rails proxy</title>
		<link>http://www.paulcowles.com/2008/11/01/using-google-spell-checker-via-googiespell-and-your-rails-proxy/</link>
		<comments>http://www.paulcowles.com/2008/11/01/using-google-spell-checker-via-googiespell-and-your-rails-proxy/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 20:43:25 +0000</pubDate>
		<dc:creator>paulcowles</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://www.paulcowles.com/2008/11/01/using-google-spell-checker-via-googiespell-and-your-rails-proxy/</guid>
		<description><![CDATA[If you are using Googiespell with rails, you may notice that Alex MacCaw&#8217;s Ruby on Rails hack from the documentation page no longer works. Google now requires a SSL connection to the spell service. You&#8217;ll be able to get it working by changing your proxy to: def googiespell @lang = params['lang'] &#124;&#124; 'en' @payload = [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using <a href="http://orangoo.com/labs/GoogieSpell/">Googiespell</a> with rails, you may notice that <a href="http://orangoo.com/labs/uploads/sendReq.rb">Alex MacCaw&#8217;s Ruby on Rails hack</a> from the documentation page no longer works. Google now requires a SSL connection to the spell service. You&#8217;ll be able to get it working by changing your proxy to:</p>
<pre>
def googiespell
  @lang = params['lang'] || 'en'
  @payload = request.raw_post
  http = Net::HTTP.new('google.com', 443)
  http.use_ssl = true
  path = "/tbproxy/spell?lang=" + @lang
  response = http.post(path, @payload)
  render :xml => response.body
end
</pre>
<p>Does anyone know of a Jquery plugin that could be used in place of Googiespell?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paulcowles.com/2008/11/01/using-google-spell-checker-via-googiespell-and-your-rails-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
