ems 0.1.0 → 0.1.1
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/stylesheets/ems/active_admin/components/_asset_store.scss +5 -1
- data/app/models/ems/asset.rb +1 -1
- data/app/views/ems/articles/_form.html.haml +1 -1
- data/app/views/ems/globals/_lead_image.html.haml +2 -0
- data/app/views/ems/news/_form.html.haml +1 -1
- data/app/views/ems/reports/_form.html.haml +1 -1
- data/config/initializers/bean_kramdown.rb +1 -0
- data/lib/ems/engine.rb +1 -1
- data/lib/ems/version.rb +1 -1
- data/lib/kramdown/bean_kramdown.rb +26 -0
- data/lib/kramdown/bean_kramdown/info_box.rb +52 -0
- data/lib/kramdown/bean_kramdown/oembed.rb +230 -0
- data/lib/kramdown/converter/bean_html.rb +71 -0
- data/lib/kramdown/parser/bean_kramdown/info_box.rb +52 -0
- data/lib/kramdown/parser/bean_kramdown/oembed.rb +230 -0
- data/test/dummy/log/development.log +1706 -0
- data/test/dummy/public/system/ems/articles/images/000/000/012/image228x126/nandos.png +0 -0
- data/test/dummy/public/system/ems/articles/images/000/000/012/image312x126/nandos.png +0 -0
- data/test/dummy/public/system/ems/articles/images/000/000/012/image312x189/nandos.png +0 -0
- data/test/dummy/public/system/ems/articles/images/000/000/012/image564x252/nandos.png +0 -0
- data/test/dummy/public/system/ems/articles/images/000/000/012/original/nandos.png +0 -0
- data/test/dummy/public/system/ems/assets/assets/000/000/001/original/CATs.jpeg +0 -0
- data/test/dummy/public/system/ems/assets/assets/000/000/002/original/test.pdf +0 -0
- data/test/dummy/tmp/cache/assets/C40/AE0/sprockets%2Ff6a5272156a29d410b210e23096595a4 +0 -0
- data/test/dummy/tmp/cache/assets/C93/990/sprockets%2F5a674ff04789264c4d9d30662c784b83 +0 -0
- metadata +43 -5
- data/config/environments/production.rb +0 -10
- data/test/dummy/tmp/pids/server.pid +0 -1
@@ -0,0 +1,52 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
#--
|
4
|
+
# Copyright (C) 2009-2012 Thomas Leitner <t_leitner@gmx.at>
|
5
|
+
#
|
6
|
+
# This file is part of kramdown.
|
7
|
+
#
|
8
|
+
# kramdown is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU General Public License as published by
|
10
|
+
# the Free Software Foundation, either version 3 of the License, or
|
11
|
+
# (at your option) any later version.
|
12
|
+
#
|
13
|
+
# This program is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU General Public License
|
19
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#++
|
21
|
+
#
|
22
|
+
|
23
|
+
require 'kramdown/parser/kramdown/blank_line'
|
24
|
+
require 'kramdown/parser/kramdown/extensions'
|
25
|
+
require 'kramdown/parser/kramdown/eob'
|
26
|
+
|
27
|
+
module Kramdown
|
28
|
+
module Parser
|
29
|
+
class BeanKramdown
|
30
|
+
|
31
|
+
INFO_BOX_START = /^#{OPT_SPACE}% ?/
|
32
|
+
|
33
|
+
# Parse the info box at the current location.
|
34
|
+
def parse_info_box
|
35
|
+
result = @src.scan(PARAGRAPH_MATCH)
|
36
|
+
while !@src.match?(self.class::LAZY_END)
|
37
|
+
result << @src.scan(PARAGRAPH_MATCH)
|
38
|
+
end
|
39
|
+
result.gsub!(INFO_BOX_START, '')
|
40
|
+
|
41
|
+
el = new_block_el(:info_box)
|
42
|
+
@tree.children << el
|
43
|
+
parse_blocks(el, result)
|
44
|
+
true
|
45
|
+
end
|
46
|
+
|
47
|
+
define_parser(:info_box, INFO_BOX_START)
|
48
|
+
|
49
|
+
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,230 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
#--
|
4
|
+
# Copyright (C) 2009-2012 Thomas Leitner <t_leitner@gmx.at>
|
5
|
+
#
|
6
|
+
# This file is part of kramdown.
|
7
|
+
#
|
8
|
+
# kramdown is free software: you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU General Public License as published by
|
10
|
+
# the Free Software Foundation, either version 3 of the License, or
|
11
|
+
# (at your option) any later version.
|
12
|
+
#
|
13
|
+
# This program is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU General Public License for more details.
|
17
|
+
#
|
18
|
+
# You should have received a copy of the GNU General Public License
|
19
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
#++
|
21
|
+
#
|
22
|
+
|
23
|
+
#
|
24
|
+
# This file has been edited to suit the needs of The Beans Group Ltd. Changes were made to the types of media availbable
|
25
|
+
# images keep their ! however new types are ? for oembedd etc
|
26
|
+
# If you wish to change the types of media you need to change the OEMBED_START constant to include your special symbol
|
27
|
+
# for the new media object as well as change the reg ex on the parser definition towards the bottom of this file.
|
28
|
+
#
|
29
|
+
|
30
|
+
require 'open-uri'
|
31
|
+
require 'cgi'
|
32
|
+
require 'json'
|
33
|
+
|
34
|
+
module Kramdown
|
35
|
+
module Parser
|
36
|
+
class BeanKramdown
|
37
|
+
|
38
|
+
# Normalize the oembed identifier.
|
39
|
+
def normalize_oembed_id(id)
|
40
|
+
id.gsub(/(\s|\n)+/, ' ').downcase
|
41
|
+
end
|
42
|
+
|
43
|
+
OEMBED_DEFINITION_START = /^#{OPT_SPACE}\[([^\n\]]+)\]:[ \t]*(?:<(.*?)>|([^'"\n]*?\S[^'"\n]*?))[ \t]*?(?:\n?[ \t]*?(["'])(.+?)\4[ \t]*?)?\n/
|
44
|
+
|
45
|
+
# Parse the oembed definition at the current location.
|
46
|
+
def parse_oembed_definition
|
47
|
+
@src.pos += @src.matched_size
|
48
|
+
oembed_id, oembed_url, oembed_title = normalize_oembed_id(@src[1]), @src[2] || @src[3], @src[5]
|
49
|
+
warning("Duplicate oembed ID '#{oembed_id}' - overwriting") if @oembed_defs[oembed_id]
|
50
|
+
@oembed_defs[oembed_id] = [oembed_url, oembed_title]
|
51
|
+
@tree.children << Element.new(:eob, :oembed_def)
|
52
|
+
true
|
53
|
+
end
|
54
|
+
define_parser(:oembed_definition, OEMBED_DEFINITION_START)
|
55
|
+
|
56
|
+
|
57
|
+
# This helper methods adds the approriate attributes to the element +el+ of type +a+ or +img+
|
58
|
+
# and the element itself to the @tree.
|
59
|
+
def add_oembed(el, href, title, alt_text = nil)
|
60
|
+
|
61
|
+
providers = {
|
62
|
+
:twitter => "https://api.twitter.com/1/statuses/oembed.json?url=%s",
|
63
|
+
:youtube => "http://www.youtube.com/oembed?url=%s&format=json&maxwidth=550",
|
64
|
+
:flickr => "http://flickr.com/services/oembed?url=%s&maxwidth=460&format=json&maxwidth=550",
|
65
|
+
:vidler => "http://lab.viddler.com/services/oembed/?url=%s&type=simple&format=json",
|
66
|
+
:qik => "http://qik.com/api/oembed.json?url=%s&maxwidth=550",
|
67
|
+
:revision3 => "http://revision3.com/api/oembed/?url=%s&format=json&maxwidth=550",
|
68
|
+
:hulu => "http://www.hulu.com/api/oembed.json?url=%s&maxwidth=550",
|
69
|
+
:vimeo => "http://vimeo.com/api/oembed.json?url=%s&maxwidth=550",
|
70
|
+
:collegehumor => "http://www.collegehumor.com/oembed.json?url=%s&maxwidth=550",
|
71
|
+
# :pollyeverywhere => "http://www.polleverywhere.com/services/oembed?url=%s&format=json",
|
72
|
+
# :opera => "http://my.opera.com/service/oembed/?url=%s",
|
73
|
+
:embedly => "http://api.embed.ly/1/oembed?url=%w&maxwidth=550",
|
74
|
+
:ifixit => "http://www.ifixit.com/Embed?url=%s&format=json",
|
75
|
+
:smugmug => "http://api.smugmug.com/services/oembed/?url=%s&format=json",
|
76
|
+
:slideshare => "http://www.slideshare.net/api/oembed/2?url=%s&format=json&maxwidth=550",
|
77
|
+
:wordpress => "http://public-api.wordpress.com/oembed/1.0/?format=json&url=%s&maxwidth=550"
|
78
|
+
}
|
79
|
+
# ready the hash for matching
|
80
|
+
provider_names = (providers.keys.each { |name| name.to_s }).join('|')
|
81
|
+
# match possible providers to see if we have a provider suitable for embedding the current href/url
|
82
|
+
result = href.match provider_names
|
83
|
+
if result and result[0]
|
84
|
+
safe_href = CGI.escape(href)
|
85
|
+
provider = result[0].to_sym
|
86
|
+
oembed_url = providers[provider] % safe_href
|
87
|
+
# unique figure id
|
88
|
+
fig_id = rand(1000)
|
89
|
+
# oembed
|
90
|
+
el = Element.new :oembed
|
91
|
+
begin
|
92
|
+
# get the oEmbed content
|
93
|
+
result = JSON.parse(open(oembed_url).read)
|
94
|
+
el.attr['provider_name'] = result['provider_name']
|
95
|
+
case result['type']
|
96
|
+
when "photo"
|
97
|
+
title = result['title']
|
98
|
+
el.attr['role'] = "img"
|
99
|
+
img = Element.new(:img)
|
100
|
+
img.attr['src'] = result['url']
|
101
|
+
img.attr['alt'] = result['title']
|
102
|
+
img.attr['width'] = result['width']
|
103
|
+
img.attr['height'] = result['height']
|
104
|
+
img.children.clear
|
105
|
+
el.children << img
|
106
|
+
when "video"
|
107
|
+
title = result['title']
|
108
|
+
el.attr['html'] = CGI.unescapeHTML(result['html'])
|
109
|
+
when "rich"
|
110
|
+
el.attr['html'] = CGI.unescapeHTML(result['html'])
|
111
|
+
end
|
112
|
+
|
113
|
+
if title
|
114
|
+
# unique figure id
|
115
|
+
el_id = rand(1000)
|
116
|
+
el.attr['id'] = el_id
|
117
|
+
cap = Element.new(:figCaption, title)
|
118
|
+
cap.attr['id'] = el_id
|
119
|
+
if el.attr['role'] === "img"
|
120
|
+
link = Element.new(:a, result['author_name'])
|
121
|
+
link.attr['href'] = result['author_url']
|
122
|
+
cap.children << link
|
123
|
+
end
|
124
|
+
el.children << cap
|
125
|
+
end
|
126
|
+
@tree.children << el
|
127
|
+
|
128
|
+
rescue
|
129
|
+
warning("Could not retrieve oEmbed information for URL #{oembed_url}")
|
130
|
+
end
|
131
|
+
else
|
132
|
+
warning("No oEmbed provider found for URL #{href}")
|
133
|
+
end
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
# if el.type == :a
|
138
|
+
# el.attr['href'] = href
|
139
|
+
# else
|
140
|
+
# el.attr['src'] = href
|
141
|
+
# el.attr['alt'] = alt_text
|
142
|
+
# el.children.clear
|
143
|
+
# end
|
144
|
+
# el.attr['title'] = title if title
|
145
|
+
# @tree.children << el
|
146
|
+
end
|
147
|
+
|
148
|
+
OEMBED_BRACKET_STOP_RE = /(\])|!?\[/
|
149
|
+
OEMBED_PAREN_STOP_RE = /(\()|(\))|\s(?=['"])/
|
150
|
+
OEMBED_INLINE_ID_RE = /\s*?\[([^\]]+)?\]/
|
151
|
+
OEMBED_INLINE_TITLE_RE = /\s*?(["'])(.+?)\1\s*?\)/
|
152
|
+
OEMBED_START = /\?\[(?=[^^])/
|
153
|
+
|
154
|
+
# Parse the oembed at the current scanner position. This method is used to parse normal oembeds as
|
155
|
+
# well as image oembeds.
|
156
|
+
def parse_oembed
|
157
|
+
result = @src.scan(OEMBED_START)
|
158
|
+
reset_pos = @src.pos
|
159
|
+
oembed_type = :img
|
160
|
+
|
161
|
+
el = Element.new(oembed_type)
|
162
|
+
|
163
|
+
count = 1
|
164
|
+
found = parse_spans(el, OEMBED_BRACKET_STOP_RE) do
|
165
|
+
count = count + (@src[1] ? -1 : 1)
|
166
|
+
count - el.children.select {|c| c.type == :img}.size == 0
|
167
|
+
end
|
168
|
+
if !found || (oembed_type == :a && el.children.empty?)
|
169
|
+
@src.pos = reset_pos
|
170
|
+
add_text(result)
|
171
|
+
return
|
172
|
+
end
|
173
|
+
alt_text = extract_string(reset_pos...@src.pos, @src)
|
174
|
+
@src.scan(OEMBED_BRACKET_STOP_RE)
|
175
|
+
|
176
|
+
# reference style oembed or no oembed url
|
177
|
+
if @src.scan(OEMBED_INLINE_ID_RE) || !@src.check(/\(/)
|
178
|
+
oembed_id = normalize_oembed_id(@src[1] || alt_text)
|
179
|
+
if @oembed_defs.has_key?(oembed_id)
|
180
|
+
add_oembed(el, @oembed_defs[oembed_id].first, @oembed_defs[oembed_id].last, alt_text)
|
181
|
+
else
|
182
|
+
warning("No oembed definition for oembed ID '#{oembed_id}' found")
|
183
|
+
@src.pos = reset_pos
|
184
|
+
add_text(result)
|
185
|
+
end
|
186
|
+
return
|
187
|
+
end
|
188
|
+
|
189
|
+
# oembed url in parentheses
|
190
|
+
if @src.scan(/\(<(.*?)>/)
|
191
|
+
oembed_url = @src[1]
|
192
|
+
if @src.scan(/\)/)
|
193
|
+
add_oembed(el, oembed_url, nil, alt_text)
|
194
|
+
return
|
195
|
+
end
|
196
|
+
else
|
197
|
+
oembed_url = ''
|
198
|
+
nr_of_brackets = 0
|
199
|
+
while temp = @src.scan_until(OEMBED_PAREN_STOP_RE)
|
200
|
+
oembed_url << temp
|
201
|
+
if @src[2]
|
202
|
+
nr_of_brackets -= 1
|
203
|
+
break if nr_of_brackets == 0
|
204
|
+
elsif @src[1]
|
205
|
+
nr_of_brackets += 1
|
206
|
+
else
|
207
|
+
break
|
208
|
+
end
|
209
|
+
end
|
210
|
+
oembed_url = oembed_url[1..-2]
|
211
|
+
oembed_url.strip!
|
212
|
+
|
213
|
+
if nr_of_brackets == 0
|
214
|
+
add_oembed(el, oembed_url, nil, alt_text)
|
215
|
+
return
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
if @src.scan(OEMBED_INLINE_TITLE_RE)
|
220
|
+
add_oembed(el, oembed_url, @src[2], alt_text)
|
221
|
+
else
|
222
|
+
@src.pos = reset_pos
|
223
|
+
add_text(result)
|
224
|
+
end
|
225
|
+
end
|
226
|
+
define_parser(:oembed, OEMBED_START, '\?\[')
|
227
|
+
|
228
|
+
end
|
229
|
+
end
|
230
|
+
end
|
@@ -733922,3 +733922,1709 @@ Served asset /wmd/wmd-buttons.png - 304 Not Modified (1ms)
|
|
733922
733922
|
|
733923
733923
|
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 16:46:08 +0100
|
733924
733924
|
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (3ms)
|
733925
|
+
|
733926
|
+
|
733927
|
+
Started GET "/ems/categories/youth-marketing-insights/articles" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733928
|
+
Processing by Ems::ArticlesController#index as HTML
|
733929
|
+
Parameters: {"category_id"=>"youth-marketing-insights"}
|
733930
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
733931
|
+
[1m[36mEms::Role Load (0.3ms)[0m [1mSELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1[0m
|
733932
|
+
[1m[35mEms::Article Load (0.3ms)[0m SELECT `ems_articles`.* FROM `ems_articles`
|
733933
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/index.html.haml within layouts/ems/application (15.1ms)
|
733934
|
+
Completed 200 OK in 37ms (Views: 28.5ms | ActiveRecord: 0.9ms | Solr: 0.0ms)
|
733935
|
+
|
733936
|
+
|
733937
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733938
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
733939
|
+
|
733940
|
+
|
733941
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733942
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
733943
|
+
|
733944
|
+
|
733945
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733946
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
733947
|
+
|
733948
|
+
|
733949
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733950
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
733951
|
+
|
733952
|
+
|
733953
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733954
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
733955
|
+
|
733956
|
+
|
733957
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733958
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
733959
|
+
|
733960
|
+
|
733961
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733962
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
733963
|
+
|
733964
|
+
|
733965
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733966
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
733967
|
+
|
733968
|
+
|
733969
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733970
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
733971
|
+
|
733972
|
+
|
733973
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733974
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
733975
|
+
|
733976
|
+
|
733977
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733978
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
733979
|
+
|
733980
|
+
|
733981
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733982
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
733983
|
+
|
733984
|
+
|
733985
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733986
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
733987
|
+
|
733988
|
+
|
733989
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733990
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
733991
|
+
|
733992
|
+
|
733993
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733994
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
733995
|
+
|
733996
|
+
|
733997
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
733998
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
733999
|
+
|
734000
|
+
|
734001
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
734002
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
734003
|
+
|
734004
|
+
|
734005
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
734006
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
734007
|
+
|
734008
|
+
|
734009
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 16:47:47 +0100
|
734010
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
734011
|
+
|
734012
|
+
|
734013
|
+
Started GET "/ems/categories/youth-marketing-insights/articles" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734014
|
+
Processing by Ems::ArticlesController#index as HTML
|
734015
|
+
Parameters: {"category_id"=>"youth-marketing-insights"}
|
734016
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
734017
|
+
[1m[35mEms::Role Load (0.3ms)[0m SELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1
|
734018
|
+
[1m[36mEms::Article Load (0.2ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` [0m
|
734019
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/index.html.haml within layouts/ems/application (12.8ms)
|
734020
|
+
Completed 200 OK in 64ms (Views: 57.0ms | ActiveRecord: 0.8ms | Solr: 0.0ms)
|
734021
|
+
|
734022
|
+
|
734023
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734024
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
734025
|
+
|
734026
|
+
|
734027
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734028
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
734029
|
+
|
734030
|
+
|
734031
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734032
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
734033
|
+
|
734034
|
+
|
734035
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734036
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
734037
|
+
|
734038
|
+
|
734039
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734040
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
734041
|
+
|
734042
|
+
|
734043
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734044
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
734045
|
+
|
734046
|
+
|
734047
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734048
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
734049
|
+
|
734050
|
+
|
734051
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734052
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
734053
|
+
|
734054
|
+
|
734055
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734056
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
734057
|
+
|
734058
|
+
|
734059
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734060
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
734061
|
+
|
734062
|
+
|
734063
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734064
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
734065
|
+
|
734066
|
+
|
734067
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734068
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
734069
|
+
|
734070
|
+
|
734071
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734072
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
734073
|
+
|
734074
|
+
|
734075
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734076
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
734077
|
+
|
734078
|
+
|
734079
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734080
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
734081
|
+
|
734082
|
+
|
734083
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734084
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
734085
|
+
|
734086
|
+
|
734087
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734088
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
734089
|
+
|
734090
|
+
|
734091
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734092
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
734093
|
+
|
734094
|
+
|
734095
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 16:51:40 +0100
|
734096
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
734097
|
+
|
734098
|
+
|
734099
|
+
Started GET "/" for 192.168.1.8 at 2012-05-22 17:24:21 +0100
|
734100
|
+
|
734101
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
734102
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
734103
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
734104
|
+
railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
|
734105
|
+
railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
|
734106
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
734107
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
734108
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
734109
|
+
activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
734110
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
734111
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
|
734112
|
+
railties (3.2.3) lib/rails/engine.rb:479:in `call'
|
734113
|
+
railties (3.2.3) lib/rails/application.rb:220:in `call'
|
734114
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
734115
|
+
railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
|
734116
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
734117
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
734118
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
734119
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
734120
|
+
|
734121
|
+
|
734122
|
+
Rendered /Users/vincent/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
734123
|
+
|
734124
|
+
|
734125
|
+
Started GET "/ems/" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734126
|
+
Processing by Ems::EmsController#index as HTML
|
734127
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
734128
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/ems/index.html.haml within layouts/ems/application (2.8ms)
|
734129
|
+
Completed 200 OK in 51ms (Views: 49.9ms | ActiveRecord: 0.3ms | Solr: 0.0ms)
|
734130
|
+
|
734131
|
+
|
734132
|
+
Started GET "/assets/ems/ems.css" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734133
|
+
Served asset /ems/ems.css - 404 Not Found (3ms)
|
734134
|
+
|
734135
|
+
ActionController::RoutingError (No route matches [GET] "/assets/ems/ems.css"):
|
734136
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
734137
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
734138
|
+
railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
|
734139
|
+
railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
|
734140
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
734141
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
734142
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
734143
|
+
activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
734144
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
734145
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
|
734146
|
+
railties (3.2.3) lib/rails/engine.rb:479:in `call'
|
734147
|
+
railties (3.2.3) lib/rails/application.rb:220:in `call'
|
734148
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
734149
|
+
railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
|
734150
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
734151
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
734152
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
734153
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
734154
|
+
|
734155
|
+
|
734156
|
+
Rendered /Users/vincent/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
734157
|
+
|
734158
|
+
|
734159
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734160
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
734161
|
+
|
734162
|
+
|
734163
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734164
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
734165
|
+
|
734166
|
+
|
734167
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734168
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
734169
|
+
|
734170
|
+
|
734171
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734172
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
734173
|
+
|
734174
|
+
|
734175
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734176
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
734177
|
+
|
734178
|
+
|
734179
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734180
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
734181
|
+
|
734182
|
+
|
734183
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734184
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
734185
|
+
|
734186
|
+
|
734187
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734188
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
734189
|
+
|
734190
|
+
|
734191
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734192
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
734193
|
+
|
734194
|
+
|
734195
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734196
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
734197
|
+
|
734198
|
+
|
734199
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734200
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
734201
|
+
|
734202
|
+
|
734203
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734204
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
734205
|
+
|
734206
|
+
|
734207
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734208
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
734209
|
+
|
734210
|
+
|
734211
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734212
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
734213
|
+
|
734214
|
+
|
734215
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734216
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
734217
|
+
|
734218
|
+
|
734219
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734220
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
734221
|
+
|
734222
|
+
|
734223
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:26 +0100
|
734224
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
734225
|
+
|
734226
|
+
|
734227
|
+
Started GET "/ems/categories/youth-marketing-insights/articles/new" for 192.168.1.8 at 2012-05-22 17:24:48 +0100
|
734228
|
+
Processing by Ems::ArticlesController#new as HTML
|
734229
|
+
Parameters: {"category_id"=>"youth-marketing-insights"}
|
734230
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
734231
|
+
[1m[35mEms::Role Load (0.3ms)[0m SELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1
|
734232
|
+
[1m[36mEms::Category Load (0.2ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`slug` = 'youth-marketing-insights' LIMIT 1[0m
|
734233
|
+
[1m[35mCACHE (0.0ms)[0m SELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`slug` = 'youth-marketing-insights' LIMIT 1
|
734234
|
+
[1m[36mEms::Category Load (0.3ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` [0m
|
734235
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_lead_image.html.haml (1.2ms)
|
734236
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_asset.html.haml (1.3ms)
|
734237
|
+
[1m[35mEms::Channel Load (0.4ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_categories_channels` ON `ems_categories_channels`.`channel_id` = `ems_channels`.`id` INNER JOIN `ems_categories` ON `ems_categories`.`id` = `ems_categories_channels`.`category_id` WHERE `ems_categories_channels`.`category_id` = 1
|
734238
|
+
[1m[36mEms::Tag Load (0.2ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` [0m
|
734239
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/_form.html.haml (22.0ms)
|
734240
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/new.html.haml within layouts/ems/application (27.0ms)
|
734241
|
+
Completed 200 OK in 77ms (Views: 68.8ms | ActiveRecord: 1.6ms | Solr: 0.0ms)
|
734242
|
+
|
734243
|
+
|
734244
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734245
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
734246
|
+
|
734247
|
+
|
734248
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734249
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
734250
|
+
|
734251
|
+
|
734252
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734253
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
734254
|
+
|
734255
|
+
|
734256
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734257
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
734258
|
+
|
734259
|
+
|
734260
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734261
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
734262
|
+
|
734263
|
+
|
734264
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734265
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
734266
|
+
|
734267
|
+
|
734268
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734269
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
734270
|
+
|
734271
|
+
|
734272
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734273
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
734274
|
+
|
734275
|
+
|
734276
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734277
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
734278
|
+
|
734279
|
+
|
734280
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734281
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
734282
|
+
|
734283
|
+
|
734284
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734285
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
734286
|
+
|
734287
|
+
|
734288
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734289
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
734290
|
+
|
734291
|
+
|
734292
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734293
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
734294
|
+
|
734295
|
+
|
734296
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734297
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
734298
|
+
|
734299
|
+
|
734300
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734301
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
734302
|
+
|
734303
|
+
|
734304
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734305
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
734306
|
+
|
734307
|
+
|
734308
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734309
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
734310
|
+
|
734311
|
+
|
734312
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734313
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
734314
|
+
|
734315
|
+
|
734316
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734317
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
734318
|
+
|
734319
|
+
|
734320
|
+
Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734321
|
+
Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms)
|
734322
|
+
|
734323
|
+
|
734324
|
+
Started GET "/assets/wmd/wmd-buttons.png" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734325
|
+
Served asset /wmd/wmd-buttons.png - 304 Not Modified (0ms)
|
734326
|
+
|
734327
|
+
|
734328
|
+
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 17:24:49 +0100
|
734329
|
+
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms)
|
734330
|
+
|
734331
|
+
|
734332
|
+
Started POST "/ems/categories/youth-marketing-insights/articles" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734333
|
+
Processing by Ems::ArticlesController#create as HTML
|
734334
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VHVuwer0Dd4qtCHhqHoR8Rg0YPSqNNZRLuSd3qj4rpw=", "article"=>{"category_id"=>"1", "title"=>"test", "standfirst"=>"test", "content"=>"test", "status"=>"live", "publish_from"=>"", "channel_ids"=>[""], "tag_ids"=>[""], "hot"=>"0", "featured"=>"0"}, "commit"=>"Create Article", "category_id"=>"youth-marketing-insights"}
|
734335
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
734336
|
+
[1m[36mEms::Role Load (0.3ms)[0m [1mSELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1[0m
|
734337
|
+
[1m[35m (0.1ms)[0m BEGIN
|
734338
|
+
[1m[36mEms::Category Load (0.2ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1[0m
|
734339
|
+
[1m[35mEms::Article Exists (0.2ms)[0m SELECT 1 FROM `ems_articles` WHERE `ems_articles`.`slug` = BINARY '' LIMIT 1
|
734340
|
+
[1m[36mEms::Category Exists (0.2ms)[0m [1mSELECT 1 FROM `ems_categories` WHERE (`ems_categories`.`slug` = BINARY 'youth-marketing-insights' AND `ems_categories`.`id` != 1) LIMIT 1[0m
|
734341
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
734342
|
+
[1m[36mEms::Category Load (0.2ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` [0m
|
734343
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_lead_image.html.haml (1.3ms)
|
734344
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_asset.html.haml (1.1ms)
|
734345
|
+
[1m[35mEms::Channel Load (0.3ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_categories_channels` ON `ems_categories_channels`.`channel_id` = `ems_channels`.`id` INNER JOIN `ems_categories` ON `ems_categories`.`id` = `ems_categories_channels`.`category_id` WHERE `ems_categories_channels`.`category_id` = 1
|
734346
|
+
[1m[36mEms::Tag Load (0.2ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` [0m
|
734347
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/_form.html.haml (23.2ms)
|
734348
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/new.html.haml within layouts/ems/application (27.3ms)
|
734349
|
+
Completed 200 OK in 84ms (Views: 70.5ms | ActiveRecord: 2.1ms | Solr: 0.0ms)
|
734350
|
+
|
734351
|
+
|
734352
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734353
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
734354
|
+
|
734355
|
+
|
734356
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734357
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
734358
|
+
|
734359
|
+
|
734360
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734361
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
734362
|
+
|
734363
|
+
|
734364
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734365
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
734366
|
+
|
734367
|
+
|
734368
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734369
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
734370
|
+
|
734371
|
+
|
734372
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734373
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
734374
|
+
|
734375
|
+
|
734376
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734377
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
734378
|
+
|
734379
|
+
|
734380
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734381
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
734382
|
+
|
734383
|
+
|
734384
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734385
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
734386
|
+
|
734387
|
+
|
734388
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734389
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
734390
|
+
|
734391
|
+
|
734392
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734393
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
734394
|
+
|
734395
|
+
|
734396
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734397
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
734398
|
+
|
734399
|
+
|
734400
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734401
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
734402
|
+
|
734403
|
+
|
734404
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734405
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
734406
|
+
|
734407
|
+
|
734408
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734409
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
734410
|
+
|
734411
|
+
|
734412
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734413
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
734414
|
+
|
734415
|
+
|
734416
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734417
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
734418
|
+
|
734419
|
+
|
734420
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734421
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
734422
|
+
|
734423
|
+
|
734424
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734425
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
734426
|
+
|
734427
|
+
|
734428
|
+
Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734429
|
+
Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms)
|
734430
|
+
|
734431
|
+
|
734432
|
+
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734433
|
+
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms)
|
734434
|
+
|
734435
|
+
|
734436
|
+
Started GET "/assets/wmd/wmd-buttons.png" for 192.168.1.8 at 2012-05-22 17:24:58 +0100
|
734437
|
+
Served asset /wmd/wmd-buttons.png - 304 Not Modified (0ms)
|
734438
|
+
|
734439
|
+
|
734440
|
+
Started GET "/assets/active_admin/datepicker/datepicker-header-bg.png" for 192.168.1.8 at 2012-05-22 17:25:00 +0100
|
734441
|
+
Served asset /active_admin/datepicker/datepicker-header-bg.png - 200 OK (2ms)
|
734442
|
+
|
734443
|
+
|
734444
|
+
Started GET "/assets/active_admin/datepicker/datepicker-prev-link-icon.png" for 192.168.1.8 at 2012-05-22 17:25:00 +0100
|
734445
|
+
Served asset /active_admin/datepicker/datepicker-prev-link-icon.png - 200 OK (2ms)
|
734446
|
+
|
734447
|
+
|
734448
|
+
Started GET "/assets/active_admin/datepicker/datepicker-next-link-icon.png" for 192.168.1.8 at 2012-05-22 17:25:00 +0100
|
734449
|
+
Served asset /active_admin/datepicker/datepicker-next-link-icon.png - 200 OK (2ms)
|
734450
|
+
|
734451
|
+
|
734452
|
+
Started GET "/assets/ems/images/ui-bg_glass_75_e6e6e6_1x400.png" for 192.168.1.8 at 2012-05-22 17:25:00 +0100
|
734453
|
+
Served asset /ems/images/ui-bg_glass_75_e6e6e6_1x400.png - 404 Not Found (4ms)
|
734454
|
+
|
734455
|
+
ActionController::RoutingError (No route matches [GET] "/assets/ems/images/ui-bg_glass_75_e6e6e6_1x400.png"):
|
734456
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
734457
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
734458
|
+
railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
|
734459
|
+
railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
|
734460
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
734461
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
734462
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
734463
|
+
activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
734464
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
734465
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
|
734466
|
+
railties (3.2.3) lib/rails/engine.rb:479:in `call'
|
734467
|
+
railties (3.2.3) lib/rails/application.rb:220:in `call'
|
734468
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
734469
|
+
railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
|
734470
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
734471
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
734472
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
734473
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
734474
|
+
|
734475
|
+
|
734476
|
+
Rendered /Users/vincent/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
734477
|
+
|
734478
|
+
|
734479
|
+
Started POST "/ems/categories/youth-marketing-insights/articles" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734480
|
+
Processing by Ems::ArticlesController#create as HTML
|
734481
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VHVuwer0Dd4qtCHhqHoR8Rg0YPSqNNZRLuSd3qj4rpw=", "article"=>{"category_id"=>"1", "title"=>"test", "standfirst"=>"test", "content"=>"test", "status"=>"live", "publish_from"=>"02/05/2012", "channel_ids"=>["", "4"], "tag_ids"=>[""], "hot"=>"0", "featured"=>"0"}, "commit"=>"Create Article", "category_id"=>"youth-marketing-insights"}
|
734482
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
734483
|
+
[1m[36mEms::Channel Load (0.2ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` WHERE `ems_channels`.`id` = 4 LIMIT 1[0m
|
734484
|
+
[1m[35mEms::Role Load (0.3ms)[0m SELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1
|
734485
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` WHERE `ems_channels`.`id` = 4 LIMIT 1[0m
|
734486
|
+
[1m[35m (0.1ms)[0m BEGIN
|
734487
|
+
[1m[36mEms::Category Load (0.2ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1[0m
|
734488
|
+
[1m[35mEms::Article Exists (0.2ms)[0m SELECT 1 FROM `ems_articles` WHERE `ems_articles`.`slug` = BINARY '' LIMIT 1
|
734489
|
+
[1m[36mEms::Category Exists (0.2ms)[0m [1mSELECT 1 FROM `ems_categories` WHERE (`ems_categories`.`slug` = BINARY 'youth-marketing-insights' AND `ems_categories`.`id` != 1) LIMIT 1[0m
|
734490
|
+
[1m[35mEms::Channel Exists (0.2ms)[0m SELECT 1 FROM `ems_channels` WHERE (`ems_channels`.`slug` = BINARY 'resources' AND `ems_channels`.`id` != 4) LIMIT 1
|
734491
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
734492
|
+
[1m[35mEms::Category Load (0.3ms)[0m SELECT `ems_categories`.* FROM `ems_categories`
|
734493
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_lead_image.html.haml (1.1ms)
|
734494
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_asset.html.haml (1.1ms)
|
734495
|
+
[1m[36mEms::Channel Load (0.4ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_categories_channels` ON `ems_categories_channels`.`channel_id` = `ems_channels`.`id` INNER JOIN `ems_categories` ON `ems_categories`.`id` = `ems_categories_channels`.`category_id` WHERE `ems_categories_channels`.`category_id` = 1[0m
|
734496
|
+
[1m[35mEms::Tag Load (0.2ms)[0m SELECT `ems_tags`.* FROM `ems_tags`
|
734497
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/_form.html.haml (54.6ms)
|
734498
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/new.html.haml within layouts/ems/application (58.9ms)
|
734499
|
+
Completed 200 OK in 87ms (Views: 71.1ms | ActiveRecord: 2.9ms | Solr: 0.0ms)
|
734500
|
+
|
734501
|
+
|
734502
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734503
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
734504
|
+
|
734505
|
+
|
734506
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734507
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
734508
|
+
|
734509
|
+
|
734510
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734511
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
734512
|
+
|
734513
|
+
|
734514
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734515
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
734516
|
+
|
734517
|
+
|
734518
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734519
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
734520
|
+
|
734521
|
+
|
734522
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734523
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
734524
|
+
|
734525
|
+
|
734526
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734527
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
734528
|
+
|
734529
|
+
|
734530
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734531
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
734532
|
+
|
734533
|
+
|
734534
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734535
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
734536
|
+
|
734537
|
+
|
734538
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734539
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
734540
|
+
|
734541
|
+
|
734542
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734543
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
734544
|
+
|
734545
|
+
|
734546
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734547
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
734548
|
+
|
734549
|
+
|
734550
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734551
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
734552
|
+
|
734553
|
+
|
734554
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734555
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
734556
|
+
|
734557
|
+
|
734558
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734559
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
734560
|
+
|
734561
|
+
|
734562
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734563
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
734564
|
+
|
734565
|
+
|
734566
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734567
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
734568
|
+
|
734569
|
+
|
734570
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734571
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
734572
|
+
|
734573
|
+
|
734574
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734575
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
734576
|
+
|
734577
|
+
|
734578
|
+
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734579
|
+
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms)
|
734580
|
+
|
734581
|
+
|
734582
|
+
Started GET "/assets/wmd/wmd-buttons.png" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734583
|
+
Served asset /wmd/wmd-buttons.png - 304 Not Modified (0ms)
|
734584
|
+
|
734585
|
+
|
734586
|
+
Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.1.8 at 2012-05-22 17:25:03 +0100
|
734587
|
+
Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms)
|
734588
|
+
|
734589
|
+
|
734590
|
+
Started POST "/ems/categories/youth-marketing-insights/articles" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734591
|
+
Processing by Ems::ArticlesController#create as HTML
|
734592
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VHVuwer0Dd4qtCHhqHoR8Rg0YPSqNNZRLuSd3qj4rpw=", "article"=>{"category_id"=>"1", "title"=>"test", "standfirst"=>"test", "image"=>#<ActionDispatch::Http::UploadedFile:0x007ff51816c3c0 @original_filename="nandos.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"article[image]\"; filename=\"nandos.png\"\r\nContent-Type: image/png\r\n", @tempfile=#<File:/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/RackMultipart20120522-19488-1f86ozf>>, "content"=>"test", "status"=>"live", "publish_from"=>"02/05/2012", "channel_ids"=>["", "4"], "tag_ids"=>[""], "hot"=>"0", "featured"=>"0"}, "commit"=>"Create Article", "category_id"=>"youth-marketing-insights"}
|
734593
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
734594
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb4.png[0]'
|
734595
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb4.png[0]' -resize "564x" -crop "564x252+0+44" +repage '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb420120522-19488-1y5oq1x'
|
734596
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb4.png[0]'
|
734597
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb4.png[0]' -resize "312x" -crop "312x189+0+0" +repage '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb420120522-19488-1k7s6z0'
|
734598
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb4.png[0]'
|
734599
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb4.png[0]' -resize "312x126" '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb420120522-19488-5s43w9'
|
734600
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb4.png[0]'
|
734601
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb4.png[0]' -resize "228x126" '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-18ehsb420120522-19488-1da00yd'
|
734602
|
+
[1m[35mEms::Channel Load (0.4ms)[0m SELECT `ems_channels`.* FROM `ems_channels` WHERE `ems_channels`.`id` = 4 LIMIT 1
|
734603
|
+
[1m[36mEms::Role Load (0.2ms)[0m [1mSELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1[0m
|
734604
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu51.png[0]'
|
734605
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu51.png[0]' -resize "564x" -crop "564x252+0+44" +repage '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu5120120522-19488-16lw7vf'
|
734606
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu51.png[0]'
|
734607
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu51.png[0]' -resize "312x" -crop "312x189+0+0" +repage '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu5120120522-19488-2ay4wj'
|
734608
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu51.png[0]'
|
734609
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu51.png[0]' -resize "312x126" '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu5120120522-19488-y6rtee'
|
734610
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu51.png[0]'
|
734611
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu51.png[0]' -resize "228x126" '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-7npu5120120522-19488-wyjbrb'
|
734612
|
+
[1m[35mCACHE (0.0ms)[0m SELECT `ems_channels`.* FROM `ems_channels` WHERE `ems_channels`.`id` = 4 LIMIT 1
|
734613
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
734614
|
+
[1m[35mEms::Category Load (0.2ms)[0m SELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1
|
734615
|
+
[1m[36mEms::Article Exists (0.2ms)[0m [1mSELECT 1 FROM `ems_articles` WHERE `ems_articles`.`slug` = BINARY '' LIMIT 1[0m
|
734616
|
+
[1m[35mEms::Category Exists (0.2ms)[0m SELECT 1 FROM `ems_categories` WHERE (`ems_categories`.`slug` = BINARY 'youth-marketing-insights' AND `ems_categories`.`id` != 1) LIMIT 1
|
734617
|
+
[1m[36mEms::Channel Exists (0.3ms)[0m [1mSELECT 1 FROM `ems_channels` WHERE (`ems_channels`.`slug` = BINARY 'resources' AND `ems_channels`.`id` != 4) LIMIT 1[0m
|
734618
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
734619
|
+
[1m[36mEms::Category Load (0.4ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` [0m
|
734620
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_lead_image.html.haml (1.2ms)
|
734621
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_asset.html.haml (1.0ms)
|
734622
|
+
[1m[35mEms::Channel Load (0.4ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_categories_channels` ON `ems_categories_channels`.`channel_id` = `ems_channels`.`id` INNER JOIN `ems_categories` ON `ems_categories`.`id` = `ems_categories_channels`.`category_id` WHERE `ems_categories_channels`.`category_id` = 1
|
734623
|
+
[1m[36mEms::Tag Load (0.2ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` [0m
|
734624
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/_form.html.haml (64.3ms)
|
734625
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/new.html.haml within layouts/ems/application (69.5ms)
|
734626
|
+
Completed 200 OK in 497ms (Views: 82.2ms | ActiveRecord: 3.1ms | Solr: 0.0ms)
|
734627
|
+
|
734628
|
+
|
734629
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734630
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
734631
|
+
|
734632
|
+
|
734633
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734634
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
734635
|
+
|
734636
|
+
|
734637
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734638
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
734639
|
+
|
734640
|
+
|
734641
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734642
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
734643
|
+
|
734644
|
+
|
734645
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734646
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
734647
|
+
|
734648
|
+
|
734649
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734650
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
734651
|
+
|
734652
|
+
|
734653
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734654
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
734655
|
+
|
734656
|
+
|
734657
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734658
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
734659
|
+
|
734660
|
+
|
734661
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734662
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
734663
|
+
|
734664
|
+
|
734665
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734666
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
734667
|
+
|
734668
|
+
|
734669
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734670
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
734671
|
+
|
734672
|
+
|
734673
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734674
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
734675
|
+
|
734676
|
+
|
734677
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734678
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
734679
|
+
|
734680
|
+
|
734681
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734682
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
734683
|
+
|
734684
|
+
|
734685
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734686
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
734687
|
+
|
734688
|
+
|
734689
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734690
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
734691
|
+
|
734692
|
+
|
734693
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734694
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
734695
|
+
|
734696
|
+
|
734697
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734698
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
734699
|
+
|
734700
|
+
|
734701
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734702
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
734703
|
+
|
734704
|
+
|
734705
|
+
Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734706
|
+
Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms)
|
734707
|
+
|
734708
|
+
|
734709
|
+
Started GET "/assets/wmd/wmd-buttons.png" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734710
|
+
Served asset /wmd/wmd-buttons.png - 304 Not Modified (0ms)
|
734711
|
+
|
734712
|
+
|
734713
|
+
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 17:25:08 +0100
|
734714
|
+
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms)
|
734715
|
+
|
734716
|
+
|
734717
|
+
Started POST "/ems/categories/youth-marketing-insights/articles" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734718
|
+
Processing by Ems::ArticlesController#create as HTML
|
734719
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VHVuwer0Dd4qtCHhqHoR8Rg0YPSqNNZRLuSd3qj4rpw=", "article"=>{"category_id"=>"1", "title"=>"test", "standfirst"=>"test", "content"=>"test", "status"=>"draft", "publish_from"=>"02/05/2012", "channel_ids"=>["", "4"], "tag_ids"=>[""], "hot"=>"0", "featured"=>"0"}, "commit"=>"Create Article", "category_id"=>"youth-marketing-insights"}
|
734720
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
734721
|
+
[1m[36mEms::Channel Load (0.2ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` WHERE `ems_channels`.`id` = 4 LIMIT 1[0m
|
734722
|
+
[1m[35mEms::Role Load (0.2ms)[0m SELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1
|
734723
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` WHERE `ems_channels`.`id` = 4 LIMIT 1[0m
|
734724
|
+
[1m[35m (0.2ms)[0m BEGIN
|
734725
|
+
[1m[36mEms::Article Load (0.4ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE (`slug` = 'test' OR `slug` LIKE 'test--%') ORDER BY LENGTH(`slug`) DESC, `slug` DESC LIMIT 1[0m
|
734726
|
+
[1m[35mEms::Category Load (0.2ms)[0m SELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1
|
734727
|
+
[1m[36mEms::Article Exists (0.2ms)[0m [1mSELECT 1 FROM `ems_articles` WHERE `ems_articles`.`slug` = BINARY 'test--2' LIMIT 1[0m
|
734728
|
+
[1m[35mEms::Category Exists (0.2ms)[0m SELECT 1 FROM `ems_categories` WHERE (`ems_categories`.`slug` = BINARY 'youth-marketing-insights' AND `ems_categories`.`id` != 1) LIMIT 1
|
734729
|
+
[1m[36mEms::Channel Exists (0.2ms)[0m [1mSELECT 1 FROM `ems_channels` WHERE (`ems_channels`.`slug` = BINARY 'resources' AND `ems_channels`.`id` != 4) LIMIT 1[0m
|
734730
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `ems_articles` (`category_id`, `comment`, `content`, `content_disposition`, `created_at`, `featured`, `hot`, `image_content_type`, `image_file_name`, `image_file_size`, `image_updated_at`, `meta_description`, `meta_title`, `publish_from`, `slug`, `standfirst`, `status`, `title`, `toc`, `updated_at`) VALUES (1, NULL, 'test', 'markdown', '2012-05-22 16:25:46', 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, '2012-05-02 00:00:00', 'test--2', 'test', 'draft', 'test', NULL, '2012-05-22 16:25:46')
|
734731
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO `ems_articles_channels` (`article_id`, `channel_id`) VALUES (12, 4)[0m
|
734732
|
+
[paperclip] Saving attachments.
|
734733
|
+
[1m[35m (0.5ms)[0m COMMIT
|
734734
|
+
Redirected to http://dev4.beans:3000/ems/categories/youth-marketing-insights/articles/test--2/edit
|
734735
|
+
Completed 302 Found in 111ms (ActiveRecord: 2.9ms)
|
734736
|
+
|
734737
|
+
|
734738
|
+
Started GET "/ems/categories/youth-marketing-insights/articles/test--2/edit" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734739
|
+
Processing by Ems::ArticlesController#edit as HTML
|
734740
|
+
Parameters: {"category_id"=>"youth-marketing-insights", "id"=>"test--2"}
|
734741
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
734742
|
+
[1m[35mEms::Article Load (0.3ms)[0m SELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1
|
734743
|
+
[1m[36mEms::Role Load (0.3ms)[0m [1mSELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1[0m
|
734744
|
+
[1m[35mCACHE (0.0ms)[0m SELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1
|
734745
|
+
[1m[36mEms::Category Load (0.2ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1[0m
|
734746
|
+
[1m[35mEms::Category Load (0.2ms)[0m SELECT `ems_categories`.* FROM `ems_categories`
|
734747
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_lead_image.html.haml (1.2ms)
|
734748
|
+
[1m[36mEms::Asset Load (0.2ms)[0m [1mSELECT `ems_assets`.* FROM `ems_assets` WHERE `ems_assets`.`assetable_id` = 12 AND `ems_assets`.`assetable_type` = 'Ems::Article'[0m
|
734749
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_asset.html.haml (1.8ms)
|
734750
|
+
[1m[35mEms::Channel Load (0.3ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12
|
734751
|
+
[1m[36mEms::Channel Load (0.3ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_categories_channels` ON `ems_categories_channels`.`channel_id` = `ems_channels`.`id` INNER JOIN `ems_categories` ON `ems_categories`.`id` = `ems_categories_channels`.`category_id` WHERE `ems_categories_channels`.`category_id` = 1[0m
|
734752
|
+
[1m[35mEms::Tag Load (0.3ms)[0m SELECT `ems_tags`.* FROM `ems_tags` INNER JOIN `ems_articles_tags` ON `ems_tags`.`id` = `ems_articles_tags`.`tag_id` WHERE `ems_articles_tags`.`article_id` = 12
|
734753
|
+
[1m[36mEms::Tag Load (0.2ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` [0m
|
734754
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/_form.html.haml (24.2ms)
|
734755
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/edit.html.haml within layouts/ems/application (28.4ms)
|
734756
|
+
Completed 200 OK in 77ms (Views: 68.9ms | ActiveRecord: 2.5ms | Solr: 0.0ms)
|
734757
|
+
|
734758
|
+
|
734759
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734760
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
734761
|
+
|
734762
|
+
|
734763
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734764
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
734765
|
+
|
734766
|
+
|
734767
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734768
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
734769
|
+
|
734770
|
+
|
734771
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734772
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
734773
|
+
|
734774
|
+
|
734775
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734776
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
734777
|
+
|
734778
|
+
|
734779
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734780
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
734781
|
+
|
734782
|
+
|
734783
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734784
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
734785
|
+
|
734786
|
+
|
734787
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734788
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
734789
|
+
|
734790
|
+
|
734791
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734792
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
734793
|
+
|
734794
|
+
|
734795
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734796
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
734797
|
+
|
734798
|
+
|
734799
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734800
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
734801
|
+
|
734802
|
+
|
734803
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734804
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
734805
|
+
|
734806
|
+
|
734807
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734808
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
734809
|
+
|
734810
|
+
|
734811
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734812
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
734813
|
+
|
734814
|
+
|
734815
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734816
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
734817
|
+
|
734818
|
+
|
734819
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734820
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
734821
|
+
|
734822
|
+
|
734823
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734824
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
734825
|
+
|
734826
|
+
|
734827
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734828
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
734829
|
+
|
734830
|
+
|
734831
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734832
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
734833
|
+
|
734834
|
+
|
734835
|
+
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734836
|
+
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms)
|
734837
|
+
|
734838
|
+
|
734839
|
+
Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734840
|
+
Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms)
|
734841
|
+
|
734842
|
+
|
734843
|
+
Started GET "/assets/wmd/wmd-buttons.png" for 192.168.1.8 at 2012-05-22 17:25:46 +0100
|
734844
|
+
Served asset /wmd/wmd-buttons.png - 304 Not Modified (0ms)
|
734845
|
+
|
734846
|
+
|
734847
|
+
Started PUT "/ems/categories/youth-marketing-insights/articles/test--2" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734848
|
+
Processing by Ems::ArticlesController#update as HTML
|
734849
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VHVuwer0Dd4qtCHhqHoR8Rg0YPSqNNZRLuSd3qj4rpw=", "article"=>{"category_id"=>"1", "title"=>"test", "standfirst"=>"test", "image"=>#<ActionDispatch::Http::UploadedFile:0x007ff51575ca30 @original_filename="nandos.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"article[image]\"; filename=\"nandos.png\"\r\nContent-Type: image/png\r\n", @tempfile=#<File:/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/RackMultipart20120522-19488-xagl9p>>, "content"=>"test", "status"=>"live", "publish_from"=>"02/05/2012", "channel_ids"=>["", "4"], "tag_ids"=>[""], "hot"=>"0", "featured"=>"0"}, "commit"=>"Update Article", "category_id"=>"youth-marketing-insights", "id"=>"test--2"}
|
734850
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
734851
|
+
[1m[36mEms::Article Load (0.4ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1[0m
|
734852
|
+
[1m[35mEms::Role Load (0.2ms)[0m SELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1
|
734853
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1[0m
|
734854
|
+
[1m[35m (0.1ms)[0m BEGIN
|
734855
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as5725.png[0]'
|
734856
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as5725.png[0]' -resize "564x" -crop "564x252+0+44" +repage '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as572520120522-19488-1jjomag'
|
734857
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as5725.png[0]'
|
734858
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as5725.png[0]' -resize "312x" -crop "312x189+0+0" +repage '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as572520120522-19488-1iik4xl'
|
734859
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as5725.png[0]'
|
734860
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as5725.png[0]' -resize "312x126" '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as572520120522-19488-12gnso2'
|
734861
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as5725.png[0]'
|
734862
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as5725.png[0]' -resize "228x126" '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-as572520120522-19488-3burwx'
|
734863
|
+
[1m[36mEms::Channel Load (0.3ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` WHERE `ems_channels`.`id` = 4 LIMIT 1[0m
|
734864
|
+
[1m[35mEms::Channel Load (0.2ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12
|
734865
|
+
[1m[36mEms::Tag Load (0.3ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` INNER JOIN `ems_articles_tags` ON `ems_tags`.`id` = `ems_articles_tags`.`tag_id` WHERE `ems_articles_tags`.`article_id` = 12[0m
|
734866
|
+
[1m[35mEms::Category Load (0.2ms)[0m SELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1
|
734867
|
+
[1m[36mEms::Article Exists (0.3ms)[0m [1mSELECT 1 FROM `ems_articles` WHERE (`ems_articles`.`slug` = BINARY 'test--2' AND `ems_articles`.`id` != 12) LIMIT 1[0m
|
734868
|
+
[1m[35mEms::Category Exists (0.3ms)[0m SELECT 1 FROM `ems_categories` WHERE (`ems_categories`.`slug` = BINARY 'youth-marketing-insights' AND `ems_categories`.`id` != 1) LIMIT 1
|
734869
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `ems_articles` SET `image_file_name` = 'nandos.png', `image_content_type` = 'image/png', `image_file_size` = 79815, `image_updated_at` = '2012-05-22 16:25:58', `status` = 'live', `updated_at` = '2012-05-22 16:25:58' WHERE `ems_articles`.`id` = 12[0m
|
734870
|
+
[paperclip] Saving attachments.
|
734871
|
+
[1m[35m (0.4ms)[0m COMMIT
|
734872
|
+
Redirected to http://dev4.beans:3000/ems/categories/youth-marketing-insights/articles/test--2/edit
|
734873
|
+
Completed 302 Found in 234ms (ActiveRecord: 3.1ms)
|
734874
|
+
|
734875
|
+
|
734876
|
+
Started GET "/ems/categories/youth-marketing-insights/articles/test--2/edit" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734877
|
+
Processing by Ems::ArticlesController#edit as HTML
|
734878
|
+
Parameters: {"category_id"=>"youth-marketing-insights", "id"=>"test--2"}
|
734879
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
734880
|
+
[1m[35mEms::Article Load (0.3ms)[0m SELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1
|
734881
|
+
[1m[36mEms::Role Load (0.3ms)[0m [1mSELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1[0m
|
734882
|
+
[1m[35mCACHE (0.0ms)[0m SELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1
|
734883
|
+
[1m[36mEms::Category Load (0.3ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1[0m
|
734884
|
+
[1m[35mEms::Category Load (0.2ms)[0m SELECT `ems_categories`.* FROM `ems_categories`
|
734885
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_lead_image.html.haml (1.6ms)
|
734886
|
+
[1m[36mEms::Asset Load (0.3ms)[0m [1mSELECT `ems_assets`.* FROM `ems_assets` WHERE `ems_assets`.`assetable_id` = 12 AND `ems_assets`.`assetable_type` = 'Ems::Article'[0m
|
734887
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_asset.html.haml (2.2ms)
|
734888
|
+
[1m[35mEms::Channel Load (0.3ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12
|
734889
|
+
[1m[36mEms::Channel Load (0.3ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_categories_channels` ON `ems_categories_channels`.`channel_id` = `ems_channels`.`id` INNER JOIN `ems_categories` ON `ems_categories`.`id` = `ems_categories_channels`.`category_id` WHERE `ems_categories_channels`.`category_id` = 1[0m
|
734890
|
+
[1m[35mEms::Tag Load (0.2ms)[0m SELECT `ems_tags`.* FROM `ems_tags` INNER JOIN `ems_articles_tags` ON `ems_tags`.`id` = `ems_articles_tags`.`tag_id` WHERE `ems_articles_tags`.`article_id` = 12
|
734891
|
+
[1m[36mEms::Tag Load (0.2ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` [0m
|
734892
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/_form.html.haml (28.6ms)
|
734893
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/edit.html.haml within layouts/ems/application (33.1ms)
|
734894
|
+
Completed 200 OK in 55ms (Views: 46.2ms | ActiveRecord: 2.7ms | Solr: 0.0ms)
|
734895
|
+
|
734896
|
+
|
734897
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734898
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
734899
|
+
|
734900
|
+
|
734901
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734902
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
734903
|
+
|
734904
|
+
|
734905
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734906
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
734907
|
+
|
734908
|
+
|
734909
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734910
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
734911
|
+
|
734912
|
+
|
734913
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734914
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
734915
|
+
|
734916
|
+
|
734917
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734918
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
734919
|
+
|
734920
|
+
|
734921
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734922
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
734923
|
+
|
734924
|
+
|
734925
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734926
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
734927
|
+
|
734928
|
+
|
734929
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734930
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
734931
|
+
|
734932
|
+
|
734933
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734934
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
734935
|
+
|
734936
|
+
|
734937
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734938
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
734939
|
+
|
734940
|
+
|
734941
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734942
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
734943
|
+
|
734944
|
+
|
734945
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734946
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
734947
|
+
|
734948
|
+
|
734949
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734950
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
734951
|
+
|
734952
|
+
|
734953
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734954
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
734955
|
+
|
734956
|
+
|
734957
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734958
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
734959
|
+
|
734960
|
+
|
734961
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734962
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
734963
|
+
|
734964
|
+
|
734965
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734966
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
734967
|
+
|
734968
|
+
|
734969
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734970
|
+
Served asset /ems/application.js - 304 Not Modified (1ms)
|
734971
|
+
|
734972
|
+
|
734973
|
+
Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734974
|
+
Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms)
|
734975
|
+
|
734976
|
+
|
734977
|
+
Started GET "/assets/wmd/wmd-buttons.png" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734978
|
+
Served asset /wmd/wmd-buttons.png - 304 Not Modified (0ms)
|
734979
|
+
|
734980
|
+
|
734981
|
+
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 17:25:58 +0100
|
734982
|
+
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms)
|
734983
|
+
|
734984
|
+
|
734985
|
+
Started PUT "/ems/categories/youth-marketing-insights/articles/test--2" for 192.168.1.8 at 2012-05-22 17:26:06 +0100
|
734986
|
+
Processing by Ems::ArticlesController#update as HTML
|
734987
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VHVuwer0Dd4qtCHhqHoR8Rg0YPSqNNZRLuSd3qj4rpw=", "article"=>{"category_id"=>"1", "title"=>"test", "standfirst"=>"test", "content"=>"test", "assets_attributes"=>{"0"=>{"asset"=>#<ActionDispatch::Http::UploadedFile:0x007ff516949360 @original_filename="nandos.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"article[assets_attributes][0][asset]\"; filename=\"nandos.png\"\r\nContent-Type: image/png\r\n", @tempfile=#<File:/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/RackMultipart20120522-19488-icjq6u>>}}, "status"=>"live", "publish_from"=>"02/05/2012", "channel_ids"=>["", "4"], "tag_ids"=>[""], "hot"=>"0", "featured"=>"0"}, "commit"=>"Update Article", "category_id"=>"youth-marketing-insights", "id"=>"test--2"}
|
734988
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
734989
|
+
[1m[36mEms::Article Load (0.3ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1[0m
|
734990
|
+
[1m[35mEms::Role Load (0.2ms)[0m SELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1
|
734991
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1[0m
|
734992
|
+
[1m[35m (0.1ms)[0m BEGIN
|
734993
|
+
[1m[36mEms::Channel Load (0.2ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` WHERE `ems_channels`.`id` = 4 LIMIT 1[0m
|
734994
|
+
[1m[35mEms::Channel Load (0.2ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12
|
734995
|
+
[1m[36mEXPLAIN (0.4ms)[0m [1mEXPLAIN SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12[0m
|
734996
|
+
EXPLAIN for: SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12
|
734997
|
+
+----+-------------+-----------------------+--------+----------------------------------------------------------+----------------------------------------------------------+---------+--------------------------------------------------+------+-------------+
|
734998
|
+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
734999
|
+
+----+-------------+-----------------------+--------+----------------------------------------------------------+----------------------------------------------------------+---------+--------------------------------------------------+------+-------------+
|
735000
|
+
| 1 | SIMPLE | ems_articles_channels | ref | index_ems_articles_channels_on_article_id_and_channel_id | index_ems_articles_channels_on_article_id_and_channel_id | 4 | const | 1 | Using index |
|
735001
|
+
| 1 | SIMPLE | ems_channels | eq_ref | PRIMARY | PRIMARY | 4 | ems_development.ems_articles_channels.channel_id | 1 | |
|
735002
|
+
+----+-------------+-----------------------+--------+----------------------------------------------------------+----------------------------------------------------------+---------+--------------------------------------------------+------+-------------+
|
735003
|
+
2 rows in set (0.00 sec)
|
735004
|
+
|
735005
|
+
[1m[35mEms::Tag Load (0.2ms)[0m SELECT `ems_tags`.* FROM `ems_tags` INNER JOIN `ems_articles_tags` ON `ems_tags`.`id` = `ems_articles_tags`.`tag_id` WHERE `ems_articles_tags`.`article_id` = 12
|
735006
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-12nr1lg.png[0]'
|
735007
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-12nr1lg.png[0]' -resize "564x252>" '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/nandos20120522-19488-12nr1lg20120522-19488-uwj5iu'
|
735008
|
+
[1m[36mEms::Category Load (0.4ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1[0m
|
735009
|
+
[1m[35mEms::Article Exists (0.2ms)[0m SELECT 1 FROM `ems_articles` WHERE (`ems_articles`.`slug` = BINARY 'test--2' AND `ems_articles`.`id` != 12) LIMIT 1
|
735010
|
+
[1m[36mEms::Category Exists (0.2ms)[0m [1mSELECT 1 FROM `ems_categories` WHERE (`ems_categories`.`slug` = BINARY 'youth-marketing-insights' AND `ems_categories`.`id` != 1) LIMIT 1[0m
|
735011
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
735012
|
+
[1m[36mEms::Category Load (0.4ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` [0m
|
735013
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_lead_image.html.haml (1.2ms)
|
735014
|
+
[1m[35mEms::Asset Load (0.3ms)[0m SELECT `ems_assets`.* FROM `ems_assets` WHERE `ems_assets`.`assetable_id` = 12 AND `ems_assets`.`assetable_type` = 'Ems::Article'
|
735015
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_asset.html.haml (1.9ms)
|
735016
|
+
[1m[36mEms::Channel Load (0.4ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_categories_channels` ON `ems_categories_channels`.`channel_id` = `ems_channels`.`id` INNER JOIN `ems_categories` ON `ems_categories`.`id` = `ems_categories_channels`.`category_id` WHERE `ems_categories_channels`.`category_id` = 1[0m
|
735017
|
+
[1m[35mEms::Tag Load (0.2ms)[0m SELECT `ems_tags`.* FROM `ems_tags`
|
735018
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/_form.html.haml (25.3ms)
|
735019
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/edit.html.haml within layouts/ems/application (31.1ms)
|
735020
|
+
Completed 200 OK in 604ms (Views: 44.8ms | ActiveRecord: 4.2ms | Solr: 0.0ms)
|
735021
|
+
|
735022
|
+
|
735023
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735024
|
+
Served asset /ems/application.css - 304 Not Modified (3ms)
|
735025
|
+
|
735026
|
+
|
735027
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735028
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
735029
|
+
|
735030
|
+
|
735031
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735032
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
735033
|
+
|
735034
|
+
|
735035
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735036
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
735037
|
+
|
735038
|
+
|
735039
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735040
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
735041
|
+
|
735042
|
+
|
735043
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735044
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
735045
|
+
|
735046
|
+
|
735047
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735048
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
735049
|
+
|
735050
|
+
|
735051
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735052
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
735053
|
+
|
735054
|
+
|
735055
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735056
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
735057
|
+
|
735058
|
+
|
735059
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735060
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
735061
|
+
|
735062
|
+
|
735063
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735064
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
735065
|
+
|
735066
|
+
|
735067
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735068
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
735069
|
+
|
735070
|
+
|
735071
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735072
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
735073
|
+
|
735074
|
+
|
735075
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735076
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
735077
|
+
|
735078
|
+
|
735079
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735080
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
735081
|
+
|
735082
|
+
|
735083
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735084
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
735085
|
+
|
735086
|
+
|
735087
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735088
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
735089
|
+
|
735090
|
+
|
735091
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735092
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
735093
|
+
|
735094
|
+
|
735095
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735096
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
735097
|
+
|
735098
|
+
|
735099
|
+
Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735100
|
+
Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms)
|
735101
|
+
|
735102
|
+
|
735103
|
+
Started GET "/assets/wmd/wmd-buttons.png" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735104
|
+
Served asset /wmd/wmd-buttons.png - 304 Not Modified (0ms)
|
735105
|
+
|
735106
|
+
|
735107
|
+
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 17:26:07 +0100
|
735108
|
+
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms)
|
735109
|
+
|
735110
|
+
|
735111
|
+
Started GET "/ems/categories/youth-marketing-insights/articles/test--2" for 192.168.1.8 at 2012-05-22 17:26:35 +0100
|
735112
|
+
Processing by Ems::ArticlesController#show as HTML
|
735113
|
+
Parameters: {"category_id"=>"youth-marketing-insights", "id"=>"test--2"}
|
735114
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
735115
|
+
[1m[35mEms::Article Load (0.4ms)[0m SELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1
|
735116
|
+
[1m[36mEms::Role Load (0.2ms)[0m [1mSELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1[0m
|
735117
|
+
[1m[35mCACHE (0.0ms)[0m SELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1
|
735118
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/show.html.haml within layouts/ems/application (7.3ms)
|
735119
|
+
Completed 500 Internal Server Error in 100ms
|
735120
|
+
|
735121
|
+
ActionView::Template::Error (uninitialized constant Ems::Article::Kramdown):
|
735122
|
+
4: %h2= @article.title
|
735123
|
+
5: %p= @article.standfirst
|
735124
|
+
6: %hr
|
735125
|
+
7: != @article.content_as_html
|
735126
|
+
/private/var/www/html/development/projects/rails/ems/app/models/ems/article.rb:92:in `content_as_html'
|
735127
|
+
/private/var/www/html/development/projects/rails/ems/app/views/ems/articles/show.html.haml:7:in `__private_var_www_html_development_projects_rails_ems_app_views_ems_articles_show_html_haml___3892953169178776972_70345285379600'
|
735128
|
+
actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render'
|
735129
|
+
activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument'
|
735130
|
+
actionpack (3.2.3) lib/action_view/template.rb:141:in `render'
|
735131
|
+
actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
735132
|
+
actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
735133
|
+
activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
|
735134
|
+
activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
735135
|
+
activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
|
735136
|
+
actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
735137
|
+
actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
735138
|
+
actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
735139
|
+
actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
735140
|
+
actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
735141
|
+
actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
735142
|
+
actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
|
735143
|
+
actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
735144
|
+
actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
735145
|
+
actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
735146
|
+
actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
735147
|
+
actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
735148
|
+
actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
|
735149
|
+
actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
|
735150
|
+
actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
735151
|
+
activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
735152
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
735153
|
+
activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
735154
|
+
actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
735155
|
+
actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
735156
|
+
activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
735157
|
+
sunspot_rails (1.3.2) lib/sunspot/rails/railties/controller_runtime.rb:15:in `cleanup_view_runtime'
|
735158
|
+
actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
735159
|
+
actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
735160
|
+
actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
735161
|
+
/private/var/www/html/development/projects/rails/ems/app/controllers/ems/articles_controller.rb:21:in `show'
|
735162
|
+
actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
735163
|
+
actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
|
735164
|
+
actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
735165
|
+
actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
735166
|
+
activesupport (3.2.3) lib/active_support/callbacks.rb:425:in `_run__3586733258687702015__process_action__1127498837737408347__callbacks'
|
735167
|
+
activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
|
735168
|
+
activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
735169
|
+
activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
735170
|
+
actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
735171
|
+
actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
735172
|
+
actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
735173
|
+
activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
|
735174
|
+
activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
735175
|
+
activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
|
735176
|
+
actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
735177
|
+
actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
|
735178
|
+
activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
735179
|
+
actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
|
735180
|
+
actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
|
735181
|
+
actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
|
735182
|
+
actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
735183
|
+
actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
|
735184
|
+
actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
735185
|
+
actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
735186
|
+
actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
735187
|
+
journey (1.0.3) lib/journey/router.rb:68:in `block in call'
|
735188
|
+
journey (1.0.3) lib/journey/router.rb:56:in `each'
|
735189
|
+
journey (1.0.3) lib/journey/router.rb:56:in `call'
|
735190
|
+
actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
735191
|
+
railties (3.2.3) lib/rails/engine.rb:479:in `call'
|
735192
|
+
railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
735193
|
+
journey (1.0.3) lib/journey/router.rb:68:in `block in call'
|
735194
|
+
journey (1.0.3) lib/journey/router.rb:56:in `each'
|
735195
|
+
journey (1.0.3) lib/journey/router.rb:56:in `call'
|
735196
|
+
actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
735197
|
+
sass (3.1.18) lib/sass/plugin/rack.rb:54:in `call'
|
735198
|
+
warden (1.1.1) lib/warden/manager.rb:35:in `block in call'
|
735199
|
+
warden (1.1.1) lib/warden/manager.rb:34:in `catch'
|
735200
|
+
warden (1.1.1) lib/warden/manager.rb:34:in `call'
|
735201
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
735202
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
735203
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
735204
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
|
735205
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
735206
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
735207
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
735208
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
735209
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
|
735210
|
+
activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
|
735211
|
+
activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
|
735212
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
735213
|
+
activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4251945077915030626__call__1801629894333817429__callbacks'
|
735214
|
+
activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
|
735215
|
+
activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
735216
|
+
activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
735217
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
735218
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
735219
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
735220
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
735221
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
735222
|
+
railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
|
735223
|
+
railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
|
735224
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
735225
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
735226
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
735227
|
+
activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
735228
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
735229
|
+
actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
|
735230
|
+
railties (3.2.3) lib/rails/engine.rb:479:in `call'
|
735231
|
+
railties (3.2.3) lib/rails/application.rb:220:in `call'
|
735232
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
735233
|
+
railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
|
735234
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
735235
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
735236
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
735237
|
+
/Users/vincent/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
735238
|
+
|
735239
|
+
|
735240
|
+
Rendered /Users/vincent/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
|
735241
|
+
Rendered /Users/vincent/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
735242
|
+
Rendered /Users/vincent/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
|
735243
|
+
|
735244
|
+
|
735245
|
+
Started GET "/ems/categories/youth-marketing-insights/articles/test--2/edit" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735246
|
+
Processing by Ems::ArticlesController#edit as HTML
|
735247
|
+
Parameters: {"category_id"=>"youth-marketing-insights", "id"=>"test--2"}
|
735248
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
735249
|
+
[1m[35mEms::Article Load (0.3ms)[0m SELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1
|
735250
|
+
[1m[36mEms::Role Load (0.2ms)[0m [1mSELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1[0m
|
735251
|
+
[1m[35mCACHE (0.0ms)[0m SELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1
|
735252
|
+
[1m[36mEms::Category Load (0.2ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1[0m
|
735253
|
+
[1m[35mEms::Category Load (0.2ms)[0m SELECT `ems_categories`.* FROM `ems_categories`
|
735254
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_lead_image.html.haml (1.4ms)
|
735255
|
+
[1m[36mEms::Asset Load (0.3ms)[0m [1mSELECT `ems_assets`.* FROM `ems_assets` WHERE `ems_assets`.`assetable_id` = 12 AND `ems_assets`.`assetable_type` = 'Ems::Article'[0m
|
735256
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_asset.html.haml (2.0ms)
|
735257
|
+
[1m[35mEms::Channel Load (0.2ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12
|
735258
|
+
[1m[36mEms::Channel Load (0.2ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_categories_channels` ON `ems_categories_channels`.`channel_id` = `ems_channels`.`id` INNER JOIN `ems_categories` ON `ems_categories`.`id` = `ems_categories_channels`.`category_id` WHERE `ems_categories_channels`.`category_id` = 1[0m
|
735259
|
+
[1m[35mEms::Tag Load (0.3ms)[0m SELECT `ems_tags`.* FROM `ems_tags` INNER JOIN `ems_articles_tags` ON `ems_tags`.`id` = `ems_articles_tags`.`tag_id` WHERE `ems_articles_tags`.`article_id` = 12
|
735260
|
+
[1m[36mEms::Tag Load (0.3ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` [0m
|
735261
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/_form.html.haml (110.1ms)
|
735262
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/edit.html.haml within layouts/ems/application (114.7ms)
|
735263
|
+
Completed 200 OK in 184ms (Views: 114.8ms | ActiveRecord: 16.7ms | Solr: 0.0ms)
|
735264
|
+
|
735265
|
+
|
735266
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735267
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
735268
|
+
|
735269
|
+
|
735270
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735271
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
735272
|
+
|
735273
|
+
|
735274
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735275
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
735276
|
+
|
735277
|
+
|
735278
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735279
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
735280
|
+
|
735281
|
+
|
735282
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735283
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
735284
|
+
|
735285
|
+
|
735286
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735287
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
735288
|
+
|
735289
|
+
|
735290
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735291
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
735292
|
+
|
735293
|
+
|
735294
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735295
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
735296
|
+
|
735297
|
+
|
735298
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735299
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
735300
|
+
|
735301
|
+
|
735302
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735303
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
735304
|
+
|
735305
|
+
|
735306
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735307
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
735308
|
+
|
735309
|
+
|
735310
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735311
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
735312
|
+
|
735313
|
+
|
735314
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735315
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
735316
|
+
|
735317
|
+
|
735318
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735319
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
735320
|
+
|
735321
|
+
|
735322
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735323
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
735324
|
+
|
735325
|
+
|
735326
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735327
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
735328
|
+
|
735329
|
+
|
735330
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735331
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
735332
|
+
|
735333
|
+
|
735334
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735335
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
735336
|
+
|
735337
|
+
|
735338
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735339
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
735340
|
+
|
735341
|
+
|
735342
|
+
Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735343
|
+
Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms)
|
735344
|
+
|
735345
|
+
|
735346
|
+
Started GET "/assets/wmd/wmd-buttons.png" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735347
|
+
Served asset /wmd/wmd-buttons.png - 304 Not Modified (0ms)
|
735348
|
+
|
735349
|
+
|
735350
|
+
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 17:26:41 +0100
|
735351
|
+
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms)
|
735352
|
+
|
735353
|
+
|
735354
|
+
Started PUT "/ems/categories/youth-marketing-insights/articles/test--2" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735355
|
+
Processing by Ems::ArticlesController#update as HTML
|
735356
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VHVuwer0Dd4qtCHhqHoR8Rg0YPSqNNZRLuSd3qj4rpw=", "article"=>{"category_id"=>"1", "title"=>"test", "standfirst"=>"test", "content"=>"test", "assets_attributes"=>{"0"=>{"asset"=>#<ActionDispatch::Http::UploadedFile:0x007ff518549290 @original_filename="CATs.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"article[assets_attributes][0][asset]\"; filename=\"CATs.jpeg\"\r\nContent-Type: image/jpeg\r\n", @tempfile=#<File:/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/RackMultipart20120522-19488-r05gz7>>}}, "status"=>"live", "publish_from"=>"02/05/2012", "channel_ids"=>["", "4"], "tag_ids"=>[""], "hot"=>"0", "featured"=>"0"}, "commit"=>"Update Article", "category_id"=>"youth-marketing-insights", "id"=>"test--2"}
|
735357
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
735358
|
+
[1m[36mEms::Article Load (0.3ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1[0m
|
735359
|
+
[1m[35mEms::Role Load (0.2ms)[0m SELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1
|
735360
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1[0m
|
735361
|
+
[1m[35m (0.1ms)[0m BEGIN
|
735362
|
+
[1m[36mEms::Channel Load (0.2ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` WHERE `ems_channels`.`id` = 4 LIMIT 1[0m
|
735363
|
+
[1m[35mEms::Channel Load (0.2ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12
|
735364
|
+
[1m[36mEms::Tag Load (0.2ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` INNER JOIN `ems_articles_tags` ON `ems_tags`.`id` = `ems_articles_tags`.`tag_id` WHERE `ems_articles_tags`.`article_id` = 12[0m
|
735365
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/CATs20120522-19488-c2um06.jpeg[0]'
|
735366
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/CATs20120522-19488-c2um06.jpeg[0]' -resize "564x252>" '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/CATs20120522-19488-c2um0620120522-19488-1qt4iju'
|
735367
|
+
[1m[35mEms::Category Load (0.4ms)[0m SELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1
|
735368
|
+
[1m[36mEms::Article Exists (0.3ms)[0m [1mSELECT 1 FROM `ems_articles` WHERE (`ems_articles`.`slug` = BINARY 'test--2' AND `ems_articles`.`id` != 12) LIMIT 1[0m
|
735369
|
+
[1m[35mEms::Category Exists (0.2ms)[0m SELECT 1 FROM `ems_categories` WHERE (`ems_categories`.`slug` = BINARY 'youth-marketing-insights' AND `ems_categories`.`id` != 1) LIMIT 1
|
735370
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `ems_assets` (`asset_content_type`, `asset_file_name`, `asset_file_size`, `asset_updated_at`, `assetable_id`, `assetable_type`, `created_at`, `title`, `updated_at`) VALUES ('image/jpeg', 'CATs.jpeg', 86483, '2012-05-22 16:26:46', 12, 'Ems::Article', '2012-05-22 16:26:46', NULL, '2012-05-22 16:26:46')[0m
|
735371
|
+
[paperclip] Saving attachments.
|
735372
|
+
[paperclip] Saving attachments.
|
735373
|
+
[1m[35m (16.9ms)[0m COMMIT
|
735374
|
+
Redirected to http://dev4.beans:3000/ems/categories/youth-marketing-insights/articles/test--2/edit
|
735375
|
+
Completed 302 Found in 132ms (ActiveRecord: 19.6ms)
|
735376
|
+
|
735377
|
+
|
735378
|
+
Started GET "/ems/categories/youth-marketing-insights/articles/test--2/edit" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735379
|
+
Processing by Ems::ArticlesController#edit as HTML
|
735380
|
+
Parameters: {"category_id"=>"youth-marketing-insights", "id"=>"test--2"}
|
735381
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
735382
|
+
[1m[35mEms::Article Load (0.4ms)[0m SELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1
|
735383
|
+
[1m[36mEms::Role Load (0.2ms)[0m [1mSELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1[0m
|
735384
|
+
[1m[35mCACHE (0.0ms)[0m SELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1
|
735385
|
+
[1m[36mEms::Category Load (0.3ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1[0m
|
735386
|
+
[1m[35mEms::Category Load (0.2ms)[0m SELECT `ems_categories`.* FROM `ems_categories`
|
735387
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_lead_image.html.haml (1.4ms)
|
735388
|
+
[1m[36mEms::Asset Load (0.4ms)[0m [1mSELECT `ems_assets`.* FROM `ems_assets` WHERE `ems_assets`.`assetable_id` = 12 AND `ems_assets`.`assetable_type` = 'Ems::Article'[0m
|
735389
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_asset.html.haml (4.4ms)
|
735390
|
+
[1m[35mEms::Channel Load (0.3ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12
|
735391
|
+
[1m[36mEms::Channel Load (0.2ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_categories_channels` ON `ems_categories_channels`.`channel_id` = `ems_channels`.`id` INNER JOIN `ems_categories` ON `ems_categories`.`id` = `ems_categories_channels`.`category_id` WHERE `ems_categories_channels`.`category_id` = 1[0m
|
735392
|
+
[1m[35mEms::Tag Load (0.2ms)[0m SELECT `ems_tags`.* FROM `ems_tags` INNER JOIN `ems_articles_tags` ON `ems_tags`.`id` = `ems_articles_tags`.`tag_id` WHERE `ems_articles_tags`.`article_id` = 12
|
735393
|
+
[1m[36mEms::Tag Load (0.1ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` [0m
|
735394
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/_form.html.haml (27.7ms)
|
735395
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/edit.html.haml within layouts/ems/application (32.3ms)
|
735396
|
+
Completed 200 OK in 53ms (Views: 44.6ms | ActiveRecord: 2.6ms | Solr: 0.0ms)
|
735397
|
+
|
735398
|
+
|
735399
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735400
|
+
Served asset /ems/application.css - 304 Not Modified (2ms)
|
735401
|
+
|
735402
|
+
|
735403
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735404
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
735405
|
+
|
735406
|
+
|
735407
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735408
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
735409
|
+
|
735410
|
+
|
735411
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735412
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
735413
|
+
|
735414
|
+
|
735415
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735416
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
735417
|
+
|
735418
|
+
|
735419
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735420
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
735421
|
+
|
735422
|
+
|
735423
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735424
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
735425
|
+
|
735426
|
+
|
735427
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735428
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
735429
|
+
|
735430
|
+
|
735431
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735432
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
735433
|
+
|
735434
|
+
|
735435
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735436
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
735437
|
+
|
735438
|
+
|
735439
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735440
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
735441
|
+
|
735442
|
+
|
735443
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735444
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
735445
|
+
|
735446
|
+
|
735447
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735448
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
735449
|
+
|
735450
|
+
|
735451
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735452
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
735453
|
+
|
735454
|
+
|
735455
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735456
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
735457
|
+
|
735458
|
+
|
735459
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735460
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
735461
|
+
|
735462
|
+
|
735463
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735464
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
735465
|
+
|
735466
|
+
|
735467
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735468
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
735469
|
+
|
735470
|
+
|
735471
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735472
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
735473
|
+
|
735474
|
+
|
735475
|
+
Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735476
|
+
Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms)
|
735477
|
+
|
735478
|
+
|
735479
|
+
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735480
|
+
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms)
|
735481
|
+
|
735482
|
+
|
735483
|
+
Started GET "/assets/wmd/wmd-buttons.png" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735484
|
+
Served asset /wmd/wmd-buttons.png - 304 Not Modified (0ms)
|
735485
|
+
|
735486
|
+
|
735487
|
+
Started GET "/assets/ems/active_admin/lib/ZeroClipboard.swf" for 192.168.1.8 at 2012-05-22 17:26:46 +0100
|
735488
|
+
Served asset /ems/active_admin/lib/ZeroClipboard.swf - 304 Not Modified (5ms)
|
735489
|
+
|
735490
|
+
|
735491
|
+
Started PUT "/ems/categories/youth-marketing-insights/articles/test--2" for 192.168.1.8 at 2012-05-22 17:31:45 +0100
|
735492
|
+
Processing by Ems::ArticlesController#update as HTML
|
735493
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VHVuwer0Dd4qtCHhqHoR8Rg0YPSqNNZRLuSd3qj4rpw=", "article"=>{"category_id"=>"1", "title"=>"test", "standfirst"=>"test", "content"=>"test", "assets_attributes"=>{"0"=>{"id"=>"1"}, "1"=>{"asset"=>#<ActionDispatch::Http::UploadedFile:0x007ff516d84948 @original_filename="test.pdf", @content_type="application/pdf", @headers="Content-Disposition: form-data; name=\"article[assets_attributes][1][asset]\"; filename=\"test.pdf\"\r\nContent-Type: application/pdf\r\n", @tempfile=#<File:/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/RackMultipart20120522-19488-q6d48e>>}}, "status"=>"live", "publish_from"=>"02/05/2012", "channel_ids"=>["", "4"], "tag_ids"=>[""], "hot"=>"0", "featured"=>"0"}, "commit"=>"Update Article", "category_id"=>"youth-marketing-insights", "id"=>"test--2"}
|
735494
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
735495
|
+
[1m[36mEms::Article Load (0.3ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1[0m
|
735496
|
+
[1m[35mEms::Role Load (0.3ms)[0m SELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1
|
735497
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1[0m
|
735498
|
+
[1m[35m (0.0ms)[0m BEGIN
|
735499
|
+
[1m[36mEms::Channel Load (0.2ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` WHERE `ems_channels`.`id` = 4 LIMIT 1[0m
|
735500
|
+
[1m[35mEms::Channel Load (0.2ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12
|
735501
|
+
[1m[36mEms::Tag Load (0.2ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` INNER JOIN `ems_articles_tags` ON `ems_tags`.`id` = `ems_articles_tags`.`tag_id` WHERE `ems_articles_tags`.`article_id` = 12[0m
|
735502
|
+
[1m[35mEms::Asset Load (0.2ms)[0m SELECT `ems_assets`.* FROM `ems_assets` WHERE `ems_assets`.`assetable_id` = 12 AND `ems_assets`.`assetable_type` = 'Ems::Article' AND `ems_assets`.`id` IN (1)
|
735503
|
+
[32mCommand[0m :: identify -format %wx%h '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/test20120522-19488-17ctwck.pdf[0]'
|
735504
|
+
[32mCommand[0m :: convert '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/test20120522-19488-17ctwck.pdf[0]' -resize "564x252>" '/var/folders/d3/hdgycz314nvgb_2g0nht_rf80000gq/T/test20120522-19488-17ctwck20120522-19488-1kw8588'
|
735505
|
+
[1m[36mEms::Category Load (0.3ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1[0m
|
735506
|
+
[1m[35mEms::Article Exists (0.3ms)[0m SELECT 1 FROM `ems_articles` WHERE (`ems_articles`.`slug` = BINARY 'test--2' AND `ems_articles`.`id` != 12) LIMIT 1
|
735507
|
+
[1m[36mEms::Category Exists (0.2ms)[0m [1mSELECT 1 FROM `ems_categories` WHERE (`ems_categories`.`slug` = BINARY 'youth-marketing-insights' AND `ems_categories`.`id` != 1) LIMIT 1[0m
|
735508
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `ems_assets` (`asset_content_type`, `asset_file_name`, `asset_file_size`, `asset_updated_at`, `assetable_id`, `assetable_type`, `created_at`, `title`, `updated_at`) VALUES ('application/pdf', 'test.pdf', 426860, '2012-05-22 16:31:45', 12, 'Ems::Article', '2012-05-22 16:31:49', NULL, '2012-05-22 16:31:49')
|
735509
|
+
[paperclip] Saving attachments.
|
735510
|
+
[paperclip] Saving attachments.
|
735511
|
+
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
|
735512
|
+
Redirected to http://dev4.beans:3000/ems/categories/youth-marketing-insights/articles/test--2/edit
|
735513
|
+
Completed 302 Found in 3674ms (ActiveRecord: 3.8ms)
|
735514
|
+
|
735515
|
+
|
735516
|
+
Started GET "/ems/categories/youth-marketing-insights/articles/test--2/edit" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735517
|
+
Processing by Ems::ArticlesController#edit as HTML
|
735518
|
+
Parameters: {"category_id"=>"youth-marketing-insights", "id"=>"test--2"}
|
735519
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
735520
|
+
[1m[36mEms::Article Load (0.3ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1[0m
|
735521
|
+
[1m[35mEms::Role Load (0.3ms)[0m SELECT `ems_roles`.* FROM `ems_roles` INNER JOIN `roles_users` ON `ems_roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `ems_roles`.`name` = 'Editor' LIMIT 1
|
735522
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT `ems_articles`.* FROM `ems_articles` WHERE `ems_articles`.`slug` = 'test--2' LIMIT 1[0m
|
735523
|
+
[1m[35mEms::Category Load (0.3ms)[0m SELECT `ems_categories`.* FROM `ems_categories` WHERE `ems_categories`.`id` = 1 LIMIT 1
|
735524
|
+
[1m[36mEms::Category Load (0.2ms)[0m [1mSELECT `ems_categories`.* FROM `ems_categories` [0m
|
735525
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_lead_image.html.haml (1.5ms)
|
735526
|
+
[1m[35mEms::Asset Load (0.3ms)[0m SELECT `ems_assets`.* FROM `ems_assets` WHERE `ems_assets`.`assetable_id` = 12 AND `ems_assets`.`assetable_type` = 'Ems::Article'
|
735527
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/globals/_asset.html.haml (7.9ms)
|
735528
|
+
[1m[36mEms::Channel Load (0.3ms)[0m [1mSELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_articles_channels` ON `ems_channels`.`id` = `ems_articles_channels`.`channel_id` WHERE `ems_articles_channels`.`article_id` = 12[0m
|
735529
|
+
[1m[35mEms::Channel Load (0.3ms)[0m SELECT `ems_channels`.* FROM `ems_channels` INNER JOIN `ems_categories_channels` ON `ems_categories_channels`.`channel_id` = `ems_channels`.`id` INNER JOIN `ems_categories` ON `ems_categories`.`id` = `ems_categories_channels`.`category_id` WHERE `ems_categories_channels`.`category_id` = 1
|
735530
|
+
[1m[36mEms::Tag Load (0.2ms)[0m [1mSELECT `ems_tags`.* FROM `ems_tags` INNER JOIN `ems_articles_tags` ON `ems_tags`.`id` = `ems_articles_tags`.`tag_id` WHERE `ems_articles_tags`.`article_id` = 12[0m
|
735531
|
+
[1m[35mEms::Tag Load (0.2ms)[0m SELECT `ems_tags`.* FROM `ems_tags`
|
735532
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/_form.html.haml (34.8ms)
|
735533
|
+
Rendered /private/var/www/html/development/projects/rails/ems/app/views/ems/articles/edit.html.haml within layouts/ems/application (40.7ms)
|
735534
|
+
Completed 200 OK in 63ms (Views: 54.6ms | ActiveRecord: 2.7ms | Solr: 0.0ms)
|
735535
|
+
|
735536
|
+
|
735537
|
+
Started GET "/assets/ems/application.css?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735538
|
+
Served asset /ems/application.css - 304 Not Modified (3ms)
|
735539
|
+
|
735540
|
+
|
735541
|
+
Started GET "/assets/ems/articles.css?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735542
|
+
Served asset /ems/articles.css - 304 Not Modified (0ms)
|
735543
|
+
|
735544
|
+
|
735545
|
+
Started GET "/assets/wmd/wmd.css?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735546
|
+
Served asset /wmd/wmd.css - 304 Not Modified (0ms)
|
735547
|
+
|
735548
|
+
|
735549
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735550
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
735551
|
+
|
735552
|
+
|
735553
|
+
Started GET "/assets/jquery.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735554
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
735555
|
+
|
735556
|
+
|
735557
|
+
Started GET "/assets/ems/active_admin/lib/jquery.zclip.min.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735558
|
+
Served asset /ems/active_admin/lib/jquery.zclip.min.js - 304 Not Modified (0ms)
|
735559
|
+
|
735560
|
+
|
735561
|
+
Started GET "/assets/jquery-ui.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735562
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
735563
|
+
|
735564
|
+
|
735565
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.asset-store.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735566
|
+
Served asset /ems/active_admin/components/jquery.aa.asset-store.js - 304 Not Modified (0ms)
|
735567
|
+
|
735568
|
+
|
735569
|
+
Started GET "/assets/ems/active_admin/lib/namespace.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735570
|
+
Served asset /ems/active_admin/lib/namespace.js - 304 Not Modified (0ms)
|
735571
|
+
|
735572
|
+
|
735573
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735574
|
+
Served asset /ems/active_admin/components/jquery.aa.checkbox-toggler.js - 304 Not Modified (0ms)
|
735575
|
+
|
735576
|
+
|
735577
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735578
|
+
Served asset /ems/active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (0ms)
|
735579
|
+
|
735580
|
+
|
735581
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735582
|
+
Served asset /ems/active_admin/components/jquery.aa.table-checkbox-toggler.js - 304 Not Modified (0ms)
|
735583
|
+
|
735584
|
+
|
735585
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.tagcomplete.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735586
|
+
Served asset /ems/active_admin/components/jquery.aa.tagcomplete.js - 304 Not Modified (0ms)
|
735587
|
+
|
735588
|
+
|
735589
|
+
Started GET "/assets/ems/active_admin/pages/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735590
|
+
Served asset /ems/active_admin/pages/application.js - 304 Not Modified (0ms)
|
735591
|
+
|
735592
|
+
|
735593
|
+
Started GET "/assets/ems/active_admin/components/jquery.aa.popover.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:49 +0100
|
735594
|
+
Served asset /ems/active_admin/components/jquery.aa.popover.js - 304 Not Modified (0ms)
|
735595
|
+
|
735596
|
+
|
735597
|
+
Started GET "/assets/ems/active_admin/pages/batch_actions.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:50 +0100
|
735598
|
+
Served asset /ems/active_admin/pages/batch_actions.js - 304 Not Modified (0ms)
|
735599
|
+
|
735600
|
+
|
735601
|
+
Started GET "/assets/wmd/wmd.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:50 +0100
|
735602
|
+
Served asset /wmd/wmd.js - 304 Not Modified (0ms)
|
735603
|
+
|
735604
|
+
|
735605
|
+
Started GET "/assets/wmd/showdown.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:50 +0100
|
735606
|
+
Served asset /wmd/showdown.js - 304 Not Modified (0ms)
|
735607
|
+
|
735608
|
+
|
735609
|
+
Started GET "/assets/ems/application.js?body=1" for 192.168.1.8 at 2012-05-22 17:31:50 +0100
|
735610
|
+
Served asset /ems/application.js - 304 Not Modified (0ms)
|
735611
|
+
|
735612
|
+
|
735613
|
+
Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 192.168.1.8 at 2012-05-22 17:31:50 +0100
|
735614
|
+
Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms)
|
735615
|
+
|
735616
|
+
|
735617
|
+
Started GET "/assets/wmd/wmd-buttons.png" for 192.168.1.8 at 2012-05-22 17:31:50 +0100
|
735618
|
+
Served asset /wmd/wmd-buttons.png - 304 Not Modified (0ms)
|
735619
|
+
|
735620
|
+
|
735621
|
+
Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.1.8 at 2012-05-22 17:31:50 +0100
|
735622
|
+
Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms)
|
735623
|
+
|
735624
|
+
|
735625
|
+
Started GET "/assets/ems/active_admin/lib/ZeroClipboard.swf" for 192.168.1.8 at 2012-05-22 17:31:50 +0100
|
735626
|
+
Served asset /ems/active_admin/lib/ZeroClipboard.swf - 304 Not Modified (0ms)
|
735627
|
+
|
735628
|
+
|
735629
|
+
Started GET "/assets/ems/active_admin/lib/ZeroClipboard.swf" for 192.168.1.8 at 2012-05-22 17:31:50 +0100
|
735630
|
+
Served asset /ems/active_admin/lib/ZeroClipboard.swf - 304 Not Modified (0ms)
|