jpmobile 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (163) hide show
  1. data/.gitignore +6 -0
  2. data/{test/rails/rails_root/vendor/plugins/jpmobile/MIT-LICENSE → MIT-LICENSE} +0 -0
  3. data/README.rdoc +16 -6
  4. data/Rakefile +14 -0
  5. data/VERSION.yml +4 -0
  6. data/init.rb +3 -0
  7. data/install.rb +1 -0
  8. data/jpmobile.gemspec +299 -0
  9. data/lib/jpmobile.rb +0 -2
  10. data/lib/jpmobile/emoticon.rb +16 -2
  11. data/lib/jpmobile/emoticon/z_combine.rb +17 -4
  12. data/lib/jpmobile/filter.rb +2 -3
  13. data/lib/jpmobile/mobile/abstract_mobile.rb +6 -0
  14. data/lib/jpmobile/mobile/docomo.rb +24 -1
  15. data/lib/jpmobile/mobile/z_ip_addresses_au.rb +3 -2
  16. data/lib/jpmobile/mobile/z_ip_addresses_docomo.rb +4 -1
  17. data/lib/jpmobile/request_with_mobile.rb +4 -1
  18. data/{test/rails/rails_root/vendor/plugins/jpmobile/spec → spec}/spec.opts +0 -0
  19. data/spec/spec_helper.rb +36 -0
  20. data/spec/unit/detect_by_email_spec.rb +31 -0
  21. data/{test/rails/rails_root/vendor/plugins/jpmobile/spec → spec}/unit/detect_by_ua_spec.rb +11 -13
  22. data/spec/unit/is_carrier_spec.rb +93 -0
  23. data/spec/unit/spec_helper.rb +5 -0
  24. data/spec/unit/util_spec.rb +30 -0
  25. data/spec/unit/valid_ip_spec.rb +60 -0
  26. data/{test/rails/rails_root/vendor/plugins/jpmobile/tasks → tasks}/jpmobile_tasks.rake +3 -3
  27. data/test/legacy/autoload_test.rb +2 -1
  28. data/test/legacy/docomo_test.rb +39 -0
  29. data/test/legacy/emoticon_functional_test.rb +21 -19
  30. data/test/legacy/emoticon_test.rb +12 -12
  31. data/test/legacy/filter_test.rb +10 -8
  32. data/test/legacy/helper.rb +32 -3
  33. data/test/legacy/softbank_test.rb +2 -0
  34. data/test/rails/.gitignore +1 -0
  35. data/test/rails/overrides/app/controllers/filter_controller.rb +10 -0
  36. data/test/rails/overrides/spec/controllers/docomo_guid_spec.rb +2 -0
  37. data/test/rails/overrides/spec/controllers/docomo_spec.rb +2 -0
  38. data/test/rails/overrides/spec/controllers/emobile_spec.rb +2 -0
  39. data/test/rails/overrides/spec/controllers/filter_spec.rb +8 -7
  40. data/test/rails/overrides/spec/controllers/pc_spec.rb +2 -0
  41. data/test/rails/overrides/spec/controllers/softbank_emulator_spec.rb +2 -0
  42. data/test/rails/overrides/spec/controllers/template_path_spec.rb +2 -0
  43. data/test/rails/overrides/spec/controllers/trans_sid_spec.rb +1 -0
  44. data/test/rails/overrides/spec/helpers/helpers_spec.rb +2 -0
  45. data/test/rails/overrides/spec/spec_helper.rb +15 -0
  46. data/test/rails/rails_root/app/controllers/filter_controller.rb +0 -23
  47. data/test/rails/rails_root/app/controllers/mobile_spec_controller.rb +1 -1
  48. data/test/rails/rails_root/app/controllers/template_path_controller.rb +3 -0
  49. data/test/rails/rails_root/app/helpers/application_helper.rb +0 -1
  50. data/test/rails/rails_root/config/boot.rb +13 -110
  51. data/test/rails/rails_root/config/environment.rb +4 -41
  52. data/test/rails/rails_root/config/environments/development.rb +22 -13
  53. data/test/rails/rails_root/config/environments/production.rb +41 -20
  54. data/test/rails/rails_root/config/environments/test.rb +35 -28
  55. data/test/rails/rails_root/config/initializers/backtrace_silencers.rb +2 -2
  56. data/test/rails/rails_root/config/initializers/inflections.rb +1 -1
  57. data/test/rails/rails_root/config/initializers/session_store.rb +2 -15
  58. data/test/rails/rails_root/config/routes.rb +6 -42
  59. data/test/rails/rails_root/db/schema.rb +24 -7
  60. data/test/rails/rails_root/db/seeds.rb +2 -2
  61. data/test/rails/rails_root/spec/helpers/helpers_spec.rb +4 -2
  62. data/test/rails/rails_root/spec/spec_helper.rb +19 -35
  63. data/test/rails/rails_root/test/performance/browsing_test.rb +2 -2
  64. data/test/rails/rails_root/test/test_helper.rb +2 -27
  65. data/test/rails/rails_root/vendor/plugins/jpmobile/init.rb +1 -1
  66. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile.rb +39 -25
  67. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/docomo_guid.rb +2 -1
  68. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/email.rb +3 -4
  69. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon.rb +24 -8
  70. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/conversion_table.rb +10 -9
  71. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/z_combine.rb +17 -4
  72. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/filter.rb +43 -136
  73. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/helpers.rb +5 -18
  74. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_controller.rb +24 -16
  75. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_view.rb +42 -85
  76. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/abstract_mobile.rb +25 -2
  77. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/au.rb +28 -3
  78. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/display.rb +29 -26
  79. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/docomo.rb +60 -11
  80. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/softbank.rb +16 -41
  81. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/willcom.rb +1 -10
  82. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_au.rb +3 -2
  83. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_docomo.rb +4 -1
  84. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/position.rb +4 -3
  85. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/request_with_mobile.rb +14 -13
  86. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/trans_sid.rb +52 -35
  87. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/util.rb +68 -0
  88. data/test/rails/rails_root/vendor/plugins/jpmobile/spec/spec_helper.rb +3 -2
  89. data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/detect_by_email_spec.rb +21 -27
  90. data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/is_carrier_spec.rb +56 -84
  91. data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/spec_helper.rb +1 -2
  92. data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/util_spec.rb +8 -2
  93. data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/valid_ip_spec.rb +43 -52
  94. data/test/rails/rails_root/vendor/plugins/jpmobile/tools/disabled_update_display_info_docomo.rb +0 -0
  95. data/test/rails/rails_root/vendor/plugins/jpmobile/tools/update_ip_addresses_au.rb +0 -0
  96. data/tools/emoji/genregexp.rb +47 -0
  97. metadata +348 -253
  98. data/test/rails/rails_root/README +0 -243
  99. data/test/rails/rails_root/Rakefile +0 -10
  100. data/test/rails/rails_root/app/controllers/docomo_guid_controller.rb +0 -13
  101. data/test/rails/rails_root/app/controllers/trans_sid_controller.rb +0 -28
  102. data/test/rails/rails_root/app/views/filter/index.html.erb +0 -0
  103. data/test/rails/rails_root/app/views/hankaku_filter/index.html.erb +0 -0
  104. data/test/rails/rails_root/app/views/template_path/_partial.html.erb +0 -1
  105. data/test/rails/rails_root/app/views/template_path/_partial_mobile.html.erb +0 -1
  106. data/test/rails/rails_root/app/views/template_path/_partial_mobile_docomo.html.erb +0 -1
  107. data/test/rails/rails_root/app/views/template_path/index.html.erb +0 -1
  108. data/test/rails/rails_root/app/views/template_path/index_mobile.html.erb +0 -1
  109. data/test/rails/rails_root/app/views/template_path/index_mobile_docomo.html.erb +0 -1
  110. data/test/rails/rails_root/app/views/template_path/partial.html.erb +0 -2
  111. data/test/rails/rails_root/config/database.yml +0 -22
  112. data/test/rails/rails_root/config/initializers/new_rails_defaults.rb +0 -21
  113. data/test/rails/rails_root/config/locales/en.yml +0 -5
  114. data/test/rails/rails_root/db/development.sqlite3 +0 -0
  115. data/test/rails/rails_root/db/test.sqlite3 +0 -0
  116. data/test/rails/rails_root/doc/README_FOR_APP +0 -2
  117. data/test/rails/rails_root/lib/tasks/rspec.rake +0 -165
  118. data/test/rails/rails_root/log/development.log +0 -38
  119. data/test/rails/rails_root/log/production.log +0 -0
  120. data/test/rails/rails_root/log/server.log +0 -0
  121. data/test/rails/rails_root/log/test.log +0 -451
  122. data/test/rails/rails_root/public/404.html +0 -30
  123. data/test/rails/rails_root/public/422.html +0 -30
  124. data/test/rails/rails_root/public/500.html +0 -30
  125. data/test/rails/rails_root/public/favicon.ico +0 -0
  126. data/test/rails/rails_root/public/images/rails.png +0 -0
  127. data/test/rails/rails_root/public/index.html +0 -275
  128. data/test/rails/rails_root/public/javascripts/application.js +0 -2
  129. data/test/rails/rails_root/public/javascripts/controls.js +0 -963
  130. data/test/rails/rails_root/public/javascripts/dragdrop.js +0 -973
  131. data/test/rails/rails_root/public/javascripts/effects.js +0 -1128
  132. data/test/rails/rails_root/public/javascripts/prototype.js +0 -4320
  133. data/test/rails/rails_root/public/robots.txt +0 -5
  134. data/test/rails/rails_root/script/about +0 -4
  135. data/test/rails/rails_root/script/console +0 -3
  136. data/test/rails/rails_root/script/dbconsole +0 -3
  137. data/test/rails/rails_root/script/destroy +0 -3
  138. data/test/rails/rails_root/script/generate +0 -3
  139. data/test/rails/rails_root/script/performance/benchmarker +0 -3
  140. data/test/rails/rails_root/script/performance/profiler +0 -3
  141. data/test/rails/rails_root/script/plugin +0 -3
  142. data/test/rails/rails_root/script/runner +0 -3
  143. data/test/rails/rails_root/script/server +0 -3
  144. data/test/rails/rails_root/spec/controllers/docomo_guid_spec.rb +0 -77
  145. data/test/rails/rails_root/spec/controllers/docomo_spec.rb +0 -28
  146. data/test/rails/rails_root/spec/controllers/emobile_spec.rb +0 -35
  147. data/test/rails/rails_root/spec/controllers/filter_spec.rb +0 -157
  148. data/test/rails/rails_root/spec/controllers/pc_spec.rb +0 -11
  149. data/test/rails/rails_root/spec/controllers/softbank_emulator_spec.rb +0 -40
  150. data/test/rails/rails_root/spec/controllers/template_path_spec.rb +0 -115
  151. data/test/rails/rails_root/spec/controllers/trans_sid_spec.rb +0 -99
  152. data/test/rails/rails_root/spec/rcov.opts +0 -2
  153. data/test/rails/rails_root/spec/rspec.rake +0 -165
  154. data/test/rails/rails_root/spec/spec.opts +0 -4
  155. data/test/rails/rails_root/vendor/plugins/jpmobile/CHANGELOG +0 -7
  156. data/test/rails/rails_root/vendor/plugins/jpmobile/README.rdoc +0 -239
  157. data/test/rails/rails_root/vendor/plugins/jpmobile/Rakefile +0 -116
  158. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_request.rb +0 -5
  159. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/auth.rb +0 -55
  160. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/combined_logger.rb +0 -54
  161. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/request.rb +0 -7
  162. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/trans_sid.rb +0 -14
  163. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/version.rb +0 -9
@@ -1,38 +0,0 @@
1
- SQL (0.3ms)  SELECT name
2
- FROM sqlite_master
3
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
- 
5
- SQL (0.2ms) select sqlite_version(*)
6
- SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7
- SQL (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
- SQL (0.2ms)  SELECT name
9
- FROM sqlite_master
10
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
11
- 
12
- SQL (0.3ms)  SELECT name
13
- FROM sqlite_master
14
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
15
- 
16
- SQL (0.1ms) SELECT version FROM schema_migrations
17
- SQL (0.1ms)  SELECT name
18
- FROM sqlite_master
19
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
20
- 
21
- SQL (0.5ms)  SELECT name
22
- FROM sqlite_master
23
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
24
- 
25
- SQL (0.1ms) SELECT version FROM schema_migrations
26
- SQL (0.2ms)  SELECT name
27
- FROM sqlite_master
28
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
29
- 
30
- SQL (0.1ms) select sqlite_version(*)
31
- SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
32
- SQL (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
33
- SQL (0.2ms)  SELECT name
34
- FROM sqlite_master
35
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
36
- 
37
- SQL (0.1ms) SELECT version FROM "schema_migrations"
38
- SQL (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
File without changes
File without changes
@@ -1,451 +0,0 @@
1
-
2
-
3
- Processing TransSidMobileController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
4
- Completed in 5ms (View: 3, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/link]
5
-
6
-
7
- Processing TransSidMobileController#form (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
8
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/form]
9
-
10
-
11
- Processing TransSidMobileController#redirect (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
12
- Redirected to http://test.host/
13
- Completed in 1ms (DB: 0) | 302 Found [http://test.host/trans_sid_mobile/redirect]
14
-
15
-
16
- Processing TransSidMobileController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
17
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/link]
18
-
19
-
20
- Processing TransSidMobileController#form (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
21
- Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/form]
22
-
23
-
24
- Processing TransSidMobileController#redirect (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
25
- Redirected to http://test.host/
26
- Completed in 1ms (DB: 0) | 302 Found [http://test.host/trans_sid_mobile/redirect]
27
-
28
-
29
- Processing TransSidMobileController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
30
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/link]
31
-
32
-
33
- Processing TransSidMobileController#form (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
34
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/form]
35
-
36
-
37
- Processing TransSidMobileController#redirect (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
38
- Redirected to http://test.host/
39
- Completed in 1ms (DB: 0) | 302 Found [http://test.host/trans_sid_mobile/redirect]
40
-
41
-
42
- Processing TransSidMobileController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
43
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/link?_session_id=mysessionid]
44
-
45
-
46
- Processing TransSidMobileController#form (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
47
- Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/form?_session_id=mysessionid]
48
-
49
-
50
- Processing TransSidMobileController#redirect (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
51
- Redirected to http://test.host/?_session_id=mysessionid
52
- Completed in 1ms (DB: 0) | 302 Found [http://test.host/trans_sid_mobile/redirect?_session_id=mysessionid]
53
-
54
-
55
- Processing TransSidMobileController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
56
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/link?_session_id=mysessionid]
57
-
58
-
59
- Processing TransSidMobileController#form (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
60
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/form?_session_id=mysessionid]
61
-
62
-
63
- Processing TransSidMobileController#redirect (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
64
- Redirected to http://test.host/?_session_id=mysessionid
65
- Completed in 1ms (DB: 0) | 302 Found [http://test.host/trans_sid_mobile/redirect?_session_id=mysessionid]
66
-
67
-
68
- Processing TransSidAlwaysController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
69
- Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_always/link?_session_id=mysessionid]
70
-
71
-
72
- Processing TransSidAlwaysController#form (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
73
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_always/form?_session_id=mysessionid]
74
-
75
-
76
- Processing TransSidAlwaysController#redirect (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
77
- Redirected to http://test.host/?_session_id=mysessionid
78
- Completed in 0ms (DB: 0) | 302 Found [http://test.host/trans_sid_always/redirect?_session_id=mysessionid]
79
-
80
-
81
- Processing TransSidNoneController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
82
- Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_none/link]
83
-
84
-
85
- Processing TransSidNoneController#form (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
86
- Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/trans_sid_none/form]
87
-
88
-
89
- Processing TransSidNoneController#redirect (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
90
- Redirected to http://test.host/
91
- Completed in 0ms (DB: 0) | 302 Found [http://test.host/trans_sid_none/redirect]
92
-
93
-
94
- Processing TransSidBaseController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
95
- Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_base/link]
96
-
97
-
98
- Processing TransSidBaseController#form (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
99
- Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/trans_sid_base/form]
100
-
101
-
102
- Processing TransSidBaseController#redirect (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
103
- Redirected to http://test.host/
104
- Completed in 0ms (DB: 0) | 302 Found [http://test.host/trans_sid_base/redirect]
105
-
106
-
107
- Processing TemplatePathController#partial (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
108
- Rendering template_path/partial
109
- Rendered template_path/_partial_mobile (0.3ms)
110
- Completed in 4ms (View: 2, DB: 0) | 200 OK [http://test.host/template_path/partial]
111
-
112
-
113
- Processing TemplatePathController#partial (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
114
- Rendering template_path/partial
115
- Rendered template_path/_partial_mobile_docomo (0.4ms)
116
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/template_path/partial]
117
-
118
-
119
- Processing TemplatePathController#partial (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
120
- Rendering template_path/partial
121
- Rendered template_path/_partial (0.3ms)
122
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/template_path/partial]
123
-
124
-
125
- Processing TemplatePathController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
126
- Rendering template_path/index_mobile
127
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/template_path]
128
-
129
-
130
- Processing TemplatePathController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
131
- Rendering template_path/index_mobile_docomo
132
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/template_path]
133
-
134
-
135
- Processing TemplatePathController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
136
- Rendering template_path/index
137
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/template_path]
138
-
139
-
140
- Processing TemplatePathController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
141
- Rendering template_path/index_mobile
142
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
143
-
144
-
145
- Processing TemplatePathController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
146
- Rendering template_path/index_mobile
147
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/template_path]
148
-
149
-
150
- Processing TemplatePathController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
151
- Rendering template_path/index_mobile
152
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
153
-
154
-
155
- Processing TemplatePathController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
156
- Rendering template_path/index_mobile
157
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
158
-
159
-
160
- Processing TemplatePathController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
161
- Rendering template_path/index_mobile_docomo
162
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
163
-
164
-
165
- Processing HankakuFilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
166
- Completed in 97ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/abracadabra_utf8]
167
-
168
-
169
- Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
170
- Parameters: {"q"=>"アブラカダブ\343\203\251"}
171
- Rendering hankaku_filter/index
172
- Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter?q=%E3%82%A2%E3%83%96%E3%83%A9%E3%82%AB%E3%83%80%E3%83%96%E3%83%A9]
173
-
174
-
175
- Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
176
- Parameters: {"q"=>"アブラカダブ\357\276\227"}
177
- Rendering hankaku_filter/index
178
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter?q=%EF%BD%B1%EF%BE%8C%EF%BE%9E%EF%BE%97%EF%BD%B6%EF%BE%80%EF%BE%9E%EF%BE%8C%EF%BE%9E%EF%BE%97]
179
-
180
-
181
- Processing HankakuFilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
182
- Sending data
183
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/rawdata]
184
-
185
-
186
- Processing HankakuFilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
187
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/empty]
188
-
189
-
190
- Processing HankakuFilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
191
- Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/abracadabra_utf8]
192
-
193
-
194
- Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
195
- Parameters: {"q"=>"\203A\203u\203\211\203J\203_\203u\203\211"}
196
- Rendering hankaku_filter/index
197
- Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter?q=%83A%83u%83%89%83J%83_%83u%83%89]
198
-
199
-
200
- Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
201
- Parameters: {"q"=>"\261��׶����\327"}
202
- Rendering hankaku_filter/index
203
- Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter?q=%B1%CC%DE%D7%B6%C0%DE%CC%DE%D7]
204
-
205
-
206
- Processing HankakuFilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
207
- Sending data
208
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/rawdata]
209
-
210
-
211
- Processing HankakuFilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
212
- Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/empty]
213
-
214
-
215
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
216
- Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
217
-
218
-
219
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
220
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
221
-
222
-
223
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
224
- Parameters: {"q"=>"アブラカダブ\343\203\251"}
225
- Rendering filter/index
226
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%E3%82%A2%E3%83%96%E3%83%A9%E3%82%AB%E3%83%80%E3%83%96%E3%83%A9]
227
-
228
-
229
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
230
- Parameters: {"q"=>"アブラカダブ\357\276\227"}
231
- Rendering filter/index
232
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%EF%BD%B1%EF%BE%8C%EF%BE%9E%EF%BE%97%EF%BD%B6%EF%BE%80%EF%BE%9E%EF%BE%8C%EF%BE%9E%EF%BE%97]
233
-
234
-
235
- Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
236
- Sending data
237
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
238
-
239
-
240
- Processing FilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
241
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
242
-
243
-
244
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
245
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
246
-
247
-
248
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
249
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
250
-
251
-
252
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
253
- Parameters: {"q"=>"アブラカダブ\343\203\251"}
254
- Rendering filter/index
255
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%E3%82%A2%E3%83%96%E3%83%A9%E3%82%AB%E3%83%80%E3%83%96%E3%83%A9]
256
-
257
-
258
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
259
- Parameters: {"q"=>"アブラカダブ\357\276\227"}
260
- Rendering filter/index
261
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%EF%BD%B1%EF%BE%8C%EF%BE%9E%EF%BE%97%EF%BD%B6%EF%BE%80%EF%BE%9E%EF%BE%8C%EF%BE%9E%EF%BE%97]
262
-
263
-
264
- Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
265
- Sending data
266
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
267
-
268
-
269
- Processing FilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
270
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
271
-
272
-
273
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
274
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
275
-
276
-
277
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
278
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
279
-
280
-
281
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
282
- Parameters: {"q"=>"\203A\203u\203\211\203J\203_\203u\203\211"}
283
- Rendering filter/index
284
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%83A%83u%83%89%83J%83_%83u%83%89]
285
-
286
-
287
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
288
- Parameters: {"q"=>"\261��׶����\327"}
289
- Rendering filter/index
290
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%B1%CC%DE%D7%B6%C0%DE%CC%DE%D7]
291
-
292
-
293
- Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
294
- Sending data
295
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
296
-
297
-
298
- Processing FilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
299
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
300
-
301
-
302
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
303
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
304
-
305
-
306
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
307
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
308
-
309
-
310
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
311
- Parameters: {"q"=>"\203A\203u\203\211\203J\203_\203u\203\211"}
312
- Rendering filter/index
313
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%83A%83u%83%89%83J%83_%83u%83%89]
314
-
315
-
316
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
317
- Parameters: {"q"=>"\261��׶����\327"}
318
- Rendering filter/index
319
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%B1%CC%DE%D7%B6%C0%DE%CC%DE%D7]
320
-
321
-
322
- Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
323
- Sending data
324
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
325
-
326
-
327
- Processing FilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
328
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
329
-
330
-
331
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
332
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
333
-
334
-
335
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
336
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
337
-
338
-
339
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
340
- Parameters: {"q"=>"\203A\203u\203\211\203J\203_\203u\203\211"}
341
- Rendering filter/index
342
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%83A%83u%83%89%83J%83_%83u%83%89]
343
-
344
-
345
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
346
- Parameters: {"q"=>"\261��׶����\327"}
347
- Rendering filter/index
348
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%B1%CC%DE%D7%B6%C0%DE%CC%DE%D7]
349
-
350
-
351
- Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
352
- Sending data
353
- Completed in 73ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
354
-
355
-
356
- Processing FilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
357
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
358
-
359
-
360
- Processing HankakuFilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
361
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/abracadabra_utf8]
362
-
363
-
364
- Processing HankakuFilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
365
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/abracadabra_xhtml_utf8]
366
-
367
-
368
- Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
369
- Parameters: {"q"=>"アブラカダブ\343\203\251"}
370
- Rendering hankaku_filter/index
371
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter?q=%E3%82%A2%E3%83%96%E3%83%A9%E3%82%AB%E3%83%80%E3%83%96%E3%83%A9]
372
-
373
-
374
- Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
375
- Parameters: {"q"=>"アブラカダブ\357\276\227"}
376
- Rendering hankaku_filter/index
377
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter?q=%EF%BD%B1%EF%BE%8C%EF%BE%9E%EF%BE%97%EF%BD%B6%EF%BE%80%EF%BE%9E%EF%BE%8C%EF%BE%9E%EF%BE%97]
378
-
379
-
380
- Processing HankakuFilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
381
- Sending data
382
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/rawdata]
383
-
384
-
385
- Processing HankakuFilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
386
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/empty]
387
-
388
-
389
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
390
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
391
-
392
-
393
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
394
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
395
-
396
-
397
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
398
- Parameters: {"q"=>"アブラカダブ\343\203\251"}
399
- Rendering filter/index
400
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%E3%82%A2%E3%83%96%E3%83%A9%E3%82%AB%E3%83%80%E3%83%96%E3%83%A9]
401
-
402
-
403
- Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
404
- Parameters: {"q"=>"アブラカダブ\357\276\227"}
405
- Rendering filter/index
406
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%EF%BD%B1%EF%BE%8C%EF%BE%9E%EF%BE%97%EF%BD%B6%EF%BE%80%EF%BE%9E%EF%BE%8C%EF%BE%9E%EF%BE%97]
407
-
408
-
409
- Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
410
- Sending data
411
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
412
-
413
-
414
- Processing FilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
415
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
416
-
417
-
418
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
419
- Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
420
-
421
-
422
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
423
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
424
-
425
-
426
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
427
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
428
-
429
-
430
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
431
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
432
-
433
-
434
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
435
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
436
-
437
-
438
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
439
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
440
-
441
-
442
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
443
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link?guid=ON]
444
-
445
-
446
- Processing DocomoGuidAlwaysController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
447
- Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_always/link?guid=ON]
448
-
449
-
450
- Processing DocomoGuidBaseController#link (for 0.0.0.0 at 2010-02-28 15:45:31) [GET]
451
- Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_base/link]