Index: trunk/extensions/OpenID/OpenID.i18n.php |
— | — | @@ -135,6 +135,7 @@ |
136 | 136 | 'openid-provider-label-other-username' => 'Enter your $1 username', |
137 | 137 | |
138 | 138 | 'specialpages-group-openid' => 'OpenID service pages and status information', |
| 139 | + 'right-openid-converter-access' => 'Can add or convert their account to use OpenID identities', |
139 | 140 | 'right-openid-dashboard-access' => 'Standard access to the OpenID dashboard', |
140 | 141 | 'right-openid-dashboard-admin' => 'Administrator access to the OpenID dashboard', |
141 | 142 | |
Index: trunk/extensions/OpenID/README.OpenID-mediawiki-extension |
— | — | @@ -461,6 +461,7 @@ |
462 | 462 | into that account now |
463 | 463 | |
464 | 464 | == CHANGES == |
| 465 | +* 1.002 added missing system text 'right-openid-converter-access' |
465 | 466 | * 1.001 convenience release with download of the version for PHP 5.3.x |
466 | 467 | from https://github.com/Wikinaut/php-openid/tree/mw-extension-openid |
467 | 468 | * 1.000 release version |
Index: trunk/extensions/OpenID/OpenID.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | exit( 1 ); |
29 | 29 | } |
30 | 30 | |
31 | | -define( 'MEDIAWIKI_OPENID_VERSION', '1.001 20120220' ); |
| 31 | +define( 'MEDIAWIKI_OPENID_VERSION', '1.002 20120310' ); |
32 | 32 | |
33 | 33 | $path = dirname( __FILE__ ); |
34 | 34 | set_include_path( implode( PATH_SEPARATOR, array( $path ) ) . PATH_SEPARATOR . get_include_path() ); |
Index: trunk/extensions/OpenID/TODO |
— | — | @@ -23,7 +23,7 @@ |
24 | 24 | - keep user from setting password in OpenID account except case S/OO |
25 | 25 | - OpenID-only enabled account owners cannot set their password when the account |
26 | 26 | lacks an e-mail address - which cannot be set up because they don't have a |
27 | | - password (rat race condition) |
| 27 | + password (race condition) |
28 | 28 | https://bugzilla.wikimedia.org/show_bug.cgi?id=34357 |
29 | 29 | This is a regression from implementation of |
30 | 30 | Changing your email address should require entering your password |
— | — | @@ -38,7 +38,6 @@ |
39 | 39 | - configurable regexps for finding a user ID from an OpenID. |
40 | 40 | - deal with difference between canonical ID and "display ID" with XRIs |
41 | 41 | - support RP discovery |
42 | | -- README (always keep README up to date) |
43 | 42 | |
44 | 43 | * warn if a user account has been used as a login before attaching an |
45 | 44 | OpenID (I think, this is solved; marked with * instead of +) |