blacklight_google_analytics 0.0.1.pre2 → 0.0.1.pre3

Sign up to get free protection for your applications and to get access to all the features.
@@ -72,6 +72,17 @@ $(function () {
72
72
  BlacklightGoogleAnalytics.console_log_error(err, heading_values);
73
73
  }
74
74
  });
75
+
76
+ //which number in the search results was clicked on?
77
+ $('h3.index_title a').click(function(){
78
+ var result_number = $(this).data('counter');
79
+ var heading_values = ['result_number', 'click', result_number];
80
+ try{
81
+ _gaq.push(['_trackEvent'].concat(heading_values));
82
+ } catch(err) {
83
+ BlacklightGoogleAnalytics.console_log_error(err, heading_values);
84
+ }
85
+ });
75
86
 
76
87
 
77
88
  });
@@ -1,4 +1,5 @@
1
- <% if Rails.env == 'production' %>
1
+ <% if BlacklightGoogleAnalytics.web_property_id %>
2
+ <script type="text/javascript">
2
3
  var _gaq = _gaq || [];
3
4
  _gaq.push(['_setAccount', '<%= BlacklightGoogleAnalytics.web_property_id %>']);
4
5
  _gaq.push(['_trackPageview']);
@@ -8,4 +9,5 @@ _gaq.push(['_trackPageview']);
8
9
  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
9
10
  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
10
11
  })();
12
+ </script>
11
13
  <% end %>
@@ -1,4 +1,5 @@
1
1
  require 'blacklight_google_analytics/version'
2
+ require 'blacklight_google_analytics/controller_extra_head'
2
3
 
3
4
  module BlacklightGoogleAnalytics
4
5
 
@@ -0,0 +1,10 @@
1
+ module BlacklightGoogleAnalytics
2
+ module ControllerExtraHead
3
+ extend ActiveSupport::Concern
4
+ included do
5
+ before_filter do |controller|
6
+ controller.extra_head_content << render_to_string(:partial => '/layouts/google_analytics')
7
+ end
8
+ end
9
+ end
10
+ end
@@ -1,3 +1,3 @@
1
1
  module BlacklightGoogleAnalytics
2
- VERSION = "0.0.1.pre2"
2
+ VERSION = "0.0.1.pre3"
3
3
  end
@@ -4,20 +4,45 @@ class BlacklightGoogleAnalyticsGenerator < Rails::Generators::Base
4
4
  desc "Blacklight Google Analytics Generator"
5
5
 
6
6
  def create_blacklight_google_analytics_initializer
7
- initializer "blacklight_google_analytics.rb",
8
- "# Change to your Google Web id \nBlacklightGoogleAnalytics.web_property_id = 'UA-XXXXX-X'"
7
+ initializer "blacklight_google_analytics.rb" do
8
+ <<EOF
9
+ # Change to your Google Web id
10
+ BlacklightGoogleAnalytics.web_property_id = case Rails.env.to_s
11
+ when 'development'
12
+ nil
13
+ when 'test'
14
+ nil
15
+ else
16
+ 'UA-XXXXX-X'
17
+ end
18
+ EOF
19
+ end
9
20
  end
10
21
 
11
22
  def add_javascripts_to_applicationjs
12
- application_js = 'app/assets/javascripts/application.js'
13
- if !File.exists? application_js
14
- create_file application_js
15
- end
16
- append_to_file application_js,
17
- "\n//= require blacklight_google_analytics\n//= require google_analytics"
23
+ application_js_file = 'app/assets/javascripts/application.js'
24
+ application_js = File.binread application_js_file
25
+ insert_line = "\n//= require blacklight_google_analytics"
26
+ if application_js.include?(insert_line)
27
+ say_status("skipped", "add blacklight_google_analytics to #{application_js_file}", :yellow)
28
+ else
29
+ append_to_file application_js_file, insert_line
30
+ end
31
+ end
32
+
33
+ def add_google_analytics_javascript_via_controller_extra_head
34
+ catalog_controller_file = 'app/controllers/catalog_controller.rb'
35
+ catalog_controller = File.binread catalog_controller_file
36
+ insert_line = "\n include BlacklightGoogleAnalytics::ControllerExtraHead\n"
37
+ if catalog_controller.include?(insert_line)
38
+ say_status("skipped", "add google analytics javascript via controller extra head", :yellow)
39
+ else
40
+ insert_into_file catalog_controller_file, insert_line,
41
+ :after => 'class CatalogController < ApplicationController'
42
+ end
18
43
  end
19
44
 
20
45
  def show_readme
21
- readme "README" if behavior == :invoke
46
+ say_status("todo", "Edit `config/initializers/blacklight_google_analytics.rb` to include your own Google Web id.", :red)
22
47
  end
23
48
  end
Binary file
@@ -0,0 +1,704 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (127.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (75.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.2ms) select sqlite_version(*)
6
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
7
+
8
+
9
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:05:32 -0400
10
+
11
+ ActionController::RoutingError (No route matches [GET] "/"):
12
+ actionpack (3.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13
+ actionpack (3.2.2) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
14
+ railties (3.2.2) lib/rails/rack/logger.rb:26:in `call_app'
15
+ railties (3.2.2) lib/rails/rack/logger.rb:16:in `call'
16
+ actionpack (3.2.2) lib/action_dispatch/middleware/request_id.rb:22:in `call'
17
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
18
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
19
+ activesupport (3.2.2) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
20
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
21
+ actionpack (3.2.2) lib/action_dispatch/middleware/static.rb:61:in `call'
22
+ railties (3.2.2) lib/rails/engine.rb:479:in `call'
23
+ railties (3.2.2) lib/rails/application.rb:220:in `call'
24
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
25
+ railties (3.2.2) lib/rails/rack/log_tailer.rb:14:in `call'
26
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
27
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
28
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
29
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
30
+
31
+
32
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.0ms)
33
+
34
+
35
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:07:49 -0400
36
+ Processing by CatalogController#index as HTML
37
+ Completed 500 Internal Server Error in 68ms
38
+
39
+ Errno::ECONNREFUSED (Connection refused - connect(2)):
40
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:762:in `initialize'
41
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:762:in `open'
42
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:762:in `block in connect'
43
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
44
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/timeout.rb:99:in `timeout'
45
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:762:in `connect'
46
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:755:in `do_start'
47
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:744:in `start'
48
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:1284:in `request'
49
+ rsolr (1.0.7) lib/rsolr/connection.rb:15:in `execute'
50
+ rsolr (1.0.7) lib/rsolr/client.rb:166:in `execute'
51
+ rsolr (1.0.7) lib/rsolr/client.rb:161:in `send_and_receive'
52
+ rsolr-ext (1.0.3) lib/rsolr-ext/client.rb:21:in `find'
53
+ blacklight (3.3.1) lib/blacklight/solr_helper.rb:85:in `find'
54
+ blacklight (3.3.1) lib/blacklight/solr_helper.rb:317:in `get_search_results'
55
+ blacklight (3.3.1) lib/blacklight/catalog.rb:34:in `index'
56
+ actionpack (3.2.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
57
+ actionpack (3.2.2) lib/abstract_controller/base.rb:167:in `process_action'
58
+ actionpack (3.2.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
59
+ actionpack (3.2.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
60
+ activesupport (3.2.2) lib/active_support/callbacks.rb:458:in `_run__1458323841475422784__process_action__4355911641372851969__callbacks'
61
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `__run_callback'
62
+ activesupport (3.2.2) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
63
+ activesupport (3.2.2) lib/active_support/callbacks.rb:81:in `run_callbacks'
64
+ actionpack (3.2.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
65
+ actionpack (3.2.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
66
+ actionpack (3.2.2) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
67
+ activesupport (3.2.2) lib/active_support/notifications.rb:123:in `block in instrument'
68
+ activesupport (3.2.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
69
+ activesupport (3.2.2) lib/active_support/notifications.rb:123:in `instrument'
70
+ actionpack (3.2.2) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
71
+ actionpack (3.2.2) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
72
+ activerecord (3.2.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
73
+ actionpack (3.2.2) lib/abstract_controller/base.rb:121:in `process'
74
+ actionpack (3.2.2) lib/abstract_controller/rendering.rb:45:in `process'
75
+ actionpack (3.2.2) lib/action_controller/metal.rb:203:in `dispatch'
76
+ actionpack (3.2.2) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
77
+ actionpack (3.2.2) lib/action_controller/metal.rb:246:in `block in action'
78
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:67:in `call'
79
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:67:in `dispatch'
80
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:30:in `call'
81
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
82
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
83
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
84
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:594:in `call'
85
+ actionpack (3.2.2) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
86
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
87
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
88
+ actionpack (3.2.2) lib/action_dispatch/middleware/head.rb:14:in `call'
89
+ actionpack (3.2.2) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
90
+ actionpack (3.2.2) lib/action_dispatch/middleware/flash.rb:242:in `call'
91
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
92
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
93
+ actionpack (3.2.2) lib/action_dispatch/middleware/cookies.rb:338:in `call'
94
+ activerecord (3.2.2) lib/active_record/query_cache.rb:64:in `call'
95
+ activerecord (3.2.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
96
+ actionpack (3.2.2) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
97
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `_run__4306138480306685681__call__904628797047473588__callbacks'
98
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `__run_callback'
99
+ activesupport (3.2.2) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
100
+ activesupport (3.2.2) lib/active_support/callbacks.rb:81:in `run_callbacks'
101
+ actionpack (3.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
102
+ actionpack (3.2.2) lib/action_dispatch/middleware/reloader.rb:65:in `call'
103
+ actionpack (3.2.2) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
104
+ actionpack (3.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
105
+ actionpack (3.2.2) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
106
+ railties (3.2.2) lib/rails/rack/logger.rb:26:in `call_app'
107
+ railties (3.2.2) lib/rails/rack/logger.rb:16:in `call'
108
+ actionpack (3.2.2) lib/action_dispatch/middleware/request_id.rb:22:in `call'
109
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
110
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
111
+ activesupport (3.2.2) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
112
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
113
+ actionpack (3.2.2) lib/action_dispatch/middleware/static.rb:61:in `call'
114
+ railties (3.2.2) lib/rails/engine.rb:479:in `call'
115
+ railties (3.2.2) lib/rails/application.rb:220:in `call'
116
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
117
+ railties (3.2.2) lib/rails/rack/log_tailer.rb:14:in `call'
118
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
119
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
120
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
121
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
122
+
123
+
124
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms)
125
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
126
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.2ms)
127
+
128
+
129
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:13:11 -0400
130
+ Processing by CatalogController#index as HTML
131
+ Completed 500 Internal Server Error in 79ms
132
+
133
+ Errno::ECONNREFUSED (Connection refused - connect(2)):
134
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:762:in `initialize'
135
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:762:in `open'
136
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:762:in `block in connect'
137
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
138
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/timeout.rb:99:in `timeout'
139
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:762:in `connect'
140
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:755:in `do_start'
141
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:744:in `start'
142
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:1284:in `request'
143
+ rsolr (1.0.7) lib/rsolr/connection.rb:15:in `execute'
144
+ rsolr (1.0.7) lib/rsolr/client.rb:166:in `execute'
145
+ rsolr (1.0.7) lib/rsolr/client.rb:161:in `send_and_receive'
146
+ rsolr-ext (1.0.3) lib/rsolr-ext/client.rb:21:in `find'
147
+ blacklight (3.3.1) lib/blacklight/solr_helper.rb:85:in `find'
148
+ blacklight (3.3.1) lib/blacklight/solr_helper.rb:317:in `get_search_results'
149
+ blacklight (3.3.1) lib/blacklight/catalog.rb:34:in `index'
150
+ actionpack (3.2.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
151
+ actionpack (3.2.2) lib/abstract_controller/base.rb:167:in `process_action'
152
+ actionpack (3.2.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
153
+ actionpack (3.2.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
154
+ activesupport (3.2.2) lib/active_support/callbacks.rb:458:in `_run__1792749203641306278__process_action__1163379426586269946__callbacks'
155
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `__run_callback'
156
+ activesupport (3.2.2) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
157
+ activesupport (3.2.2) lib/active_support/callbacks.rb:81:in `run_callbacks'
158
+ actionpack (3.2.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
159
+ actionpack (3.2.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
160
+ actionpack (3.2.2) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
161
+ activesupport (3.2.2) lib/active_support/notifications.rb:123:in `block in instrument'
162
+ activesupport (3.2.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
163
+ activesupport (3.2.2) lib/active_support/notifications.rb:123:in `instrument'
164
+ actionpack (3.2.2) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
165
+ actionpack (3.2.2) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
166
+ activerecord (3.2.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
167
+ actionpack (3.2.2) lib/abstract_controller/base.rb:121:in `process'
168
+ actionpack (3.2.2) lib/abstract_controller/rendering.rb:45:in `process'
169
+ actionpack (3.2.2) lib/action_controller/metal.rb:203:in `dispatch'
170
+ actionpack (3.2.2) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
171
+ actionpack (3.2.2) lib/action_controller/metal.rb:246:in `block in action'
172
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:67:in `call'
173
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:67:in `dispatch'
174
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:30:in `call'
175
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
176
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
177
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
178
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:594:in `call'
179
+ actionpack (3.2.2) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
180
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
181
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
182
+ actionpack (3.2.2) lib/action_dispatch/middleware/head.rb:14:in `call'
183
+ actionpack (3.2.2) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
184
+ actionpack (3.2.2) lib/action_dispatch/middleware/flash.rb:242:in `call'
185
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
186
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
187
+ actionpack (3.2.2) lib/action_dispatch/middleware/cookies.rb:338:in `call'
188
+ activerecord (3.2.2) lib/active_record/query_cache.rb:64:in `call'
189
+ activerecord (3.2.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
190
+ actionpack (3.2.2) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
191
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `_run__177918798437671055__call__2749636027049723671__callbacks'
192
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `__run_callback'
193
+ activesupport (3.2.2) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
194
+ activesupport (3.2.2) lib/active_support/callbacks.rb:81:in `run_callbacks'
195
+ actionpack (3.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
196
+ actionpack (3.2.2) lib/action_dispatch/middleware/reloader.rb:65:in `call'
197
+ actionpack (3.2.2) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
198
+ actionpack (3.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
199
+ actionpack (3.2.2) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
200
+ railties (3.2.2) lib/rails/rack/logger.rb:26:in `call_app'
201
+ railties (3.2.2) lib/rails/rack/logger.rb:16:in `call'
202
+ actionpack (3.2.2) lib/action_dispatch/middleware/request_id.rb:22:in `call'
203
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
204
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
205
+ activesupport (3.2.2) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
206
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
207
+ actionpack (3.2.2) lib/action_dispatch/middleware/static.rb:61:in `call'
208
+ railties (3.2.2) lib/rails/engine.rb:479:in `call'
209
+ railties (3.2.2) lib/rails/application.rb:220:in `call'
210
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
211
+ railties (3.2.2) lib/rails/rack/log_tailer.rb:14:in `call'
212
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
213
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
214
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
215
+ /home/jnronall/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
216
+
217
+
218
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
219
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
220
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.6ms)
221
+
222
+
223
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:15:15 -0400
224
+ Processing by CatalogController#index as HTML
225
+ Solr fetch: CatalogController#get_search_results (209.7ms)
226
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (2.2ms)
227
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.4ms)
228
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.5ms)
229
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (8.3ms)
230
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (41.7ms)
231
+ Compiled jquery-ui-1.8.1.custom.css (0ms) (pid 10525)
232
+ Completed 500 Internal Server Error in 663ms
233
+
234
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
235
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
236
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
237
+ 4: <title><%= h(@page_title || application_name) %></title>
238
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
239
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
240
+ 7: <%= stylesheet_link_tag "application" %>
241
+ 8: <%= javascript_include_tag "application" %>
242
+ 9: <%= csrf_meta_tags %>
243
+ 10: <%= raw(render_head_content) %>
244
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
245
+
246
+
247
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.2ms)
248
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
249
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.3ms)
250
+
251
+
252
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:17:30 -0400
253
+ Processing by CatalogController#index as HTML
254
+ Solr fetch: CatalogController#get_search_results (81.5ms)
255
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.9ms)
256
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.4ms)
257
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.5ms)
258
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (5.9ms)
259
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (11.9ms)
260
+ Completed 500 Internal Server Error in 460ms
261
+
262
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
263
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
264
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
265
+ 4: <title><%= h(@page_title || application_name) %></title>
266
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
267
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
268
+ 7: <%= stylesheet_link_tag "application" %>
269
+ 8: <%= javascript_include_tag "application" %>
270
+ 9: <%= csrf_meta_tags %>
271
+ 10: <%= raw(render_head_content) %>
272
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
273
+
274
+
275
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
276
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
277
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
278
+
279
+
280
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:18:00 -0400
281
+ Processing by CatalogController#index as HTML
282
+ Solr fetch: CatalogController#get_search_results (87.2ms)
283
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (2.0ms)
284
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.5ms)
285
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.6ms)
286
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (6.5ms)
287
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (13.6ms)
288
+ Completed 500 Internal Server Error in 471ms
289
+
290
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
291
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
292
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
293
+ 4: <title><%= h(@page_title || application_name) %></title>
294
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
295
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
296
+ 7: <%= stylesheet_link_tag "application" %>
297
+ 8: <%= javascript_include_tag "application" %>
298
+ 9: <%= csrf_meta_tags %>
299
+ 10: <%= raw(render_head_content) %>
300
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
301
+
302
+
303
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.5ms)
304
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
305
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.4ms)
306
+
307
+
308
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:18:07 -0400
309
+ Processing by CatalogController#index as HTML
310
+ Solr fetch: CatalogController#get_search_results (7.4ms)
311
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.4ms)
312
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.1ms)
313
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.2ms)
314
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (4.5ms)
315
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (5.5ms)
316
+ Completed 500 Internal Server Error in 31ms
317
+
318
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
319
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
320
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
321
+ 4: <title><%= h(@page_title || application_name) %></title>
322
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
323
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
324
+ 7: <%= stylesheet_link_tag "application" %>
325
+ 8: <%= javascript_include_tag "application" %>
326
+ 9: <%= csrf_meta_tags %>
327
+ 10: <%= raw(render_head_content) %>
328
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
329
+
330
+
331
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
332
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
333
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.9ms)
334
+
335
+
336
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:18:07 -0400
337
+ Processing by CatalogController#index as HTML
338
+ Solr fetch: CatalogController#get_search_results (7.1ms)
339
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.3ms)
340
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.1ms)
341
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.2ms)
342
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (4.1ms)
343
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (5.0ms)
344
+ Completed 500 Internal Server Error in 63ms
345
+
346
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
347
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
348
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
349
+ 4: <title><%= h(@page_title || application_name) %></title>
350
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
351
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
352
+ 7: <%= stylesheet_link_tag "application" %>
353
+ 8: <%= javascript_include_tag "application" %>
354
+ 9: <%= csrf_meta_tags %>
355
+ 10: <%= raw(render_head_content) %>
356
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
357
+
358
+
359
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.5ms)
360
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
361
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.0ms)
362
+
363
+
364
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:19:09 -0400
365
+ Processing by CatalogController#index as HTML
366
+ Solr fetch: CatalogController#get_search_results (80.7ms)
367
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.9ms)
368
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.4ms)
369
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.4ms)
370
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (6.0ms)
371
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (37.1ms)
372
+ Completed 500 Internal Server Error in 439ms
373
+
374
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
375
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
376
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
377
+ 4: <title><%= h(@page_title || application_name) %></title>
378
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
379
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
380
+ 7: <%= stylesheet_link_tag "application" %>
381
+ 8: <%= javascript_include_tag "application" %>
382
+ 9: <%= csrf_meta_tags %>
383
+ 10: <%= raw(render_head_content) %>
384
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
385
+
386
+
387
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.4ms)
388
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
389
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
390
+
391
+
392
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:20:30 -0400
393
+ Processing by CatalogController#index as HTML
394
+ Solr fetch: CatalogController#get_search_results (86.5ms)
395
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.9ms)
396
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.4ms)
397
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.4ms)
398
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (6.0ms)
399
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (37.9ms)
400
+ Completed 500 Internal Server Error in 444ms
401
+
402
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
403
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
404
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
405
+ 4: <title><%= h(@page_title || application_name) %></title>
406
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
407
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
408
+ 7: <%= stylesheet_link_tag "application" %>
409
+ 8: <%= javascript_include_tag "application" %>
410
+ 9: <%= csrf_meta_tags %>
411
+ 10: <%= raw(render_head_content) %>
412
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
413
+
414
+
415
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.4ms)
416
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
417
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
418
+
419
+
420
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:21:48 -0400
421
+ Processing by CatalogController#index as HTML
422
+ Solr fetch: CatalogController#get_search_results (6.9ms)
423
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.4ms)
424
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.1ms)
425
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.2ms)
426
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (4.1ms)
427
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (5.0ms)
428
+ Completed 500 Internal Server Error in 34ms
429
+
430
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/_susy_grid.
431
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
432
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
433
+ 4: <title><%= h(@page_title || application_name) %></title>
434
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
435
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
436
+ 7: <%= stylesheet_link_tag "application" %>
437
+ 8: <%= javascript_include_tag "application" %>
438
+ 9: <%= csrf_meta_tags %>
439
+ 10: <%= raw(render_head_content) %>
440
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
441
+
442
+
443
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
444
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
445
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
446
+
447
+
448
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:21:49 -0400
449
+ Processing by CatalogController#index as HTML
450
+ Solr fetch: CatalogController#get_search_results (7.5ms)
451
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (34.1ms)
452
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.1ms)
453
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.2ms)
454
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (37.3ms)
455
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (38.2ms)
456
+ Completed 500 Internal Server Error in 64ms
457
+
458
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/_susy_grid.
459
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
460
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
461
+ 4: <title><%= h(@page_title || application_name) %></title>
462
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
463
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
464
+ 7: <%= stylesheet_link_tag "application" %>
465
+ 8: <%= javascript_include_tag "application" %>
466
+ 9: <%= csrf_meta_tags %>
467
+ 10: <%= raw(render_head_content) %>
468
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
469
+
470
+
471
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
472
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
473
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
474
+
475
+
476
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:21:50 -0400
477
+ Processing by CatalogController#index as HTML
478
+ Solr fetch: CatalogController#get_search_results (8.1ms)
479
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.4ms)
480
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.1ms)
481
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.2ms)
482
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (4.6ms)
483
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (5.6ms)
484
+ Completed 500 Internal Server Error in 32ms
485
+
486
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/_susy_grid.
487
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
488
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
489
+ 4: <title><%= h(@page_title || application_name) %></title>
490
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
491
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
492
+ 7: <%= stylesheet_link_tag "application" %>
493
+ 8: <%= javascript_include_tag "application" %>
494
+ 9: <%= csrf_meta_tags %>
495
+ 10: <%= raw(render_head_content) %>
496
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
497
+
498
+
499
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.6ms)
500
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
501
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.9ms)
502
+
503
+
504
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:23:23 -0400
505
+ Processing by CatalogController#index as HTML
506
+ Solr fetch: CatalogController#get_search_results (83.7ms)
507
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.9ms)
508
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.4ms)
509
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.5ms)
510
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (6.0ms)
511
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (37.8ms)
512
+ Completed 500 Internal Server Error in 452ms
513
+
514
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
515
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
516
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
517
+ 4: <title><%= h(@page_title || application_name) %></title>
518
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
519
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
520
+ 7: <%= stylesheet_link_tag "application" %>
521
+ 8: <%= javascript_include_tag "application" %>
522
+ 9: <%= csrf_meta_tags %>
523
+ 10: <%= raw(render_head_content) %>
524
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
525
+
526
+
527
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.4ms)
528
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
529
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
530
+
531
+
532
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:25:47 -0400
533
+ Processing by CatalogController#index as HTML
534
+ Solr fetch: CatalogController#get_search_results (56.7ms)
535
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.9ms)
536
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.4ms)
537
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.4ms)
538
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (5.9ms)
539
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (11.7ms)
540
+ Completed 500 Internal Server Error in 440ms
541
+
542
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
543
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
544
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
545
+ 4: <title><%= h(@page_title || application_name) %></title>
546
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
547
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
548
+ 7: <%= stylesheet_link_tag "application" %>
549
+ 8: <%= javascript_include_tag "application" %>
550
+ 9: <%= csrf_meta_tags %>
551
+ 10: <%= raw(render_head_content) %>
552
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
553
+
554
+
555
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.4ms)
556
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
557
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
558
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
559
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
560
+ Migrating to CreateSearches (20120330190625)
561
+  (0.0ms) select sqlite_version(*)
562
+  (0.0ms) begin transaction
563
+  (0.8ms) CREATE TABLE "searches" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "query_params" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
564
+  (0.0ms) PRAGMA index_list("searches")
565
+  (0.1ms) CREATE INDEX "index_searches_on_user_id" ON "searches" ("user_id")
566
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120330190625')
567
+  (120.4ms) commit transaction
568
+ Migrating to CreateBookmarks (20120330190626)
569
+  (0.1ms) begin transaction
570
+  (0.5ms) CREATE TABLE "bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "url" text, "document_id" varchar(255), "title" varchar(255), "notes" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
571
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120330190626')
572
+  (77.0ms) commit transaction
573
+ Migrating to RemoveEditableFieldsFromBookmarks (20120330190627)
574
+  (0.1ms) begin transaction
575
+  (24.2ms) CREATE TEMPORARY TABLE "altered_bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "url" text, "document_id" varchar(255), "title" varchar(255), "notes" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
576
+  (0.0ms) PRAGMA index_list("bookmarks")
577
+  (0.1ms) SELECT * FROM "bookmarks"
578
+  (0.2ms) DROP TABLE "bookmarks"
579
+  (0.2ms) CREATE TABLE "bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "url" text, "document_id" varchar(255), "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
580
+  (0.0ms) PRAGMA index_list("altered_bookmarks")
581
+  (0.1ms) SELECT * FROM "altered_bookmarks"
582
+  (0.2ms) DROP TABLE "altered_bookmarks"
583
+  (0.1ms) CREATE TEMPORARY TABLE "altered_bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "url" text, "document_id" varchar(255), "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
584
+  (0.0ms) PRAGMA index_list("bookmarks")
585
+  (0.1ms) SELECT * FROM "bookmarks"
586
+  (0.2ms) DROP TABLE "bookmarks"
587
+  (0.1ms) CREATE TABLE "bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "document_id" varchar(255), "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
588
+  (0.0ms) PRAGMA index_list("altered_bookmarks")
589
+  (0.1ms) SELECT * FROM "altered_bookmarks"
590
+  (0.1ms) DROP TABLE "altered_bookmarks"
591
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120330190627')
592
+  (88.7ms) commit transaction
593
+ Migrating to AddUserTypesToBookmarksSearches (20120330190628)
594
+  (0.1ms) begin transaction
595
+  (16.9ms) ALTER TABLE "searches" ADD "user_type" varchar(255)
596
+  (0.2ms) ALTER TABLE "bookmarks" ADD "user_type" varchar(255)
597
+ SQL (0.1ms) UPDATE "searches" SET user_type = 'user'
598
+ SQL (0.1ms) UPDATE "bookmarks" SET user_type = 'user'
599
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120330190628')
600
+  (88.8ms) commit transaction
601
+  (0.4ms) select sqlite_version(*)
602
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
603
+  (0.0ms) PRAGMA index_list("bookmarks")
604
+  (0.0ms) PRAGMA index_list("searches")
605
+  (0.0ms) PRAGMA index_info('index_searches_on_user_id')
606
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
607
+  (0.3ms) select sqlite_version(*)
608
+  (107.9ms) CREATE TABLE "bookmarks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "document_id" varchar(255), "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_type" varchar(255)) 
609
+  (73.8ms) CREATE TABLE "searches" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "query_params" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "user_type" varchar(255))
610
+  (0.0ms) PRAGMA index_list("searches")
611
+  (92.2ms) CREATE INDEX "index_searches_on_user_id" ON "searches" ("user_id")
612
+  (64.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
613
+  (0.0ms) PRAGMA index_list("schema_migrations")
614
+  (57.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
615
+  (0.1ms) SELECT version FROM "schema_migrations"
616
+  (57.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120330190628')
617
+  (58.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120330190626')
618
+  (58.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120330190625')
619
+  (58.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120330190627')
620
+
621
+
622
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:32:29 -0400
623
+ Processing by CatalogController#index as HTML
624
+ Solr fetch: CatalogController#get_search_results (81.8ms)
625
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.9ms)
626
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.5ms)
627
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.5ms)
628
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (6.0ms)
629
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (12.9ms)
630
+ Compiled jquery-ui-1.8.1.custom.css (0ms) (pid 11257)
631
+ Completed 500 Internal Server Error in 449ms
632
+
633
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
634
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
635
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
636
+ 4: <title><%= h(@page_title || application_name) %></title>
637
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
638
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
639
+ 7: <%= stylesheet_link_tag "application" %>
640
+ 8: <%= javascript_include_tag "application" %>
641
+ 9: <%= csrf_meta_tags %>
642
+ 10: <%= raw(render_head_content) %>
643
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
644
+
645
+
646
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
647
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
648
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
649
+
650
+
651
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:38:23 -0400
652
+ Processing by CatalogController#index as HTML
653
+ Solr fetch: CatalogController#get_search_results (81.5ms)
654
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (1.9ms)
655
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.4ms)
656
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.5ms)
657
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (5.9ms)
658
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (12.0ms)
659
+ Completed 500 Internal Server Error in 444ms
660
+
661
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
662
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
663
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
664
+ 4: <title><%= h(@page_title || application_name) %></title>
665
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
666
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
667
+ 7: <%= stylesheet_link_tag "application" %>
668
+ 8: <%= javascript_include_tag "application" %>
669
+ 9: <%= csrf_meta_tags %>
670
+ 10: <%= raw(render_head_content) %>
671
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
672
+
673
+
674
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.4ms)
675
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
676
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
677
+
678
+
679
+ Started GET "/" for 127.0.0.1 at 2012-03-30 15:41:48 -0400
680
+ Processing by CatalogController#index as HTML
681
+ Solr fetch: CatalogController#get_search_results (85.2ms)
682
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_search_form.html.erb (2.0ms)
683
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home_text.html.erb (0.4ms)
684
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_facets.html.erb (0.5ms)
685
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/_home.html.erb (6.2ms)
686
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/blacklight-3.3.1/app/views/catalog/index.html.erb within layouts/blacklight (12.6ms)
687
+ Completed 500 Internal Server Error in 471ms
688
+
689
+ ActionView::Template::Error (File to import not found or unreadable: blacklight/grids/susy_grid.
690
+ Load path: /home/jnronall/code/github/blacklight_google_analytics/test/dummy
691
+ (in /home/jnronall/code/github/blacklight_google_analytics/test/dummy/app/assets/stylesheets/blacklight_themes/standard.css.scss)):
692
+ 4: <title><%= h(@page_title || application_name) %></title>
693
+ 5: <link href="<%= opensearch_catalog_path(:format => 'xml', :only_path => false) %>" title="<%= application_name%>" type="application/opensearchdescription+xml" rel="search"/>
694
+ 6: <%= favicon_link_tag asset_path('favicon.ico') %>
695
+ 7: <%= stylesheet_link_tag "application" %>
696
+ 8: <%= javascript_include_tag "application" %>
697
+ 9: <%= csrf_meta_tags %>
698
+ 10: <%= raw(render_head_content) %>
699
+ app/assets/stylesheets/blacklight_themes/standard.css.scss:15
700
+
701
+
702
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
703
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
704
+ Rendered /home/jnronall/.rvm/gems/ruby-1.9.3-p125@bl-ga/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.0ms)