jpmobile 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/{test/rails/rails_root/vendor/plugins/jpmobile/MIT-LICENSE → MIT-LICENSE} +0 -0
- data/README.rdoc +16 -6
- data/Rakefile +14 -0
- data/VERSION.yml +4 -0
- data/init.rb +3 -0
- data/install.rb +1 -0
- data/jpmobile.gemspec +299 -0
- data/lib/jpmobile.rb +0 -2
- data/lib/jpmobile/emoticon.rb +16 -2
- data/lib/jpmobile/emoticon/z_combine.rb +17 -4
- data/lib/jpmobile/filter.rb +2 -3
- data/lib/jpmobile/mobile/abstract_mobile.rb +6 -0
- data/lib/jpmobile/mobile/docomo.rb +24 -1
- data/lib/jpmobile/mobile/z_ip_addresses_au.rb +3 -2
- data/lib/jpmobile/mobile/z_ip_addresses_docomo.rb +4 -1
- data/lib/jpmobile/request_with_mobile.rb +4 -1
- data/{test/rails/rails_root/vendor/plugins/jpmobile/spec → spec}/spec.opts +0 -0
- data/spec/spec_helper.rb +36 -0
- data/spec/unit/detect_by_email_spec.rb +31 -0
- data/{test/rails/rails_root/vendor/plugins/jpmobile/spec → spec}/unit/detect_by_ua_spec.rb +11 -13
- data/spec/unit/is_carrier_spec.rb +93 -0
- data/spec/unit/spec_helper.rb +5 -0
- data/spec/unit/util_spec.rb +30 -0
- data/spec/unit/valid_ip_spec.rb +60 -0
- data/{test/rails/rails_root/vendor/plugins/jpmobile/tasks → tasks}/jpmobile_tasks.rake +3 -3
- data/test/legacy/autoload_test.rb +2 -1
- data/test/legacy/docomo_test.rb +39 -0
- data/test/legacy/emoticon_functional_test.rb +21 -19
- data/test/legacy/emoticon_test.rb +12 -12
- data/test/legacy/filter_test.rb +10 -8
- data/test/legacy/helper.rb +32 -3
- data/test/legacy/softbank_test.rb +2 -0
- data/test/rails/.gitignore +1 -0
- data/test/rails/overrides/app/controllers/filter_controller.rb +10 -0
- data/test/rails/overrides/spec/controllers/docomo_guid_spec.rb +2 -0
- data/test/rails/overrides/spec/controllers/docomo_spec.rb +2 -0
- data/test/rails/overrides/spec/controllers/emobile_spec.rb +2 -0
- data/test/rails/overrides/spec/controllers/filter_spec.rb +8 -7
- data/test/rails/overrides/spec/controllers/pc_spec.rb +2 -0
- data/test/rails/overrides/spec/controllers/softbank_emulator_spec.rb +2 -0
- data/test/rails/overrides/spec/controllers/template_path_spec.rb +2 -0
- data/test/rails/overrides/spec/controllers/trans_sid_spec.rb +1 -0
- data/test/rails/overrides/spec/helpers/helpers_spec.rb +2 -0
- data/test/rails/overrides/spec/spec_helper.rb +15 -0
- data/test/rails/rails_root/app/controllers/filter_controller.rb +0 -23
- data/test/rails/rails_root/app/controllers/mobile_spec_controller.rb +1 -1
- data/test/rails/rails_root/app/controllers/template_path_controller.rb +3 -0
- data/test/rails/rails_root/app/helpers/application_helper.rb +0 -1
- data/test/rails/rails_root/config/boot.rb +13 -110
- data/test/rails/rails_root/config/environment.rb +4 -41
- data/test/rails/rails_root/config/environments/development.rb +22 -13
- data/test/rails/rails_root/config/environments/production.rb +41 -20
- data/test/rails/rails_root/config/environments/test.rb +35 -28
- data/test/rails/rails_root/config/initializers/backtrace_silencers.rb +2 -2
- data/test/rails/rails_root/config/initializers/inflections.rb +1 -1
- data/test/rails/rails_root/config/initializers/session_store.rb +2 -15
- data/test/rails/rails_root/config/routes.rb +6 -42
- data/test/rails/rails_root/db/schema.rb +24 -7
- data/test/rails/rails_root/db/seeds.rb +2 -2
- data/test/rails/rails_root/spec/helpers/helpers_spec.rb +4 -2
- data/test/rails/rails_root/spec/spec_helper.rb +19 -35
- data/test/rails/rails_root/test/performance/browsing_test.rb +2 -2
- data/test/rails/rails_root/test/test_helper.rb +2 -27
- data/test/rails/rails_root/vendor/plugins/jpmobile/init.rb +1 -1
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile.rb +39 -25
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/docomo_guid.rb +2 -1
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/email.rb +3 -4
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon.rb +24 -8
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/conversion_table.rb +10 -9
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/z_combine.rb +17 -4
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/filter.rb +43 -136
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/helpers.rb +5 -18
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_controller.rb +24 -16
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_view.rb +42 -85
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/abstract_mobile.rb +25 -2
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/au.rb +28 -3
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/display.rb +29 -26
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/docomo.rb +60 -11
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/softbank.rb +16 -41
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/willcom.rb +1 -10
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_au.rb +3 -2
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_docomo.rb +4 -1
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/position.rb +4 -3
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/request_with_mobile.rb +14 -13
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/trans_sid.rb +52 -35
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/util.rb +68 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/spec_helper.rb +3 -2
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/detect_by_email_spec.rb +21 -27
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/is_carrier_spec.rb +56 -84
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/spec_helper.rb +1 -2
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/util_spec.rb +8 -2
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/valid_ip_spec.rb +43 -52
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/disabled_update_display_info_docomo.rb +0 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/update_ip_addresses_au.rb +0 -0
- data/tools/emoji/genregexp.rb +47 -0
- metadata +348 -253
- data/test/rails/rails_root/README +0 -243
- data/test/rails/rails_root/Rakefile +0 -10
- data/test/rails/rails_root/app/controllers/docomo_guid_controller.rb +0 -13
- data/test/rails/rails_root/app/controllers/trans_sid_controller.rb +0 -28
- data/test/rails/rails_root/app/views/filter/index.html.erb +0 -0
- data/test/rails/rails_root/app/views/hankaku_filter/index.html.erb +0 -0
- data/test/rails/rails_root/app/views/template_path/_partial.html.erb +0 -1
- data/test/rails/rails_root/app/views/template_path/_partial_mobile.html.erb +0 -1
- data/test/rails/rails_root/app/views/template_path/_partial_mobile_docomo.html.erb +0 -1
- data/test/rails/rails_root/app/views/template_path/index.html.erb +0 -1
- data/test/rails/rails_root/app/views/template_path/index_mobile.html.erb +0 -1
- data/test/rails/rails_root/app/views/template_path/index_mobile_docomo.html.erb +0 -1
- data/test/rails/rails_root/app/views/template_path/partial.html.erb +0 -2
- data/test/rails/rails_root/config/database.yml +0 -22
- data/test/rails/rails_root/config/initializers/new_rails_defaults.rb +0 -21
- data/test/rails/rails_root/config/locales/en.yml +0 -5
- data/test/rails/rails_root/db/development.sqlite3 +0 -0
- data/test/rails/rails_root/db/test.sqlite3 +0 -0
- data/test/rails/rails_root/doc/README_FOR_APP +0 -2
- data/test/rails/rails_root/lib/tasks/rspec.rake +0 -165
- data/test/rails/rails_root/log/development.log +0 -38
- data/test/rails/rails_root/log/production.log +0 -0
- data/test/rails/rails_root/log/server.log +0 -0
- data/test/rails/rails_root/log/test.log +0 -451
- data/test/rails/rails_root/public/404.html +0 -30
- data/test/rails/rails_root/public/422.html +0 -30
- data/test/rails/rails_root/public/500.html +0 -30
- data/test/rails/rails_root/public/favicon.ico +0 -0
- data/test/rails/rails_root/public/images/rails.png +0 -0
- data/test/rails/rails_root/public/index.html +0 -275
- data/test/rails/rails_root/public/javascripts/application.js +0 -2
- data/test/rails/rails_root/public/javascripts/controls.js +0 -963
- data/test/rails/rails_root/public/javascripts/dragdrop.js +0 -973
- data/test/rails/rails_root/public/javascripts/effects.js +0 -1128
- data/test/rails/rails_root/public/javascripts/prototype.js +0 -4320
- data/test/rails/rails_root/public/robots.txt +0 -5
- data/test/rails/rails_root/script/about +0 -4
- data/test/rails/rails_root/script/console +0 -3
- data/test/rails/rails_root/script/dbconsole +0 -3
- data/test/rails/rails_root/script/destroy +0 -3
- data/test/rails/rails_root/script/generate +0 -3
- data/test/rails/rails_root/script/performance/benchmarker +0 -3
- data/test/rails/rails_root/script/performance/profiler +0 -3
- data/test/rails/rails_root/script/plugin +0 -3
- data/test/rails/rails_root/script/runner +0 -3
- data/test/rails/rails_root/script/server +0 -3
- data/test/rails/rails_root/spec/controllers/docomo_guid_spec.rb +0 -77
- data/test/rails/rails_root/spec/controllers/docomo_spec.rb +0 -28
- data/test/rails/rails_root/spec/controllers/emobile_spec.rb +0 -35
- data/test/rails/rails_root/spec/controllers/filter_spec.rb +0 -157
- data/test/rails/rails_root/spec/controllers/pc_spec.rb +0 -11
- data/test/rails/rails_root/spec/controllers/softbank_emulator_spec.rb +0 -40
- data/test/rails/rails_root/spec/controllers/template_path_spec.rb +0 -115
- data/test/rails/rails_root/spec/controllers/trans_sid_spec.rb +0 -99
- data/test/rails/rails_root/spec/rcov.opts +0 -2
- data/test/rails/rails_root/spec/rspec.rake +0 -165
- data/test/rails/rails_root/spec/spec.opts +0 -4
- data/test/rails/rails_root/vendor/plugins/jpmobile/CHANGELOG +0 -7
- data/test/rails/rails_root/vendor/plugins/jpmobile/README.rdoc +0 -239
- data/test/rails/rails_root/vendor/plugins/jpmobile/Rakefile +0 -116
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_request.rb +0 -5
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/auth.rb +0 -55
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/combined_logger.rb +0 -54
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/request.rb +0 -7
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/rack/trans_sid.rb +0 -14
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/version.rb +0 -9
@@ -1,38 +0,0 @@
|
|
1
|
-
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
2
|
-
FROM sqlite_master
|
3
|
-
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4
|
-
[0m
|
5
|
-
[4;35;1mSQL (0.2ms)[0m [0mselect sqlite_version(*)[0m
|
6
|
-
[4;36;1mSQL (1.8ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
7
|
-
[4;35;1mSQL (0.9ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8
|
-
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
9
|
-
FROM sqlite_master
|
10
|
-
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
11
|
-
[0m
|
12
|
-
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
13
|
-
FROM sqlite_master
|
14
|
-
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
15
|
-
[0m
|
16
|
-
[4;36;1mSQL (0.1ms)[0m [0;1mSELECT version FROM schema_migrations[0m
|
17
|
-
[4;35;1mSQL (0.1ms)[0m [0m SELECT name
|
18
|
-
FROM sqlite_master
|
19
|
-
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
20
|
-
[0m
|
21
|
-
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
22
|
-
FROM sqlite_master
|
23
|
-
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
24
|
-
[0m
|
25
|
-
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM schema_migrations[0m
|
26
|
-
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
27
|
-
FROM sqlite_master
|
28
|
-
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
29
|
-
[0m
|
30
|
-
[4;35;1mSQL (0.1ms)[0m [0mselect sqlite_version(*)[0m
|
31
|
-
[4;36;1mSQL (1.8ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
32
|
-
[4;35;1mSQL (1.0ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
33
|
-
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
34
|
-
FROM sqlite_master
|
35
|
-
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
36
|
-
[0m
|
37
|
-
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
38
|
-
[4;36;1mSQL (0.8ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
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]
|