tounge 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +63 -0
- data/Rakefile +38 -0
- data/lib/tasks/tounge_tasks.rake +4 -0
- data/lib/tounge/locale_control.rb +29 -0
- data/lib/tounge/locale_setter.rb +59 -0
- data/lib/tounge/version.rb +3 -0
- data/lib/tounge.rb +5 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/pages_controller.rb +6 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/pages/index.html.erb +3 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en-gb.yml +2 -0
- data/test/dummy/config/locales/en-us.yml +2 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/locales/no-nb.yml +2 -0
- data/test/dummy/config/locales/sv-se.yml +2 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/functional_test.rb +13 -0
- data/test/dummy/log/development.log +413 -0
- data/test/dummy/log/test.log +2523 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/D1E/EF0/sprockets%2F52269994ffe75ac35386d6a1fa4e067a +0 -0
- data/test/dummy/tmp/cache/assets/D27/590/sprockets%2F8bfa12499f676f59cfc5a58149276ab5 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D71/780/sprockets%2F7057b6e13d8b3eb5a4ba399ded227d38 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/E37/7E0/sprockets%2F8d9eabd26028ef9e8e9efaa2c16bfe03 +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/locale_control_test.rb +49 -0
- data/test/locale_setter_test.rb +95 -0
- data/test/test_helper.rb +15 -0
- data/test/tounge_test.rb +7 -0
- metadata +200 -0
|
@@ -0,0 +1,413 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Started GET "/" for 127.0.0.1 at 2012-10-01 05:57:25 +0200
|
|
4
|
+
Connecting to database specified by database.yml
|
|
5
|
+
|
|
6
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
|
7
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
8
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
9
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
|
10
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
|
11
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
12
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
13
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
14
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
15
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
16
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
17
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
|
18
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
|
19
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
20
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
21
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
22
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
23
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
24
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
Rendered /Users/pubis/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.6ms)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
Started GET "/pages" for 127.0.0.1 at 2012-10-01 05:57:34 +0200
|
|
31
|
+
Processing by PagesController#index as HTML
|
|
32
|
+
Completed 500 Internal Server Error in 17ms
|
|
33
|
+
|
|
34
|
+
NameError (undefined local variable or method `current_user' for #<PagesController:0x007fbd1957a980>):
|
|
35
|
+
/Users/pubis/Development/tounge/lib/tounge/locale_control.rb:14:in `default_locale_inputs'
|
|
36
|
+
/Users/pubis/Development/tounge/lib/tounge/locale_control.rb:8:in `set_locale'
|
|
37
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:418:in `_run__2905456485577312315__process_action__3543580659591912057__callbacks'
|
|
38
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
39
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
40
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
41
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
42
|
+
actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
43
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
44
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
45
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
46
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
|
47
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
48
|
+
actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
49
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
50
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
|
|
51
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
|
52
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
|
53
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
54
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
|
55
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
56
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
57
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
58
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
59
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
60
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
61
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
|
62
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
63
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
|
64
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
|
65
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
66
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
67
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
68
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
|
69
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
|
70
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
|
71
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
|
72
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
|
73
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
74
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1291326571422349501__call__4483937969603218902__callbacks'
|
|
75
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
76
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
77
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
78
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
79
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
80
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
81
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
82
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
83
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
|
84
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
|
85
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
86
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
87
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
88
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
89
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
90
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
91
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
|
92
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
|
93
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
94
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
95
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
96
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
97
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
98
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
Rendered /Users/pubis/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
|
102
|
+
Rendered /Users/pubis/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
|
103
|
+
Rendered /Users/pubis/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.2ms)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
Started GET "/pages" for 127.0.0.1 at 2012-10-01 05:58:06 +0200
|
|
107
|
+
Processing by PagesController#index as HTML
|
|
108
|
+
Rendered pages/index.html.erb within layouts/application (0.7ms)
|
|
109
|
+
Compiled application.css (1ms) (pid 40589)
|
|
110
|
+
Compiled jquery.js (5ms) (pid 40589)
|
|
111
|
+
Compiled jquery_ujs.js (0ms) (pid 40589)
|
|
112
|
+
Compiled application.js (99ms) (pid 40589)
|
|
113
|
+
Completed 200 OK in 166ms (Views: 161.5ms | ActiveRecord: 0.0ms)
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-01 05:58:07 +0200
|
|
117
|
+
Served asset /application.js - 200 OK (50ms)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-01 05:58:07 +0200
|
|
121
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-01 05:58:07 +0200
|
|
125
|
+
Served asset /application.css - 200 OK (1ms)
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-01 05:58:07 +0200
|
|
129
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
Started GET "/pages" for 127.0.0.1 at 2012-10-01 16:42:56 +0200
|
|
133
|
+
Processing by PagesController#index as HTML
|
|
134
|
+
Rendered pages/index.html.erb within layouts/application (0.5ms)
|
|
135
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-01 16:42:56 +0200
|
|
139
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-01 16:42:56 +0200
|
|
143
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-01 16:42:56 +0200
|
|
147
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-01 16:42:56 +0200
|
|
151
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
Started GET "/pages&locale=sv-SE" for 127.0.0.1 at 2012-10-01 16:43:03 +0200
|
|
155
|
+
|
|
156
|
+
ActionController::RoutingError (No route matches [GET] "/pages&locale=sv-SE"):
|
|
157
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
158
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
159
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
|
160
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
|
161
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
162
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
163
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
164
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
165
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
166
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
167
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
|
168
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
|
169
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
170
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
171
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
172
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
173
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
174
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
Rendered /Users/pubis/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
Started GET "/pages&locale=sv-se" for 127.0.0.1 at 2012-10-01 16:43:18 +0200
|
|
181
|
+
|
|
182
|
+
ActionController::RoutingError (No route matches [GET] "/pages&locale=sv-se"):
|
|
183
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
184
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
185
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
|
186
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
|
187
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
188
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
189
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
190
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
191
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
192
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
193
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
|
194
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
|
195
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
196
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
197
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
198
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
199
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
200
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
Rendered /Users/pubis/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
Started GET "/pages&locale=sv" for 127.0.0.1 at 2012-10-01 16:43:22 +0200
|
|
207
|
+
|
|
208
|
+
ActionController::RoutingError (No route matches [GET] "/pages&locale=sv"):
|
|
209
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
210
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
211
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
|
212
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
|
213
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
214
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
215
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
216
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
217
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
218
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
219
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
|
220
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
|
221
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
222
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
223
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
224
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
225
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
226
|
+
/Users/pubis/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
Rendered /Users/pubis/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
Started GET "/pages" for 127.0.0.1 at 2012-10-01 16:44:01 +0200
|
|
233
|
+
Processing by PagesController#index as HTML
|
|
234
|
+
Rendered pages/index.html.erb within layouts/application (0.3ms)
|
|
235
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-01 16:44:01 +0200
|
|
239
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-01 16:44:01 +0200
|
|
243
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-01 16:44:01 +0200
|
|
247
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-01 16:44:01 +0200
|
|
251
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
Started GET "/pages?locale=sv" for 127.0.0.1 at 2012-10-01 16:45:24 +0200
|
|
255
|
+
Processing by PagesController#index as HTML
|
|
256
|
+
Parameters: {"locale"=>"sv"}
|
|
257
|
+
Rendered pages/index.html.erb within layouts/application (0.4ms)
|
|
258
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-01 16:45:24 +0200
|
|
262
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:24 +0200
|
|
266
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:24 +0200
|
|
270
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:24 +0200
|
|
274
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
Started GET "/pages?locale=sv-sE" for 127.0.0.1 at 2012-10-01 16:45:30 +0200
|
|
278
|
+
Processing by PagesController#index as HTML
|
|
279
|
+
Parameters: {"locale"=>"sv-sE"}
|
|
280
|
+
Rendered pages/index.html.erb within layouts/application (0.4ms)
|
|
281
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-01 16:45:30 +0200
|
|
285
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:30 +0200
|
|
289
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:30 +0200
|
|
293
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:30 +0200
|
|
297
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
Started GET "/pages?locale=sv-SE" for 127.0.0.1 at 2012-10-01 16:45:34 +0200
|
|
301
|
+
Processing by PagesController#index as HTML
|
|
302
|
+
Parameters: {"locale"=>"sv-SE"}
|
|
303
|
+
Rendered pages/index.html.erb within layouts/application (0.7ms)
|
|
304
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-01 16:45:34 +0200
|
|
308
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:34 +0200
|
|
312
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:34 +0200
|
|
316
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:34 +0200
|
|
320
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
Started GET "/pages?locale=sv-SE" for 127.0.0.1 at 2012-10-01 16:45:37 +0200
|
|
324
|
+
Processing by PagesController#index as HTML
|
|
325
|
+
Parameters: {"locale"=>"sv-SE"}
|
|
326
|
+
Rendered pages/index.html.erb within layouts/application (0.5ms)
|
|
327
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-01 16:45:37 +0200
|
|
331
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:37 +0200
|
|
335
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:37 +0200
|
|
339
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:37 +0200
|
|
343
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
Started GET "/pages?locale=sv-SE" for 127.0.0.1 at 2012-10-01 16:45:44 +0200
|
|
347
|
+
Processing by PagesController#index as HTML
|
|
348
|
+
Parameters: {"locale"=>"sv-SE"}
|
|
349
|
+
Rendered pages/index.html.erb within layouts/application (0.3ms)
|
|
350
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:44 +0200
|
|
354
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:44 +0200
|
|
358
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-01 16:45:44 +0200
|
|
362
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-01 16:45:44 +0200
|
|
366
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
Started GET "/pages?locale=sv-SE" for 127.0.0.1 at 2012-10-01 16:46:03 +0200
|
|
370
|
+
Connecting to database specified by database.yml
|
|
371
|
+
Processing by PagesController#index as HTML
|
|
372
|
+
Parameters: {"locale"=>"sv-SE"}
|
|
373
|
+
Rendered pages/index.html.erb within layouts/application (1.8ms)
|
|
374
|
+
Completed 200 OK in 105ms (Views: 100.0ms | ActiveRecord: 0.0ms)
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-01 16:46:04 +0200
|
|
378
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-01 16:46:04 +0200
|
|
382
|
+
Served asset /application.js - 304 Not Modified (4ms)
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-01 16:46:04 +0200
|
|
386
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-01 16:46:04 +0200
|
|
390
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
Started GET "/pages?locale=en" for 127.0.0.1 at 2012-10-01 16:46:09 +0200
|
|
394
|
+
Processing by PagesController#index as HTML
|
|
395
|
+
Parameters: {"locale"=>"en"}
|
|
396
|
+
Rendered pages/index.html.erb within layouts/application (0.8ms)
|
|
397
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-01 16:46:09 +0200
|
|
401
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-01 16:46:09 +0200
|
|
405
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-01 16:46:09 +0200
|
|
409
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-01 16:46:09 +0200
|
|
413
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|