<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,5 @@
+* OpenID 2.0 recommends that forms should use the field name &quot;openid_identifier&quot; rather than &quot;openid_url&quot; [Josh Peek]
+
 * Return open_id_response.display_identifier to the application instead of .endpoints.claimed_id. [nbibler]
 
 * Add Timeout protection [Rick]</diff>
      <filename>CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -90,8 +90,8 @@ app/views/sessions/new.erb
     &lt;/p&gt;
 
     &lt;p&gt;
-      &lt;label for=&quot;openid_url&quot;&gt;OpenID:&lt;/label&gt;
-      &lt;%= text_field_tag &quot;openid_url&quot; %&gt;
+      &lt;label for=&quot;openid_identifier&quot;&gt;OpenID:&lt;/label&gt;
+      &lt;%= text_field_tag &quot;openid_identifier&quot; %&gt;
     &lt;/p&gt;
 
     &lt;p&gt;</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -83,13 +83,21 @@ module OpenIdAuthentication
       OpenIdAuthentication.normalize_url(url)
     end
 
-    # The parameter name of &quot;openid_url&quot; is used rather than the Rails convention &quot;open_id_url&quot;
+    # The parameter name of &quot;openid_identifier&quot; is used rather than the Rails convention &quot;open_id_identifier&quot;
     # because that's what the specification dictates in order to get browser auto-complete working across sites
-    def using_open_id?(identity_url = params[:openid_url]) #:doc:
+    def using_open_id?(identity_url = params[:openid_identifier]) #:doc:
+      if params.has_key?(:openid_url)
+        puts '[OPENID] The conventional field name has changed from &quot;openid_url&quot; to &quot;openid_identifier&quot;'
+      end
+
       !identity_url.blank? || params[:open_id_complete]
     end
 
-    def authenticate_with_open_id(identity_url = params[:openid_url], options = {}, &amp;block) #:doc:
+    def authenticate_with_open_id(identity_url = params[:openid_identifier], options = {}, &amp;block) #:doc:
+      if params.has_key?(:openid_url)
+        puts '[OPENID] The conventional field name has changed from &quot;openid_url&quot; to &quot;openid_identifier&quot;'
+      end
+
       if params[:open_id_complete].nil?
         begin_open_id_authentication(identity_url, options, &amp;block)
       else</diff>
      <filename>lib/open_id_authentication.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>8a47d6e5da4e333e59e161410b0f45f237408548</id>
    </parent>
  </parents>
  <author>
    <name>Joshua Peek</name>
    <email>josh@joshpeek.com</email>
  </author>
  <url>http://github.com/rails/open_id_authentication/commit/9efbd254f3b274a52f8517cc631201b8b0224bde</url>
  <id>9efbd254f3b274a52f8517cc631201b8b0224bde</id>
  <committed-date>2008-07-27T15:07:35-07:00</committed-date>
  <authored-date>2008-07-27T15:07:35-07:00</authored-date>
  <message>Changed default identity url parameter from &quot;openid_url&quot; to &quot;openid_identifier&quot; as recommended in the OpenID 2.0 spec</message>
  <tree>0f4719df98aab8afb4cc76103ab3e677aa171a72</tree>
  <committer>
    <name>Joshua Peek</name>
    <email>josh@joshpeek.com</email>
  </committer>
</commit>
