Mercurial > hg > soundsoftware-site
comparison .svn/pristine/f0/f06269896f65f1e606b0906f13f624ded16897a7.svn-base @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
908:c6c2cbd0afee | 909:cbb26bc654de |
---|---|
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] | |
2 | |
3 * OpenID 2.0 recommends that forms should use the field name "openid_identifier" rather than "openid_url" [Josh Peek] | |
4 | |
5 * Return open_id_response.display_identifier to the application instead of .endpoints.claimed_id. [nbibler] | |
6 | |
7 * Add Timeout protection [Rick] | |
8 | |
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. | |
10 | |
11 * Allow a return_to option to be used instead of the requested url [Josh Peek] | |
12 | |
13 * Updated plugin to use Ruby OpenID 2.x.x [Josh Peek] | |
14 | |
15 * Tied plugin to ruby-openid 1.1.4 gem until we can make it compatible with 2.x [DHH] | |
16 | |
17 * Use URI instead of regexps to normalize the URL and gain free, better matching #8136 [dkubb] | |
18 | |
19 * Allow -'s in #normalize_url [Rick] | |
20 | |
21 * remove instance of mattr_accessor, it was breaking tests since they don't load ActiveSupport. Fix Timeout test [Rick] | |
22 | |
23 * Throw a InvalidOpenId exception instead of just a RuntimeError when the URL can't be normalized [DHH] | |
24 | |
25 * Just use the path for the return URL, so extra query parameters don't interfere [DHH] | |
26 | |
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] | |
28 | |
29 * Added normalize_url and applied it to all operations going through the plugin [DHH] | |
30 | |
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] | |
32 | |
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] | |
34 | |
35 * Stop relying on root_url being defined, we can just grab the current url instead [DHH] |