Closed (fixed)
Project:
Drupal core
Version:
7.x-dev
Component:
openid.module
Priority:
Critical
Category:
Task
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
7 Mar 2009 at 19:47 UTC
Updated:
3 Jan 2014 at 00:07 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
tizzo commentedWorking on this now.
Comment #2
tizzo commentedRelatively straight forward port of openID to DB-TNG. There aren't any tests written for this module yet but I tested it manually with two of my openIDs and everything seems to work.
Comment #3
tizzo commentedChanging category to task. It was probably marked as a bug by mistake?
Comment #4
csevb10 commentedJust looks like a missed comma after 'openid':
and I'd suggest breaking this into multiple lines:
Everything else looks good and passes tests, and the rest looks good to me. I re-rolled the patch with those mods. Only line I'm not sure about (and maybe you know) is this line:
I'm not sure if that's the completely correct formatting.
Comment #5
Crell commentedNo need to separate fields() and values() there. You can just use fields() with an associative array and it will figure it out. The separate calls are really only useful if you're doing a multi-insert statement.
Otherwise this looks good to me. Go team!
Comment #6
csevb10 commentedDangit. My fault. I should have caught that.
Comment #7
csevb10 commentedAnd updating status...
Comment #8
tizzo commentedAh, that seems obvious now, thanks!
Comment #10
csevb10 commentedNo code changes, just a new re-roll against HEAD since the files changed.
Comment #11
csevb10 commentedRemoved trailing whitespace after 1 statement.
Comment #12
c960657 commentedFYI, there are automated tests for OpenID awaiting review in #251245: openid.module needs tests.
Comment #13
dries commentedLooks good to me too. Committed to CVS HEAD. Thanks!
Comment #14
dave reidWe had a regression in http://cvs.drupal.org/viewvc.py/drupal/drupal/modules/openid/openid.page...
Went from:
To:
Note that $form_state['#args'] regressed back to $form_state['#parameters']. Also, we lost the condition 'module' = 'openid'. New query does not respect that.
It would appear that we have also lost the 'Code needs Review' state on d.org. :)
Comment #15
csevb10 commentedGood catch, and this definitely needs to be updated. In light of the missing needs review and reviewed states, how do we get this pushed?
Comment #16
dave reidI'm also seeing that
Should add a condition of 'module' = 'openid' as well. Since openid_user_delete_form_submit() uses the condition, and the condition is also used in openid_user_identities():
Guess we'll have to wait until the issue statuses come back.
Comment #17
dave reidThere we go.
Comment #18
csevb10 commentedEverything looks good to me on the changes. I'll try and review the patch again to see if there were any other lingering issues like that.
Comment #19
dries commentedCommitted to CVS HEAD. Thanks!