rmobio 1.1.18 → 1.1.19
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/lib/rmobio/auth.rb +3 -2
- metadata +2 -2
data/lib/rmobio/auth.rb
CHANGED
@@ -19,6 +19,7 @@
|
|
19
19
|
Some summary should go here
|
20
20
|
=end
|
21
21
|
require 'rmobio/utils'
|
22
|
+
require 'cgi'
|
22
23
|
|
23
24
|
module Rmobio
|
24
25
|
module Auth
|
@@ -96,7 +97,7 @@ module Rmobio
|
|
96
97
|
#tokenize(req_url) do |token|
|
97
98
|
# token_list << token
|
98
99
|
#end
|
99
|
-
context = request.env['HTTP_MOBIO_CONTEXT']
|
100
|
+
context = request.env['HTTP_MOBIO_CONTEXT']
|
100
101
|
if context
|
101
102
|
surl=context + request.request_uri
|
102
103
|
else
|
@@ -147,7 +148,7 @@ module Rmobio
|
|
147
148
|
return
|
148
149
|
end
|
149
150
|
end
|
150
|
-
auth_app_url=MOBIO_CONFIG['authorization_app_url'] + '?label=' + label + '&domain=' + domain + '&burl=' + burl + '&surl=' + surl
|
151
|
+
auth_app_url=MOBIO_CONFIG['authorization_app_url'] + '?label=' + label + '&domain=' + domain + '&burl=' + burl + '&surl=' + CGI.escape(surl)
|
151
152
|
redirect_to("#{auth_app_url}")
|
152
153
|
|
153
154
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rmobio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mobio Networks
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-05-
|
12
|
+
date: 2008-05-20 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|