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