jpmobile 0.0.2 → 0.0.3
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/README +32 -10
- data/Rakefile +8 -8
- data/doc/classes/ActionController.html +120 -0
- data/doc/classes/ActionController/AbstractRequest.html +118 -0
- data/doc/classes/ActionController/CgiRequest.html +160 -0
- data/doc/classes/ActionView.html +101 -0
- data/doc/classes/DatumConv.html +324 -0
- data/doc/classes/Jpmobile/Display.html +333 -0
- data/doc/classes/Jpmobile/Emoticon.html +467 -0
- data/doc/classes/Jpmobile/Filter.html +120 -0
- data/doc/classes/Jpmobile/Filter/ApplyOnlyForMobile.html +172 -0
- data/doc/classes/Jpmobile/Filter/Base.html +269 -0
- data/doc/classes/Jpmobile/Filter/Emoticon.html +118 -0
- data/doc/classes/Jpmobile/Filter/Emoticon/Inner.html +184 -0
- data/doc/classes/Jpmobile/Filter/Emoticon/Outer.html +207 -0
- data/doc/classes/Jpmobile/Filter/FilterTable.html +178 -0
- data/doc/classes/Jpmobile/Filter/HankakuKana.html +126 -0
- data/doc/classes/Jpmobile/Filter/Sjis.html +271 -0
- data/doc/classes/Jpmobile/Helpers.html +588 -0
- data/doc/classes/Jpmobile/Mobile.html +150 -0
- data/doc/classes/Jpmobile/Mobile/AbstractMobile.html +389 -0
- data/doc/classes/Jpmobile/Mobile/Au.html +420 -0
- data/doc/classes/Jpmobile/Mobile/Ddipocket.html +138 -0
- data/doc/classes/Jpmobile/Mobile/Docomo.html +411 -0
- data/doc/classes/Jpmobile/Mobile/Emobile.html +183 -0
- data/doc/classes/Jpmobile/Mobile/Jphone.html +212 -0
- data/doc/classes/Jpmobile/Mobile/Softbank.html +344 -0
- data/doc/classes/Jpmobile/Mobile/Vodafone.html +176 -0
- data/doc/classes/Jpmobile/Mobile/Willcom.html +211 -0
- data/doc/classes/Jpmobile/Position.html +384 -0
- data/doc/classes/Jpmobile/RequestWithMobile.html +263 -0
- data/doc/created.rid +1 -0
- data/doc/files/CHANGELOG.html +110 -0
- data/doc/files/README.html +455 -0
- data/doc/files/lib/jpmobile/datum_conv_rb.html +110 -0
- data/doc/files/lib/jpmobile/emoticon/au_rb.html +124 -0
- data/doc/files/lib/jpmobile/emoticon/conversion_table_rb.html +124 -0
- data/doc/files/lib/jpmobile/emoticon/docomo_rb.html +119 -0
- data/doc/files/lib/jpmobile/emoticon/softbank_rb.html +119 -0
- data/doc/files/lib/jpmobile/emoticon/z_combine_rb.html +101 -0
- data/doc/files/lib/jpmobile/emoticon_rb.html +101 -0
- data/doc/files/lib/jpmobile/filter_rb.html +115 -0
- data/doc/files/lib/jpmobile/helpers_rb.html +105 -0
- data/doc/files/lib/jpmobile/hook_abstract_request_rb.html +108 -0
- data/doc/files/lib/jpmobile/hook_action_controller_rb.html +101 -0
- data/doc/files/lib/jpmobile/hook_action_view_rb.html +110 -0
- data/doc/files/lib/jpmobile/mobile/abstract_mobile_rb.html +108 -0
- data/doc/files/lib/jpmobile/mobile/au_rb.html +112 -0
- data/doc/files/lib/jpmobile/mobile/display_rb.html +111 -0
- data/doc/files/lib/jpmobile/mobile/docomo_rb.html +105 -0
- data/doc/files/lib/jpmobile/mobile/emobile_rb.html +105 -0
- data/doc/files/lib/jpmobile/mobile/softbank_rb.html +115 -0
- data/doc/files/lib/jpmobile/mobile/willcom_rb.html +108 -0
- data/doc/files/lib/jpmobile/mobile/z_display_info_docomo_rb.html +114 -0
- data/doc/files/lib/jpmobile/mobile/z_ip_addresses_au_rb.html +114 -0
- data/doc/files/lib/jpmobile/mobile/z_ip_addresses_docomo_rb.html +124 -0
- data/doc/files/lib/jpmobile/mobile/z_ip_addresses_emobile_rb.html +111 -0
- data/doc/files/lib/jpmobile/mobile/z_ip_addresses_softbank_rb.html +124 -0
- data/doc/files/lib/jpmobile/mobile/z_ip_addresses_willcom_rb.html +114 -0
- data/doc/files/lib/jpmobile/position_rb.html +105 -0
- data/doc/files/lib/jpmobile/request_with_mobile_rb.html +111 -0
- data/doc/files/lib/jpmobile/trans_sid_rb.html +118 -0
- data/doc/files/lib/jpmobile/version_rb.html +101 -0
- data/doc/files/lib/jpmobile_rb.html +101 -0
- data/doc/fr_class_index.html +55 -0
- data/doc/fr_file_index.html +58 -0
- data/doc/fr_method_index.html +134 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/lib/jpmobile.rb +32 -1
- data/lib/jpmobile/emoticon.rb +18 -0
- data/lib/jpmobile/emoticon/au.rb +643 -0
- data/lib/jpmobile/filter.rb +5 -1
- data/lib/jpmobile/helpers.rb +9 -1
- data/lib/jpmobile/hook_abstract_request.rb +3 -24
- data/lib/jpmobile/hook_action_controller.rb +2 -2
- data/lib/jpmobile/hook_action_view.rb +41 -8
- data/lib/jpmobile/mobile/abstract_mobile.rb +18 -12
- data/lib/jpmobile/mobile/au.rb +11 -5
- data/lib/jpmobile/mobile/docomo.rb +27 -11
- data/lib/jpmobile/mobile/emobile.rb +15 -0
- data/lib/jpmobile/mobile/softbank.rb +11 -7
- data/lib/jpmobile/mobile/willcom.rb +5 -2
- data/lib/jpmobile/mobile/z_display_info_docomo.rb +343 -219
- data/lib/jpmobile/mobile/z_ip_addresses_au.rb +4 -1
- data/lib/jpmobile/mobile/z_ip_addresses_docomo.rb +10 -0
- data/lib/jpmobile/mobile/z_ip_addresses_emobile.rb +10 -0
- data/lib/jpmobile/mobile/{z_ip_addresses.rb → z_ip_addresses_softbank.rb} +2 -13
- data/lib/jpmobile/mobile/z_ip_addresses_willcom.rb +20 -1
- data/lib/jpmobile/position.rb +2 -2
- data/lib/jpmobile/request_with_mobile.rb +44 -0
- data/lib/jpmobile/trans_sid.rb +52 -14
- data/lib/jpmobile/version.rb +1 -1
- data/test/au_test.rb +94 -63
- data/test/autoload_test.rb +49 -0
- data/test/docomo_test.rb +92 -59
- data/test/emoticon_functional_test.rb +30 -3
- data/test/filter_test.rb +0 -64
- data/test/helper.rb +8 -1
- data/test/helpers_test.rb +14 -13
- data/test/softbank_test.rb +113 -85
- data/test/willcom_test.rb +30 -20
- data/tools/generate_au_emoticon_table.rb +12 -3
- data/tools/update_display_info_docomo.rb +0 -0
- data/tools/update_ip_addresses_au.rb +1 -1
- data/tools/update_ip_addresses_willcom.rb +1 -1
- metadata +135 -54
- data/test/filter_functional_test.rb +0 -146
data/README
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* 端末位置情報の取得
|
|
9
9
|
* 端末製造番号、契約者番号等の取得
|
|
10
10
|
* IPアドレスの検証(キャリアが公開しているIPアドレス帯域からのアクセスか判定)
|
|
11
|
-
* セッションIDをフォーム/リンクに付与(
|
|
11
|
+
* セッションIDをフォーム/リンクに付与(Trans SID)
|
|
12
12
|
* 携帯電話ビューへの自動振分け
|
|
13
13
|
* ディスプレイ情報(画面サイズ、ブラウザ画面サイズ、カラー・白黒、色数)の取得
|
|
14
14
|
* GeoKit(http://geokit.rubyforge.org)との連携
|
|
@@ -16,14 +16,23 @@
|
|
|
16
16
|
|
|
17
17
|
== インストール
|
|
18
18
|
|
|
19
|
-
svnレポジトリからインストールする場合
|
|
19
|
+
=== svnレポジトリからインストールする場合
|
|
20
20
|
|
|
21
21
|
リリース版:
|
|
22
|
-
% ./script/plugin install
|
|
22
|
+
% ./script/plugin install http://jpmobile.rubyforge.org/svn/tags/rel-x.x.x/jpmobile
|
|
23
23
|
(x.x.xはバージョン)
|
|
24
24
|
|
|
25
25
|
開発版:
|
|
26
|
-
% ./script/plugin install
|
|
26
|
+
% ./script/plugin install git://github.com/darashi/jpmobile.git
|
|
27
|
+
|
|
28
|
+
=== gemでインストールする場合
|
|
29
|
+
|
|
30
|
+
# gem install jpmobile
|
|
31
|
+
としてgemをインストールした後
|
|
32
|
+
RAILS_ROOT/config/environment.rb の Rails::Initializer.run do |config| 〜 end 内に
|
|
33
|
+
config.gem "jpmobile"
|
|
34
|
+
の行を追加する。
|
|
35
|
+
|
|
27
36
|
|
|
28
37
|
== 使用例
|
|
29
38
|
|
|
@@ -88,6 +97,8 @@ BUG: 現状、上記の例では index.rhtml が存在しない場合に振り
|
|
|
88
97
|
# for SoftBank
|
|
89
98
|
when Jpmobile::Mobile::Willcom
|
|
90
99
|
# for Willcom
|
|
100
|
+
when Jpmobile::Mobile::Emobile
|
|
101
|
+
# for Willcom
|
|
91
102
|
else
|
|
92
103
|
# for PC
|
|
93
104
|
end
|
|
@@ -102,7 +113,7 @@ BUG: 現状、上記の例では index.rhtml が存在しない場合に振り
|
|
|
102
113
|
==== 取得用リンクの生成
|
|
103
114
|
|
|
104
115
|
以下のようなコードで、端末に位置情報を要求するリンクを出力する。
|
|
105
|
-
<%=
|
|
116
|
+
<%= get_position_link_to(:action=>:gps) %>
|
|
106
117
|
|
|
107
118
|
==== 位置情報の取得
|
|
108
119
|
|
|
@@ -118,14 +129,15 @@ BUG: 現状、上記の例では index.rhtml が存在しない場合に振り
|
|
|
118
129
|
|
|
119
130
|
=== 端末情報の取得
|
|
120
131
|
|
|
121
|
-
端末側から通知されている場合、
|
|
132
|
+
端末側から通知されている場合、request.ident で
|
|
122
133
|
契約に固有の識別子もしくは端末の製造番号を取得できる。
|
|
123
134
|
両方存在する場合は契約に固有のIDが優先される。
|
|
124
135
|
|
|
125
|
-
* 契約に固有のID
|
|
136
|
+
* 契約に固有のID (request.ident_subscriber)
|
|
126
137
|
* au: EZ番号(サブスクライバ番号)
|
|
127
138
|
* DoCoMo: FOMAカード製造番号
|
|
128
|
-
*
|
|
139
|
+
* EMOBILE: EMnet対応端末から通知されるユニークなユーザID
|
|
140
|
+
* 端末製造番号 (request.ident_device)
|
|
129
141
|
* DoCoMo: 端末製造番号(FOMA, MOVA)
|
|
130
142
|
* SoftBank: 製造番号
|
|
131
143
|
|
|
@@ -136,12 +148,12 @@ BUG: 現状、上記の例では index.rhtml が存在しない場合に振り
|
|
|
136
148
|
=== セッションIDの付与(Transit SID)
|
|
137
149
|
==== Cookie非対応携帯だけに付与する
|
|
138
150
|
class MyController
|
|
139
|
-
|
|
151
|
+
trans_sid
|
|
140
152
|
end
|
|
141
153
|
|
|
142
154
|
==== PCにも付与する
|
|
143
155
|
class MyController
|
|
144
|
-
|
|
156
|
+
trans_sid :always
|
|
145
157
|
end
|
|
146
158
|
|
|
147
159
|
=== 端末の画面サイズ
|
|
@@ -186,10 +198,20 @@ mobile_filterを有効にすると以下の処理が自動で行われる。
|
|
|
186
198
|
* 絵文字はキャリアにあわせて変換されて送出される。
|
|
187
199
|
* 携帯電話からの絵文字はUnicode私的領域にマップされ、UTF-8でparamsに格納される。
|
|
188
200
|
|
|
201
|
+
== テストに必要なgemパッケージ
|
|
202
|
+
テストを実行するためには以下のgemパッケージが必要です。
|
|
203
|
+
* rails
|
|
204
|
+
* rack
|
|
205
|
+
* hpricot
|
|
206
|
+
* spec-fixtures
|
|
207
|
+
|
|
189
208
|
== リンク
|
|
190
209
|
* Project Website: http://jpmobile-rails.org
|
|
191
210
|
* RDoc Documentation: http://jpmobile.rubyforge.org/rdoc
|
|
211
|
+
* GitHub: http://github.com/darashi/jpmobile/
|
|
192
212
|
* RubyForge Project Page: http://rubyforge.org/projects/jpmobile
|
|
213
|
+
* Mailing List: http://groups.google.com/group/jpmobile
|
|
214
|
+
* IRC Channel #jpmobile@freenode.net
|
|
193
215
|
|
|
194
216
|
== 作者
|
|
195
217
|
|
data/Rakefile
CHANGED
|
@@ -29,7 +29,7 @@ RDOC_OPTS = ['--quiet', '--title', "jpmobile documentation",
|
|
|
29
29
|
"--inline-source"]
|
|
30
30
|
|
|
31
31
|
desc "Packages up jpmobile gem."
|
|
32
|
-
task :default => [:test]
|
|
32
|
+
task :default => [:test, 'spec:unit']
|
|
33
33
|
task :package => [:clean]
|
|
34
34
|
|
|
35
35
|
desc 'Default: run unit tests.'
|
|
@@ -69,10 +69,8 @@ spec =
|
|
|
69
69
|
s.rubyforge_project = RUBYFORGE_PROJECT
|
|
70
70
|
s.bindir = "bin"
|
|
71
71
|
s.require_path = "lib"
|
|
72
|
-
s.autorequire = "jpmobile"
|
|
73
72
|
|
|
74
|
-
|
|
75
|
-
s.add_dependency('hpricot', '>=0.4')
|
|
73
|
+
s.add_dependency('actionpack', '>=2.1.0')
|
|
76
74
|
|
|
77
75
|
#s.add_dependency('activesupport', '>=1.3.1')
|
|
78
76
|
#s.required_ruby_version = '>= 1.8.2'
|
|
@@ -114,11 +112,13 @@ task :update do
|
|
|
114
112
|
end
|
|
115
113
|
|
|
116
114
|
desc "Release helper"
|
|
117
|
-
task :rel do
|
|
118
|
-
puts "
|
|
119
|
-
|
|
115
|
+
task :rel => [:gem] do
|
|
116
|
+
puts "-"*40
|
|
117
|
+
puts "rubyforge add_release #{NAME} #{NAME} #{VERS} pkg/#{NAME}-#{VERS}.gem"
|
|
118
|
+
puts "git tag #{VERS}"
|
|
120
119
|
end
|
|
121
120
|
|
|
122
121
|
# setup RSpec tasks
|
|
123
122
|
RAILS_ROOT = '.'
|
|
124
|
-
load 'vendor/plugins/
|
|
123
|
+
load 'vendor/plugins/rspec-rails/tasks/rspec.rake'
|
|
124
|
+
load 'tasks/jpmobile_tasks.rake'
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
<?xml version="1.0" encoding=" UTF-8"?>
|
|
2
|
+
<!DOCTYPE html
|
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
+
|
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
+
<head>
|
|
8
|
+
<title>Module: ActionController</title>
|
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset= UTF-8" />
|
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
+
<script type="text/javascript">
|
|
13
|
+
// <![CDATA[
|
|
14
|
+
|
|
15
|
+
function popupCode( url ) {
|
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function toggleCode( id ) {
|
|
20
|
+
if ( document.getElementById )
|
|
21
|
+
elem = document.getElementById( id );
|
|
22
|
+
else if ( document.all )
|
|
23
|
+
elem = eval( "document.all." + id );
|
|
24
|
+
else
|
|
25
|
+
return false;
|
|
26
|
+
|
|
27
|
+
elemStyle = elem.style;
|
|
28
|
+
|
|
29
|
+
if ( elemStyle.display != "block" ) {
|
|
30
|
+
elemStyle.display = "block"
|
|
31
|
+
} else {
|
|
32
|
+
elemStyle.display = "none"
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Make codeblocks hidden by default
|
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
+
|
|
41
|
+
// ]]>
|
|
42
|
+
</script>
|
|
43
|
+
|
|
44
|
+
</head>
|
|
45
|
+
<body>
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
<div id="classHeader">
|
|
50
|
+
<table class="header-table">
|
|
51
|
+
<tr class="top-aligned-row">
|
|
52
|
+
<td><strong>Module</strong></td>
|
|
53
|
+
<td class="class-name-in-header">ActionController</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr class="top-aligned-row">
|
|
56
|
+
<td><strong>In:</strong></td>
|
|
57
|
+
<td>
|
|
58
|
+
<a href="../files/lib/jpmobile/trans_sid_rb.html">
|
|
59
|
+
lib/jpmobile/trans_sid.rb
|
|
60
|
+
</a>
|
|
61
|
+
<br />
|
|
62
|
+
</td>
|
|
63
|
+
</tr>
|
|
64
|
+
|
|
65
|
+
</table>
|
|
66
|
+
</div>
|
|
67
|
+
<!-- banner header -->
|
|
68
|
+
|
|
69
|
+
<div id="bodyContent">
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
<div id="contextContent">
|
|
74
|
+
|
|
75
|
+
<div id="description">
|
|
76
|
+
<p>
|
|
77
|
+
FastCGI環境では(どういうわけか) cgi.query_string
|
|
78
|
+
でクエリ文字列を取得できないので
|
|
79
|
+
ENV[‘QUERY_STRING’] に代入しておく。
|
|
80
|
+
</p>
|
|
81
|
+
|
|
82
|
+
</div>
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
</div>
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
</div>
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
<!-- if includes -->
|
|
92
|
+
|
|
93
|
+
<div id="section">
|
|
94
|
+
|
|
95
|
+
<div id="class-list">
|
|
96
|
+
<h3 class="section-bar">Classes and Modules</h3>
|
|
97
|
+
|
|
98
|
+
Class <a href="ActionController/AbstractRequest.html" class="link">ActionController::AbstractRequest</a><br />
|
|
99
|
+
Class <a href="ActionController/CgiRequest.html" class="link">ActionController::CgiRequest</a><br />
|
|
100
|
+
|
|
101
|
+
</div>
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
<!-- if method_list -->
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
</div>
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
<div id="validator-badges">
|
|
116
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
117
|
+
</div>
|
|
118
|
+
|
|
119
|
+
</body>
|
|
120
|
+
</html>
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
<?xml version="1.0" encoding=" UTF-8"?>
|
|
2
|
+
<!DOCTYPE html
|
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
+
|
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
+
<head>
|
|
8
|
+
<title>Class: ActionController::AbstractRequest</title>
|
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset= UTF-8" />
|
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
+
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
+
<script type="text/javascript">
|
|
13
|
+
// <![CDATA[
|
|
14
|
+
|
|
15
|
+
function popupCode( url ) {
|
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function toggleCode( id ) {
|
|
20
|
+
if ( document.getElementById )
|
|
21
|
+
elem = document.getElementById( id );
|
|
22
|
+
else if ( document.all )
|
|
23
|
+
elem = eval( "document.all." + id );
|
|
24
|
+
else
|
|
25
|
+
return false;
|
|
26
|
+
|
|
27
|
+
elemStyle = elem.style;
|
|
28
|
+
|
|
29
|
+
if ( elemStyle.display != "block" ) {
|
|
30
|
+
elemStyle.display = "block"
|
|
31
|
+
} else {
|
|
32
|
+
elemStyle.display = "none"
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Make codeblocks hidden by default
|
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
+
|
|
41
|
+
// ]]>
|
|
42
|
+
</script>
|
|
43
|
+
|
|
44
|
+
</head>
|
|
45
|
+
<body>
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
<div id="classHeader">
|
|
50
|
+
<table class="header-table">
|
|
51
|
+
<tr class="top-aligned-row">
|
|
52
|
+
<td><strong>Class</strong></td>
|
|
53
|
+
<td class="class-name-in-header">ActionController::AbstractRequest</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr class="top-aligned-row">
|
|
56
|
+
<td><strong>In:</strong></td>
|
|
57
|
+
<td>
|
|
58
|
+
<a href="../../files/lib/jpmobile/hook_abstract_request_rb.html">
|
|
59
|
+
lib/jpmobile/hook_abstract_request.rb
|
|
60
|
+
</a>
|
|
61
|
+
<br />
|
|
62
|
+
</td>
|
|
63
|
+
</tr>
|
|
64
|
+
|
|
65
|
+
<tr class="top-aligned-row">
|
|
66
|
+
<td><strong>Parent:</strong></td>
|
|
67
|
+
<td>
|
|
68
|
+
Object
|
|
69
|
+
</td>
|
|
70
|
+
</tr>
|
|
71
|
+
</table>
|
|
72
|
+
</div>
|
|
73
|
+
<!-- banner header -->
|
|
74
|
+
|
|
75
|
+
<div id="bodyContent">
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
<div id="contextContent">
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
</div>
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
</div>
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
<!-- if includes -->
|
|
90
|
+
<div id="includes">
|
|
91
|
+
<h3 class="section-bar">Included Modules</h3>
|
|
92
|
+
|
|
93
|
+
<div id="includes-list">
|
|
94
|
+
<span class="include-name"><a href="../Jpmobile/RequestWithMobile.html">Jpmobile::RequestWithMobile</a></span>
|
|
95
|
+
</div>
|
|
96
|
+
</div>
|
|
97
|
+
|
|
98
|
+
<div id="section">
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
<!-- if method_list -->
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
</div>
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
<div id="validator-badges">
|
|
114
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
115
|
+
</div>
|
|
116
|
+
|
|
117
|
+
</body>
|
|
118
|
+
</html>
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
<?xml version="1.0" encoding=" UTF-8"?>
|
|
2
|
+
<!DOCTYPE html
|
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
+
|
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
+
<head>
|
|
8
|
+
<title>Class: ActionController::CgiRequest</title>
|
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset= UTF-8" />
|
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
+
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
+
<script type="text/javascript">
|
|
13
|
+
// <![CDATA[
|
|
14
|
+
|
|
15
|
+
function popupCode( url ) {
|
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function toggleCode( id ) {
|
|
20
|
+
if ( document.getElementById )
|
|
21
|
+
elem = document.getElementById( id );
|
|
22
|
+
else if ( document.all )
|
|
23
|
+
elem = eval( "document.all." + id );
|
|
24
|
+
else
|
|
25
|
+
return false;
|
|
26
|
+
|
|
27
|
+
elemStyle = elem.style;
|
|
28
|
+
|
|
29
|
+
if ( elemStyle.display != "block" ) {
|
|
30
|
+
elemStyle.display = "block"
|
|
31
|
+
} else {
|
|
32
|
+
elemStyle.display = "none"
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Make codeblocks hidden by default
|
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
+
|
|
41
|
+
// ]]>
|
|
42
|
+
</script>
|
|
43
|
+
|
|
44
|
+
</head>
|
|
45
|
+
<body>
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
<div id="classHeader">
|
|
50
|
+
<table class="header-table">
|
|
51
|
+
<tr class="top-aligned-row">
|
|
52
|
+
<td><strong>Class</strong></td>
|
|
53
|
+
<td class="class-name-in-header">ActionController::CgiRequest</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr class="top-aligned-row">
|
|
56
|
+
<td><strong>In:</strong></td>
|
|
57
|
+
<td>
|
|
58
|
+
<a href="../../files/lib/jpmobile/trans_sid_rb.html">
|
|
59
|
+
lib/jpmobile/trans_sid.rb
|
|
60
|
+
</a>
|
|
61
|
+
<br />
|
|
62
|
+
</td>
|
|
63
|
+
</tr>
|
|
64
|
+
|
|
65
|
+
<tr class="top-aligned-row">
|
|
66
|
+
<td><strong>Parent:</strong></td>
|
|
67
|
+
<td>
|
|
68
|
+
Object
|
|
69
|
+
</td>
|
|
70
|
+
</tr>
|
|
71
|
+
</table>
|
|
72
|
+
</div>
|
|
73
|
+
<!-- banner header -->
|
|
74
|
+
|
|
75
|
+
<div id="bodyContent">
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
<div id="contextContent">
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
</div>
|
|
84
|
+
|
|
85
|
+
<div id="method-list">
|
|
86
|
+
<h3 class="section-bar">Methods</h3>
|
|
87
|
+
|
|
88
|
+
<div class="name-list">
|
|
89
|
+
<a href="#M000001">new</a>
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
|
|
93
|
+
</div>
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
<!-- if includes -->
|
|
97
|
+
|
|
98
|
+
<div id="section">
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
<div id="aliases-list">
|
|
103
|
+
<h3 class="section-bar">External Aliases</h3>
|
|
104
|
+
|
|
105
|
+
<div class="name-list">
|
|
106
|
+
<table summary="aliases">
|
|
107
|
+
<tr class="top-aligned-row context-row">
|
|
108
|
+
<td class="context-item-name">initialize</td>
|
|
109
|
+
<td>-></td>
|
|
110
|
+
<td class="context-item-value">initialize_without_ext</td>
|
|
111
|
+
</tr>
|
|
112
|
+
</table>
|
|
113
|
+
</div>
|
|
114
|
+
</div>
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
<!-- if method_list -->
|
|
121
|
+
<div id="methods">
|
|
122
|
+
<h3 class="section-bar">Public Class methods</h3>
|
|
123
|
+
|
|
124
|
+
<div id="method-M000001" class="method-detail">
|
|
125
|
+
<a name="M000001"></a>
|
|
126
|
+
|
|
127
|
+
<div class="method-heading">
|
|
128
|
+
<a href="#M000001" class="method-signature">
|
|
129
|
+
<span class="method-name">new</span><span class="method-args">(cgi, options = {})</span>
|
|
130
|
+
</a>
|
|
131
|
+
</div>
|
|
132
|
+
|
|
133
|
+
<div class="method-description">
|
|
134
|
+
<p><a class="source-toggle" href="#"
|
|
135
|
+
onclick="toggleCode('M000001-source');return false;">[Source]</a></p>
|
|
136
|
+
<div class="method-source-code" id="M000001-source">
|
|
137
|
+
<pre>
|
|
138
|
+
<span class="ruby-comment cmt"># File lib/jpmobile/trans_sid.rb, line 16</span>
|
|
139
|
+
16: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">cgi</span>, <span class="ruby-identifier">options</span> = {})
|
|
140
|
+
17: <span class="ruby-identifier">initialize_without_ext</span>(<span class="ruby-identifier">cgi</span>, <span class="ruby-identifier">options</span>)
|
|
141
|
+
18: <span class="ruby-constant">ENV</span>[<span class="ruby-value str">'QUERY_STRING'</span>] = <span class="ruby-identifier">query_string</span>
|
|
142
|
+
19: <span class="ruby-keyword kw">end</span>
|
|
143
|
+
</pre>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
</div>
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
</div>
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
</div>
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
<div id="validator-badges">
|
|
156
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
157
|
+
</div>
|
|
158
|
+
|
|
159
|
+
</body>
|
|
160
|
+
</html>
|