jpmobile 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. data/CHANGELOG +4 -0
  2. data/README.rdoc +29 -15
  3. data/Rakefile +3 -3
  4. data/lib/jpmobile/emoticon/conversion_table.rb +10 -9
  5. data/lib/jpmobile/emoticon.rb +14 -6
  6. data/lib/jpmobile/filter.rb +2 -9
  7. data/lib/jpmobile/helpers.rb +2 -0
  8. data/lib/jpmobile/hook_action_view.rb +5 -5
  9. data/lib/jpmobile/mobile/softbank.rb +2 -2
  10. data/lib/jpmobile/mobile/z_display_info_docomo.rb +577 -528
  11. data/lib/jpmobile/mobile/z_ip_addresses_au.rb +5 -1
  12. data/lib/jpmobile/mobile/z_ip_addresses_softbank.rb +2 -2
  13. data/lib/jpmobile/mobile/z_ip_addresses_willcom.rb +53 -13
  14. data/lib/jpmobile/trans_sid.rb +28 -14
  15. data/lib/jpmobile/version.rb +1 -1
  16. data/test/legacy/emoticon_test.rb +6 -0
  17. data/test/legacy/helpers_test.rb +6 -5
  18. data/test/rails/2.3.2/spec/controllers/trans_sid_spec.rb +99 -0
  19. data/test/rails/overrides/app/controllers/{application.rb → application_controller.rb} +0 -0
  20. data/test/rails/overrides/app/controllers/filter_controller.rb +1 -0
  21. data/test/rails/overrides/spec/controllers/filter_spec.rb +1 -0
  22. data/test/rails/overrides/spec/controllers/trans_sid_spec.rb +20 -2
  23. data/test/rails/rails_root/README +6 -19
  24. data/test/rails/rails_root/app/controllers/{application.rb → application_controller.rb} +0 -0
  25. data/test/rails/rails_root/app/controllers/trans_sid_controller.rb +4 -2
  26. data/test/rails/rails_root/app/views/filter/index.html.erb +0 -0
  27. data/test/rails/rails_root/app/views/hankaku_filter/index.html.erb +0 -0
  28. data/test/rails/rails_root/app/views/template_path/_partial.html.erb +1 -0
  29. data/test/rails/rails_root/app/views/template_path/_partial_mobile.html.erb +1 -0
  30. data/test/rails/rails_root/app/views/template_path/_partial_mobile_docomo.html.erb +1 -0
  31. data/test/rails/rails_root/app/views/template_path/partial.html.erb +2 -0
  32. data/test/rails/rails_root/config/boot.rb +2 -1
  33. data/test/rails/rails_root/config/environment.rb +15 -48
  34. data/test/rails/rails_root/config/environments/production.rb +11 -7
  35. data/test/rails/rails_root/config/environments/test.rb +6 -0
  36. data/test/rails/rails_root/config/initializers/backtrace_silencers.rb +7 -0
  37. data/test/rails/rails_root/config/initializers/new_rails_defaults.rb +4 -0
  38. data/test/rails/rails_root/config/initializers/session_store.rb +15 -0
  39. data/test/rails/rails_root/config/routes.rb +1 -1
  40. data/test/rails/rails_root/db/development.sqlite3 +0 -0
  41. data/test/rails/rails_root/db/seeds.rb +7 -0
  42. data/test/rails/rails_root/db/test.sqlite3 +0 -0
  43. data/test/rails/rails_root/doc/README_FOR_APP +2 -5
  44. data/test/rails/rails_root/log/development.log +9 -9
  45. data/test/rails/rails_root/log/test.log +198 -148
  46. data/test/rails/rails_root/public/500.html +0 -3
  47. data/test/rails/rails_root/public/index.html +1 -0
  48. data/test/rails/rails_root/script/about +2 -2
  49. data/test/rails/rails_root/script/console +1 -1
  50. data/test/rails/rails_root/script/dbconsole +1 -1
  51. data/test/rails/rails_root/script/destroy +1 -1
  52. data/test/rails/rails_root/script/generate +1 -1
  53. data/test/rails/rails_root/script/performance/benchmarker +1 -1
  54. data/test/rails/rails_root/script/performance/profiler +1 -1
  55. data/test/rails/rails_root/script/plugin +1 -1
  56. data/test/rails/rails_root/script/runner +1 -1
  57. data/test/rails/rails_root/script/server +1 -1
  58. data/test/rails/rails_root/spec/controllers/template_path_spec.rb +49 -19
  59. data/test/rails/rails_root/spec/controllers/trans_sid_spec.rb +11 -8
  60. data/test/rails/rails_root/test/test_helper.rb +1 -1
  61. data/test/rails/rails_root/vendor/plugins/jpmobile/MIT-LICENSE +2 -2
  62. data/test/rails/rails_root/vendor/plugins/jpmobile/README.rdoc +31 -15
  63. data/test/rails/rails_root/vendor/plugins/jpmobile/Rakefile +1 -1
  64. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon.rb +3 -1
  65. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/filter.rb +3 -10
  66. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/helpers.rb +2 -0
  67. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_controller.rb +12 -0
  68. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_view.rb +79 -91
  69. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_request.rb +2 -10
  70. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/au.rb +9 -3
  71. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/softbank.rb +2 -2
  72. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_display_info_docomo.rb +577 -528
  73. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_au.rb +5 -1
  74. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_softbank.rb +2 -2
  75. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_willcom.rb +53 -13
  76. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/auth.rb +55 -0
  77. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/combined_logger.rb +54 -0
  78. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/request.rb +7 -0
  79. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/trans_sid.rb +14 -0
  80. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/trans_sid.rb +76 -65
  81. data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/version.rb +1 -1
  82. data/test/rails/rails_root/vendor/plugins/jpmobile/tasks/jpmobile_tasks.rake +26 -6
  83. data/test/rails/rails_root/vendor/plugins/jpmobile/tools/{update_display_info_docomo.rb → disabled_update_display_info_docomo.rb} +11 -6
  84. data/test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_docomo_emoticon_table.rb +0 -1
  85. data/test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_softbank_emoticon_table.rb +0 -1
  86. data/test/rails/rails_root/vendor/plugins/jpmobile/tools/update_ip_addresses_au.rb +4 -3
  87. data/test/rails/rails_root/vendor/plugins/jpmobile/tools/update_ip_addresses_willcom.rb +2 -2
  88. data/tools/{update_display_info_docomo.rb → disabled_update_display_info_docomo.rb} +11 -6
  89. data/tools/generate_docomo_emoticon_table.rb +0 -1
  90. data/tools/generate_softbank_emoticon_table.rb +0 -1
  91. data/tools/update_ip_addresses_au.rb +4 -3
  92. data/tools/update_ip_addresses_willcom.rb +2 -2
  93. metadata +65 -35
  94. data/test/rails/rails_root/public/dispatch.cgi +0 -10
  95. data/test/rails/rails_root/public/dispatch.fcgi +0 -24
  96. data/test/rails/rails_root/public/dispatch.rb +0 -10
  97. data/test/rails/rails_root/script/performance/request +0 -3
  98. data/test/rails/rails_root/script/process/inspector +0 -3
  99. data/test/rails/rails_root/script/process/reaper +0 -3
  100. data/test/rails/rails_root/script/process/spawner +0 -3
@@ -1,401 +1,451 @@
1
1
 
2
2
 
3
- Processing TransSidAlwaysAndSessionOffController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
4
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_always_and_session_off/link]
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
5
 
6
6
 
7
- Processing TransSidAlwaysAndSessionOffController#form (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
8
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_always_and_session_off/form]
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
9
 
10
10
 
11
- Processing TransSidMobileController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
12
- Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/link]
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]
13
14
 
14
15
 
15
- Processing TransSidMobileController#form (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
16
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/form]
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]
17
18
 
18
19
 
19
- Processing TransSidMobileController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
20
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/link]
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]
21
22
 
22
23
 
23
- Processing TransSidMobileController#form (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
24
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/form]
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]
25
27
 
26
28
 
27
- Processing TransSidMobileController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
28
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/link]
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]
29
31
 
30
32
 
31
- Processing TransSidMobileController#form (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
33
+ Processing TransSidMobileController#form (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
32
34
  Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/form]
33
35
 
34
36
 
35
- Processing TransSidMobileController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
36
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/link]
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]
37
40
 
38
41
 
39
- Processing TransSidMobileController#form (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
40
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/form]
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]
41
44
 
42
45
 
43
- Processing TransSidMobileController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
44
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/link]
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]
45
53
 
46
54
 
47
- Processing TransSidMobileController#form (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
48
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_mobile/form]
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]
49
57
 
50
58
 
51
- Processing TransSidAlwaysController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
52
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_always/link]
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]
53
61
 
54
62
 
55
- Processing TransSidAlwaysController#form (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
56
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_always/form]
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]
57
66
 
58
67
 
59
- Processing TransSidNoneController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
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]
60
82
  Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_none/link]
61
83
 
62
84
 
63
- Processing TransSidNoneController#form (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
64
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_none/form]
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]
65
87
 
66
88
 
67
- Processing TransSidBaseController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
68
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/trans_sid_base/link]
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]
69
92
 
70
93
 
71
- Processing TransSidBaseController#form (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
72
- Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/trans_sid_base/form]
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]
73
96
 
74
97
 
75
- Processing TemplatePathController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
76
- Rendering template_path/index
77
- Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/template_path]
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]
78
100
 
79
101
 
80
- Processing TemplatePathController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
81
- Rendering template_path/index
82
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
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]
83
105
 
84
106
 
85
- Processing TemplatePathController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
86
- Rendering template_path/index
87
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
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]
88
111
 
89
112
 
90
- Processing TemplatePathController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
91
- Rendering template_path/index
92
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
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
+
93
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]
94
123
 
95
- Processing TemplatePathController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
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]
96
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
97
142
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
98
143
 
99
144
 
100
- Processing TemplatePathController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
101
- Rendering template_path/index
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
102
152
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
103
153
 
104
154
 
105
- Processing TemplatePathController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
106
- Rendering template_path/index
155
+ Processing TemplatePathController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
156
+ Rendering template_path/index_mobile
107
157
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
108
158
 
109
159
 
110
- Processing TemplatePathController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
111
- Rendering template_path/index
160
+ Processing TemplatePathController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
161
+ Rendering template_path/index_mobile_docomo
112
162
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/template_path]
113
163
 
114
164
 
115
- Processing HankakuFilterController#abracadabra_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
116
- Completed in 91ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/abracadabra_utf8]
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]
117
167
 
118
168
 
119
- Processing HankakuFilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
120
- Parameters: {"q"=>"アブラカダブラ"}
169
+ Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
170
+ Parameters: {"q"=>"アブラカダブ\343\203\251"}
121
171
  Rendering hankaku_filter/index
122
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]
123
173
 
124
174
 
125
- Processing HankakuFilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
126
- Parameters: {"q"=>"アブラカダブラ"}
175
+ Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
176
+ Parameters: {"q"=>"アブラカダブ\357\276\227"}
127
177
  Rendering hankaku_filter/index
128
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]
129
179
 
130
180
 
131
- Processing HankakuFilterController#rawdata (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
181
+ Processing HankakuFilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
132
182
  Sending data
133
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/rawdata]
183
+ Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/rawdata]
134
184
 
135
185
 
136
- Processing HankakuFilterController#empty (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
186
+ Processing HankakuFilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
137
187
  Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/empty]
138
188
 
139
189
 
140
- Processing HankakuFilterController#abracadabra_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
190
+ Processing HankakuFilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
141
191
  Completed in 3ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/abracadabra_utf8]
142
192
 
143
193
 
144
- Processing HankakuFilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
194
+ Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
145
195
  Parameters: {"q"=>"\203A\203u\203\211\203J\203_\203u\203\211"}
146
196
  Rendering hankaku_filter/index
147
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter?q=%83A%83u%83%89%83J%83_%83u%83%89]
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]
148
198
 
149
199
 
150
- Processing HankakuFilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
200
+ Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
151
201
  Parameters: {"q"=>"\261��׶����\327"}
152
202
  Rendering hankaku_filter/index
153
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter?q=%B1%CC%DE%D7%B6%C0%DE%CC%DE%D7]
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]
154
204
 
155
205
 
156
- Processing HankakuFilterController#rawdata (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
206
+ Processing HankakuFilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
157
207
  Sending data
158
208
  Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/rawdata]
159
209
 
160
210
 
161
- Processing HankakuFilterController#empty (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
162
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/empty]
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]
163
213
 
164
214
 
165
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
166
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
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]
167
217
 
168
218
 
169
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
219
+ Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
170
220
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
171
221
 
172
222
 
173
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
174
- Parameters: {"q"=>"アブラカダブラ"}
223
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
224
+ Parameters: {"q"=>"アブラカダブ\343\203\251"}
175
225
  Rendering filter/index
176
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]
177
227
 
178
228
 
179
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
180
- Parameters: {"q"=>"アブラカダブラ"}
229
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
230
+ Parameters: {"q"=>"アブラカダブ\357\276\227"}
181
231
  Rendering filter/index
182
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]
183
233
 
184
234
 
185
- Processing FilterController#rawdata (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
235
+ Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
186
236
  Sending data
187
237
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
188
238
 
189
239
 
190
- Processing FilterController#empty (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
240
+ Processing FilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
191
241
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
192
242
 
193
243
 
194
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
244
+ Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
195
245
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
196
246
 
197
247
 
198
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
199
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
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]
200
250
 
201
251
 
202
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
203
- Parameters: {"q"=>"アブラカダブラ"}
252
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
253
+ Parameters: {"q"=>"アブラカダブ\343\203\251"}
204
254
  Rendering filter/index
205
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]
206
256
 
207
257
 
208
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
209
- Parameters: {"q"=>"アブラカダブラ"}
258
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
259
+ Parameters: {"q"=>"アブラカダブ\357\276\227"}
210
260
  Rendering filter/index
211
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]
212
262
 
213
263
 
214
- Processing FilterController#rawdata (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
264
+ Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
215
265
  Sending data
216
266
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
217
267
 
218
268
 
219
- Processing FilterController#empty (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
269
+ Processing FilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
220
270
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
221
271
 
222
272
 
223
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
224
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
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]
225
275
 
226
276
 
227
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
228
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
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]
229
279
 
230
280
 
231
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
281
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
232
282
  Parameters: {"q"=>"\203A\203u\203\211\203J\203_\203u\203\211"}
233
283
  Rendering filter/index
234
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%83A%83u%83%89%83J%83_%83u%83%89]
284
+ Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%83A%83u%83%89%83J%83_%83u%83%89]
235
285
 
236
286
 
237
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
287
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
238
288
  Parameters: {"q"=>"\261��׶����\327"}
239
289
  Rendering filter/index
240
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%B1%CC%DE%D7%B6%C0%DE%CC%DE%D7]
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]
241
291
 
242
292
 
243
- Processing FilterController#rawdata (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
293
+ Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
244
294
  Sending data
245
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
295
+ Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
246
296
 
247
297
 
248
- Processing FilterController#empty (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
249
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
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]
250
300
 
251
301
 
252
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
253
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
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]
254
304
 
255
305
 
256
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
306
+ Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
257
307
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
258
308
 
259
309
 
260
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
310
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
261
311
  Parameters: {"q"=>"\203A\203u\203\211\203J\203_\203u\203\211"}
262
312
  Rendering filter/index
263
313
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%83A%83u%83%89%83J%83_%83u%83%89]
264
314
 
265
315
 
266
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
316
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
267
317
  Parameters: {"q"=>"\261��׶����\327"}
268
318
  Rendering filter/index
269
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]
270
320
 
271
321
 
272
- Processing FilterController#rawdata (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
322
+ Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
273
323
  Sending data
274
324
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
275
325
 
276
326
 
277
- Processing FilterController#empty (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
327
+ Processing FilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
278
328
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
279
329
 
280
330
 
281
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
282
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
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]
283
333
 
284
334
 
285
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
335
+ Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
286
336
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
287
337
 
288
338
 
289
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
339
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
290
340
  Parameters: {"q"=>"\203A\203u\203\211\203J\203_\203u\203\211"}
291
341
  Rendering filter/index
292
342
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%83A%83u%83%89%83J%83_%83u%83%89]
293
343
 
294
344
 
295
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
345
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
296
346
  Parameters: {"q"=>"\261��׶����\327"}
297
347
  Rendering filter/index
298
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter?q=%B1%CC%DE%D7%B6%C0%DE%CC%DE%D7]
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]
299
349
 
300
350
 
301
- Processing FilterController#rawdata (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
351
+ Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
302
352
  Sending data
303
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
353
+ Completed in 73ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
304
354
 
305
355
 
306
- Processing FilterController#empty (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
307
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
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]
308
358
 
309
359
 
310
- Processing HankakuFilterController#abracadabra_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
360
+ Processing HankakuFilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
311
361
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/abracadabra_utf8]
312
362
 
313
363
 
314
- Processing HankakuFilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
364
+ Processing HankakuFilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
315
365
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/abracadabra_xhtml_utf8]
316
366
 
317
367
 
318
- Processing HankakuFilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
319
- Parameters: {"q"=>"アブラカダブラ"}
368
+ Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
369
+ Parameters: {"q"=>"アブラカダブ\343\203\251"}
320
370
  Rendering hankaku_filter/index
321
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]
322
372
 
323
373
 
324
- Processing HankakuFilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
325
- Parameters: {"q"=>"アブラカダブラ"}
374
+ Processing HankakuFilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
375
+ Parameters: {"q"=>"アブラカダブ\357\276\227"}
326
376
  Rendering hankaku_filter/index
327
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]
328
378
 
329
379
 
330
- Processing HankakuFilterController#rawdata (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
380
+ Processing HankakuFilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
331
381
  Sending data
332
382
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/rawdata]
333
383
 
334
384
 
335
- Processing HankakuFilterController#empty (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
385
+ Processing HankakuFilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
336
386
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/hankaku_filter/empty]
337
387
 
338
388
 
339
- Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
389
+ Processing FilterController#abracadabra_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
340
390
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_utf8]
341
391
 
342
392
 
343
- Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
393
+ Processing FilterController#abracadabra_xhtml_utf8 (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
344
394
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/abracadabra_xhtml_utf8]
345
395
 
346
396
 
347
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
348
- Parameters: {"q"=>"アブラカダブラ"}
397
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
398
+ Parameters: {"q"=>"アブラカダブ\343\203\251"}
349
399
  Rendering filter/index
350
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]
351
401
 
352
402
 
353
- Processing FilterController#index (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
354
- Parameters: {"q"=>"アブラカダブラ"}
403
+ Processing FilterController#index (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
404
+ Parameters: {"q"=>"アブラカダブ\357\276\227"}
355
405
  Rendering filter/index
356
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]
357
407
 
358
408
 
359
- Processing FilterController#rawdata (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
409
+ Processing FilterController#rawdata (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
360
410
  Sending data
361
411
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/rawdata]
362
412
 
363
413
 
364
- Processing FilterController#empty (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
414
+ Processing FilterController#empty (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
365
415
  Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/filter/empty]
366
416
 
367
417
 
368
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
369
- Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
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]
370
420
 
371
421
 
372
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
422
+ Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
373
423
  Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
374
424
 
375
425
 
376
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
377
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
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]
378
428
 
379
429
 
380
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
381
- Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
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]
382
432
 
383
433
 
384
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
434
+ Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
385
435
  Completed in 1ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
386
436
 
387
437
 
388
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
389
- Completed in 2ms (View: 2, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link]
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]
390
440
 
391
441
 
392
- Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
442
+ Processing DocomoGuidDocomoController#link (for 0.0.0.0 at 2010-02-28 15:45:30) [GET]
393
443
  Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/docomo_guid_docomo/link?guid=ON]
394
444
 
395
445
 
396
- Processing DocomoGuidAlwaysController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
397
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/docomo_guid_always/link?guid=ON]
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]
398
448
 
399
449
 
400
- Processing DocomoGuidBaseController#link (for 0.0.0.0 at 2009-05-13 07:49:21) [GET]
401
- Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/docomo_guid_base/link]
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]
@@ -25,9 +25,6 @@
25
25
  <div class="dialog">
26
26
  <h1>We're sorry, but something went wrong.</h1>
27
27
  <p>We've been notified about this issue and we'll take a look at it shortly.</p>
28
- <p><small>(If you're the administrator of this website, then please read
29
- the log file "<%=h RAILS_ENV %>.log"
30
- to find out what went wrong.)</small></p>
31
28
  </div>
32
29
  </body>
33
30
  </html>