blacklight_google_analytics 0.0.1.pre2 → 0.0.1.pre3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/assets/javascripts/blacklight_google_analytics.js.erb +11 -0
- data/app/{assets/javascripts/google_analytics.js.erb → views/layouts/_google_analytics.html.erb} +3 -1
- data/lib/blacklight_google_analytics.rb +1 -0
- data/lib/blacklight_google_analytics/controller_extra_head.rb +10 -0
- data/lib/blacklight_google_analytics/version.rb +1 -1
- data/lib/generators/blacklight_google_analytics_generator.rb +34 -9
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +704 -0
- data/test/dummy/log/test.log +125 -5
- data/test/dummy/tmp/app/assets/javascripts/application.js +1 -2
- data/test/dummy/tmp/app/controllers/catalog_controller.rb +0 -0
- data/test/generator_test.rb +11 -6
- metadata +94 -103
|
@@ -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
|
});
|
data/app/{assets/javascripts/google_analytics.js.erb → views/layouts/_google_analytics.html.erb}
RENAMED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
<% if
|
|
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 %>
|
|
@@ -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
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
-
|
|
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
|
data/test/dummy/db/test.sqlite3
CHANGED
|
Binary file
|
|
@@ -0,0 +1,704 @@
|
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
2
|
+
[1m[35m (127.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
3
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
|
4
|
+
[1m[35m (75.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
5
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
|
6
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
559
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
560
|
+
Migrating to CreateSearches (20120330190625)
|
|
561
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
562
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
563
|
+
[1m[35m (0.8ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("searches")[0m
|
|
565
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_searches_on_user_id" ON "searches" ("user_id")
|
|
566
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120330190625')[0m
|
|
567
|
+
[1m[35m (120.4ms)[0m commit transaction
|
|
568
|
+
Migrating to CreateBookmarks (20120330190626)
|
|
569
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
570
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120330190626')[0m
|
|
572
|
+
[1m[35m (77.0ms)[0m commit transaction
|
|
573
|
+
Migrating to RemoveEditableFieldsFromBookmarks (20120330190627)
|
|
574
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
575
|
+
[1m[35m (24.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("bookmarks")[0m
|
|
577
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "bookmarks"
|
|
578
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "bookmarks"[0m
|
|
579
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_bookmarks")[0m
|
|
581
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_bookmarks"
|
|
582
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "altered_bookmarks"[0m
|
|
583
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("bookmarks")[0m
|
|
585
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "bookmarks"
|
|
586
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "bookmarks"[0m
|
|
587
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_bookmarks")[0m
|
|
589
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_bookmarks"
|
|
590
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_bookmarks"[0m
|
|
591
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120330190627')
|
|
592
|
+
[1m[36m (88.7ms)[0m [1mcommit transaction[0m
|
|
593
|
+
Migrating to AddUserTypesToBookmarksSearches (20120330190628)
|
|
594
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
595
|
+
[1m[36m (16.9ms)[0m [1mALTER TABLE "searches" ADD "user_type" varchar(255)[0m
|
|
596
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bookmarks" ADD "user_type" varchar(255)
|
|
597
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "searches" SET user_type = 'user'[0m
|
|
598
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "bookmarks" SET user_type = 'user'
|
|
599
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120330190628')[0m
|
|
600
|
+
[1m[35m (88.8ms)[0m commit transaction
|
|
601
|
+
[1m[36m (0.4ms)[0m [1mselect sqlite_version(*)[0m
|
|
602
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
603
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("bookmarks")[0m
|
|
604
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("searches")
|
|
605
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_searches_on_user_id')[0m
|
|
606
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
607
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
608
|
+
[1m[36m (107.9ms)[0m [1mCREATE 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)) [0m
|
|
609
|
+
[1m[35m (73.8ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("searches")[0m
|
|
611
|
+
[1m[35m (92.2ms)[0m CREATE INDEX "index_searches_on_user_id" ON "searches" ("user_id")
|
|
612
|
+
[1m[36m (64.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
613
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("schema_migrations")
|
|
614
|
+
[1m[36m (57.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
615
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
616
|
+
[1m[36m (57.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120330190628')[0m
|
|
617
|
+
[1m[35m (58.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120330190626')
|
|
618
|
+
[1m[36m (58.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120330190625')[0m
|
|
619
|
+
[1m[35m (58.0ms)[0m 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)
|