ruby-openid 1.1.4 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/INSTALL +0 -9
- data/README +21 -22
- data/UPGRADE +117 -0
- data/admin/runtests.rb +36 -0
- data/examples/README +13 -21
- data/examples/active_record_openid_store/README +8 -3
- data/examples/active_record_openid_store/XXX_add_open_id_store_to_db.rb +4 -8
- data/examples/active_record_openid_store/XXX_upgrade_open_id_store.rb +26 -0
- data/examples/active_record_openid_store/lib/association.rb +2 -0
- data/examples/active_record_openid_store/lib/openid_ar_store.rb +22 -47
- data/examples/active_record_openid_store/test/store_test.rb +78 -48
- data/examples/discover +46 -0
- data/examples/{rails_server → rails_openid}/README +0 -0
- data/examples/{rails_server → rails_openid}/Rakefile +0 -0
- data/examples/{rails_server → rails_openid}/app/controllers/application.rb +0 -0
- data/examples/rails_openid/app/controllers/consumer_controller.rb +115 -0
- data/examples/{rails_server → rails_openid}/app/controllers/login_controller.rb +10 -2
- data/examples/rails_openid/app/controllers/server_controller.rb +265 -0
- data/examples/{rails_server → rails_openid}/app/helpers/application_helper.rb +0 -0
- data/examples/{rails_server → rails_openid}/app/helpers/login_helper.rb +0 -0
- data/examples/{rails_server → rails_openid}/app/helpers/server_helper.rb +0 -0
- data/examples/rails_openid/app/views/consumer/index.rhtml +81 -0
- data/examples/rails_openid/app/views/consumer/start.rhtml +8 -0
- data/examples/{rails_server → rails_openid}/app/views/layouts/server.rhtml +0 -0
- data/examples/{rails_server → rails_openid}/app/views/login/index.rhtml +1 -1
- data/examples/rails_openid/app/views/server/decide.rhtml +26 -0
- data/examples/{rails_server → rails_openid}/config/boot.rb +0 -0
- data/examples/{rails_server → rails_openid}/config/database.yml +0 -0
- data/examples/{rails_server → rails_openid}/config/environment.rb +0 -0
- data/examples/{rails_server → rails_openid}/config/environments/development.rb +0 -0
- data/examples/{rails_server → rails_openid}/config/environments/production.rb +0 -0
- data/examples/{rails_server → rails_openid}/config/environments/test.rb +0 -0
- data/examples/{rails_server → rails_openid}/config/routes.rb +2 -1
- data/examples/{rails_server → rails_openid}/doc/README_FOR_APP +0 -0
- data/examples/{rails_server → rails_openid}/public/404.html +0 -0
- data/examples/{rails_server → rails_openid}/public/500.html +0 -0
- data/examples/{rails_server → rails_openid}/public/dispatch.cgi +0 -0
- data/examples/{rails_server → rails_openid}/public/dispatch.fcgi +0 -0
- data/examples/{rails_server → rails_openid}/public/dispatch.rb +0 -0
- data/examples/{rails_server → rails_openid}/public/favicon.ico +0 -0
- data/examples/rails_openid/public/images/openid_login_bg.gif +0 -0
- data/examples/{rails_server → rails_openid}/public/javascripts/controls.js +0 -0
- data/examples/{rails_server → rails_openid}/public/javascripts/dragdrop.js +0 -0
- data/examples/{rails_server → rails_openid}/public/javascripts/effects.js +0 -0
- data/examples/{rails_server → rails_openid}/public/javascripts/prototype.js +0 -0
- data/examples/{rails_server → rails_openid}/public/robots.txt +0 -0
- data/examples/{rails_server → rails_openid}/script/about +0 -0
- data/examples/{rails_server → rails_openid}/script/breakpointer +0 -0
- data/examples/{rails_server → rails_openid}/script/console +0 -0
- data/examples/{rails_server → rails_openid}/script/destroy +0 -0
- data/examples/{rails_server → rails_openid}/script/generate +0 -0
- data/examples/{rails_server → rails_openid}/script/performance/benchmarker +0 -0
- data/examples/{rails_server → rails_openid}/script/performance/profiler +0 -0
- data/examples/{rails_server → rails_openid}/script/plugin +0 -0
- data/examples/{rails_server → rails_openid}/script/process/reaper +0 -0
- data/examples/{rails_server → rails_openid}/script/process/spawner +0 -0
- data/examples/{rails_server → rails_openid}/script/process/spinner +0 -0
- data/examples/{rails_server → rails_openid}/script/runner +0 -0
- data/examples/{rails_server → rails_openid}/script/server +0 -0
- data/examples/{rails_server → rails_openid}/test/functional/login_controller_test.rb +0 -0
- data/examples/{rails_server → rails_openid}/test/functional/server_controller_test.rb +0 -0
- data/examples/{rails_server → rails_openid}/test/test_helper.rb +0 -0
- data/lib/{hmac.rb → hmac/hmac.rb} +0 -0
- data/lib/{hmac-sha1.rb → hmac/sha1.rb} +1 -1
- data/lib/{hmac-sha2.rb → hmac/sha2.rb} +1 -1
- data/lib/openid/association.rb +213 -73
- data/lib/openid/consumer/associationmanager.rb +338 -0
- data/lib/openid/consumer/checkid_request.rb +175 -0
- data/lib/openid/consumer/discovery.rb +480 -0
- data/lib/openid/consumer/discovery_manager.rb +123 -0
- data/lib/openid/consumer/html_parse.rb +136 -0
- data/lib/openid/consumer/idres.rb +525 -0
- data/lib/openid/consumer/responses.rb +133 -0
- data/lib/openid/consumer.rb +280 -807
- data/lib/openid/cryptutil.rb +85 -0
- data/lib/openid/dh.rb +60 -23
- data/lib/openid/extension.rb +31 -0
- data/lib/openid/extensions/ax.rb +506 -0
- data/lib/openid/extensions/pape.rb +182 -0
- data/lib/openid/extensions/sreg.rb +275 -0
- data/lib/openid/extras.rb +11 -0
- data/lib/openid/fetchers.rb +132 -93
- data/lib/openid/kvform.rb +133 -0
- data/lib/openid/kvpost.rb +56 -0
- data/lib/openid/message.rb +534 -0
- data/lib/openid/protocolerror.rb +6 -0
- data/lib/openid/server.rb +1215 -666
- data/lib/openid/store/filesystem.rb +271 -0
- data/lib/openid/store/interface.rb +75 -0
- data/lib/openid/store/memory.rb +84 -0
- data/lib/openid/store/nonce.rb +68 -0
- data/lib/openid/trustroot.rb +314 -87
- data/lib/openid/urinorm.rb +37 -34
- data/lib/openid/util.rb +42 -220
- data/lib/openid/yadis/accept.rb +148 -0
- data/lib/openid/yadis/constants.rb +21 -0
- data/lib/openid/yadis/discovery.rb +153 -0
- data/lib/openid/yadis/filters.rb +205 -0
- data/lib/openid/{htmltokenizer.rb → yadis/htmltokenizer.rb} +1 -54
- data/lib/openid/yadis/parsehtml.rb +36 -0
- data/lib/openid/yadis/services.rb +42 -0
- data/lib/openid/yadis/xrds.rb +171 -0
- data/lib/openid/yadis/xri.rb +90 -0
- data/lib/openid/yadis/xrires.rb +106 -0
- data/lib/openid.rb +1 -4
- data/test/data/accept.txt +124 -0
- data/test/data/dh.txt +29 -0
- data/test/data/example-xrds.xml +14 -0
- data/test/data/linkparse.txt +587 -0
- data/test/data/n2b64 +650 -0
- data/test/data/test1-discover.txt +137 -0
- data/test/data/test1-parsehtml.txt +128 -0
- data/test/data/test_discover/openid.html +11 -0
- data/test/data/test_discover/openid2.html +11 -0
- data/test/data/test_discover/openid2_xrds.xml +12 -0
- data/test/data/test_discover/openid2_xrds_no_local_id.xml +11 -0
- data/test/data/test_discover/openid_1_and_2.html +11 -0
- data/test/data/test_discover/openid_1_and_2_xrds.xml +16 -0
- data/test/data/test_discover/openid_1_and_2_xrds_bad_delegate.xml +17 -0
- data/test/data/test_discover/openid_and_yadis.html +12 -0
- data/test/data/test_discover/openid_no_delegate.html +10 -0
- data/test/data/test_discover/yadis_0entries.xml +12 -0
- data/test/data/test_discover/yadis_2_bad_local_id.xml +15 -0
- data/test/data/test_discover/yadis_2entries_delegate.xml +22 -0
- data/test/data/test_discover/yadis_2entries_idp.xml +21 -0
- data/test/data/test_discover/yadis_another_delegate.xml +14 -0
- data/test/data/test_discover/yadis_idp.xml +12 -0
- data/test/data/test_discover/yadis_idp_delegate.xml +13 -0
- data/test/data/test_discover/yadis_no_delegate.xml +11 -0
- data/test/data/test_xrds/=j3h.2007.11.14.xrds +25 -0
- data/test/data/test_xrds/README +12 -0
- data/test/data/test_xrds/delegated-20060809-r1.xrds +34 -0
- data/test/data/test_xrds/delegated-20060809-r2.xrds +34 -0
- data/test/data/test_xrds/delegated-20060809.xrds +34 -0
- data/test/data/test_xrds/no-xrd.xml +7 -0
- data/test/data/test_xrds/not-xrds.xml +2 -0
- data/test/data/test_xrds/prefixsometimes.xrds +34 -0
- data/test/data/test_xrds/ref.xrds +109 -0
- data/test/data/test_xrds/sometimesprefix.xrds +34 -0
- data/test/data/test_xrds/spoof1.xrds +25 -0
- data/test/data/test_xrds/spoof2.xrds +25 -0
- data/test/data/test_xrds/spoof3.xrds +37 -0
- data/test/data/test_xrds/status222.xrds +9 -0
- data/test/data/test_xrds/valid-populated-xrds.xml +39 -0
- data/test/data/trustroot.txt +147 -0
- data/test/discoverdata.rb +131 -0
- data/test/test_accept.rb +170 -0
- data/test/test_association.rb +266 -0
- data/test/test_associationmanager.rb +899 -0
- data/test/test_ax.rb +587 -0
- data/test/test_checkid_request.rb +297 -0
- data/test/test_consumer.rb +257 -0
- data/test/test_cryptutil.rb +117 -0
- data/test/test_dh.rb +86 -0
- data/test/test_discover.rb +772 -0
- data/test/test_discovery_manager.rb +262 -0
- data/test/test_extras.rb +35 -0
- data/test/test_fetchers.rb +472 -0
- data/test/test_filters.rb +270 -0
- data/test/test_idres.rb +816 -0
- data/test/test_kvform.rb +165 -0
- data/test/test_kvpost.rb +65 -0
- data/test/test_linkparse.rb +101 -0
- data/test/test_message.rb +1058 -0
- data/test/test_nonce.rb +89 -0
- data/test/test_openid_yadis.rb +178 -0
- data/test/test_pape.rb +233 -0
- data/test/test_parsehtml.rb +80 -0
- data/test/test_responses.rb +63 -0
- data/test/test_server.rb +2270 -0
- data/test/test_sreg.rb +479 -0
- data/test/test_stores.rb +269 -0
- data/test/test_trustroot.rb +112 -0
- data/test/{urinorm.rb → test_urinorm.rb} +6 -3
- data/test/test_util.rb +144 -0
- data/test/test_xrds.rb +160 -0
- data/test/test_xri.rb +48 -0
- data/test/test_xrires.rb +63 -0
- data/test/test_yadis_discovery.rb +207 -0
- data/test/testutil.rb +116 -0
- data/test/util.rb +47 -50
- metadata +233 -143
- data/examples/consumer.rb +0 -290
- data/examples/rails_openid_login_generator/openid_login_generator-0.1.gem +0 -0
- data/examples/rails_server/app/controllers/server_controller.rb +0 -190
- data/examples/rails_server/app/views/server/decide.rhtml +0 -11
- data/examples/rails_server/public/images/rails.png +0 -0
- data/lib/hmac-md5.rb +0 -11
- data/lib/hmac-rmd160.rb +0 -11
- data/lib/openid/discovery.rb +0 -122
- data/lib/openid/filestore.rb +0 -315
- data/lib/openid/parse.rb +0 -23
- data/lib/openid/service.rb +0 -147
- data/lib/openid/stores.rb +0 -178
- data/test/assoc.rb +0 -38
- data/test/consumer.rb +0 -376
- data/test/data/brian.xrds +0 -16
- data/test/data/brianellin.mylid.xrds +0 -42
- data/test/dh.rb +0 -20
- data/test/extensions.rb +0 -30
- data/test/linkparse.rb +0 -305
- data/test/runtests.rb +0 -22
- data/test/server2.rb +0 -1053
- data/test/service.rb +0 -47
- data/test/storetestcase.rb +0 -172
- data/test/teststore.rb +0 -47
- data/test/trustroot.rb +0 -117
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.
|
|
2
|
+
rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: ruby-openid
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version:
|
|
7
|
-
date: 2007-
|
|
6
|
+
version: 2.0.1
|
|
7
|
+
date: 2007-12-14 00:00:00 -08:00
|
|
8
8
|
summary: A library for consuming and serving OpenID identities.
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
11
|
-
email:
|
|
12
|
-
homepage: http://
|
|
11
|
+
email: openid@janrain.com
|
|
12
|
+
homepage: http://openidenabled.com/ruby-openid/
|
|
13
13
|
rubyforge_project:
|
|
14
14
|
description:
|
|
15
15
|
autorequire: openid
|
|
@@ -25,162 +25,259 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
|
25
25
|
platform: ruby
|
|
26
26
|
signing_key:
|
|
27
27
|
cert_chain:
|
|
28
|
+
post_install_message:
|
|
28
29
|
authors:
|
|
29
|
-
-
|
|
30
|
+
- JanRain, Inc
|
|
30
31
|
files:
|
|
31
|
-
- examples/consumer.rb
|
|
32
|
-
- examples/rails_server
|
|
33
32
|
- examples/README
|
|
34
|
-
- examples/rails_openid_login_generator
|
|
35
33
|
- examples/active_record_openid_store
|
|
36
|
-
- examples/
|
|
37
|
-
- examples/
|
|
38
|
-
- examples/
|
|
39
|
-
- examples/
|
|
40
|
-
- examples/
|
|
41
|
-
- examples/
|
|
42
|
-
- examples/
|
|
43
|
-
- examples/
|
|
44
|
-
- examples/
|
|
45
|
-
- examples/
|
|
46
|
-
- examples/
|
|
47
|
-
- examples/
|
|
48
|
-
- examples/
|
|
49
|
-
- examples/
|
|
50
|
-
- examples/rails_server/app/helpers
|
|
51
|
-
- examples/rails_server/app/models
|
|
52
|
-
- examples/rails_server/app/views
|
|
53
|
-
- examples/rails_server/app/controllers/server_controller.rb
|
|
54
|
-
- examples/rails_server/app/controllers/login_controller.rb
|
|
55
|
-
- examples/rails_server/app/controllers/application.rb
|
|
56
|
-
- examples/rails_server/app/helpers/server_helper.rb
|
|
57
|
-
- examples/rails_server/app/helpers/login_helper.rb
|
|
58
|
-
- examples/rails_server/app/helpers/application_helper.rb
|
|
59
|
-
- examples/rails_server/app/views/layouts
|
|
60
|
-
- examples/rails_server/app/views/login
|
|
61
|
-
- examples/rails_server/app/views/server
|
|
62
|
-
- examples/rails_server/app/views/layouts/server.rhtml
|
|
63
|
-
- examples/rails_server/app/views/login/index.rhtml
|
|
64
|
-
- examples/rails_server/app/views/server/decide.rhtml
|
|
65
|
-
- examples/rails_server/config/environments
|
|
66
|
-
- examples/rails_server/config/database.yml
|
|
67
|
-
- examples/rails_server/config/routes.rb
|
|
68
|
-
- examples/rails_server/config/environment.rb
|
|
69
|
-
- examples/rails_server/config/boot.rb
|
|
70
|
-
- examples/rails_server/config/environments/test.rb
|
|
71
|
-
- examples/rails_server/config/environments/production.rb
|
|
72
|
-
- examples/rails_server/config/environments/development.rb
|
|
73
|
-
- examples/rails_server/doc/README_FOR_APP
|
|
74
|
-
- examples/rails_server/lib/tasks
|
|
75
|
-
- examples/rails_server/public/images
|
|
76
|
-
- examples/rails_server/public/javascripts
|
|
77
|
-
- examples/rails_server/public/stylesheets
|
|
78
|
-
- examples/rails_server/public/favicon.ico
|
|
79
|
-
- examples/rails_server/public/robots.txt
|
|
80
|
-
- examples/rails_server/public/dispatch.rb
|
|
81
|
-
- examples/rails_server/public/dispatch.fcgi
|
|
82
|
-
- examples/rails_server/public/dispatch.cgi
|
|
83
|
-
- examples/rails_server/public/500.html
|
|
84
|
-
- examples/rails_server/public/404.html
|
|
85
|
-
- examples/rails_server/public/images/rails.png
|
|
86
|
-
- examples/rails_server/public/javascripts/prototype.js
|
|
87
|
-
- examples/rails_server/public/javascripts/effects.js
|
|
88
|
-
- examples/rails_server/public/javascripts/dragdrop.js
|
|
89
|
-
- examples/rails_server/public/javascripts/controls.js
|
|
90
|
-
- examples/rails_server/script/performance
|
|
91
|
-
- examples/rails_server/script/process
|
|
92
|
-
- examples/rails_server/script/generate
|
|
93
|
-
- examples/rails_server/script/server
|
|
94
|
-
- examples/rails_server/script/runner
|
|
95
|
-
- examples/rails_server/script/plugin
|
|
96
|
-
- examples/rails_server/script/breakpointer
|
|
97
|
-
- examples/rails_server/script/destroy
|
|
98
|
-
- examples/rails_server/script/console
|
|
99
|
-
- examples/rails_server/script/about
|
|
100
|
-
- examples/rails_server/script/performance/benchmarker
|
|
101
|
-
- examples/rails_server/script/performance/profiler
|
|
102
|
-
- examples/rails_server/script/process/spinner
|
|
103
|
-
- examples/rails_server/script/process/spawner
|
|
104
|
-
- examples/rails_server/script/process/reaper
|
|
105
|
-
- examples/rails_server/test/fixtures
|
|
106
|
-
- examples/rails_server/test/functional
|
|
107
|
-
- examples/rails_server/test/mocks
|
|
108
|
-
- examples/rails_server/test/unit
|
|
109
|
-
- examples/rails_server/test/test_helper.rb
|
|
110
|
-
- examples/rails_server/test/functional/server_controller_test.rb
|
|
111
|
-
- examples/rails_server/test/functional/login_controller_test.rb
|
|
112
|
-
- examples/rails_server/test/mocks/development
|
|
113
|
-
- examples/rails_server/test/mocks/test
|
|
34
|
+
- examples/rails_openid_login_generator
|
|
35
|
+
- examples/rails_openid
|
|
36
|
+
- examples/discover
|
|
37
|
+
- examples/active_record_openid_store/lib
|
|
38
|
+
- examples/active_record_openid_store/test
|
|
39
|
+
- examples/active_record_openid_store/init.rb
|
|
40
|
+
- examples/active_record_openid_store/README
|
|
41
|
+
- examples/active_record_openid_store/XXX_add_open_id_store_to_db.rb
|
|
42
|
+
- examples/active_record_openid_store/XXX_upgrade_open_id_store.rb
|
|
43
|
+
- examples/active_record_openid_store/lib/association.rb
|
|
44
|
+
- examples/active_record_openid_store/lib/nonce.rb
|
|
45
|
+
- examples/active_record_openid_store/lib/open_id_setting.rb
|
|
46
|
+
- examples/active_record_openid_store/lib/openid_ar_store.rb
|
|
47
|
+
- examples/active_record_openid_store/test/store_test.rb
|
|
114
48
|
- examples/rails_openid_login_generator/templates
|
|
115
49
|
- examples/rails_openid_login_generator/gemspec
|
|
116
50
|
- examples/rails_openid_login_generator/USAGE
|
|
117
51
|
- examples/rails_openid_login_generator/openid_login_generator.rb
|
|
118
|
-
- examples/rails_openid_login_generator/
|
|
119
|
-
- examples/rails_openid_login_generator/templates/controller.rb
|
|
52
|
+
- examples/rails_openid_login_generator/templates/user.rb
|
|
120
53
|
- examples/rails_openid_login_generator/templates/README
|
|
121
|
-
- examples/rails_openid_login_generator/templates/
|
|
54
|
+
- examples/rails_openid_login_generator/templates/controller.rb
|
|
122
55
|
- examples/rails_openid_login_generator/templates/helper.rb
|
|
123
|
-
- examples/rails_openid_login_generator/templates/user.rb
|
|
124
56
|
- examples/rails_openid_login_generator/templates/view_login.rhtml
|
|
125
|
-
- examples/rails_openid_login_generator/templates/users.yml
|
|
126
57
|
- examples/rails_openid_login_generator/templates/view_logout.rhtml
|
|
127
58
|
- examples/rails_openid_login_generator/templates/view_welcome.rhtml
|
|
128
59
|
- examples/rails_openid_login_generator/templates/controller_test.rb
|
|
60
|
+
- examples/rails_openid_login_generator/templates/user_test.rb
|
|
61
|
+
- examples/rails_openid_login_generator/templates/users.yml
|
|
129
62
|
- examples/rails_openid_login_generator/templates/openid_login_system.rb
|
|
130
|
-
- examples/
|
|
131
|
-
- examples/
|
|
132
|
-
- examples/
|
|
133
|
-
- examples/
|
|
134
|
-
- examples/
|
|
135
|
-
- examples/
|
|
136
|
-
- examples/
|
|
137
|
-
- examples/
|
|
138
|
-
- examples/
|
|
139
|
-
- examples/
|
|
63
|
+
- examples/rails_openid/app
|
|
64
|
+
- examples/rails_openid/components
|
|
65
|
+
- examples/rails_openid/config
|
|
66
|
+
- examples/rails_openid/db
|
|
67
|
+
- examples/rails_openid/doc
|
|
68
|
+
- examples/rails_openid/lib
|
|
69
|
+
- examples/rails_openid/log
|
|
70
|
+
- examples/rails_openid/public
|
|
71
|
+
- examples/rails_openid/script
|
|
72
|
+
- examples/rails_openid/test
|
|
73
|
+
- examples/rails_openid/vendor
|
|
74
|
+
- examples/rails_openid/Rakefile
|
|
75
|
+
- examples/rails_openid/README
|
|
76
|
+
- examples/rails_openid/app/controllers
|
|
77
|
+
- examples/rails_openid/app/helpers
|
|
78
|
+
- examples/rails_openid/app/models
|
|
79
|
+
- examples/rails_openid/app/views
|
|
80
|
+
- examples/rails_openid/app/controllers/application.rb
|
|
81
|
+
- examples/rails_openid/app/controllers/login_controller.rb
|
|
82
|
+
- examples/rails_openid/app/controllers/server_controller.rb
|
|
83
|
+
- examples/rails_openid/app/controllers/consumer_controller.rb
|
|
84
|
+
- examples/rails_openid/app/helpers/application_helper.rb
|
|
85
|
+
- examples/rails_openid/app/helpers/login_helper.rb
|
|
86
|
+
- examples/rails_openid/app/helpers/server_helper.rb
|
|
87
|
+
- examples/rails_openid/app/views/layouts
|
|
88
|
+
- examples/rails_openid/app/views/login
|
|
89
|
+
- examples/rails_openid/app/views/server
|
|
90
|
+
- examples/rails_openid/app/views/consumer
|
|
91
|
+
- examples/rails_openid/app/views/layouts/server.rhtml
|
|
92
|
+
- examples/rails_openid/app/views/login/index.rhtml
|
|
93
|
+
- examples/rails_openid/app/views/server/decide.rhtml
|
|
94
|
+
- examples/rails_openid/app/views/consumer/start.rhtml
|
|
95
|
+
- examples/rails_openid/app/views/consumer/index.rhtml
|
|
96
|
+
- examples/rails_openid/config/environments
|
|
97
|
+
- examples/rails_openid/config/database.yml
|
|
98
|
+
- examples/rails_openid/config/boot.rb
|
|
99
|
+
- examples/rails_openid/config/environment.rb
|
|
100
|
+
- examples/rails_openid/config/routes.rb
|
|
101
|
+
- examples/rails_openid/config/environments/development.rb
|
|
102
|
+
- examples/rails_openid/config/environments/production.rb
|
|
103
|
+
- examples/rails_openid/config/environments/test.rb
|
|
104
|
+
- examples/rails_openid/doc/README_FOR_APP
|
|
105
|
+
- examples/rails_openid/lib/tasks
|
|
106
|
+
- examples/rails_openid/public/images
|
|
107
|
+
- examples/rails_openid/public/javascripts
|
|
108
|
+
- examples/rails_openid/public/stylesheets
|
|
109
|
+
- examples/rails_openid/public/dispatch.cgi
|
|
110
|
+
- examples/rails_openid/public/404.html
|
|
111
|
+
- examples/rails_openid/public/500.html
|
|
112
|
+
- examples/rails_openid/public/dispatch.fcgi
|
|
113
|
+
- examples/rails_openid/public/dispatch.rb
|
|
114
|
+
- examples/rails_openid/public/favicon.ico
|
|
115
|
+
- examples/rails_openid/public/robots.txt
|
|
116
|
+
- examples/rails_openid/public/images/openid_login_bg.gif
|
|
117
|
+
- examples/rails_openid/public/javascripts/controls.js
|
|
118
|
+
- examples/rails_openid/public/javascripts/dragdrop.js
|
|
119
|
+
- examples/rails_openid/public/javascripts/effects.js
|
|
120
|
+
- examples/rails_openid/public/javascripts/prototype.js
|
|
121
|
+
- examples/rails_openid/script/performance
|
|
122
|
+
- examples/rails_openid/script/process
|
|
123
|
+
- examples/rails_openid/script/console
|
|
124
|
+
- examples/rails_openid/script/about
|
|
125
|
+
- examples/rails_openid/script/breakpointer
|
|
126
|
+
- examples/rails_openid/script/destroy
|
|
127
|
+
- examples/rails_openid/script/generate
|
|
128
|
+
- examples/rails_openid/script/plugin
|
|
129
|
+
- examples/rails_openid/script/runner
|
|
130
|
+
- examples/rails_openid/script/server
|
|
131
|
+
- examples/rails_openid/script/performance/benchmarker
|
|
132
|
+
- examples/rails_openid/script/performance/profiler
|
|
133
|
+
- examples/rails_openid/script/process/spawner
|
|
134
|
+
- examples/rails_openid/script/process/reaper
|
|
135
|
+
- examples/rails_openid/script/process/spinner
|
|
136
|
+
- examples/rails_openid/test/fixtures
|
|
137
|
+
- examples/rails_openid/test/functional
|
|
138
|
+
- examples/rails_openid/test/mocks
|
|
139
|
+
- examples/rails_openid/test/unit
|
|
140
|
+
- examples/rails_openid/test/test_helper.rb
|
|
141
|
+
- examples/rails_openid/test/functional/login_controller_test.rb
|
|
142
|
+
- examples/rails_openid/test/functional/server_controller_test.rb
|
|
143
|
+
- examples/rails_openid/test/mocks/development
|
|
144
|
+
- examples/rails_openid/test/mocks/test
|
|
140
145
|
- lib/openid
|
|
141
|
-
- lib/hmac
|
|
142
|
-
- lib/hmac.rb
|
|
143
|
-
- lib/hmac-sha1.rb
|
|
144
|
-
- lib/hmac-rmd160.rb
|
|
145
|
-
- lib/hmac-md5.rb
|
|
146
|
+
- lib/hmac
|
|
146
147
|
- lib/openid.rb
|
|
147
|
-
- lib/openid/
|
|
148
|
-
- lib/openid/
|
|
149
|
-
- lib/openid/
|
|
150
|
-
- lib/openid/fetchers.rb
|
|
151
|
-
- lib/openid/filestore.rb
|
|
152
|
-
- lib/openid/parse.rb
|
|
153
|
-
- lib/openid/stores.rb
|
|
148
|
+
- lib/openid/cryptutil.rb
|
|
149
|
+
- lib/openid/extras.rb
|
|
150
|
+
- lib/openid/urinorm.rb
|
|
154
151
|
- lib/openid/util.rb
|
|
155
|
-
- lib/openid/association.rb
|
|
156
152
|
- lib/openid/trustroot.rb
|
|
153
|
+
- lib/openid/message.rb
|
|
154
|
+
- lib/openid/yadis
|
|
155
|
+
- lib/openid/consumer
|
|
156
|
+
- lib/openid/fetchers.rb
|
|
157
|
+
- lib/openid/dh.rb
|
|
158
|
+
- lib/openid/kvform.rb
|
|
159
|
+
- lib/openid/association.rb
|
|
160
|
+
- lib/openid/store
|
|
161
|
+
- lib/openid/kvpost.rb
|
|
162
|
+
- lib/openid/extensions
|
|
163
|
+
- lib/openid/protocolerror.rb
|
|
157
164
|
- lib/openid/server.rb
|
|
158
|
-
- lib/openid/
|
|
159
|
-
- lib/openid/
|
|
160
|
-
- lib/openid/
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
-
|
|
164
|
-
-
|
|
165
|
-
-
|
|
165
|
+
- lib/openid/extension.rb
|
|
166
|
+
- lib/openid/consumer.rb
|
|
167
|
+
- lib/openid/yadis/htmltokenizer.rb
|
|
168
|
+
- lib/openid/yadis/parsehtml.rb
|
|
169
|
+
- lib/openid/yadis/filters.rb
|
|
170
|
+
- lib/openid/yadis/xrds.rb
|
|
171
|
+
- lib/openid/yadis/accept.rb
|
|
172
|
+
- lib/openid/yadis/constants.rb
|
|
173
|
+
- lib/openid/yadis/discovery.rb
|
|
174
|
+
- lib/openid/yadis/xri.rb
|
|
175
|
+
- lib/openid/yadis/xrires.rb
|
|
176
|
+
- lib/openid/yadis/services.rb
|
|
177
|
+
- lib/openid/consumer/html_parse.rb
|
|
178
|
+
- lib/openid/consumer/idres.rb
|
|
179
|
+
- lib/openid/consumer/associationmanager.rb
|
|
180
|
+
- lib/openid/consumer/discovery.rb
|
|
181
|
+
- lib/openid/consumer/discovery_manager.rb
|
|
182
|
+
- lib/openid/consumer/checkid_request.rb
|
|
183
|
+
- lib/openid/consumer/responses.rb
|
|
184
|
+
- lib/openid/store/filesystem.rb
|
|
185
|
+
- lib/openid/store/interface.rb
|
|
186
|
+
- lib/openid/store/nonce.rb
|
|
187
|
+
- lib/openid/store/memory.rb
|
|
188
|
+
- lib/openid/extensions/sreg.rb
|
|
189
|
+
- lib/openid/extensions/ax.rb
|
|
190
|
+
- lib/openid/extensions/pape.rb
|
|
191
|
+
- lib/hmac/hmac.rb
|
|
192
|
+
- lib/hmac/sha1.rb
|
|
193
|
+
- lib/hmac/sha2.rb
|
|
166
194
|
- test/data
|
|
195
|
+
- test/test_association.rb
|
|
196
|
+
- test/test_urinorm.rb
|
|
197
|
+
- test/testutil.rb
|
|
198
|
+
- test/test_util.rb
|
|
199
|
+
- test/test_message.rb
|
|
200
|
+
- test/test_cryptutil.rb
|
|
201
|
+
- test/test_extras.rb
|
|
167
202
|
- test/util.rb
|
|
168
|
-
- test/
|
|
169
|
-
- test/
|
|
170
|
-
- test/
|
|
171
|
-
- test/
|
|
172
|
-
- test/
|
|
173
|
-
- test/
|
|
174
|
-
- test/
|
|
203
|
+
- test/test_trustroot.rb
|
|
204
|
+
- test/test_parsehtml.rb
|
|
205
|
+
- test/test_fetchers.rb
|
|
206
|
+
- test/test_dh.rb
|
|
207
|
+
- test/test_kvform.rb
|
|
208
|
+
- test/test_openid_yadis.rb
|
|
209
|
+
- test/test_linkparse.rb
|
|
210
|
+
- test/test_stores.rb
|
|
211
|
+
- test/test_filters.rb
|
|
212
|
+
- test/test_xrds.rb
|
|
213
|
+
- test/test_nonce.rb
|
|
214
|
+
- test/test_accept.rb
|
|
215
|
+
- test/test_kvpost.rb
|
|
216
|
+
- test/test_associationmanager.rb
|
|
217
|
+
- test/discoverdata.rb
|
|
218
|
+
- test/test_server.rb
|
|
219
|
+
- test/test_yadis_discovery.rb
|
|
220
|
+
- test/test_sreg.rb
|
|
221
|
+
- test/test_idres.rb
|
|
222
|
+
- test/test_ax.rb
|
|
223
|
+
- test/test_xri.rb
|
|
224
|
+
- test/test_xrires.rb
|
|
225
|
+
- test/test_discover.rb
|
|
226
|
+
- test/test_consumer.rb
|
|
227
|
+
- test/test_pape.rb
|
|
228
|
+
- test/test_checkid_request.rb
|
|
229
|
+
- test/test_discovery_manager.rb
|
|
230
|
+
- test/test_responses.rb
|
|
231
|
+
- test/data/test_xrds
|
|
175
232
|
- test/data/urinorm.txt
|
|
176
|
-
- test/data/
|
|
177
|
-
- test/data/
|
|
233
|
+
- test/data/n2b64
|
|
234
|
+
- test/data/trustroot.txt
|
|
235
|
+
- test/data/dh.txt
|
|
236
|
+
- test/data/test1-parsehtml.txt
|
|
237
|
+
- test/data/linkparse.txt
|
|
238
|
+
- test/data/accept.txt
|
|
239
|
+
- test/data/test_discover
|
|
240
|
+
- test/data/example-xrds.xml
|
|
241
|
+
- test/data/test1-discover.txt
|
|
242
|
+
- test/data/test_xrds/ref.xrds
|
|
243
|
+
- test/data/test_xrds/README
|
|
244
|
+
- test/data/test_xrds/delegated-20060809-r1.xrds
|
|
245
|
+
- test/data/test_xrds/delegated-20060809-r2.xrds
|
|
246
|
+
- test/data/test_xrds/delegated-20060809.xrds
|
|
247
|
+
- test/data/test_xrds/no-xrd.xml
|
|
248
|
+
- test/data/test_xrds/not-xrds.xml
|
|
249
|
+
- test/data/test_xrds/prefixsometimes.xrds
|
|
250
|
+
- test/data/test_xrds/sometimesprefix.xrds
|
|
251
|
+
- test/data/test_xrds/spoof1.xrds
|
|
252
|
+
- test/data/test_xrds/spoof2.xrds
|
|
253
|
+
- test/data/test_xrds/spoof3.xrds
|
|
254
|
+
- test/data/test_xrds/status222.xrds
|
|
255
|
+
- test/data/test_xrds/valid-populated-xrds.xml
|
|
256
|
+
- test/data/test_xrds/=j3h.2007.11.14.xrds
|
|
257
|
+
- test/data/test_discover/openid2_xrds.xml
|
|
258
|
+
- test/data/test_discover/openid.html
|
|
259
|
+
- test/data/test_discover/openid2.html
|
|
260
|
+
- test/data/test_discover/openid2_xrds_no_local_id.xml
|
|
261
|
+
- test/data/test_discover/openid_1_and_2.html
|
|
262
|
+
- test/data/test_discover/openid_1_and_2_xrds.xml
|
|
263
|
+
- test/data/test_discover/openid_and_yadis.html
|
|
264
|
+
- test/data/test_discover/openid_1_and_2_xrds_bad_delegate.xml
|
|
265
|
+
- test/data/test_discover/openid_no_delegate.html
|
|
266
|
+
- test/data/test_discover/yadis_0entries.xml
|
|
267
|
+
- test/data/test_discover/yadis_2_bad_local_id.xml
|
|
268
|
+
- test/data/test_discover/yadis_2entries_delegate.xml
|
|
269
|
+
- test/data/test_discover/yadis_2entries_idp.xml
|
|
270
|
+
- test/data/test_discover/yadis_another_delegate.xml
|
|
271
|
+
- test/data/test_discover/yadis_idp.xml
|
|
272
|
+
- test/data/test_discover/yadis_idp_delegate.xml
|
|
273
|
+
- test/data/test_discover/yadis_no_delegate.xml
|
|
178
274
|
- README
|
|
179
275
|
- INSTALL
|
|
180
276
|
- COPYING
|
|
181
277
|
- LICENSE
|
|
278
|
+
- UPGRADE
|
|
182
279
|
test_files:
|
|
183
|
-
-
|
|
280
|
+
- admin/runtests.rb
|
|
184
281
|
rdoc_options:
|
|
185
282
|
- --main
|
|
186
283
|
- README
|
|
@@ -189,19 +286,12 @@ extra_rdoc_files:
|
|
|
189
286
|
- INSTALL
|
|
190
287
|
- COPYING
|
|
191
288
|
- LICENSE
|
|
289
|
+
- UPGRADE
|
|
192
290
|
executables: []
|
|
193
291
|
|
|
194
292
|
extensions: []
|
|
195
293
|
|
|
196
294
|
requirements: []
|
|
197
295
|
|
|
198
|
-
dependencies:
|
|
199
|
-
|
|
200
|
-
name: ruby-yadis
|
|
201
|
-
version_requirement:
|
|
202
|
-
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
203
|
-
requirements:
|
|
204
|
-
- - ">="
|
|
205
|
-
- !ruby/object:Gem::Version
|
|
206
|
-
version: 0.3.4
|
|
207
|
-
version:
|
|
296
|
+
dependencies: []
|
|
297
|
+
|