<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Rails and OpenID: Start Your Engines</title>
	<atom:link href="http://terrbear.org/?feed=rss2&#038;p=187" rel="self" type="application/rss+xml" />
	<link>http://terrbear.org/?p=187</link>
	<description>ruby! rails! kids! oh my! ... and other fun from terry heath</description>
	<lastBuildDate>Tue, 31 Aug 2010 17:32:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: admin</title>
		<link>http://terrbear.org/?p=187&#038;cpage=1#comment-744</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 18 Nov 2009 17:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://terrbear.org/?p=187#comment-744</guid>
		<description>Don -

You could change the line in sessions_controller to say something like this:

        authenticate_with_open_id(identity_url, :required =&gt; [:nickname, :email], :optional =&gt; :fullname) do &#124;status, identity_url, registration&#124;

And that will request the attributes if the OpenID provider supports it. More on that here: http://openid.net/specs/openid-simple-registration-extension-1_0.html

There&#039;s a code example where I pulled that line from here (also the original plugin that this engine wraps) : http://agilewebdevelopment.com/plugins/openidauthentication</description>
		<content:encoded><![CDATA[<p>Don -</p>
<p>You could change the line in sessions_controller to say something like this:</p>
<p>        authenticate_with_open_id(identity_url, :required => [:nickname, :email], <img src='http://terrbear.org/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> ptional => :fullname) do |status, identity_url, registration|</p>
<p>And that will request the attributes if the OpenID provider supports it. More on that here: <a href="http://openid.net/specs/openid-simple-registration-extension-1_0.html" rel="nofollow">http://openid.net/specs/openid-simple-registration-extension-1_0.html</a></p>
<p>There&#8217;s a code example where I pulled that line from here (also the original plugin that this engine wraps) : <a href="http://agilewebdevelopment.com/plugins/openidauthentication" rel="nofollow">http://agilewebdevelopment.com/plugins/openidauthentication</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: don</title>
		<link>http://terrbear.org/?p=187&#038;cpage=1#comment-734</link>
		<dc:creator>don</dc:creator>
		<pubDate>Wed, 18 Nov 2009 03:50:25 +0000</pubDate>
		<guid isPermaLink="false">http://terrbear.org/?p=187#comment-734</guid>
		<description>This is awesome, I would like to add the functionality to request profile information, like email. How hard is this to do?
I did some googling and I can&#039;t quite work out what extension people are using.
I know it is possible because i saw another site request my google email address.</description>
		<content:encoded><![CDATA[<p>This is awesome, I would like to add the functionality to request profile information, like email. How hard is this to do?<br />
I did some googling and I can&#8217;t quite work out what extension people are using.<br />
I know it is possible because i saw another site request my google email address.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://terrbear.org/?p=187&#038;cpage=1#comment-681</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 07 Nov 2009 14:14:27 +0000</pubDate>
		<guid isPermaLink="false">http://terrbear.org/?p=187#comment-681</guid>
		<description>Pratik -

Google&#039;s OpenID URL isn&#039;t easy to guess - it&#039;s      https://www.google.com/accounts/o8/id

That said, if you&#039;re planning on having non-technical users use your site, I&#039;d suggest picking a front end that fixes that. Here are a few:

http://jvance.com/pages/JQueryOpenIDPlugin.xhtml
http://code.google.com/p/openid-selector/source/browse/trunk/js/openid-jquery.js?spec=svn14&amp;r=14</description>
		<content:encoded><![CDATA[<p>Pratik -</p>
<p>Google&#8217;s OpenID URL isn&#8217;t easy to guess &#8211; it&#8217;s      <a href="https://www.google.com/accounts/o8/id" rel="nofollow">https://www.google.com/accounts/o8/id</a></p>
<p>That said, if you&#8217;re planning on having non-technical users use your site, I&#8217;d suggest picking a front end that fixes that. Here are a few:</p>
<p><a href="http://jvance.com/pages/JQueryOpenIDPlugin.xhtml" rel="nofollow">http://jvance.com/pages/JQueryOpenIDPlugin.xhtml</a><br />
<a href="http://code.google.com/p/openid-selector/source/browse/trunk/js/openid-jquery.js?spec=svn14&#038;r=14" rel="nofollow">http://code.google.com/p/openid-selector/source/browse/trunk/js/openid-jquery.js?spec=svn14&#038;r=14</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pratik</title>
		<link>http://terrbear.org/?p=187&#038;cpage=1#comment-680</link>
		<dc:creator>Pratik</dc:creator>
		<pubDate>Sat, 07 Nov 2009 03:53:32 +0000</pubDate>
		<guid isPermaLink="false">http://terrbear.org/?p=187#comment-680</guid>
		<description>Hey, thanks for the useful information.
I have implemented all the steps but when i try to login, it gives me the following error in the logs.

[OPENID] No usable OpenID services were found for &quot;http://google.com/&quot;

Do i need to add some entries to the open_id tables in the DB ?

Thanks,
Pratik</description>
		<content:encoded><![CDATA[<p>Hey, thanks for the useful information.<br />
I have implemented all the steps but when i try to login, it gives me the following error in the logs.</p>
<p>[OPENID] No usable OpenID services were found for &#8220;http://google.com/&#8221;</p>
<p>Do i need to add some entries to the open_id tables in the DB ?</p>
<p>Thanks,<br />
Pratik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://terrbear.org/?p=187&#038;cpage=1#comment-672</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 23 Oct 2009 02:05:10 +0000</pubDate>
		<guid isPermaLink="false">http://terrbear.org/?p=187#comment-672</guid>
		<description>You can customize the login form by creating your own view to match the action. Rails Engines should default to your view, if present.

It doesn&#039;t currently support more than one OpenID per user, but that&#039;s a really good idea for me to implement this weekend :)

Thanks!</description>
		<content:encoded><![CDATA[<p>You can customize the login form by creating your own view to match the action. Rails Engines should default to your view, if present.</p>
<p>It doesn&#8217;t currently support more than one OpenID per user, but that&#8217;s a really good idea for me to implement this weekend <img src='http://terrbear.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TempusFactor &#187; Blog Archive &#187; links for 2009-10-22</title>
		<link>http://terrbear.org/?p=187&#038;cpage=1#comment-671</link>
		<dc:creator>TempusFactor &#187; Blog Archive &#187; links for 2009-10-22</dc:creator>
		<pubDate>Fri, 23 Oct 2009 00:09:59 +0000</pubDate>
		<guid isPermaLink="false">http://terrbear.org/?p=187#comment-671</guid>
		<description>[...] Rails and OpenID: Start Your Engines @ terrbear.org (tags: rails authentication) [...]</description>
		<content:encoded><![CDATA[<p>[...] Rails and OpenID: Start Your Engines @ terrbear.org (tags: rails authentication) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J. Pablo Fernández</title>
		<link>http://terrbear.org/?p=187&#038;cpage=1#comment-670</link>
		<dc:creator>J. Pablo Fernández</dc:creator>
		<pubDate>Thu, 22 Oct 2009 18:00:32 +0000</pubDate>
		<guid isPermaLink="false">http://terrbear.org/?p=187#comment-670</guid>
		<description>How do you customize the log in form?

Can you have more than one OpenID per user?</description>
		<content:encoded><![CDATA[<p>How do you customize the log in form?</p>
<p>Can you have more than one OpenID per user?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://terrbear.org/?p=187&#038;cpage=1#comment-638</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 30 Sep 2009 20:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://terrbear.org/?p=187#comment-638</guid>
		<description>@Jay
Sorry, I don&#039;t have any experience w/ RPX.

@Dovadi
Thanks! I&#039;ll update the readme and the post.</description>
		<content:encoded><![CDATA[<p>@Jay<br />
Sorry, I don&#8217;t have any experience w/ RPX.</p>
<p>@Dovadi<br />
Thanks! I&#8217;ll update the readme and the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dovadi</title>
		<link>http://terrbear.org/?p=187&#038;cpage=1#comment-620</link>
		<dc:creator>Dovadi</dc:creator>
		<pubDate>Mon, 14 Sep 2009 19:18:16 +0000</pubDate>
		<guid isPermaLink="false">http://terrbear.org/?p=187#comment-620</guid>
		<description>I like to add two minor points, don&#039;t forget to:

* remove public/index.html
* rename the hello method from welcome controller into index.

Otherwise it works like a charm!</description>
		<content:encoded><![CDATA[<p>I like to add two minor points, don&#8217;t forget to:</p>
<p>* remove public/index.html<br />
* rename the hello method from welcome controller into index.</p>
<p>Otherwise it works like a charm!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Godse</title>
		<link>http://terrbear.org/?p=187&#038;cpage=1#comment-618</link>
		<dc:creator>Jay Godse</dc:creator>
		<pubDate>Sat, 12 Sep 2009 19:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://terrbear.org/?p=187#comment-618</guid>
		<description>Does this solution work with JanRain&#039;s RPX solution? (www.rpxnow.com) 

If not, do you know of a plugin that does what you do, as easily as you do it, and with JanRain&#039;s solution?</description>
		<content:encoded><![CDATA[<p>Does this solution work with JanRain&#8217;s RPX solution? (www.rpxnow.com) </p>
<p>If not, do you know of a plugin that does what you do, as easily as you do it, and with JanRain&#8217;s solution?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->