no-ie6-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +25 -0
  3. data/Rakefile +37 -0
  4. data/app/assets/images/background_browser.gif +0 -0
  5. data/app/assets/images/browser_chrome.gif +0 -0
  6. data/app/assets/images/browser_firefox.gif +0 -0
  7. data/app/assets/images/browser_ie.gif +0 -0
  8. data/app/assets/images/browser_opera.gif +0 -0
  9. data/app/assets/images/browser_safari.gif +0 -0
  10. data/app/assets/javascripts/no_ie6.js.erb +60 -0
  11. data/app/helpers/no_ie6_helper.rb +5 -0
  12. data/lib/no-ie6-rails/version.rb +3 -0
  13. data/lib/no-ie6-rails.rb +5 -0
  14. data/lib/tasks/no-ie6-rails_tasks.rake +4 -0
  15. data/test/dummy/Rakefile +7 -0
  16. data/test/dummy/app/assets/javascripts/application.js +9 -0
  17. data/test/dummy/app/assets/javascripts/welcome.js +2 -0
  18. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  19. data/test/dummy/app/assets/stylesheets/welcome.css +4 -0
  20. data/test/dummy/app/controllers/application_controller.rb +4 -0
  21. data/test/dummy/app/controllers/welcome_controller.rb +5 -0
  22. data/test/dummy/app/helpers/application_helper.rb +2 -0
  23. data/test/dummy/app/helpers/welcome_helper.rb +2 -0
  24. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/test/dummy/app/views/welcome/index.html.erb +13 -0
  26. data/test/dummy/config/application.rb +48 -0
  27. data/test/dummy/config/boot.rb +10 -0
  28. data/test/dummy/config/database.yml +25 -0
  29. data/test/dummy/config/environment.rb +5 -0
  30. data/test/dummy/config/environments/development.rb +30 -0
  31. data/test/dummy/config/environments/production.rb +60 -0
  32. data/test/dummy/config/environments/test.rb +39 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/inflections.rb +10 -0
  35. data/test/dummy/config/initializers/mime_types.rb +5 -0
  36. data/test/dummy/config/initializers/secret_token.rb +7 -0
  37. data/test/dummy/config/initializers/session_store.rb +8 -0
  38. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/test/dummy/config/locales/en.yml +5 -0
  40. data/test/dummy/config/routes.rb +60 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/db/development.sqlite3 +0 -0
  43. data/test/dummy/log/development.log +4196 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +26 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/dummy/test/functional/welcome_controller_test.rb +9 -0
  50. data/test/dummy/test/unit/helpers/welcome_helper_test.rb +4 -0
  51. data/test/dummy/tmp/cache/assets/C2F/0E0/sprockets%2Fa5412750c402b03eb244491b09a06470 +0 -0
  52. data/test/dummy/tmp/cache/assets/C40/760/sprockets%2F03f8a45750331a4e4a0a02e647195726 +0 -0
  53. data/test/dummy/tmp/cache/assets/C48/A10/sprockets%2F4511c099023f72a46b95409366b044eb +0 -0
  54. data/test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c +0 -0
  55. data/test/dummy/tmp/cache/assets/C94/D20/sprockets%2F8c4441c49a79f60d28ec6836b3982806 +0 -0
  56. data/test/dummy/tmp/cache/assets/CC0/FC0/sprockets%2F34484873c40ec18a0fdf682f1e879266 +0 -0
  57. data/test/dummy/tmp/cache/assets/CC9/CD0/sprockets%2Fc06b697095f14f8e6f66015c4f1599d9 +0 -0
  58. data/test/dummy/tmp/cache/assets/CCA/370/sprockets%2F79edf972e81f80a1a39038748a14e799 +0 -0
  59. data/test/dummy/tmp/cache/assets/CFB/700/sprockets%2F664584858cba7c089fb8d7a478b55c64 +0 -0
  60. data/test/dummy/tmp/cache/assets/CFF/DA0/sprockets%2Ff1c6a66500ac6c480a9a4ab0707208e9 +0 -0
  61. data/test/dummy/tmp/cache/assets/D19/C10/sprockets%2Fb60c6581863e7815abfd365a50e7f3d9 +0 -0
  62. data/test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae +0 -0
  63. data/test/dummy/tmp/cache/assets/D30/BE0/sprockets%2Fed5cc429335d1610db9286d4a01a54eb +0 -0
  64. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  65. data/test/dummy/tmp/cache/assets/D41/DF0/sprockets%2F96252187dc437fb613db312caf5de8e5 +0 -0
  66. data/test/dummy/tmp/cache/assets/D4B/D00/sprockets%2F56668756fa4ded02a4eee3085be93f61 +0 -0
  67. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  68. data/test/dummy/tmp/cache/assets/D72/040/sprockets%2Fdf27303f8b8502a436aa989ba76dde6a +0 -0
  69. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  70. data/test/dummy/tmp/cache/assets/DA1/240/sprockets%2F8d0f992a986700bae4aaafad93e4c806 +0 -0
  71. data/test/dummy/tmp/cache/assets/DC2/EC0/sprockets%2Fabe6c14ac1e2c383ab7940af16ff608d +0 -0
  72. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  73. data/test/no-ie6-rails_test.rb +7 -0
  74. data/test/test_helper.rb +10 -0
  75. metadata +197 -0
@@ -0,0 +1,4196 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:44:33 +0400
4
+
5
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
6
+
7
+
8
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
9
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.7ms)
10
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.5ms)
11
+
12
+
13
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:45:57 +0400
14
+
15
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
16
+
17
+
18
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
19
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.3ms)
20
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.8ms)
21
+
22
+
23
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:46:00 +0400
24
+
25
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
26
+
27
+
28
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
29
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
30
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.2ms)
31
+
32
+
33
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:46:00 +0400
34
+
35
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
36
+
37
+
38
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
39
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
40
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.6ms)
41
+
42
+
43
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:46:01 +0400
44
+
45
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
46
+
47
+
48
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
49
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
50
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.2ms)
51
+
52
+
53
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:46:01 +0400
54
+
55
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
56
+
57
+
58
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
59
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
60
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.3ms)
61
+
62
+
63
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:47:17 +0400
64
+
65
+ ActionController::RoutingError (No route matches [GET] "/"):
66
+
67
+
68
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (7.0ms)
69
+
70
+
71
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:47:19 +0400
72
+
73
+ ActionController::RoutingError (No route matches [GET] "/"):
74
+
75
+
76
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
77
+
78
+
79
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:49:16 +0400
80
+ Processing by WelcomeController#index as HTML
81
+ Rendered welcome/index.html.erb within layouts/application (6.5ms)
82
+ Compiled application.css (1ms) (pid 9574)
83
+ Compiled welcome.css (0ms) (pid 9574)
84
+ Compiled application.js (2ms) (pid 9574)
85
+ Compiled jquery.js (1ms) (pid 9574)
86
+ Compiled jquery_ujs.js (0ms) (pid 9574)
87
+ Compiled welcome.js (0ms) (pid 9574)
88
+ Completed 200 OK in 108ms (Views: 107.4ms | ActiveRecord: 0.0ms)
89
+
90
+
91
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 00:49:17 +0400
92
+ Served asset /application.css - 200 OK (0ms)
93
+
94
+
95
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 00:49:17 +0400
96
+ Served asset /jquery.js - 304 Not Modified (2ms)
97
+
98
+
99
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 00:49:17 +0400
100
+ Served asset /welcome.css - 200 OK (1ms)
101
+
102
+
103
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 00:49:17 +0400
104
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
105
+
106
+
107
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 00:49:17 +0400
108
+ Served asset /welcome.js - 200 OK (1ms)
109
+
110
+
111
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 00:49:17 +0400
112
+ Served asset /application.js - 200 OK (0ms)
113
+
114
+
115
+ Started GET "/public/assets" for 127.0.0.1 at 2011-10-12 00:49:26 +0400
116
+
117
+ ActionController::RoutingError (No route matches [GET] "/public/assets"):
118
+
119
+
120
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
121
+
122
+
123
+ Started GET "/public/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:49:52 +0400
124
+
125
+ ActionController::RoutingError (No route matches [GET] "/public/assets/browser_ie.gif"):
126
+
127
+
128
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
129
+
130
+
131
+ Started GET "/public/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:50:40 +0400
132
+
133
+ ActionController::RoutingError (No route matches [GET] "/public/assets/browser_ie.gif"):
134
+
135
+
136
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
137
+
138
+
139
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:50:44 +0400
140
+ Processing by WelcomeController#index as HTML
141
+ Rendered welcome/index.html.erb within layouts/application (0.5ms)
142
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
143
+
144
+
145
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 00:50:44 +0400
146
+ Served asset /application.css - 304 Not Modified (0ms)
147
+
148
+
149
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 00:50:44 +0400
150
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
151
+
152
+
153
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 00:50:44 +0400
154
+ Served asset /jquery.js - 304 Not Modified (3ms)
155
+
156
+
157
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:50:44 +0400
158
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
159
+
160
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
161
+
162
+
163
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
164
+
165
+
166
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 00:50:44 +0400
167
+ Served asset /welcome.css - 304 Not Modified (0ms)
168
+
169
+
170
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 00:50:44 +0400
171
+ Served asset /welcome.js - 304 Not Modified (0ms)
172
+
173
+
174
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 00:50:44 +0400
175
+ Served asset /application.js - 304 Not Modified (0ms)
176
+
177
+
178
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:50:44 +0400
179
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
180
+
181
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
182
+
183
+
184
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
185
+
186
+
187
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:51:50 +0400
188
+ Processing by WelcomeController#index as HTML
189
+ Rendered welcome/index.html.erb within layouts/application (7.0ms)
190
+ Completed 200 OK in 73ms (Views: 72.2ms | ActiveRecord: 0.0ms)
191
+
192
+
193
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 00:51:51 +0400
194
+ Served asset /application.css - 304 Not Modified (0ms)
195
+
196
+
197
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:51:51 +0400
198
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
199
+
200
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
201
+
202
+
203
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
204
+
205
+
206
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 00:51:51 +0400
207
+ Served asset /welcome.css - 304 Not Modified (1ms)
208
+
209
+
210
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:51 +0400
211
+ Served asset /application.js - 304 Not Modified (0ms)
212
+
213
+
214
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:51 +0400
215
+ Served asset /welcome.js - 304 Not Modified (1ms)
216
+
217
+
218
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:51 +0400
219
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
220
+
221
+
222
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:51 +0400
223
+ Served asset /jquery.js - 304 Not Modified (2ms)
224
+
225
+
226
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:51:51 +0400
227
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
228
+
229
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
230
+
231
+
232
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
233
+
234
+
235
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:51:53 +0400
236
+ Processing by WelcomeController#index as HTML
237
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
238
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
239
+
240
+
241
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 00:51:53 +0400
242
+ Served asset /application.css - 304 Not Modified (0ms)
243
+
244
+
245
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:53 +0400
246
+ Served asset /jquery.js - 304 Not Modified (0ms)
247
+
248
+
249
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 00:51:53 +0400
250
+ Served asset /welcome.css - 304 Not Modified (0ms)
251
+
252
+
253
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:53 +0400
254
+ Served asset /application.js - 304 Not Modified (0ms)
255
+
256
+
257
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:53 +0400
258
+ Served asset /welcome.js - 304 Not Modified (0ms)
259
+
260
+
261
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:53 +0400
262
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
263
+
264
+
265
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:51:53 +0400
266
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
267
+
268
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
269
+
270
+
271
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
272
+
273
+
274
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:51:54 +0400
275
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
276
+
277
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
278
+
279
+
280
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
281
+
282
+
283
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:51:54 +0400
284
+ Processing by WelcomeController#index as HTML
285
+ Rendered welcome/index.html.erb within layouts/application (3.7ms)
286
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
287
+
288
+
289
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 00:51:54 +0400
290
+ Served asset /application.css - 304 Not Modified (0ms)
291
+
292
+
293
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 00:51:54 +0400
294
+ Served asset /welcome.css - 304 Not Modified (0ms)
295
+
296
+
297
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:54 +0400
298
+ Served asset /application.js - 304 Not Modified (0ms)
299
+
300
+
301
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:54 +0400
302
+ Served asset /welcome.js - 304 Not Modified (0ms)
303
+
304
+
305
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:54 +0400
306
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
307
+
308
+
309
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 00:51:54 +0400
310
+ Served asset /jquery.js - 304 Not Modified (0ms)
311
+
312
+
313
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:51:54 +0400
314
+ Served asset /browser_ie.gif - 404 Not Found (3ms)
315
+
316
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
317
+
318
+
319
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
320
+
321
+
322
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:51:55 +0400
323
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
324
+
325
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
326
+
327
+
328
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
329
+
330
+
331
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:52:26 +0400
332
+ Processing by WelcomeController#index as HTML
333
+ Rendered welcome/index.html.erb within layouts/application (6.9ms)
334
+ Completed 200 OK in 42ms (Views: 41.8ms | ActiveRecord: 0.0ms)
335
+
336
+
337
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 00:52:26 +0400
338
+ Served asset /application.css - 304 Not Modified (0ms)
339
+
340
+
341
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 00:52:26 +0400
342
+ Served asset /welcome.css - 304 Not Modified (1ms)
343
+
344
+
345
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:26 +0400
346
+ Served asset /jquery.js - 304 Not Modified (9ms)
347
+
348
+
349
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:26 +0400
350
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
351
+
352
+
353
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:26 +0400
354
+ Served asset /application.js - 304 Not Modified (0ms)
355
+
356
+
357
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:26 +0400
358
+ Served asset /welcome.js - 304 Not Modified (3ms)
359
+
360
+
361
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:52:26 +0400
362
+ Served asset /browser_ie.gif - 200 OK (3ms)
363
+
364
+
365
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:52:29 +0400
366
+ Processing by WelcomeController#index as HTML
367
+ Rendered welcome/index.html.erb within layouts/application (0.3ms)
368
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
369
+
370
+
371
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 00:52:29 +0400
372
+ Served asset /application.css - 304 Not Modified (0ms)
373
+
374
+
375
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:29 +0400
376
+ Served asset /jquery.js - 304 Not Modified (0ms)
377
+
378
+
379
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:29 +0400
380
+ Served asset /welcome.js - 304 Not Modified (0ms)
381
+
382
+
383
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:29 +0400
384
+ Served asset /application.js - 304 Not Modified (0ms)
385
+
386
+
387
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:29 +0400
388
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
389
+
390
+
391
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 00:52:29 +0400
392
+ Served asset /welcome.css - 304 Not Modified (0ms)
393
+
394
+
395
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:52:29 +0400
396
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
397
+
398
+
399
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:52:44 +0400
400
+ Processing by WelcomeController#index as HTML
401
+ Rendered welcome/index.html.erb within layouts/application (7.0ms)
402
+ Completed 200 OK in 43ms (Views: 42.7ms | ActiveRecord: 0.0ms)
403
+
404
+
405
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
406
+ Served asset /application.css - 304 Not Modified (0ms)
407
+
408
+
409
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
410
+ Served asset /welcome.css - 304 Not Modified (2ms)
411
+
412
+
413
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
414
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
415
+
416
+
417
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
418
+ Served asset /welcome.js - 304 Not Modified (1ms)
419
+
420
+
421
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
422
+ Served asset /application.js - 304 Not Modified (3ms)
423
+
424
+
425
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
426
+ Served asset /jquery.js - 304 Not Modified (3ms)
427
+
428
+
429
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
430
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
431
+
432
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
433
+
434
+
435
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
436
+
437
+
438
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
439
+ Processing by WelcomeController#index as HTML
440
+ Rendered welcome/index.html.erb within layouts/application (0.3ms)
441
+ Completed 200 OK in 44ms (Views: 43.2ms | ActiveRecord: 0.0ms)
442
+
443
+
444
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
445
+ Served asset /application.css - 304 Not Modified (0ms)
446
+
447
+
448
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
449
+ Served asset /welcome.css - 304 Not Modified (0ms)
450
+
451
+
452
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
453
+ Served asset /jquery.js - 304 Not Modified (0ms)
454
+
455
+
456
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
457
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
458
+
459
+
460
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
461
+ Served asset /welcome.js - 304 Not Modified (0ms)
462
+
463
+
464
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
465
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
466
+
467
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
468
+
469
+
470
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
471
+
472
+
473
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:45 +0400
474
+ Served asset /application.js - 304 Not Modified (0ms)
475
+
476
+
477
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:52:46 +0400
478
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
479
+
480
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
481
+
482
+
483
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
484
+
485
+
486
+ Started GET "/" for 127.0.0.1 at 2011-10-12 00:52:46 +0400
487
+ Processing by WelcomeController#index as HTML
488
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
489
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
490
+
491
+
492
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 00:52:46 +0400
493
+ Served asset /welcome.css - 304 Not Modified (0ms)
494
+
495
+
496
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:46 +0400
497
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
498
+
499
+
500
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:46 +0400
501
+ Served asset /welcome.js - 304 Not Modified (0ms)
502
+
503
+
504
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:46 +0400
505
+ Served asset /jquery.js - 304 Not Modified (0ms)
506
+
507
+
508
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 00:52:46 +0400
509
+ Served asset /application.js - 304 Not Modified (0ms)
510
+
511
+
512
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:52:46 +0400
513
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
514
+
515
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
516
+
517
+
518
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
519
+
520
+
521
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 00:52:46 +0400
522
+ Served asset /application.css - 304 Not Modified (0ms)
523
+
524
+
525
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 00:52:46 +0400
526
+ Served asset /browser_ie.gif - 404 Not Found (1ms)
527
+
528
+ ActionController::RoutingError (No route matches [GET] "/assets/browser_ie.gif"):
529
+
530
+
531
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
532
+
533
+
534
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:08:46 +0400
535
+ Processing by WelcomeController#index as HTML
536
+ Rendered welcome/index.html.erb within layouts/application (7.3ms)
537
+ Completed 200 OK in 44ms (Views: 43.4ms | ActiveRecord: 0.0ms)
538
+
539
+
540
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:08:46 +0400
541
+ Served asset /application.css - 304 Not Modified (0ms)
542
+
543
+
544
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:08:46 +0400
545
+ Served asset /browser_ie.gif - 200 OK (1ms)
546
+
547
+
548
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:08:46 +0400
549
+ Served asset /application.js - 304 Not Modified (0ms)
550
+
551
+
552
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:08:46 +0400
553
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
554
+
555
+
556
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:08:46 +0400
557
+ Served asset /welcome.js - 304 Not Modified (5ms)
558
+
559
+
560
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:08:46 +0400
561
+ Served asset /jquery.js - 304 Not Modified (2ms)
562
+
563
+
564
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:08:46 +0400
565
+ Served asset /welcome.css - 304 Not Modified (1ms)
566
+
567
+
568
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
569
+ Processing by WelcomeController#index as HTML
570
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
571
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
572
+
573
+
574
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
575
+ Served asset /application.css - 304 Not Modified (0ms)
576
+
577
+
578
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
579
+ Served asset /application.js - 304 Not Modified (0ms)
580
+
581
+
582
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
583
+ Served asset /welcome.js - 304 Not Modified (0ms)
584
+
585
+
586
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
587
+ Served asset /browser_firefox.gif - 200 OK (9ms)
588
+
589
+
590
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
591
+ Served asset /jquery.js - 304 Not Modified (0ms)
592
+
593
+
594
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
595
+ Served asset /welcome.css - 304 Not Modified (0ms)
596
+
597
+
598
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
599
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
600
+
601
+
602
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
603
+ Served asset /browser_chrome.gif - 200 OK (3ms)
604
+
605
+
606
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
607
+ Served asset /browser_opera.gif - 200 OK (3ms)
608
+
609
+
610
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
611
+ Served asset /browser_safari.gif - 200 OK (3ms)
612
+
613
+
614
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:09:46 +0400
615
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
616
+
617
+
618
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:10:11 +0400
619
+ Processing by WelcomeController#index as HTML
620
+ Rendered welcome/index.html.erb within layouts/application (73.3ms)
621
+ Completed 500 Internal Server Error in 78ms
622
+
623
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x00000003682290>:0x00000003672200>):
624
+ 5: <%= image_tag("browser_safari.gif") %>
625
+ 6: <%= image_tag("browser_ie.gif") %>
626
+ 7:
627
+ 8: <%= no_ie6_notice %>
628
+ app/views/welcome/index.html.erb:8:in `_app_views_welcome_index_html_erb___2232833132191194364_28535540'
629
+
630
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
631
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
632
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.7ms)
633
+
634
+
635
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:10:29 +0400
636
+ Processing by WelcomeController#index as HTML
637
+ Rendered welcome/index.html.erb within layouts/application (33.3ms)
638
+ Completed 500 Internal Server Error in 38ms
639
+
640
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x000000043fc880>:0x000000043f2d30>):
641
+ 6: <%= image_tag("browser_ie.gif") %>
642
+ 7:
643
+ 8: <p>You should see no ie6 notice</p>
644
+ 9: <%= no_ie6_notice %>
645
+ app/views/welcome/index.html.erb:9:in `_app_views_welcome_index_html_erb___2232833132191194364_35621760'
646
+
647
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
648
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
649
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.5ms)
650
+
651
+
652
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
653
+ Processing by WelcomeController#index as HTML
654
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
655
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
656
+
657
+
658
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
659
+ Served asset /welcome.css - 304 Not Modified (0ms)
660
+
661
+
662
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
663
+ Served asset /application.css - 304 Not Modified (0ms)
664
+
665
+
666
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
667
+ Served asset /jquery.js - 304 Not Modified (0ms)
668
+
669
+
670
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
671
+ Served asset /application.js - 304 Not Modified (0ms)
672
+
673
+
674
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
675
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
676
+
677
+
678
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
679
+ Served asset /welcome.js - 304 Not Modified (0ms)
680
+
681
+
682
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
683
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
684
+
685
+
686
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
687
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
688
+
689
+
690
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
691
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
692
+
693
+
694
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
695
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
696
+
697
+
698
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:10:36 +0400
699
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
700
+
701
+
702
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:10:59 +0400
703
+ Processing by WelcomeController#index as HTML
704
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
705
+ Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
706
+
707
+
708
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:10:59 +0400
709
+ Served asset /application.css - 304 Not Modified (0ms)
710
+
711
+
712
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:10:59 +0400
713
+ Served asset /welcome.css - 304 Not Modified (0ms)
714
+
715
+
716
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:10:59 +0400
717
+ Served asset /jquery.js - 304 Not Modified (0ms)
718
+
719
+
720
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:10:59 +0400
721
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
722
+
723
+
724
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:10:59 +0400
725
+ Served asset /welcome.js - 304 Not Modified (0ms)
726
+
727
+
728
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:10:59 +0400
729
+ Served asset /application.js - 304 Not Modified (0ms)
730
+
731
+
732
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:11:00 +0400
733
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
734
+
735
+
736
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:11:00 +0400
737
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
738
+
739
+
740
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:11:00 +0400
741
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
742
+
743
+
744
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:11:00 +0400
745
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
746
+
747
+
748
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:11:00 +0400
749
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
750
+
751
+
752
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:11:10 +0400
753
+ Processing by WelcomeController#index as HTML
754
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
755
+ Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
756
+
757
+
758
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:11:10 +0400
759
+ Served asset /application.css - 304 Not Modified (0ms)
760
+
761
+
762
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:11:10 +0400
763
+ Served asset /welcome.css - 304 Not Modified (0ms)
764
+
765
+
766
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:11:10 +0400
767
+ Served asset /welcome.js - 304 Not Modified (0ms)
768
+
769
+
770
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:11:10 +0400
771
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
772
+
773
+
774
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:11:10 +0400
775
+ Served asset /application.js - 304 Not Modified (2ms)
776
+
777
+
778
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:11:10 +0400
779
+ Served asset /jquery.js - 304 Not Modified (0ms)
780
+
781
+
782
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:11:11 +0400
783
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
784
+
785
+
786
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:11:11 +0400
787
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
788
+
789
+
790
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:11:11 +0400
791
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
792
+
793
+
794
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:11:11 +0400
795
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
796
+
797
+
798
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:11:11 +0400
799
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
800
+
801
+
802
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:11:23 +0400
803
+ Processing by WelcomeController#index as HTML
804
+ Rendered welcome/index.html.erb within layouts/application (34.2ms)
805
+ Completed 500 Internal Server Error in 40ms
806
+
807
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x000000020a7d58>:0x00000002038e08>):
808
+ 9:
809
+ 10: <section>
810
+ 11: <p>You should see no ie6 notice</p>
811
+ 12: <%= no_ie6_notice %>
812
+ 13: </section>
813
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2232833132191194364_16839100'
814
+
815
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
816
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
817
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms)
818
+
819
+
820
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:11:49 +0400
821
+ Processing by WelcomeController#index as HTML
822
+ Rendered welcome/index.html.erb within layouts/application (41.3ms)
823
+ Completed 500 Internal Server Error in 47ms
824
+
825
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x0000000437beb0>:0x000000040f9d68>):
826
+ 9:
827
+ 10: <section>
828
+ 11: <p>You should see no ie6 notice</p>
829
+ 12: <%= no_ie6_notice %>
830
+ 13: </section>
831
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2232833132191194364_34063620'
832
+
833
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
834
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
835
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.0ms)
836
+
837
+
838
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:12:23 +0400
839
+ Processing by WelcomeController#index as HTML
840
+ Rendered welcome/index.html.erb within layouts/application (73.5ms)
841
+ Completed 500 Internal Server Error in 79ms
842
+
843
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x000000037519f0>:0x00000003745b28>):
844
+ 9:
845
+ 10: <section>
846
+ 11: <p>You should see no ie6 notice</p>
847
+ 12: <%= no_ie6_notice %>
848
+ 13: </section>
849
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2232833132191194364_34063620'
850
+
851
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
852
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
853
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.6ms)
854
+
855
+
856
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:12:24 +0400
857
+ Processing by WelcomeController#index as HTML
858
+ Rendered welcome/index.html.erb within layouts/application (33.3ms)
859
+ Completed 500 Internal Server Error in 38ms
860
+
861
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x00000003f53c48>:0x00000003f41a98>):
862
+ 9:
863
+ 10: <section>
864
+ 11: <p>You should see no ie6 notice</p>
865
+ 12: <%= no_ie6_notice %>
866
+ 13: </section>
867
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2232833132191194364_34063620'
868
+
869
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
870
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
871
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.2ms)
872
+
873
+
874
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:13:29 +0400
875
+ Processing by WelcomeController#index as HTML
876
+ Rendered welcome/index.html.erb within layouts/application (95.7ms)
877
+ Completed 500 Internal Server Error in 121ms
878
+
879
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x00000002845268>:0x0000000283ebe8>):
880
+ 9:
881
+ 10: <section>
882
+ 11: <p>You should see no ie6 notice</p>
883
+ 12: <%= no_ie6_notice %>
884
+ 13: </section>
885
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___1898956330774701528_20283600'
886
+
887
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
888
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
889
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.9ms)
890
+
891
+
892
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:13:47 +0400
893
+
894
+ LoadError (Expected /home/ivan/projects/no-ie6-rails/app/helpers/no_ie6_helper.rb to define NoIe6Helper):
895
+ app/controllers/application_controller.rb:1:in `<top (required)>'
896
+ app/controllers/welcome_controller.rb:1:in `<top (required)>'
897
+
898
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
899
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
900
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.9ms)
901
+
902
+
903
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:13:48 +0400
904
+
905
+ LoadError (Expected /home/ivan/projects/no-ie6-rails/app/helpers/no_ie6_helper.rb to define NoIe6Helper):
906
+ app/controllers/application_controller.rb:1:in `<top (required)>'
907
+ app/controllers/welcome_controller.rb:1:in `<top (required)>'
908
+
909
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
910
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
911
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.6ms)
912
+
913
+
914
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:13:48 +0400
915
+
916
+ LoadError (Expected /home/ivan/projects/no-ie6-rails/app/helpers/no_ie6_helper.rb to define NoIe6Helper):
917
+ app/controllers/application_controller.rb:1:in `<top (required)>'
918
+ app/controllers/welcome_controller.rb:1:in `<top (required)>'
919
+
920
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
921
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
922
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.1ms)
923
+
924
+
925
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:13:48 +0400
926
+
927
+ LoadError (Expected /home/ivan/projects/no-ie6-rails/app/helpers/no_ie6_helper.rb to define NoIe6Helper):
928
+ app/controllers/application_controller.rb:1:in `<top (required)>'
929
+ app/controllers/welcome_controller.rb:1:in `<top (required)>'
930
+
931
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (41.2ms)
932
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
933
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (44.2ms)
934
+
935
+
936
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
937
+ Processing by WelcomeController#index as HTML
938
+ Rendered welcome/index.html.erb within layouts/application (0.5ms)
939
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
940
+
941
+
942
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
943
+ Served asset /application.css - 200 OK (0ms)
944
+
945
+
946
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
947
+ Served asset /welcome.css - 200 OK (1ms)
948
+
949
+
950
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
951
+ Served asset /welcome.js - 200 OK (8ms)
952
+
953
+
954
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
955
+ Served asset /jquery.js - 200 OK (12ms)
956
+
957
+
958
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
959
+ Served asset /jquery_ujs.js - 200 OK (2ms)
960
+
961
+
962
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
963
+ Served asset /browser_chrome.gif - 200 OK (2ms)
964
+
965
+
966
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
967
+ Served asset /browser_firefox.gif - 200 OK (19ms)
968
+
969
+
970
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
971
+ Served asset /browser_safari.gif - 200 OK (1ms)
972
+
973
+
974
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
975
+ Served asset /browser_ie.gif - 200 OK (1ms)
976
+
977
+
978
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
979
+ Served asset /browser_opera.gif - 200 OK (2ms)
980
+
981
+
982
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:13:58 +0400
983
+ Served asset /application.js - 200 OK (0ms)
984
+
985
+
986
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:16:36 +0400
987
+ Processing by WelcomeController#index as HTML
988
+ Rendered welcome/index.html.erb within layouts/application (84.6ms)
989
+ Completed 500 Internal Server Error in 109ms
990
+
991
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x0000000434e028>:0x000000043388e0>):
992
+ 9:
993
+ 10: <section>
994
+ 11: <p>You should see no ie6 notice</p>
995
+ 12: <%= no_ie6_notice %>
996
+ 13: </section>
997
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2637351110743928609_30095940'
998
+
999
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1000
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1001
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.7ms)
1002
+
1003
+
1004
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:16:37 +0400
1005
+ Processing by WelcomeController#index as HTML
1006
+ Rendered welcome/index.html.erb within layouts/application (45.7ms)
1007
+ Completed 500 Internal Server Error in 52ms
1008
+
1009
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x000000047818e8>:0x00000004779dc8>):
1010
+ 9:
1011
+ 10: <section>
1012
+ 11: <p>You should see no ie6 notice</p>
1013
+ 12: <%= no_ie6_notice %>
1014
+ 13: </section>
1015
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2637351110743928609_30095940'
1016
+
1017
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1018
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1019
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms)
1020
+
1021
+
1022
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:16:38 +0400
1023
+ Processing by WelcomeController#index as HTML
1024
+ Rendered welcome/index.html.erb within layouts/application (68.9ms)
1025
+ Completed 500 Internal Server Error in 75ms
1026
+
1027
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x00000003d7d8b0>:0x00000003d6ebd0>):
1028
+ 9:
1029
+ 10: <section>
1030
+ 11: <p>You should see no ie6 notice</p>
1031
+ 12: <%= no_ie6_notice %>
1032
+ 13: </section>
1033
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2637351110743928609_30095940'
1034
+
1035
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1036
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1037
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.4ms)
1038
+
1039
+
1040
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:16:39 +0400
1041
+ Processing by WelcomeController#index as HTML
1042
+ Rendered welcome/index.html.erb within layouts/application (34.2ms)
1043
+ Completed 500 Internal Server Error in 40ms
1044
+
1045
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x00000004771c68>:0x000000047671a0>):
1046
+ 9:
1047
+ 10: <section>
1048
+ 11: <p>You should see no ie6 notice</p>
1049
+ 12: <%= no_ie6_notice %>
1050
+ 13: </section>
1051
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2637351110743928609_30095940'
1052
+
1053
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1054
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1055
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.7ms)
1056
+
1057
+
1058
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:16:40 +0400
1059
+ Processing by WelcomeController#index as HTML
1060
+ Rendered welcome/index.html.erb within layouts/application (69.5ms)
1061
+ Completed 500 Internal Server Error in 75ms
1062
+
1063
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x00000003d20e58>:0x00000003d162a0>):
1064
+ 9:
1065
+ 10: <section>
1066
+ 11: <p>You should see no ie6 notice</p>
1067
+ 12: <%= no_ie6_notice %>
1068
+ 13: </section>
1069
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2637351110743928609_30095940'
1070
+
1071
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1072
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1073
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.5ms)
1074
+
1075
+
1076
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:20:36 +0400
1077
+ Processing by WelcomeController#index as HTML
1078
+ Rendered welcome/index.html.erb within layouts/application (30.7ms)
1079
+ Completed 500 Internal Server Error in 37ms
1080
+
1081
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x0000000471bb38>:0x00000004712bc8>):
1082
+ 9:
1083
+ 10: <section>
1084
+ 11: <p>You should see no ie6 notice</p>
1085
+ 12: <%= no_ie6_notice %>
1086
+ 13: </section>
1087
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2637351110743928609_30095940'
1088
+
1089
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1090
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1091
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.4ms)
1092
+
1093
+
1094
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:20:37 +0400
1095
+ Processing by WelcomeController#index as HTML
1096
+ Rendered welcome/index.html.erb within layouts/application (31.5ms)
1097
+ Completed 500 Internal Server Error in 36ms
1098
+
1099
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x0000000525d000>:0x00000005253a50>):
1100
+ 9:
1101
+ 10: <section>
1102
+ 11: <p>You should see no ie6 notice</p>
1103
+ 12: <%= no_ie6_notice %>
1104
+ 13: </section>
1105
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2637351110743928609_30095940'
1106
+
1107
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1108
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1109
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.5ms)
1110
+
1111
+
1112
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:20:38 +0400
1113
+ Processing by WelcomeController#index as HTML
1114
+ Rendered welcome/index.html.erb within layouts/application (31.2ms)
1115
+ Completed 500 Internal Server Error in 37ms
1116
+
1117
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x000000046886f8>:0x0000000467dfc8>):
1118
+ 9:
1119
+ 10: <section>
1120
+ 11: <p>You should see no ie6 notice</p>
1121
+ 12: <%= no_ie6_notice %>
1122
+ 13: </section>
1123
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2637351110743928609_30095940'
1124
+
1125
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1126
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
1127
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (44.6ms)
1128
+
1129
+
1130
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:20:39 +0400
1131
+ Processing by WelcomeController#index as HTML
1132
+ Rendered welcome/index.html.erb within layouts/application (51.4ms)
1133
+ Completed 500 Internal Server Error in 57ms
1134
+
1135
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x00000004f596d8>:0x00000004f541d8>):
1136
+ 9:
1137
+ 10: <section>
1138
+ 11: <p>You should see no ie6 notice</p>
1139
+ 12: <%= no_ie6_notice %>
1140
+ 13: </section>
1141
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb___2637351110743928609_30095940'
1142
+
1143
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1144
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1145
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.1ms)
1146
+
1147
+
1148
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:20:46 +0400
1149
+ Processing by WelcomeController#index as HTML
1150
+ Rendered welcome/index.html.erb within layouts/application (89.5ms)
1151
+ Completed 500 Internal Server Error in 114ms
1152
+
1153
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x00000003f667a8>:0x00000003f50a48>):
1154
+ 9:
1155
+ 10: <section>
1156
+ 11: <p>You should see no ie6 notice</p>
1157
+ 12: <%= no_ie6_notice %>
1158
+ 13: </section>
1159
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb__616363296821223181_28757640'
1160
+
1161
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1162
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1163
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.0ms)
1164
+
1165
+
1166
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:20:48 +0400
1167
+ Processing by WelcomeController#index as HTML
1168
+ Rendered welcome/index.html.erb within layouts/application (33.9ms)
1169
+ Completed 500 Internal Server Error in 39ms
1170
+
1171
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x00000004395888>:0x0000000438ea38>):
1172
+ 9:
1173
+ 10: <section>
1174
+ 11: <p>You should see no ie6 notice</p>
1175
+ 12: <%= no_ie6_notice %>
1176
+ 13: </section>
1177
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb__616363296821223181_28757640'
1178
+
1179
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1180
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1181
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.9ms)
1182
+
1183
+
1184
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:20:49 +0400
1185
+ Processing by WelcomeController#index as HTML
1186
+ Rendered welcome/index.html.erb within layouts/application (71.6ms)
1187
+ Completed 500 Internal Server Error in 94ms
1188
+
1189
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x000000039956a8>:0x0000000398d8b8>):
1190
+ 9:
1191
+ 10: <section>
1192
+ 11: <p>You should see no ie6 notice</p>
1193
+ 12: <%= no_ie6_notice %>
1194
+ 13: </section>
1195
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb__616363296821223181_28757640'
1196
+
1197
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1198
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1199
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.6ms)
1200
+
1201
+
1202
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:20:49 +0400
1203
+ Processing by WelcomeController#index as HTML
1204
+ Rendered welcome/index.html.erb within layouts/application (31.3ms)
1205
+ Completed 500 Internal Server Error in 37ms
1206
+
1207
+ ActionView::Template::Error (undefined local variable or method `no_ie6_notice' for #<#<Class:0x000000043882a0>:0x0000000437f380>):
1208
+ 9:
1209
+ 10: <section>
1210
+ 11: <p>You should see no ie6 notice</p>
1211
+ 12: <%= no_ie6_notice %>
1212
+ 13: </section>
1213
+ app/views/welcome/index.html.erb:12:in `_app_views_welcome_index_html_erb__616363296821223181_28757640'
1214
+
1215
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1216
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1217
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.5ms)
1218
+
1219
+
1220
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:21:07 +0400
1221
+ Processing by WelcomeController#index as HTML
1222
+ Rendered welcome/index.html.erb within layouts/application (0.4ms)
1223
+ Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
1224
+
1225
+
1226
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:21:07 +0400
1227
+ Served asset /application.css - 304 Not Modified (0ms)
1228
+
1229
+
1230
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:21:07 +0400
1231
+ Served asset /jquery_ujs.js - 304 Not Modified (10ms)
1232
+
1233
+
1234
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:21:07 +0400
1235
+ Served asset /application.js - 304 Not Modified (0ms)
1236
+
1237
+
1238
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:21:07 +0400
1239
+ Served asset /jquery.js - 304 Not Modified (1ms)
1240
+
1241
+
1242
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:21:07 +0400
1243
+ Served asset /welcome.js - 304 Not Modified (1ms)
1244
+
1245
+
1246
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:21:07 +0400
1247
+ Served asset /welcome.css - 304 Not Modified (1ms)
1248
+
1249
+
1250
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:21:08 +0400
1251
+ Served asset /browser_firefox.gif - 304 Not Modified (1ms)
1252
+
1253
+
1254
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:21:08 +0400
1255
+ Served asset /browser_opera.gif - 304 Not Modified (1ms)
1256
+
1257
+
1258
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:21:08 +0400
1259
+ Served asset /browser_safari.gif - 304 Not Modified (1ms)
1260
+
1261
+
1262
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:21:08 +0400
1263
+ Served asset /browser_chrome.gif - 304 Not Modified (1ms)
1264
+
1265
+
1266
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:21:08 +0400
1267
+ Served asset /browser_ie.gif - 304 Not Modified (3ms)
1268
+
1269
+
1270
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:25:26 +0400
1271
+ Processing by WelcomeController#index as HTML
1272
+ Compiled no_ie6.js (0ms) (pid 10560)
1273
+ Rendered welcome/index.html.erb within layouts/application (14.9ms)
1274
+ Completed 200 OK in 89ms (Views: 88.6ms | ActiveRecord: 0.0ms)
1275
+
1276
+
1277
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1278
+ Served asset /application.css - 304 Not Modified (0ms)
1279
+
1280
+
1281
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1282
+ Served asset /welcome.css - 304 Not Modified (1ms)
1283
+
1284
+
1285
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1286
+ Served asset /jquery.js - 304 Not Modified (2ms)
1287
+
1288
+
1289
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1290
+ Served asset /welcome.js - 304 Not Modified (1ms)
1291
+
1292
+
1293
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1294
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1295
+
1296
+
1297
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1298
+ Served asset /application.js - 304 Not Modified (0ms)
1299
+
1300
+
1301
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1302
+ Served asset /browser_firefox.gif - 304 Not Modified (4ms)
1303
+
1304
+
1305
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1306
+ Served asset /browser_opera.gif - 304 Not Modified (1ms)
1307
+
1308
+
1309
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1310
+ Served asset /browser_ie.gif - 304 Not Modified (3ms)
1311
+
1312
+
1313
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1314
+ Served asset /browser_chrome.gif - 304 Not Modified (1ms)
1315
+
1316
+
1317
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:25:27 +0400
1318
+ Served asset /browser_safari.gif - 304 Not Modified (1ms)
1319
+
1320
+
1321
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:25:29 +0400
1322
+ Processing by WelcomeController#index as HTML
1323
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1324
+ Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
1325
+
1326
+
1327
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:25:29 +0400
1328
+ Served asset /application.css - 304 Not Modified (0ms)
1329
+
1330
+
1331
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:25:29 +0400
1332
+ Served asset /jquery.js - 304 Not Modified (0ms)
1333
+
1334
+
1335
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:25:29 +0400
1336
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1337
+
1338
+
1339
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:25:29 +0400
1340
+ Served asset /welcome.css - 304 Not Modified (0ms)
1341
+
1342
+
1343
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:25:29 +0400
1344
+ Served asset /welcome.js - 304 Not Modified (0ms)
1345
+
1346
+
1347
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:25:29 +0400
1348
+ Served asset /application.js - 304 Not Modified (0ms)
1349
+
1350
+
1351
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:25:30 +0400
1352
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
1353
+
1354
+
1355
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:25:30 +0400
1356
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
1357
+
1358
+
1359
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:25:30 +0400
1360
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
1361
+
1362
+
1363
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:25:30 +0400
1364
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
1365
+
1366
+
1367
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:25:30 +0400
1368
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
1369
+
1370
+
1371
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1372
+ Processing by WelcomeController#index as */*
1373
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
1374
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
1375
+
1376
+
1377
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1378
+ Served asset /application.css - 200 OK (0ms)
1379
+
1380
+
1381
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1382
+ Served asset /welcome.css - 200 OK (0ms)
1383
+
1384
+
1385
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1386
+ Served asset /jquery.js - 200 OK (0ms)
1387
+
1388
+
1389
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1390
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1391
+
1392
+
1393
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1394
+ Served asset /welcome.js - 200 OK (1ms)
1395
+
1396
+
1397
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1398
+ Served asset /application.js - 200 OK (0ms)
1399
+
1400
+
1401
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1402
+ Served asset /browser_chrome.gif - 200 OK (0ms)
1403
+
1404
+
1405
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1406
+ Served asset /browser_firefox.gif - 200 OK (0ms)
1407
+
1408
+
1409
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1410
+ Served asset /browser_opera.gif - 200 OK (0ms)
1411
+
1412
+
1413
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1414
+ Served asset /browser_safari.gif - 200 OK (0ms)
1415
+
1416
+
1417
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1418
+ Served asset /no_ie6.js - 200 OK (0ms)
1419
+
1420
+
1421
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:26:54 +0400
1422
+ Served asset /browser_ie.gif - 200 OK (0ms)
1423
+
1424
+
1425
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1426
+ Processing by WelcomeController#index as */*
1427
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1428
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
1429
+
1430
+
1431
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1432
+ Served asset /application.css - 200 OK (0ms)
1433
+
1434
+
1435
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1436
+ Served asset /jquery.js - 200 OK (0ms)
1437
+
1438
+
1439
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1440
+ Served asset /welcome.css - 200 OK (0ms)
1441
+
1442
+
1443
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1444
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1445
+
1446
+
1447
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1448
+ Served asset /welcome.js - 200 OK (0ms)
1449
+
1450
+
1451
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1452
+ Served asset /application.js - 200 OK (0ms)
1453
+
1454
+
1455
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1456
+ Served asset /browser_firefox.gif - 200 OK (0ms)
1457
+
1458
+
1459
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1460
+ Served asset /browser_ie.gif - 200 OK (0ms)
1461
+
1462
+
1463
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1464
+ Served asset /browser_opera.gif - 200 OK (0ms)
1465
+
1466
+
1467
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1468
+ Served asset /no_ie6.js - 200 OK (0ms)
1469
+
1470
+
1471
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1472
+ Served asset /browser_chrome.gif - 200 OK (0ms)
1473
+
1474
+
1475
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:27:04 +0400
1476
+ Served asset /browser_safari.gif - 200 OK (0ms)
1477
+
1478
+
1479
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:27:34 +0400
1480
+ Processing by WelcomeController#index as HTML
1481
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1482
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
1483
+
1484
+
1485
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1486
+ Served asset /application.css - 304 Not Modified (0ms)
1487
+
1488
+
1489
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1490
+ Served asset /application.js - 304 Not Modified (0ms)
1491
+
1492
+
1493
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1494
+ Served asset /welcome.css - 304 Not Modified (0ms)
1495
+
1496
+
1497
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1498
+ Served asset /jquery.js - 304 Not Modified (0ms)
1499
+
1500
+
1501
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1502
+ Served asset /welcome.js - 304 Not Modified (0ms)
1503
+
1504
+
1505
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1506
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1507
+
1508
+
1509
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1510
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
1511
+
1512
+
1513
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1514
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
1515
+
1516
+
1517
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1518
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
1519
+
1520
+
1521
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1522
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
1523
+
1524
+
1525
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:27:35 +0400
1526
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
1527
+
1528
+
1529
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1530
+ Processing by WelcomeController#index as HTML
1531
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1532
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
1533
+
1534
+
1535
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1536
+ Served asset /application.css - 304 Not Modified (0ms)
1537
+
1538
+
1539
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1540
+ Served asset /welcome.js - 304 Not Modified (0ms)
1541
+
1542
+
1543
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1544
+ Served asset /jquery.js - 304 Not Modified (0ms)
1545
+
1546
+
1547
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1548
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1549
+
1550
+
1551
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1552
+ Served asset /application.js - 304 Not Modified (0ms)
1553
+
1554
+
1555
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1556
+ Served asset /welcome.css - 304 Not Modified (0ms)
1557
+
1558
+
1559
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1560
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
1561
+
1562
+
1563
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1564
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
1565
+
1566
+
1567
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1568
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
1569
+
1570
+
1571
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1572
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
1573
+
1574
+
1575
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:27:36 +0400
1576
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
1577
+
1578
+
1579
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1580
+ Processing by WelcomeController#index as HTML
1581
+ Rendered welcome/index.html.erb within layouts/application (1.2ms)
1582
+ Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
1583
+
1584
+
1585
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1586
+ Served asset /application.css - 304 Not Modified (0ms)
1587
+
1588
+
1589
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1590
+ Served asset /welcome.css - 304 Not Modified (0ms)
1591
+
1592
+
1593
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1594
+ Served asset /welcome.js - 304 Not Modified (0ms)
1595
+
1596
+
1597
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1598
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1599
+
1600
+
1601
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1602
+ Served asset /jquery.js - 304 Not Modified (0ms)
1603
+
1604
+
1605
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1606
+ Served asset /application.js - 304 Not Modified (0ms)
1607
+
1608
+
1609
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1610
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
1611
+
1612
+
1613
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1614
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
1615
+
1616
+
1617
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1618
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
1619
+
1620
+
1621
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1622
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
1623
+
1624
+
1625
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:27:38 +0400
1626
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
1627
+
1628
+
1629
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:27:49 +0400
1630
+ Processing by WelcomeController#index as HTML
1631
+ Rendered welcome/index.html.erb within layouts/application (12.3ms)
1632
+ Completed 200 OK in 46ms (Views: 46.1ms | ActiveRecord: 0.0ms)
1633
+
1634
+
1635
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1636
+ Served asset /application.css - 304 Not Modified (0ms)
1637
+
1638
+
1639
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1640
+ Served asset /welcome.css - 304 Not Modified (1ms)
1641
+
1642
+
1643
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1644
+ Served asset /jquery.js - 304 Not Modified (8ms)
1645
+
1646
+
1647
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1648
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
1649
+
1650
+
1651
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1652
+ Served asset /welcome.js - 304 Not Modified (1ms)
1653
+
1654
+
1655
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1656
+ Served asset /application.js - 304 Not Modified (0ms)
1657
+
1658
+
1659
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1660
+ Served asset /no_ie6.js - 200 OK (0ms)
1661
+
1662
+
1663
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1664
+ Served asset /browser_firefox.gif - 304 Not Modified (1ms)
1665
+
1666
+
1667
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1668
+ Served asset /browser_opera.gif - 304 Not Modified (1ms)
1669
+
1670
+
1671
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1672
+ Served asset /browser_chrome.gif - 304 Not Modified (1ms)
1673
+
1674
+
1675
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1676
+ Served asset /browser_ie.gif - 304 Not Modified (1ms)
1677
+
1678
+
1679
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1680
+ Served asset /browser_safari.gif - 304 Not Modified (1ms)
1681
+
1682
+
1683
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1684
+ Processing by WelcomeController#index as HTML
1685
+ Rendered welcome/index.html.erb within layouts/application (1.7ms)
1686
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
1687
+
1688
+
1689
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1690
+ Served asset /jquery.js - 304 Not Modified (0ms)
1691
+
1692
+
1693
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1694
+ Served asset /welcome.js - 304 Not Modified (0ms)
1695
+
1696
+
1697
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1698
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1699
+
1700
+
1701
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1702
+ Served asset /application.js - 304 Not Modified (0ms)
1703
+
1704
+
1705
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1706
+ Served asset /welcome.css - 304 Not Modified (0ms)
1707
+
1708
+
1709
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1710
+ Served asset /no_ie6.js - 304 Not Modified (0ms)
1711
+
1712
+
1713
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:27:50 +0400
1714
+ Served asset /application.css - 304 Not Modified (0ms)
1715
+
1716
+
1717
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:27:51 +0400
1718
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
1719
+
1720
+
1721
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:27:51 +0400
1722
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
1723
+
1724
+
1725
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:27:51 +0400
1726
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
1727
+
1728
+
1729
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:27:51 +0400
1730
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
1731
+
1732
+
1733
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:27:51 +0400
1734
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
1735
+
1736
+
1737
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1738
+ Processing by WelcomeController#index as HTML
1739
+ Rendered welcome/index.html.erb within layouts/application (1.5ms)
1740
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
1741
+
1742
+
1743
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1744
+ Served asset /application.css - 304 Not Modified (0ms)
1745
+
1746
+
1747
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1748
+ Served asset /no_ie6.js - 304 Not Modified (0ms)
1749
+
1750
+
1751
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1752
+ Served asset /welcome.css - 304 Not Modified (0ms)
1753
+
1754
+
1755
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1756
+ Served asset /application.js - 304 Not Modified (0ms)
1757
+
1758
+
1759
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1760
+ Served asset /jquery.js - 304 Not Modified (0ms)
1761
+
1762
+
1763
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1764
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1765
+
1766
+
1767
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1768
+ Served asset /welcome.js - 304 Not Modified (0ms)
1769
+
1770
+
1771
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1772
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
1773
+
1774
+
1775
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1776
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
1777
+
1778
+
1779
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1780
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
1781
+
1782
+
1783
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1784
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
1785
+
1786
+
1787
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:28:28 +0400
1788
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
1789
+
1790
+
1791
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1792
+ Processing by WelcomeController#index as HTML
1793
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1794
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
1795
+
1796
+
1797
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1798
+ Served asset /application.css - 304 Not Modified (0ms)
1799
+
1800
+
1801
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1802
+ Served asset /welcome.css - 304 Not Modified (0ms)
1803
+
1804
+
1805
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1806
+ Served asset /jquery.js - 304 Not Modified (0ms)
1807
+
1808
+
1809
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1810
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1811
+
1812
+
1813
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1814
+ Served asset /welcome.js - 304 Not Modified (0ms)
1815
+
1816
+
1817
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1818
+ Served asset /application.js - 304 Not Modified (0ms)
1819
+
1820
+
1821
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1822
+ Served asset /no_ie6.js - 304 Not Modified (0ms)
1823
+
1824
+
1825
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1826
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
1827
+
1828
+
1829
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1830
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
1831
+
1832
+
1833
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1834
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
1835
+
1836
+
1837
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1838
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
1839
+
1840
+
1841
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1842
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
1843
+
1844
+
1845
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:28:30 +0400
1846
+ Processing by WelcomeController#index as HTML
1847
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1848
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
1849
+
1850
+
1851
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1852
+ Served asset /application.css - 304 Not Modified (0ms)
1853
+
1854
+
1855
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1856
+ Served asset /welcome.css - 304 Not Modified (0ms)
1857
+
1858
+
1859
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1860
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1861
+
1862
+
1863
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1864
+ Served asset /application.js - 304 Not Modified (0ms)
1865
+
1866
+
1867
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1868
+ Served asset /no_ie6.js - 304 Not Modified (0ms)
1869
+
1870
+
1871
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1872
+ Served asset /welcome.js - 304 Not Modified (0ms)
1873
+
1874
+
1875
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1876
+ Served asset /jquery.js - 304 Not Modified (0ms)
1877
+
1878
+
1879
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1880
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
1881
+
1882
+
1883
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1884
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
1885
+
1886
+
1887
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1888
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
1889
+
1890
+
1891
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1892
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
1893
+
1894
+
1895
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:28:31 +0400
1896
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
1897
+
1898
+
1899
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:29:19 +0400
1900
+ Processing by WelcomeController#index as HTML
1901
+ Rendered welcome/index.html.erb within layouts/application (11.4ms)
1902
+ Completed 200 OK in 47ms (Views: 46.3ms | ActiveRecord: 0.0ms)
1903
+
1904
+
1905
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1906
+ Served asset /application.css - 304 Not Modified (0ms)
1907
+
1908
+
1909
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1910
+ Served asset /no_ie6.js - 304 Not Modified (0ms)
1911
+
1912
+
1913
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1914
+ Served asset /welcome.css - 304 Not Modified (7ms)
1915
+
1916
+
1917
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1918
+ Served asset /application.js - 304 Not Modified (0ms)
1919
+
1920
+
1921
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1922
+ Served asset /jquery.js - 304 Not Modified (2ms)
1923
+
1924
+
1925
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1926
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1927
+
1928
+
1929
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1930
+ Served asset /welcome.js - 304 Not Modified (1ms)
1931
+
1932
+
1933
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1934
+ Served asset /browser_firefox.gif - 304 Not Modified (1ms)
1935
+
1936
+
1937
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1938
+ Served asset /browser_chrome.gif - 304 Not Modified (1ms)
1939
+
1940
+
1941
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1942
+ Served asset /browser_opera.gif - 304 Not Modified (1ms)
1943
+
1944
+
1945
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1946
+ Served asset /browser_ie.gif - 304 Not Modified (1ms)
1947
+
1948
+
1949
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:29:20 +0400
1950
+ Served asset /browser_safari.gif - 304 Not Modified (1ms)
1951
+
1952
+
1953
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:29:21 +0400
1954
+ Processing by WelcomeController#index as HTML
1955
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1956
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
1957
+
1958
+
1959
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:29:21 +0400
1960
+ Served asset /application.css - 304 Not Modified (0ms)
1961
+
1962
+
1963
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:21 +0400
1964
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1965
+
1966
+
1967
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:29:21 +0400
1968
+ Served asset /welcome.css - 304 Not Modified (0ms)
1969
+
1970
+
1971
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:21 +0400
1972
+ Served asset /jquery.js - 304 Not Modified (0ms)
1973
+
1974
+
1975
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:21 +0400
1976
+ Served asset /welcome.js - 304 Not Modified (0ms)
1977
+
1978
+
1979
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:21 +0400
1980
+ Served asset /application.js - 304 Not Modified (0ms)
1981
+
1982
+
1983
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:21 +0400
1984
+ Served asset /no_ie6.js - 304 Not Modified (0ms)
1985
+
1986
+
1987
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:29:22 +0400
1988
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
1989
+
1990
+
1991
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:29:22 +0400
1992
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
1993
+
1994
+
1995
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:29:22 +0400
1996
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
1997
+
1998
+
1999
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:29:22 +0400
2000
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
2001
+
2002
+
2003
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:29:22 +0400
2004
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
2005
+
2006
+
2007
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:29:42 +0400
2008
+ Processing by WelcomeController#index as HTML
2009
+ Compiled no_ie6.js (2ms) (pid 16511)
2010
+ Rendered welcome/index.html.erb within layouts/application (17.3ms)
2011
+ Completed 200 OK in 88ms (Views: 87.2ms | ActiveRecord: 0.0ms)
2012
+
2013
+
2014
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2015
+ Served asset /application.css - 304 Not Modified (0ms)
2016
+
2017
+
2018
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2019
+ Served asset /welcome.css - 304 Not Modified (1ms)
2020
+
2021
+
2022
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2023
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2024
+
2025
+
2026
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2027
+ Served asset /welcome.js - 304 Not Modified (1ms)
2028
+
2029
+
2030
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2031
+ Served asset /jquery.js - 304 Not Modified (2ms)
2032
+
2033
+
2034
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2035
+ Served asset /application.js - 304 Not Modified (0ms)
2036
+
2037
+
2038
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2039
+ Served asset /no_ie6.js - 304 Not Modified (0ms)
2040
+
2041
+
2042
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2043
+ Served asset /browser_firefox.gif - 304 Not Modified (1ms)
2044
+
2045
+
2046
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2047
+ Served asset /browser_opera.gif - 304 Not Modified (1ms)
2048
+
2049
+
2050
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2051
+ Served asset /browser_ie.gif - 304 Not Modified (7ms)
2052
+
2053
+
2054
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2055
+ Served asset /browser_chrome.gif - 304 Not Modified (2ms)
2056
+
2057
+
2058
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:29:43 +0400
2059
+ Served asset /browser_safari.gif - 304 Not Modified (2ms)
2060
+
2061
+
2062
+ Started GET "/public/assets/no_ie6.js" for 127.0.0.1 at 2011-10-12 01:30:13 +0400
2063
+
2064
+ ActionController::RoutingError (No route matches [GET] "/public/assets/no_ie6.js"):
2065
+
2066
+
2067
+ Rendered /var/lib/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
2068
+
2069
+
2070
+ Started GET "/assets/no_ie6.js" for 127.0.0.1 at 2011-10-12 01:30:22 +0400
2071
+ Served asset /no_ie6.js - 200 OK (0ms)
2072
+
2073
+
2074
+ Started GET "/assets/no_ie6.js" for 127.0.0.1 at 2011-10-12 01:33:03 +0400
2075
+ Compiled no_ie6.js (2ms) (pid 16598)
2076
+ Served asset /no_ie6.js - 200 OK (7ms)
2077
+
2078
+
2079
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:33:09 +0400
2080
+ Processing by WelcomeController#index as HTML
2081
+ Rendered welcome/index.html.erb within layouts/application (8.2ms)
2082
+ Completed 200 OK in 43ms (Views: 42.9ms | ActiveRecord: 0.0ms)
2083
+
2084
+
2085
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2086
+ Served asset /application.css - 304 Not Modified (0ms)
2087
+
2088
+
2089
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2090
+ Served asset /no_ie6.js - 200 OK (0ms)
2091
+
2092
+
2093
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2094
+ Served asset /welcome.css - 304 Not Modified (1ms)
2095
+
2096
+
2097
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2098
+ Served asset /application.js - 304 Not Modified (0ms)
2099
+
2100
+
2101
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2102
+ Served asset /welcome.js - 304 Not Modified (1ms)
2103
+
2104
+
2105
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2106
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2107
+
2108
+
2109
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2110
+ Served asset /jquery.js - 304 Not Modified (1ms)
2111
+
2112
+
2113
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2114
+ Served asset /browser_firefox.gif - 304 Not Modified (1ms)
2115
+
2116
+
2117
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2118
+ Served asset /browser_chrome.gif - 304 Not Modified (7ms)
2119
+
2120
+
2121
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2122
+ Served asset /browser_safari.gif - 304 Not Modified (7ms)
2123
+
2124
+
2125
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2126
+ Served asset /browser_opera.gif - 304 Not Modified (2ms)
2127
+
2128
+
2129
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2130
+ Served asset /browser_ie.gif - 304 Not Modified (1ms)
2131
+
2132
+
2133
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:10 +0400
2134
+ Served asset /background_browser.gif - 200 OK (3ms)
2135
+
2136
+
2137
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2138
+ Processing by WelcomeController#index as */*
2139
+ Rendered welcome/index.html.erb within layouts/application (1.4ms)
2140
+ Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms)
2141
+
2142
+
2143
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2144
+ Served asset /welcome.css - 200 OK (3ms)
2145
+
2146
+
2147
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2148
+ Served asset /application.css - 200 OK (0ms)
2149
+
2150
+
2151
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2152
+ Served asset /jquery.js - 200 OK (1ms)
2153
+
2154
+
2155
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2156
+ Served asset /jquery_ujs.js - 200 OK (0ms)
2157
+
2158
+
2159
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2160
+ Served asset /welcome.js - 200 OK (0ms)
2161
+
2162
+
2163
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2164
+ Served asset /application.js - 200 OK (1ms)
2165
+
2166
+
2167
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2168
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2169
+
2170
+
2171
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2172
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2173
+
2174
+
2175
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2176
+ Served asset /browser_opera.gif - 200 OK (0ms)
2177
+
2178
+
2179
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2180
+ Served asset /browser_safari.gif - 200 OK (0ms)
2181
+
2182
+
2183
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2184
+ Served asset /no_ie6.js - 200 OK (0ms)
2185
+
2186
+
2187
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2188
+ Served asset /browser_ie.gif - 200 OK (0ms)
2189
+
2190
+
2191
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2192
+ Served asset /background_browser.gif - 200 OK (0ms)
2193
+
2194
+
2195
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2196
+ Served asset /browser_ie.gif - 200 OK (0ms)
2197
+
2198
+
2199
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2200
+ Served asset /background_browser.gif - 200 OK (0ms)
2201
+
2202
+
2203
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2204
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2205
+
2206
+
2207
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2208
+ Served asset /background_browser.gif - 200 OK (0ms)
2209
+
2210
+
2211
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2212
+ Served asset /browser_safari.gif - 200 OK (0ms)
2213
+
2214
+
2215
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2216
+ Served asset /browser_opera.gif - 200 OK (0ms)
2217
+
2218
+
2219
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2220
+ Served asset /background_browser.gif - 200 OK (0ms)
2221
+
2222
+
2223
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2224
+ Served asset /background_browser.gif - 200 OK (0ms)
2225
+
2226
+
2227
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2228
+ Served asset /browser_ie.gif - 200 OK (0ms)
2229
+
2230
+
2231
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2232
+ Served asset /background_browser.gif - 200 OK (0ms)
2233
+
2234
+
2235
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2236
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2237
+
2238
+
2239
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2240
+ Served asset /background_browser.gif - 200 OK (0ms)
2241
+
2242
+
2243
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2244
+ Served asset /browser_safari.gif - 200 OK (0ms)
2245
+
2246
+
2247
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2248
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2249
+
2250
+
2251
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2252
+ Served asset /browser_opera.gif - 200 OK (0ms)
2253
+
2254
+
2255
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2256
+ Served asset /background_browser.gif - 200 OK (0ms)
2257
+
2258
+
2259
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2260
+ Served asset /background_browser.gif - 200 OK (0ms)
2261
+
2262
+
2263
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2264
+ Served asset /browser_safari.gif - 200 OK (0ms)
2265
+
2266
+
2267
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2268
+ Served asset /background_browser.gif - 200 OK (0ms)
2269
+
2270
+
2271
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2272
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2273
+
2274
+
2275
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2276
+ Served asset /browser_ie.gif - 200 OK (0ms)
2277
+
2278
+
2279
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2280
+ Served asset /background_browser.gif - 200 OK (0ms)
2281
+
2282
+
2283
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2284
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2285
+
2286
+
2287
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2288
+ Served asset /background_browser.gif - 200 OK (0ms)
2289
+
2290
+
2291
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2292
+ Served asset /background_browser.gif - 200 OK (0ms)
2293
+
2294
+
2295
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:19 +0400
2296
+ Served asset /background_browser.gif - 200 OK (0ms)
2297
+
2298
+
2299
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:33:22 +0400
2300
+ Served asset /browser_opera.gif - 200 OK (0ms)
2301
+
2302
+
2303
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:33:22 +0400
2304
+ Served asset /background_browser.gif - 200 OK (0ms)
2305
+
2306
+
2307
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:33:22 +0400
2308
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2309
+
2310
+
2311
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:34:16 +0400
2312
+ Processing by WelcomeController#index as HTML
2313
+ Compiled no_ie6.js (2ms) (pid 16699)
2314
+ Rendered welcome/index.html.erb within layouts/application (15.4ms)
2315
+ Completed 200 OK in 88ms (Views: 87.8ms | ActiveRecord: 0.0ms)
2316
+
2317
+
2318
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2319
+ Processing by WelcomeController#index as HTML
2320
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2321
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
2322
+
2323
+
2324
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2325
+ Served asset /application.css - 304 Not Modified (0ms)
2326
+
2327
+
2328
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2329
+ Served asset /welcome.css - 304 Not Modified (1ms)
2330
+
2331
+
2332
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2333
+ Served asset /application.js - 304 Not Modified (1ms)
2334
+
2335
+
2336
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2337
+ Served asset /welcome.js - 304 Not Modified (3ms)
2338
+
2339
+
2340
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2341
+ Served asset /jquery.js - 304 Not Modified (2ms)
2342
+
2343
+
2344
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2345
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2346
+
2347
+
2348
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2349
+ Served asset /no_ie6.js - 200 OK (0ms)
2350
+
2351
+
2352
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2353
+ Served asset /browser_firefox.gif - 304 Not Modified (1ms)
2354
+
2355
+
2356
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2357
+ Served asset /browser_chrome.gif - 304 Not Modified (1ms)
2358
+
2359
+
2360
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2361
+ Served asset /browser_ie.gif - 304 Not Modified (2ms)
2362
+
2363
+
2364
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2365
+ Served asset /browser_safari.gif - 304 Not Modified (1ms)
2366
+
2367
+
2368
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2369
+ Served asset /browser_opera.gif - 304 Not Modified (3ms)
2370
+
2371
+
2372
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:34:17 +0400
2373
+ Served asset /background_browser.gif - 304 Not Modified (1ms)
2374
+
2375
+
2376
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:34:27 +0400
2377
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
2378
+
2379
+
2380
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:35:26 +0400
2381
+ Processing by WelcomeController#index as HTML
2382
+ Compiled no_ie6.js (2ms) (pid 16732)
2383
+ Rendered welcome/index.html.erb within layouts/application (15.4ms)
2384
+ Completed 200 OK in 50ms (Views: 49.9ms | ActiveRecord: 0.0ms)
2385
+
2386
+
2387
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:35:26 +0400
2388
+ Served asset /application.css - 304 Not Modified (0ms)
2389
+
2390
+
2391
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:35:26 +0400
2392
+ Served asset /welcome.css - 304 Not Modified (1ms)
2393
+
2394
+
2395
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:35:26 +0400
2396
+ Served asset /jquery.js - 304 Not Modified (7ms)
2397
+
2398
+
2399
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:35:26 +0400
2400
+ Served asset /application.js - 304 Not Modified (0ms)
2401
+
2402
+
2403
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:35:26 +0400
2404
+ Served asset /welcome.js - 304 Not Modified (3ms)
2405
+
2406
+
2407
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:35:26 +0400
2408
+ Served asset /no_ie6.js - 200 OK (0ms)
2409
+
2410
+
2411
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:35:26 +0400
2412
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2413
+
2414
+
2415
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:27 +0400
2416
+ Served asset /browser_firefox.gif - 304 Not Modified (6ms)
2417
+
2418
+
2419
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:35:27 +0400
2420
+ Served asset /browser_chrome.gif - 304 Not Modified (2ms)
2421
+
2422
+
2423
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:35:27 +0400
2424
+ Served asset /browser_safari.gif - 304 Not Modified (6ms)
2425
+
2426
+
2427
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:35:27 +0400
2428
+ Served asset /browser_opera.gif - 304 Not Modified (1ms)
2429
+
2430
+
2431
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:35:27 +0400
2432
+ Served asset /browser_ie.gif - 304 Not Modified (1ms)
2433
+
2434
+
2435
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:27 +0400
2436
+ Served asset /background_browser.gif - 304 Not Modified (1ms)
2437
+
2438
+
2439
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:35:31 +0400
2440
+ Processing by WelcomeController#index as */*
2441
+ Rendered welcome/index.html.erb within layouts/application (1.5ms)
2442
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
2443
+
2444
+
2445
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:35:31 +0400
2446
+ Served asset /application.css - 200 OK (0ms)
2447
+
2448
+
2449
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:35:31 +0400
2450
+ Served asset /welcome.css - 200 OK (0ms)
2451
+
2452
+
2453
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:35:31 +0400
2454
+ Served asset /jquery.js - 200 OK (0ms)
2455
+
2456
+
2457
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2458
+ Served asset /jquery_ujs.js - 200 OK (0ms)
2459
+
2460
+
2461
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2462
+ Served asset /welcome.js - 200 OK (0ms)
2463
+
2464
+
2465
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2466
+ Served asset /application.js - 200 OK (0ms)
2467
+
2468
+
2469
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2470
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2471
+
2472
+
2473
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2474
+ Served asset /browser_opera.gif - 200 OK (0ms)
2475
+
2476
+
2477
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2478
+ Served asset /browser_ie.gif - 200 OK (0ms)
2479
+
2480
+
2481
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2482
+ Served asset /browser_safari.gif - 200 OK (0ms)
2483
+
2484
+
2485
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2486
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2487
+
2488
+
2489
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2490
+ Served asset /no_ie6.js - 200 OK (0ms)
2491
+
2492
+
2493
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2494
+ Served asset /background_browser.gif - 200 OK (0ms)
2495
+
2496
+
2497
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2498
+ Served asset /browser_ie.gif - 200 OK (0ms)
2499
+
2500
+
2501
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2502
+ Served asset /background_browser.gif - 200 OK (0ms)
2503
+
2504
+
2505
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2506
+ Served asset /background_browser.gif - 200 OK (0ms)
2507
+
2508
+
2509
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2510
+ Served asset /browser_opera.gif - 200 OK (0ms)
2511
+
2512
+
2513
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2514
+ Served asset /background_browser.gif - 200 OK (0ms)
2515
+
2516
+
2517
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2518
+ Served asset /browser_safari.gif - 200 OK (0ms)
2519
+
2520
+
2521
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2522
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2523
+
2524
+
2525
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2526
+ Served asset /background_browser.gif - 200 OK (0ms)
2527
+
2528
+
2529
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2530
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2531
+
2532
+
2533
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2534
+ Served asset /background_browser.gif - 200 OK (0ms)
2535
+
2536
+
2537
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2538
+ Served asset /browser_ie.gif - 200 OK (0ms)
2539
+
2540
+
2541
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2542
+ Served asset /background_browser.gif - 200 OK (0ms)
2543
+
2544
+
2545
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2546
+ Served asset /background_browser.gif - 200 OK (0ms)
2547
+
2548
+
2549
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2550
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2551
+
2552
+
2553
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2554
+ Served asset /browser_safari.gif - 200 OK (0ms)
2555
+
2556
+
2557
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2558
+ Served asset /browser_opera.gif - 200 OK (0ms)
2559
+
2560
+
2561
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2562
+ Served asset /background_browser.gif - 200 OK (0ms)
2563
+
2564
+
2565
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2566
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2567
+
2568
+
2569
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2570
+ Served asset /background_browser.gif - 200 OK (0ms)
2571
+
2572
+
2573
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2574
+ Served asset /background_browser.gif - 200 OK (0ms)
2575
+
2576
+
2577
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2578
+ Served asset /browser_ie.gif - 200 OK (0ms)
2579
+
2580
+
2581
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2582
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2583
+
2584
+
2585
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2586
+ Served asset /background_browser.gif - 200 OK (0ms)
2587
+
2588
+
2589
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2590
+ Served asset /background_browser.gif - 200 OK (0ms)
2591
+
2592
+
2593
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2594
+ Served asset /browser_safari.gif - 200 OK (0ms)
2595
+
2596
+
2597
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2598
+ Served asset /background_browser.gif - 200 OK (0ms)
2599
+
2600
+
2601
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2602
+ Served asset /browser_opera.gif - 200 OK (0ms)
2603
+
2604
+
2605
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2606
+ Served asset /background_browser.gif - 200 OK (0ms)
2607
+
2608
+
2609
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:35:32 +0400
2610
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2611
+
2612
+
2613
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:35:37 +0400
2614
+ Served asset /browser_ie.gif - 200 OK (0ms)
2615
+
2616
+
2617
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:35:38 +0400
2618
+ Served asset /browser_ie.gif - 200 OK (4ms)
2619
+
2620
+
2621
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:38 +0400
2622
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2623
+
2624
+
2625
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:39 +0400
2626
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2627
+
2628
+
2629
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:35:39 +0400
2630
+ Served asset /browser_safari.gif - 200 OK (0ms)
2631
+
2632
+
2633
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:35:40 +0400
2634
+ Served asset /browser_safari.gif - 200 OK (0ms)
2635
+
2636
+
2637
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:35:40 +0400
2638
+ Served asset /browser_opera.gif - 200 OK (0ms)
2639
+
2640
+
2641
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:35:40 +0400
2642
+ Served asset /browser_opera.gif - 200 OK (0ms)
2643
+
2644
+
2645
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:35:40 +0400
2646
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2647
+
2648
+
2649
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:35:40 +0400
2650
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2651
+
2652
+
2653
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:35:40 +0400
2654
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2655
+
2656
+
2657
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:35:41 +0400
2658
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2659
+
2660
+
2661
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:35:41 +0400
2662
+ Served asset /browser_opera.gif - 200 OK (0ms)
2663
+
2664
+
2665
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:35:41 +0400
2666
+ Served asset /browser_opera.gif - 200 OK (0ms)
2667
+
2668
+
2669
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:35:41 +0400
2670
+ Served asset /browser_safari.gif - 200 OK (0ms)
2671
+
2672
+
2673
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:35:41 +0400
2674
+ Served asset /browser_safari.gif - 200 OK (0ms)
2675
+
2676
+
2677
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:41 +0400
2678
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2679
+
2680
+
2681
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:46 +0400
2682
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2683
+
2684
+
2685
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:51 +0400
2686
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2687
+
2688
+
2689
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:35:52 +0400
2690
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2691
+
2692
+
2693
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:36:35 +0400
2694
+ Processing by WelcomeController#index as HTML
2695
+ Rendered welcome/index.html.erb within layouts/application (11.9ms)
2696
+ Completed 200 OK in 48ms (Views: 47.3ms | ActiveRecord: 0.0ms)
2697
+
2698
+
2699
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2700
+ Served asset /application.css - 304 Not Modified (0ms)
2701
+
2702
+
2703
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2704
+ Served asset /welcome.css - 304 Not Modified (1ms)
2705
+
2706
+
2707
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2708
+ Served asset /welcome.js - 304 Not Modified (3ms)
2709
+
2710
+
2711
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2712
+ Served asset /application.js - 304 Not Modified (0ms)
2713
+
2714
+
2715
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2716
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2717
+
2718
+
2719
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2720
+ Served asset /jquery.js - 304 Not Modified (2ms)
2721
+
2722
+
2723
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2724
+ Served asset /browser_firefox.gif - 304 Not Modified (1ms)
2725
+
2726
+
2727
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2728
+ Served asset /browser_opera.gif - 304 Not Modified (1ms)
2729
+
2730
+
2731
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2732
+ Served asset /browser_safari.gif - 304 Not Modified (1ms)
2733
+
2734
+
2735
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2736
+ Served asset /browser_chrome.gif - 304 Not Modified (1ms)
2737
+
2738
+
2739
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:36 +0400
2740
+ Served asset /browser_ie.gif - 304 Not Modified (1ms)
2741
+
2742
+
2743
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2744
+ Processing by WelcomeController#index as HTML
2745
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2746
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
2747
+
2748
+
2749
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2750
+ Served asset /application.css - 304 Not Modified (0ms)
2751
+
2752
+
2753
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2754
+ Served asset /welcome.css - 304 Not Modified (2ms)
2755
+
2756
+
2757
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2758
+ Served asset /jquery.js - 304 Not Modified (0ms)
2759
+
2760
+
2761
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2762
+ Served asset /welcome.js - 304 Not Modified (0ms)
2763
+
2764
+
2765
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2766
+ Served asset /application.js - 304 Not Modified (0ms)
2767
+
2768
+
2769
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2770
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2771
+
2772
+
2773
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2774
+ Served asset /browser_firefox.gif - 304 Not Modified (0ms)
2775
+
2776
+
2777
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2778
+ Served asset /browser_chrome.gif - 304 Not Modified (0ms)
2779
+
2780
+
2781
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2782
+ Served asset /browser_opera.gif - 304 Not Modified (0ms)
2783
+
2784
+
2785
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2786
+ Served asset /browser_safari.gif - 304 Not Modified (0ms)
2787
+
2788
+
2789
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:37 +0400
2790
+ Served asset /browser_ie.gif - 304 Not Modified (0ms)
2791
+
2792
+
2793
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:42 +0400
2794
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2795
+
2796
+
2797
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:36:42 +0400
2798
+ Processing by WelcomeController#index as */*
2799
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
2800
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
2801
+
2802
+
2803
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:42 +0400
2804
+ Served asset /application.css - 200 OK (0ms)
2805
+
2806
+
2807
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2808
+ Served asset /jquery.js - 200 OK (0ms)
2809
+
2810
+
2811
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2812
+ Served asset /welcome.css - 200 OK (0ms)
2813
+
2814
+
2815
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2816
+ Served asset /jquery_ujs.js - 200 OK (0ms)
2817
+
2818
+
2819
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2820
+ Served asset /welcome.js - 200 OK (0ms)
2821
+
2822
+
2823
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2824
+ Served asset /application.js - 200 OK (1ms)
2825
+
2826
+
2827
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2828
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2829
+
2830
+
2831
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2832
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2833
+
2834
+
2835
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2836
+ Served asset /browser_opera.gif - 200 OK (0ms)
2837
+
2838
+
2839
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2840
+ Served asset /browser_safari.gif - 200 OK (0ms)
2841
+
2842
+
2843
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2844
+ Served asset /browser_ie.gif - 200 OK (0ms)
2845
+
2846
+
2847
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2848
+ Served asset /no_ie6.js - 200 OK (0ms)
2849
+
2850
+
2851
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2852
+ Served asset /background_browser.gif - 200 OK (1ms)
2853
+
2854
+
2855
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2856
+ Served asset /background_browser.gif - 200 OK (0ms)
2857
+
2858
+
2859
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2860
+ Served asset /background_browser.gif - 200 OK (0ms)
2861
+
2862
+
2863
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2864
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2865
+
2866
+
2867
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2868
+ Served asset /browser_ie.gif - 200 OK (0ms)
2869
+
2870
+
2871
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2872
+ Served asset /browser_safari.gif - 200 OK (0ms)
2873
+
2874
+
2875
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2876
+ Served asset /background_browser.gif - 200 OK (0ms)
2877
+
2878
+
2879
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2880
+ Served asset /browser_opera.gif - 200 OK (0ms)
2881
+
2882
+
2883
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2884
+ Served asset /background_browser.gif - 200 OK (0ms)
2885
+
2886
+
2887
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2888
+ Served asset /browser_ie.gif - 200 OK (0ms)
2889
+
2890
+
2891
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2892
+ Served asset /background_browser.gif - 200 OK (0ms)
2893
+
2894
+
2895
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2896
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2897
+
2898
+
2899
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2900
+ Served asset /browser_opera.gif - 200 OK (2ms)
2901
+
2902
+
2903
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2904
+ Served asset /background_browser.gif - 200 OK (0ms)
2905
+
2906
+
2907
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2908
+ Served asset /background_browser.gif - 200 OK (0ms)
2909
+
2910
+
2911
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2912
+ Served asset /background_browser.gif - 200 OK (0ms)
2913
+
2914
+
2915
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2916
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2917
+
2918
+
2919
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2920
+ Served asset /browser_safari.gif - 200 OK (0ms)
2921
+
2922
+
2923
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2924
+ Served asset /background_browser.gif - 200 OK (0ms)
2925
+
2926
+
2927
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2928
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2929
+
2930
+
2931
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2932
+ Served asset /browser_ie.gif - 200 OK (0ms)
2933
+
2934
+
2935
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2936
+ Served asset /background_browser.gif - 200 OK (0ms)
2937
+
2938
+
2939
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2940
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2941
+
2942
+
2943
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2944
+ Served asset /background_browser.gif - 200 OK (0ms)
2945
+
2946
+
2947
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2948
+ Served asset /background_browser.gif - 200 OK (0ms)
2949
+
2950
+
2951
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:43 +0400
2952
+ Served asset /browser_safari.gif - 200 OK (0ms)
2953
+
2954
+
2955
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2956
+ Processing by WelcomeController#index as */*
2957
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
2958
+ Completed 200 OK in 52ms (Views: 51.9ms | ActiveRecord: 0.0ms)
2959
+
2960
+
2961
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2962
+ Served asset /application.css - 200 OK (0ms)
2963
+
2964
+
2965
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2966
+ Served asset /jquery.js - 200 OK (0ms)
2967
+
2968
+
2969
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2970
+ Served asset /welcome.css - 200 OK (0ms)
2971
+
2972
+
2973
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2974
+ Served asset /jquery_ujs.js - 200 OK (0ms)
2975
+
2976
+
2977
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2978
+ Served asset /welcome.js - 200 OK (0ms)
2979
+
2980
+
2981
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2982
+ Served asset /application.js - 200 OK (0ms)
2983
+
2984
+
2985
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2986
+ Served asset /browser_firefox.gif - 200 OK (0ms)
2987
+
2988
+
2989
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2990
+ Served asset /browser_opera.gif - 200 OK (0ms)
2991
+
2992
+
2993
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2994
+ Served asset /browser_chrome.gif - 200 OK (0ms)
2995
+
2996
+
2997
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
2998
+ Served asset /no_ie6.js - 200 OK (0ms)
2999
+
3000
+
3001
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
3002
+ Served asset /browser_safari.gif - 200 OK (0ms)
3003
+
3004
+
3005
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:44 +0400
3006
+ Served asset /browser_ie.gif - 200 OK (0ms)
3007
+
3008
+
3009
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3010
+ Served asset /background_browser.gif - 200 OK (0ms)
3011
+
3012
+
3013
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3014
+ Served asset /background_browser.gif - 200 OK (0ms)
3015
+
3016
+
3017
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3018
+ Served asset /browser_ie.gif - 200 OK (0ms)
3019
+
3020
+
3021
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3022
+ Served asset /background_browser.gif - 200 OK (0ms)
3023
+
3024
+
3025
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3026
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3027
+
3028
+
3029
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3030
+ Served asset /browser_safari.gif - 200 OK (0ms)
3031
+
3032
+
3033
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3034
+ Served asset /background_browser.gif - 200 OK (0ms)
3035
+
3036
+
3037
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3038
+ Served asset /background_browser.gif - 200 OK (0ms)
3039
+
3040
+
3041
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3042
+ Served asset /browser_opera.gif - 200 OK (0ms)
3043
+
3044
+
3045
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3046
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3047
+
3048
+
3049
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3050
+ Served asset /background_browser.gif - 200 OK (0ms)
3051
+
3052
+
3053
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3054
+ Served asset /browser_ie.gif - 200 OK (0ms)
3055
+
3056
+
3057
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3058
+ Served asset /background_browser.gif - 200 OK (0ms)
3059
+
3060
+
3061
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3062
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3063
+
3064
+
3065
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3066
+ Served asset /background_browser.gif - 200 OK (0ms)
3067
+
3068
+
3069
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3070
+ Served asset /browser_safari.gif - 200 OK (0ms)
3071
+
3072
+
3073
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3074
+ Served asset /browser_opera.gif - 200 OK (0ms)
3075
+
3076
+
3077
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3078
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3079
+
3080
+
3081
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3082
+ Served asset /background_browser.gif - 200 OK (0ms)
3083
+
3084
+
3085
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3086
+ Served asset /background_browser.gif - 200 OK (0ms)
3087
+
3088
+
3089
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3090
+ Served asset /background_browser.gif - 200 OK (0ms)
3091
+
3092
+
3093
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3094
+ Served asset /browser_ie.gif - 200 OK (0ms)
3095
+
3096
+
3097
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3098
+ Served asset /background_browser.gif - 200 OK (0ms)
3099
+
3100
+
3101
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3102
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3103
+
3104
+
3105
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3106
+ Served asset /browser_safari.gif - 200 OK (0ms)
3107
+
3108
+
3109
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3110
+ Served asset /background_browser.gif - 200 OK (0ms)
3111
+
3112
+
3113
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3114
+ Served asset /background_browser.gif - 200 OK (0ms)
3115
+
3116
+
3117
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3118
+ Served asset /browser_opera.gif - 200 OK (0ms)
3119
+
3120
+
3121
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3122
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3123
+
3124
+
3125
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:45 +0400
3126
+ Served asset /background_browser.gif - 200 OK (0ms)
3127
+
3128
+
3129
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3130
+ Served asset /background_browser.gif - 200 OK (0ms)
3131
+
3132
+
3133
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3134
+ Served asset /browser_opera.gif - 200 OK (0ms)
3135
+
3136
+
3137
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3138
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3139
+
3140
+
3141
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3142
+ Served asset /background_browser.gif - 200 OK (0ms)
3143
+
3144
+
3145
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3146
+ Processing by WelcomeController#index as */*
3147
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3148
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
3149
+
3150
+
3151
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3152
+ Served asset /welcome.css - 200 OK (0ms)
3153
+
3154
+
3155
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3156
+ Served asset /jquery.js - 200 OK (0ms)
3157
+
3158
+
3159
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3160
+ Served asset /application.css - 200 OK (0ms)
3161
+
3162
+
3163
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3164
+ Served asset /jquery_ujs.js - 200 OK (0ms)
3165
+
3166
+
3167
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3168
+ Served asset /welcome.js - 200 OK (0ms)
3169
+
3170
+
3171
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:46 +0400
3172
+ Served asset /application.js - 200 OK (1ms)
3173
+
3174
+
3175
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3176
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3177
+
3178
+
3179
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3180
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3181
+
3182
+
3183
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3184
+ Served asset /browser_ie.gif - 200 OK (0ms)
3185
+
3186
+
3187
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3188
+ Served asset /browser_opera.gif - 200 OK (0ms)
3189
+
3190
+
3191
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3192
+ Served asset /no_ie6.js - 200 OK (0ms)
3193
+
3194
+
3195
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3196
+ Served asset /browser_safari.gif - 200 OK (0ms)
3197
+
3198
+
3199
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3200
+ Served asset /background_browser.gif - 200 OK (0ms)
3201
+
3202
+
3203
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3204
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3205
+
3206
+
3207
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3208
+ Served asset /browser_ie.gif - 200 OK (0ms)
3209
+
3210
+
3211
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3212
+ Served asset /background_browser.gif - 200 OK (0ms)
3213
+
3214
+
3215
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3216
+ Served asset /browser_opera.gif - 200 OK (0ms)
3217
+
3218
+
3219
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3220
+ Served asset /background_browser.gif - 200 OK (0ms)
3221
+
3222
+
3223
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3224
+ Served asset /browser_safari.gif - 200 OK (0ms)
3225
+
3226
+
3227
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3228
+ Served asset /background_browser.gif - 200 OK (0ms)
3229
+
3230
+
3231
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3232
+ Served asset /background_browser.gif - 200 OK (0ms)
3233
+
3234
+
3235
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3236
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3237
+
3238
+
3239
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3240
+ Served asset /browser_ie.gif - 200 OK (0ms)
3241
+
3242
+
3243
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3244
+ Served asset /background_browser.gif - 200 OK (0ms)
3245
+
3246
+
3247
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3248
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3249
+
3250
+
3251
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3252
+ Served asset /background_browser.gif - 200 OK (0ms)
3253
+
3254
+
3255
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3256
+ Served asset /browser_safari.gif - 200 OK (0ms)
3257
+
3258
+
3259
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3260
+ Served asset /background_browser.gif - 200 OK (0ms)
3261
+
3262
+
3263
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3264
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3265
+
3266
+
3267
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3268
+ Served asset /browser_opera.gif - 200 OK (0ms)
3269
+
3270
+
3271
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3272
+ Served asset /background_browser.gif - 200 OK (0ms)
3273
+
3274
+
3275
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3276
+ Served asset /background_browser.gif - 200 OK (0ms)
3277
+
3278
+
3279
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3280
+ Served asset /background_browser.gif - 200 OK (0ms)
3281
+
3282
+
3283
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3284
+ Served asset /background_browser.gif - 200 OK (0ms)
3285
+
3286
+
3287
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3288
+ Served asset /browser_safari.gif - 200 OK (0ms)
3289
+
3290
+
3291
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3292
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3293
+
3294
+
3295
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3296
+ Served asset /background_browser.gif - 200 OK (0ms)
3297
+
3298
+
3299
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3300
+ Served asset /browser_ie.gif - 200 OK (0ms)
3301
+
3302
+
3303
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3304
+ Served asset /browser_opera.gif - 200 OK (0ms)
3305
+
3306
+
3307
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:47 +0400
3308
+ Served asset /background_browser.gif - 200 OK (0ms)
3309
+
3310
+
3311
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:50 +0400
3312
+ Served asset /background_browser.gif - 200 OK (0ms)
3313
+
3314
+
3315
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:50 +0400
3316
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3317
+
3318
+
3319
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3320
+ Processing by WelcomeController#index as */*
3321
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3322
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
3323
+
3324
+
3325
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3326
+ Served asset /jquery.js - 200 OK (0ms)
3327
+
3328
+
3329
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3330
+ Served asset /welcome.css - 200 OK (0ms)
3331
+
3332
+
3333
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3334
+ Served asset /application.css - 200 OK (0ms)
3335
+
3336
+
3337
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3338
+ Served asset /jquery_ujs.js - 200 OK (0ms)
3339
+
3340
+
3341
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3342
+ Served asset /welcome.js - 200 OK (0ms)
3343
+
3344
+
3345
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3346
+ Served asset /application.js - 200 OK (1ms)
3347
+
3348
+
3349
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3350
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3351
+
3352
+
3353
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3354
+ Served asset /no_ie6.js - 200 OK (0ms)
3355
+
3356
+
3357
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3358
+ Served asset /browser_ie.gif - 200 OK (0ms)
3359
+
3360
+
3361
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3362
+ Served asset /browser_opera.gif - 200 OK (0ms)
3363
+
3364
+
3365
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3366
+ Served asset /browser_safari.gif - 200 OK (0ms)
3367
+
3368
+
3369
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3370
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3371
+
3372
+
3373
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3374
+ Served asset /background_browser.gif - 200 OK (0ms)
3375
+
3376
+
3377
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3378
+ Served asset /browser_ie.gif - 200 OK (0ms)
3379
+
3380
+
3381
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3382
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3383
+
3384
+
3385
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3386
+ Served asset /browser_safari.gif - 200 OK (0ms)
3387
+
3388
+
3389
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3390
+ Served asset /background_browser.gif - 200 OK (0ms)
3391
+
3392
+
3393
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3394
+ Served asset /background_browser.gif - 200 OK (0ms)
3395
+
3396
+
3397
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3398
+ Served asset /background_browser.gif - 200 OK (0ms)
3399
+
3400
+
3401
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3402
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3403
+
3404
+
3405
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3406
+ Served asset /background_browser.gif - 200 OK (0ms)
3407
+
3408
+
3409
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3410
+ Served asset /browser_opera.gif - 200 OK (0ms)
3411
+
3412
+
3413
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3414
+ Served asset /background_browser.gif - 200 OK (0ms)
3415
+
3416
+
3417
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3418
+ Served asset /background_browser.gif - 200 OK (0ms)
3419
+
3420
+
3421
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3422
+ Served asset /background_browser.gif - 200 OK (0ms)
3423
+
3424
+
3425
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3426
+ Served asset /background_browser.gif - 200 OK (0ms)
3427
+
3428
+
3429
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3430
+ Served asset /background_browser.gif - 200 OK (0ms)
3431
+
3432
+
3433
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3434
+ Served asset /background_browser.gif - 200 OK (0ms)
3435
+
3436
+
3437
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3438
+ Served asset /browser_ie.gif - 200 OK (0ms)
3439
+
3440
+
3441
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3442
+ Served asset /browser_opera.gif - 200 OK (0ms)
3443
+
3444
+
3445
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3446
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3447
+
3448
+
3449
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3450
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3451
+
3452
+
3453
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3454
+ Served asset /browser_safari.gif - 200 OK (0ms)
3455
+
3456
+
3457
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3458
+ Served asset /background_browser.gif - 200 OK (0ms)
3459
+
3460
+
3461
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3462
+ Served asset /browser_ie.gif - 200 OK (0ms)
3463
+
3464
+
3465
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3466
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3467
+
3468
+
3469
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:51 +0400
3470
+ Served asset /background_browser.gif - 200 OK (0ms)
3471
+
3472
+
3473
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:36:52 +0400
3474
+ Served asset /browser_safari.gif - 200 OK (3ms)
3475
+
3476
+
3477
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:52 +0400
3478
+ Served asset /background_browser.gif - 200 OK (0ms)
3479
+
3480
+
3481
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:36:54 +0400
3482
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3483
+
3484
+
3485
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:36:54 +0400
3486
+ Served asset /browser_opera.gif - 200 OK (0ms)
3487
+
3488
+
3489
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:36:54 +0400
3490
+ Served asset /background_browser.gif - 200 OK (0ms)
3491
+
3492
+
3493
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:46:53 +0400
3494
+ Served asset /browser_safari.gif - 200 OK (0ms)
3495
+
3496
+
3497
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:47:07 +0400
3498
+ Served asset /browser_safari.gif - 200 OK (0ms)
3499
+
3500
+
3501
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:56:28 +0400
3502
+ Processing by WelcomeController#index as */*
3503
+ Compiled no_ie6.js (1ms) (pid 17894)
3504
+ Rendered welcome/index.html.erb within layouts/application (14.9ms)
3505
+ Completed 200 OK in 87ms (Views: 86.3ms | ActiveRecord: 0.0ms)
3506
+
3507
+
3508
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3509
+ Served asset /application.css - 200 OK (0ms)
3510
+
3511
+
3512
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3513
+ Served asset /welcome.css - 200 OK (3ms)
3514
+
3515
+
3516
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3517
+ Served asset /jquery.js - 200 OK (3ms)
3518
+
3519
+
3520
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3521
+ Served asset /jquery_ujs.js - 200 OK (1ms)
3522
+
3523
+
3524
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3525
+ Served asset /welcome.js - 200 OK (1ms)
3526
+
3527
+
3528
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3529
+ Served asset /application.js - 200 OK (0ms)
3530
+
3531
+
3532
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3533
+ Served asset /browser_firefox.gif - 200 OK (6ms)
3534
+
3535
+
3536
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3537
+ Served asset /browser_chrome.gif - 200 OK (1ms)
3538
+
3539
+
3540
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3541
+ Served asset /browser_opera.gif - 200 OK (1ms)
3542
+
3543
+
3544
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3545
+ Served asset /browser_safari.gif - 200 OK (1ms)
3546
+
3547
+
3548
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3549
+ Served asset /no_ie6.js - 200 OK (0ms)
3550
+
3551
+
3552
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3553
+ Served asset /browser_ie.gif - 200 OK (1ms)
3554
+
3555
+
3556
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3557
+ Served asset /background_browser.gif - 200 OK (1ms)
3558
+
3559
+
3560
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3561
+ Served asset /browser_ie.gif - 200 OK (0ms)
3562
+
3563
+
3564
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3565
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3566
+
3567
+
3568
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3569
+ Served asset /browser_safari.gif - 200 OK (0ms)
3570
+
3571
+
3572
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3573
+ Served asset /background_browser.gif - 200 OK (0ms)
3574
+
3575
+
3576
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3577
+ Served asset /browser_opera.gif - 200 OK (0ms)
3578
+
3579
+
3580
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3581
+ Served asset /background_browser.gif - 200 OK (0ms)
3582
+
3583
+
3584
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3585
+ Served asset /background_browser.gif - 200 OK (0ms)
3586
+
3587
+
3588
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3589
+ Served asset /background_browser.gif - 200 OK (0ms)
3590
+
3591
+
3592
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3593
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3594
+
3595
+
3596
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3597
+ Served asset /background_browser.gif - 200 OK (0ms)
3598
+
3599
+
3600
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3601
+ Served asset /browser_ie.gif - 200 OK (0ms)
3602
+
3603
+
3604
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3605
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3606
+
3607
+
3608
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3609
+ Served asset /background_browser.gif - 200 OK (0ms)
3610
+
3611
+
3612
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3613
+ Served asset /background_browser.gif - 200 OK (0ms)
3614
+
3615
+
3616
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3617
+ Served asset /background_browser.gif - 200 OK (0ms)
3618
+
3619
+
3620
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3621
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3622
+
3623
+
3624
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3625
+ Served asset /browser_ie.gif - 200 OK (2ms)
3626
+
3627
+
3628
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3629
+ Served asset /browser_opera.gif - 200 OK (0ms)
3630
+
3631
+
3632
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3633
+ Served asset /browser_safari.gif - 200 OK (0ms)
3634
+
3635
+
3636
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3637
+ Served asset /background_browser.gif - 200 OK (0ms)
3638
+
3639
+
3640
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3641
+ Served asset /background_browser.gif - 200 OK (0ms)
3642
+
3643
+
3644
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3645
+ Served asset /background_browser.gif - 200 OK (0ms)
3646
+
3647
+
3648
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3649
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3650
+
3651
+
3652
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3653
+ Served asset /background_browser.gif - 200 OK (0ms)
3654
+
3655
+
3656
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3657
+ Served asset /browser_safari.gif - 200 OK (0ms)
3658
+
3659
+
3660
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:29 +0400
3661
+ Served asset /background_browser.gif - 200 OK (0ms)
3662
+
3663
+
3664
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:56:32 +0400
3665
+ Served asset /browser_opera.gif - 200 OK (0ms)
3666
+
3667
+
3668
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:32 +0400
3669
+ Served asset /background_browser.gif - 200 OK (0ms)
3670
+
3671
+
3672
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:56:32 +0400
3673
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3674
+
3675
+
3676
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:56:34 +0400
3677
+ Processing by WelcomeController#index as */*
3678
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3679
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
3680
+
3681
+
3682
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:56:34 +0400
3683
+ Served asset /application.css - 200 OK (0ms)
3684
+
3685
+
3686
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:56:34 +0400
3687
+ Served asset /jquery.js - 200 OK (0ms)
3688
+
3689
+
3690
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:56:34 +0400
3691
+ Served asset /welcome.css - 200 OK (0ms)
3692
+
3693
+
3694
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:56:34 +0400
3695
+ Served asset /jquery_ujs.js - 200 OK (0ms)
3696
+
3697
+
3698
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:56:34 +0400
3699
+ Served asset /welcome.js - 200 OK (0ms)
3700
+
3701
+
3702
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:56:34 +0400
3703
+ Served asset /application.js - 200 OK (0ms)
3704
+
3705
+
3706
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3707
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3708
+
3709
+
3710
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3711
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3712
+
3713
+
3714
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3715
+ Served asset /browser_opera.gif - 200 OK (0ms)
3716
+
3717
+
3718
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3719
+ Served asset /no_ie6.js - 200 OK (0ms)
3720
+
3721
+
3722
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3723
+ Served asset /browser_ie.gif - 200 OK (0ms)
3724
+
3725
+
3726
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3727
+ Served asset /browser_safari.gif - 200 OK (0ms)
3728
+
3729
+
3730
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3731
+ Served asset /background_browser.gif - 200 OK (0ms)
3732
+
3733
+
3734
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3735
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3736
+
3737
+
3738
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3739
+ Served asset /background_browser.gif - 200 OK (0ms)
3740
+
3741
+
3742
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3743
+ Served asset /background_browser.gif - 200 OK (0ms)
3744
+
3745
+
3746
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3747
+ Served asset /browser_safari.gif - 200 OK (0ms)
3748
+
3749
+
3750
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3751
+ Served asset /browser_opera.gif - 200 OK (0ms)
3752
+
3753
+
3754
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3755
+ Served asset /background_browser.gif - 200 OK (0ms)
3756
+
3757
+
3758
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3759
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3760
+
3761
+
3762
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3763
+ Served asset /browser_ie.gif - 200 OK (0ms)
3764
+
3765
+
3766
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3767
+ Served asset /background_browser.gif - 200 OK (0ms)
3768
+
3769
+
3770
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3771
+ Served asset /background_browser.gif - 200 OK (0ms)
3772
+
3773
+
3774
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3775
+ Served asset /background_browser.gif - 200 OK (0ms)
3776
+
3777
+
3778
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3779
+ Served asset /background_browser.gif - 200 OK (0ms)
3780
+
3781
+
3782
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3783
+ Served asset /browser_safari.gif - 200 OK (0ms)
3784
+
3785
+
3786
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3787
+ Served asset /background_browser.gif - 200 OK (0ms)
3788
+
3789
+
3790
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3791
+ Served asset /browser_opera.gif - 200 OK (0ms)
3792
+
3793
+
3794
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3795
+ Served asset /background_browser.gif - 200 OK (0ms)
3796
+
3797
+
3798
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3799
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3800
+
3801
+
3802
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3803
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3804
+
3805
+
3806
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3807
+ Served asset /background_browser.gif - 200 OK (0ms)
3808
+
3809
+
3810
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3811
+ Served asset /browser_ie.gif - 200 OK (0ms)
3812
+
3813
+
3814
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3815
+ Served asset /browser_ie.gif - 200 OK (0ms)
3816
+
3817
+
3818
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3819
+ Served asset /background_browser.gif - 200 OK (0ms)
3820
+
3821
+
3822
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3823
+ Served asset /browser_safari.gif - 200 OK (0ms)
3824
+
3825
+
3826
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3827
+ Served asset /background_browser.gif - 200 OK (0ms)
3828
+
3829
+
3830
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3831
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3832
+
3833
+
3834
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3835
+ Served asset /background_browser.gif - 200 OK (0ms)
3836
+
3837
+
3838
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3839
+ Served asset /background_browser.gif - 200 OK (0ms)
3840
+
3841
+
3842
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3843
+ Served asset /browser_opera.gif - 200 OK (0ms)
3844
+
3845
+
3846
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:56:35 +0400
3847
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3848
+
3849
+
3850
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:57:16 +0400
3851
+ Processing by WelcomeController#index as */*
3852
+ Compiled no_ie6.js (2ms) (pid 17980)
3853
+ Rendered welcome/index.html.erb within layouts/application (14.9ms)
3854
+ Completed 200 OK in 86ms (Views: 85.8ms | ActiveRecord: 0.0ms)
3855
+
3856
+
3857
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:57:16 +0400
3858
+ Served asset /application.css - 200 OK (0ms)
3859
+
3860
+
3861
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:57:16 +0400
3862
+ Served asset /welcome.css - 200 OK (2ms)
3863
+
3864
+
3865
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:57:16 +0400
3866
+ Served asset /jquery.js - 200 OK (2ms)
3867
+
3868
+
3869
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:57:16 +0400
3870
+ Served asset /jquery_ujs.js - 200 OK (1ms)
3871
+
3872
+
3873
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:57:16 +0400
3874
+ Served asset /welcome.js - 200 OK (3ms)
3875
+
3876
+
3877
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:57:16 +0400
3878
+ Served asset /application.js - 200 OK (0ms)
3879
+
3880
+
3881
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3882
+ Served asset /browser_firefox.gif - 200 OK (8ms)
3883
+
3884
+
3885
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3886
+ Served asset /browser_opera.gif - 200 OK (1ms)
3887
+
3888
+
3889
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3890
+ Served asset /browser_chrome.gif - 200 OK (2ms)
3891
+
3892
+
3893
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3894
+ Served asset /no_ie6.js - 200 OK (0ms)
3895
+
3896
+
3897
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3898
+ Served asset /browser_ie.gif - 200 OK (1ms)
3899
+
3900
+
3901
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3902
+ Served asset /browser_safari.gif - 200 OK (1ms)
3903
+
3904
+
3905
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3906
+ Served asset /background_browser.gif - 200 OK (8ms)
3907
+
3908
+
3909
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3910
+ Served asset /background_browser.gif - 200 OK (0ms)
3911
+
3912
+
3913
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3914
+ Served asset /background_browser.gif - 200 OK (0ms)
3915
+
3916
+
3917
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3918
+ Served asset /browser_safari.gif - 200 OK (0ms)
3919
+
3920
+
3921
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3922
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3923
+
3924
+
3925
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3926
+ Served asset /browser_ie.gif - 200 OK (0ms)
3927
+
3928
+
3929
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3930
+ Served asset /background_browser.gif - 200 OK (0ms)
3931
+
3932
+
3933
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3934
+ Served asset /background_browser.gif - 200 OK (0ms)
3935
+
3936
+
3937
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3938
+ Served asset /browser_ie.gif - 200 OK (0ms)
3939
+
3940
+
3941
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3942
+ Served asset /background_browser.gif - 200 OK (0ms)
3943
+
3944
+
3945
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3946
+ Served asset /browser_opera.gif - 200 OK (0ms)
3947
+
3948
+
3949
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3950
+ Served asset /background_browser.gif - 200 OK (0ms)
3951
+
3952
+
3953
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3954
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3955
+
3956
+
3957
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3958
+ Served asset /background_browser.gif - 200 OK (0ms)
3959
+
3960
+
3961
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3962
+ Served asset /browser_chrome.gif - 200 OK (0ms)
3963
+
3964
+
3965
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3966
+ Served asset /background_browser.gif - 200 OK (0ms)
3967
+
3968
+
3969
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3970
+ Served asset /background_browser.gif - 200 OK (0ms)
3971
+
3972
+
3973
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3974
+ Served asset /browser_ie.gif - 200 OK (0ms)
3975
+
3976
+
3977
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3978
+ Served asset /browser_safari.gif - 200 OK (0ms)
3979
+
3980
+
3981
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3982
+ Served asset /background_browser.gif - 200 OK (0ms)
3983
+
3984
+
3985
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3986
+ Served asset /background_browser.gif - 200 OK (0ms)
3987
+
3988
+
3989
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3990
+ Served asset /browser_firefox.gif - 200 OK (0ms)
3991
+
3992
+
3993
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3994
+ Served asset /background_browser.gif - 200 OK (0ms)
3995
+
3996
+
3997
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
3998
+ Served asset /background_browser.gif - 200 OK (0ms)
3999
+
4000
+
4001
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:57:17 +0400
4002
+ Served asset /browser_opera.gif - 200 OK (0ms)
4003
+
4004
+
4005
+ Started GET "/" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4006
+ Processing by WelcomeController#index as */*
4007
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
4008
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
4009
+
4010
+
4011
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4012
+ Served asset /application.css - 200 OK (0ms)
4013
+
4014
+
4015
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4016
+ Served asset /jquery.js - 200 OK (0ms)
4017
+
4018
+
4019
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4020
+ Served asset /welcome.css - 200 OK (0ms)
4021
+
4022
+
4023
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4024
+ Served asset /background_browser.gif - 200 OK (0ms)
4025
+
4026
+
4027
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4028
+ Served asset /jquery_ujs.js - 200 OK (0ms)
4029
+
4030
+
4031
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4032
+ Served asset /browser_chrome.gif - 200 OK (0ms)
4033
+
4034
+
4035
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4036
+ Served asset /browser_opera.gif - 200 OK (0ms)
4037
+
4038
+
4039
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4040
+ Served asset /browser_safari.gif - 200 OK (0ms)
4041
+
4042
+
4043
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4044
+ Served asset /browser_chrome.gif - 200 OK (0ms)
4045
+
4046
+
4047
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4048
+ Served asset /welcome.js - 200 OK (0ms)
4049
+
4050
+
4051
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4052
+ Served asset /application.js - 200 OK (0ms)
4053
+
4054
+
4055
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4056
+ Served asset /browser_firefox.gif - 200 OK (0ms)
4057
+
4058
+
4059
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4060
+ Served asset /browser_chrome.gif - 200 OK (0ms)
4061
+
4062
+
4063
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4064
+ Served asset /browser_opera.gif - 200 OK (0ms)
4065
+
4066
+
4067
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4068
+ Served asset /browser_safari.gif - 200 OK (0ms)
4069
+
4070
+
4071
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4072
+ Served asset /browser_ie.gif - 200 OK (0ms)
4073
+
4074
+
4075
+ Started GET "/assets/no_ie6.js?body=1" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4076
+ Served asset /no_ie6.js - 200 OK (0ms)
4077
+
4078
+
4079
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4080
+ Served asset /background_browser.gif - 200 OK (0ms)
4081
+
4082
+
4083
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4084
+ Served asset /background_browser.gif - 200 OK (0ms)
4085
+
4086
+
4087
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4088
+ Served asset /browser_firefox.gif - 200 OK (0ms)
4089
+
4090
+
4091
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4092
+ Served asset /browser_ie.gif - 200 OK (0ms)
4093
+
4094
+
4095
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4096
+ Served asset /background_browser.gif - 200 OK (0ms)
4097
+
4098
+
4099
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4100
+ Served asset /browser_safari.gif - 200 OK (0ms)
4101
+
4102
+
4103
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4104
+ Served asset /background_browser.gif - 200 OK (0ms)
4105
+
4106
+
4107
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4108
+ Served asset /browser_opera.gif - 200 OK (0ms)
4109
+
4110
+
4111
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4112
+ Served asset /background_browser.gif - 200 OK (0ms)
4113
+
4114
+
4115
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4116
+ Served asset /browser_chrome.gif - 200 OK (0ms)
4117
+
4118
+
4119
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4120
+ Served asset /background_browser.gif - 200 OK (0ms)
4121
+
4122
+
4123
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4124
+ Served asset /browser_ie.gif - 200 OK (0ms)
4125
+
4126
+
4127
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4128
+ Served asset /background_browser.gif - 200 OK (0ms)
4129
+
4130
+
4131
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4132
+ Served asset /browser_firefox.gif - 200 OK (0ms)
4133
+
4134
+
4135
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4136
+ Served asset /background_browser.gif - 200 OK (0ms)
4137
+
4138
+
4139
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4140
+ Served asset /browser_safari.gif - 200 OK (0ms)
4141
+
4142
+
4143
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4144
+ Served asset /background_browser.gif - 200 OK (0ms)
4145
+
4146
+
4147
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4148
+ Served asset /browser_opera.gif - 200 OK (0ms)
4149
+
4150
+
4151
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4152
+ Served asset /background_browser.gif - 200 OK (0ms)
4153
+
4154
+
4155
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4156
+ Served asset /browser_chrome.gif - 200 OK (0ms)
4157
+
4158
+
4159
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4160
+ Served asset /background_browser.gif - 200 OK (0ms)
4161
+
4162
+
4163
+ Started GET "/assets/browser_ie.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4164
+ Served asset /browser_ie.gif - 200 OK (0ms)
4165
+
4166
+
4167
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4168
+ Served asset /background_browser.gif - 200 OK (0ms)
4169
+
4170
+
4171
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4172
+ Served asset /background_browser.gif - 200 OK (0ms)
4173
+
4174
+
4175
+ Started GET "/assets/browser_safari.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4176
+ Served asset /browser_safari.gif - 200 OK (0ms)
4177
+
4178
+
4179
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4180
+ Served asset /background_browser.gif - 200 OK (0ms)
4181
+
4182
+
4183
+ Started GET "/assets/background_browser.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4184
+ Served asset /background_browser.gif - 200 OK (0ms)
4185
+
4186
+
4187
+ Started GET "/assets/browser_chrome.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4188
+ Served asset /browser_chrome.gif - 200 OK (0ms)
4189
+
4190
+
4191
+ Started GET "/assets/browser_opera.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4192
+ Served asset /browser_opera.gif - 200 OK (0ms)
4193
+
4194
+
4195
+ Started GET "/assets/browser_firefox.gif" for 127.0.0.1 at 2011-10-12 01:57:20 +0400
4196
+ Served asset /browser_firefox.gif - 200 OK (0ms)