annotate .svn/pristine/f0/f06269896f65f1e606b0906f13f624ded16897a7.svn-base @ 1327:287f201c2802 redmine-2.2-integration

Add italic
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Wed, 19 Jun 2013 20:56:22 +0100
parents cbb26bc654de
children
rev   line source
Chris@909 1 * Fake HTTP method from OpenID server since they only support a GET. Eliminates the need to set an extra route to match the server's reply. [Josh Peek]
Chris@909 2
Chris@909 3 * OpenID 2.0 recommends that forms should use the field name "openid_identifier" rather than "openid_url" [Josh Peek]
Chris@909 4
Chris@909 5 * Return open_id_response.display_identifier to the application instead of .endpoints.claimed_id. [nbibler]
Chris@909 6
Chris@909 7 * Add Timeout protection [Rick]
Chris@909 8
Chris@909 9 * An invalid identity url passed through authenticate_with_open_id will no longer raise an InvalidOpenId exception. Instead it will return Result[:missing] to the completion block.
Chris@909 10
Chris@909 11 * Allow a return_to option to be used instead of the requested url [Josh Peek]
Chris@909 12
Chris@909 13 * Updated plugin to use Ruby OpenID 2.x.x [Josh Peek]
Chris@909 14
Chris@909 15 * Tied plugin to ruby-openid 1.1.4 gem until we can make it compatible with 2.x [DHH]
Chris@909 16
Chris@909 17 * Use URI instead of regexps to normalize the URL and gain free, better matching #8136 [dkubb]
Chris@909 18
Chris@909 19 * Allow -'s in #normalize_url [Rick]
Chris@909 20
Chris@909 21 * remove instance of mattr_accessor, it was breaking tests since they don't load ActiveSupport. Fix Timeout test [Rick]
Chris@909 22
Chris@909 23 * Throw a InvalidOpenId exception instead of just a RuntimeError when the URL can't be normalized [DHH]
Chris@909 24
Chris@909 25 * Just use the path for the return URL, so extra query parameters don't interfere [DHH]
Chris@909 26
Chris@909 27 * Added a new default database-backed store after experiencing trouble with the filestore on NFS. The file store is still available as an option [DHH]
Chris@909 28
Chris@909 29 * Added normalize_url and applied it to all operations going through the plugin [DHH]
Chris@909 30
Chris@909 31 * Removed open_id? as the idea of using the same input box for both OpenID and username has died -- use using_open_id? instead (which checks for the presence of params[:openid_url] by default) [DHH]
Chris@909 32
Chris@909 33 * Added OpenIdAuthentication::Result to make it easier to deal with default situations where you don't care to do something particular for each error state [DHH]
Chris@909 34
Chris@909 35 * Stop relying on root_url being defined, we can just grab the current url instead [DHH]