pulitzer 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d1a21389d2d52313083f4e7d7ea067ac90ae0dab
4
- data.tar.gz: 52b6aa62689710bdd817773fdb4384aa18c3d8d7
3
+ metadata.gz: 80a6702ff650924f53094ab6849b3f86dbaa9a47
4
+ data.tar.gz: 181ca4fe89773ec08ab52012a55c873fd982e9e8
5
5
  SHA512:
6
- metadata.gz: cc2ee6693517dcf76fe0ec32f6f090e5fef6b71bfdeb663bfc68f1078164e5f17856202b2057a9ac276d51be45af18e7d0171c4411104dcd11bb03de1af23b4a
7
- data.tar.gz: 71c364ad79775cca1f5141bc79a2e0d40eb7c9dad265b77f4173727b1964ae867b7c8223bf6a22373d3bc552defefdb5078170da249c6ce7f5af02fa5cb28c8b
6
+ metadata.gz: f0c7da33840782787a29f635fc13a4cabfda535fc08812141742826db4d2b9e72bc0feba0ad391e30a4700d351b386a3dfb0a3869b8c22278ac8994f1659754a
7
+ data.tar.gz: 243878751f5ff4638e992ae6b306ae0d71a5e0d15fe3da79260499b3f94e495a3e40cccf1d26bbbfa815679354fdbb87f3370c112331f711af1b67e0d392e74f
@@ -12,7 +12,7 @@ module Pulitzer
12
12
  before_save :handle_sort_order
13
13
 
14
14
  default_scope { order(id: :asc) }
15
- scope :free_form, -> { unscoped.where(kind: kinds[:free_form]).order(sort_order: :asc) }
15
+ scope :free_form, -> { where(kind: kinds[:free_form]).reorder(sort_order: :asc) }
16
16
 
17
17
  def video_link
18
18
  if video_type? && !body.nil?
@@ -1,3 +1,6 @@
1
+ <% if content_element.template? %>
2
+ <h3><%= content_element.label %></h3>
3
+ <% end %>
1
4
  <%= form_for content_element, html: ajax_form_hash(dom_target(content_element)), multipart: true,
2
5
  data: { server_endpoint: content_element_path(content_element) } do |f| %>
3
6
  <%= f.text_field :title, placeholder: 'Title' %>
@@ -7,8 +7,8 @@
7
7
  <% end %>
8
8
  <div class="pulitzer-row">
9
9
  <ul class="list">
10
- <% if content_element.free_form? %>
11
- <li><h2><%= content_element.label %></h2></li>
10
+ <% if content_element.template? %>
11
+ <li><h3><%= content_element.label %></h3></li>
12
12
  <% end %>
13
13
  <li><%= render_element(content_element) %></li>
14
14
  <li><%= ajax_link "Edit", edit_post_content_element_path(content_element.post, content_element), {}, dom_target(content_element) %></li>
@@ -1,6 +1,6 @@
1
1
  <%= form_for ptcet, html: ajax_form_hash("#post_type_content_element_types_container_#{dom_id(ptcet.post_type)}", insert_method: 'append', sub_class: "AddALineForm", container: "#new_post_type_content_element_type_#{dom_id(ptcet.post_type)}") do |f| %>
2
2
  <%= render partial: 'form_fields', locals: { f: f, ptcet: ptcet } %>
3
- <%= f.submit "Content element" %>
3
+ <%= f.submit "Create" %>
4
4
  <%= link_to('Cancel', '#', :class => 'button',
5
5
  data: { emptier: true, target: "#new_post_type_content_element_type_#{dom_id(ptcet.post_type)}" } ) %>
6
6
  <% end %>
@@ -1,3 +1,3 @@
1
1
  module Pulitzer
2
- VERSION = "0.1.3"
2
+ VERSION = '0.1.4'
3
3
  end
Binary file
@@ -149095,3 +149095,1412 @@ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1
149095
149095
 
149096
149096
 
149097
149097
  Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 08:54:10 -0500
149098
+
149099
+
149100
+ Started GET "/pulitzer/" for ::1 at 2015-11-19 21:43:46 -0500
149101
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
149102
+ Processing by Pulitzer::PostTypesController#index as HTML
149103
+ Pulitzer::PostType Load (0.5ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types"
149104
+ Pulitzer::Post Load (0.6ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]]
149105
+ Pulitzer::PostTypeContentElementType Load (0.5ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]]
149106
+ Pulitzer::ContentElementType Load (0.4ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149107
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show.html.erb (7.0ms)
149108
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show_wrapper.html.erb (10.2ms)
149109
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (92.1ms)
149110
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (97.5ms)
149111
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (119.3ms)
149112
+ Completed 200 OK in 337ms (Views: 322.4ms | ActiveRecord: 3.2ms)
149113
+
149114
+
149115
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149116
+
149117
+
149118
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149119
+
149120
+
149121
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149122
+
149123
+
149124
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149125
+
149126
+
149127
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149128
+
149129
+
149130
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149131
+
149132
+
149133
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149134
+
149135
+
149136
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149137
+
149138
+
149139
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149140
+
149141
+
149142
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149143
+
149144
+
149145
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149146
+
149147
+
149148
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:43:47 -0500
149149
+
149150
+
149151
+ Started GET "/pulitzer/" for ::1 at 2015-11-19 21:44:13 -0500
149152
+ Processing by Pulitzer::PostTypesController#index as HTML
149153
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types"
149154
+ Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]]
149155
+ Pulitzer::PostTypeContentElementType Load (0.2ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]]
149156
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149157
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show.html.erb (1.6ms)
149158
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show_wrapper.html.erb (3.3ms)
149159
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (10.0ms)
149160
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (12.0ms)
149161
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (15.1ms)
149162
+ Completed 200 OK in 82ms (Views: 80.9ms | ActiveRecord: 0.6ms)
149163
+
149164
+
149165
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149166
+
149167
+
149168
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149169
+
149170
+
149171
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149172
+
149173
+
149174
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149175
+
149176
+
149177
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149178
+
149179
+
149180
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149181
+
149182
+
149183
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149184
+
149185
+
149186
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149187
+
149188
+
149189
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149190
+
149191
+
149192
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149193
+
149194
+
149195
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149196
+
149197
+
149198
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:44:13 -0500
149199
+
149200
+
149201
+ Started GET "/pulitzer/post_type_content_element_types/new?post_type_id=1&authenticity_token=dPm4P60ZOkJtk8Q9OTSxuuHLhPW1zqpYa6cOsQA7bmEQNzJalP2IPX3LRUdPVCwRJK1dqkaE%2B3iJrDdr4078Tw%3D%3D" for ::1 at 2015-11-19 21:44:16 -0500
149202
+ Processing by Pulitzer::PostTypeContentElementTypesController#new as */*
149203
+ Parameters: {"post_type_id"=>"1", "authenticity_token"=>"dPm4P60ZOkJtk8Q9OTSxuuHLhPW1zqpYa6cOsQA7bmEQNzJalP2IPX3LRUdPVCwRJK1dqkaE+3iJrDdr4078Tw=="}
149204
+ Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
149205
+ Pulitzer::ContentElementType Load (0.2ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types"
149206
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = ? LIMIT 1 [["name", "Image"]]
149207
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = ? LIMIT 1 [["name", "Text"]]
149208
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_form_fields.html.erb (25.8ms)
149209
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_new.html.erb (45.4ms)
149210
+ Completed 200 OK in 77ms (Views: 67.4ms | ActiveRecord: 0.5ms)
149211
+
149212
+
149213
+ Started GET "/pulitzer/posts/jobs/content_elements" for ::1 at 2015-11-19 21:44:21 -0500
149214
+ Processing by Pulitzer::ContentElementsController#index as HTML
149215
+ Parameters: {"post_id"=>"jobs"}
149216
+ Pulitzer::Post Load (0.5ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "jobs"]]
149217
+ Pulitzer::Version Load (0.4ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149218
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149219
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
149220
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149221
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149222
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149223
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149224
+ Pulitzer::PostTag Load (0.4ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]]
149225
+ Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
149226
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]
149227
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (19.3ms)
149228
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (21.6ms)
149229
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149230
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]]
149231
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.6ms)
149232
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (4.7ms)
149233
+ Pulitzer::ContentElement Load (0.4ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]]
149234
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149235
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.2ms)
149236
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (3.8ms)
149237
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms)
149238
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (10.7ms)
149239
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (15.1ms)
149240
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149241
+ Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."sort_order" ASC [["kind", 1]]
149242
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149243
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.2ms)
149244
+ Pulitzer::Version Load (0.2ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149245
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149246
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (4.9ms)
149247
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (8.3ms)
149248
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149249
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149250
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149251
+ CACHE (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149252
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.3ms)
149253
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.5ms)
149254
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149255
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149256
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149257
+ CACHE (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149258
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.8ms)
149259
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.0ms)
149260
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149261
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (1.6ms)
149262
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/index.html.erb within layouts/application (99.9ms)
149263
+ Completed 200 OK in 386ms (Views: 157.5ms | ActiveRecord: 4.3ms)
149264
+
149265
+
149266
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149267
+
149268
+
149269
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149270
+
149271
+
149272
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149273
+
149274
+
149275
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149276
+
149277
+
149278
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149279
+
149280
+
149281
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149282
+
149283
+
149284
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149285
+
149286
+
149287
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149288
+
149289
+
149290
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149291
+
149292
+
149293
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149294
+
149295
+
149296
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149297
+
149298
+
149299
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:44:23 -0500
149300
+
149301
+
149302
+ Started GET "/pulitzer/posts/jobs/content_elements" for ::1 at 2015-11-19 21:45:07 -0500
149303
+ Processing by Pulitzer::ContentElementsController#index as HTML
149304
+ Parameters: {"post_id"=>"jobs"}
149305
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "jobs"]]
149306
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149307
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149308
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
149309
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149310
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149311
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149312
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149313
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]]
149314
+ Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
149315
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]
149316
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (1578.4ms)
149317
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (1580.6ms)
149318
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149319
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]]
149320
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.9ms)
149321
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (7.4ms)
149322
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]]
149323
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149324
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.0ms)
149325
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (2.4ms)
149326
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms)
149327
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (8.4ms)
149328
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (10.9ms)
149329
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149330
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."sort_order" ASC [["kind", 1]]
149331
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149332
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.1ms)
149333
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149334
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149335
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (4.7ms)
149336
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (7.3ms)
149337
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149338
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.1ms)
149339
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149340
+ CACHE (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149341
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (6.3ms)
149342
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (9.3ms)
149343
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149344
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149345
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149346
+ CACHE (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149347
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.5ms)
149348
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.8ms)
149349
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149350
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (0.8ms)
149351
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/index.html.erb within layouts/application (1642.2ms)
149352
+ Completed 200 OK in 1702ms (Views: 1696.2ms | ActiveRecord: 1.3ms)
149353
+
149354
+
149355
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149356
+
149357
+
149358
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149359
+
149360
+
149361
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149362
+
149363
+
149364
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149365
+
149366
+
149367
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149368
+
149369
+
149370
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149371
+
149372
+
149373
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149374
+
149375
+
149376
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149377
+
149378
+
149379
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149380
+
149381
+
149382
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149383
+
149384
+
149385
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149386
+
149387
+
149388
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:45:09 -0500
149389
+
149390
+
149391
+ Started GET "/pulitzer/content_elements/4?authenticity_token=CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3%2FaUnYk6BeBMXS03yw%3D%3D" for ::1 at 2015-11-19 21:45:12 -0500
149392
+ Processing by Pulitzer::ContentElementsController#show as */*
149393
+ Parameters: {"authenticity_token"=>"CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3/aUnYk6BeBMXS03yw==", "id"=>"4"}
149394
+ Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149395
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149396
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149397
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149398
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.8ms)
149399
+ Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.3ms)
149400
+
149401
+
149402
+ Started GET "/pulitzer/posts/jobs/content_elements/4/edit?authenticity_token=CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3%2FaUnYk6BeBMXS03yw%3D%3D" for ::1 at 2015-11-19 21:45:25 -0500
149403
+ Processing by Pulitzer::ContentElementsController#edit as */*
149404
+ Parameters: {"authenticity_token"=>"CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3/aUnYk6BeBMXS03yw==", "post_id"=>"jobs", "id"=>"4"}
149405
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149406
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149407
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.3ms)
149408
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (16.5ms)
149409
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.7ms)
149410
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (53.2ms)
149411
+ Completed 200 OK in 69ms (Views: 68.1ms | ActiveRecord: 0.2ms)
149412
+
149413
+
149414
+ Started PATCH "/pulitzer/content_elements/4" for ::1 at 2015-11-19 21:45:29 -0500
149415
+ Processing by Pulitzer::ContentElementsController#update as */*
149416
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"8S7YYLJJ6p2czLesd5WYPdHRJqydoVOI/D2YPq3pDlqV4FIFi61Y4oyUNtYB9QWWFLf/827rAqgeNqHkTpycdA==", "content_element"=>{"title"=>"asdf", "body"=>"asdf"}, "commit"=>"Update", "id"=>"4"}
149417
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149418
+  (0.1ms) begin transaction
149419
+ SQL (0.4ms) UPDATE "pulitzer_content_elements" SET "title" = ?, "body" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["title", "asdf"], ["body", "asdf"], ["updated_at", "2015-11-20 02:45:29.518473"], ["id", 4]]
149420
+  (0.6ms) commit transaction
149421
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149422
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149423
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149424
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.7ms)
149425
+ Completed 200 OK in 28ms (Views: 21.6ms | ActiveRecord: 1.4ms)
149426
+
149427
+
149428
+ Started GET "/pulitzer/posts/jobs/content_elements/4/edit?authenticity_token=CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3%2FaUnYk6BeBMXS03yw%3D%3D" for ::1 at 2015-11-19 21:45:33 -0500
149429
+ Processing by Pulitzer::ContentElementsController#edit as */*
149430
+ Parameters: {"authenticity_token"=>"CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3/aUnYk6BeBMXS03yw==", "post_id"=>"jobs", "id"=>"4"}
149431
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149432
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149433
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.1ms)
149434
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (20.3ms)
149435
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms)
149436
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (58.2ms)
149437
+ Completed 200 OK in 75ms (Views: 73.5ms | ActiveRecord: 0.2ms)
149438
+
149439
+
149440
+ Started GET "/pulitzer/content_elements/4?authenticity_token=CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3%2FaUnYk6BeBMXS03yw%3D%3D" for ::1 at 2015-11-19 21:46:33 -0500
149441
+ Processing by Pulitzer::ContentElementsController#show as */*
149442
+ Parameters: {"authenticity_token"=>"CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3/aUnYk6BeBMXS03yw==", "id"=>"4"}
149443
+ Pulitzer::ContentElement Load (0.3ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149444
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149445
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149446
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149447
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.1ms)
149448
+ Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.6ms)
149449
+
149450
+
149451
+ Started GET "/pulitzer/posts/jobs/content_elements/4/edit?authenticity_token=CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3%2FaUnYk6BeBMXS03yw%3D%3D" for ::1 at 2015-11-19 21:46:34 -0500
149452
+ Processing by Pulitzer::ContentElementsController#edit as */*
149453
+ Parameters: {"authenticity_token"=>"CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3/aUnYk6BeBMXS03yw==", "post_id"=>"jobs", "id"=>"4"}
149454
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149455
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149456
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.0ms)
149457
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (14.5ms)
149458
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms)
149459
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (50.9ms)
149460
+ Completed 200 OK in 67ms (Views: 65.4ms | ActiveRecord: 0.2ms)
149461
+
149462
+
149463
+ Started GET "/pulitzer/content_elements/4?authenticity_token=CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3%2FaUnYk6BeBMXS03yw%3D%3D" for ::1 at 2015-11-19 21:46:37 -0500
149464
+ Processing by Pulitzer::ContentElementsController#show as */*
149465
+ Parameters: {"authenticity_token"=>"CkxeaEU1yDHMIQ3LcIZrtNFbVYAF3syp2A7Zlr5YpeVugtQNfNF6Ttx5jLEG5vYfFD2M3/aUnYk6BeBMXS03yw==", "id"=>"4"}
149466
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149467
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149468
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149469
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149470
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.3ms)
149471
+ Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.3ms)
149472
+
149473
+
149474
+ Started GET "/pulitzer/posts/jobs/content_elements" for ::1 at 2015-11-19 21:46:59 -0500
149475
+ Processing by Pulitzer::ContentElementsController#index as HTML
149476
+ Parameters: {"post_id"=>"jobs"}
149477
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "jobs"]]
149478
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149479
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149480
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
149481
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149482
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149483
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149484
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149485
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]]
149486
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
149487
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]
149488
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (3.9ms)
149489
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (5.5ms)
149490
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149491
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]]
149492
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.4ms)
149493
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (3.9ms)
149494
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]]
149495
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149496
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (0.8ms)
149497
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (3.1ms)
149498
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149499
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."sort_order" ASC [["kind", 1]]
149500
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149501
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149502
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149503
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149504
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.9ms)
149505
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.0ms)
149506
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149507
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149508
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149509
+ CACHE (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149510
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.2ms)
149511
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (6.4ms)
149512
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149513
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149514
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149515
+ CACHE (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149516
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.9ms)
149517
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.3ms)
149518
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149519
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (1.4ms)
149520
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/index.html.erb within layouts/application (48.1ms)
149521
+ Completed 200 OK in 120ms (Views: 113.8ms | ActiveRecord: 1.1ms)
149522
+
149523
+
149524
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149525
+
149526
+
149527
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149528
+
149529
+
149530
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149531
+
149532
+
149533
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149534
+
149535
+
149536
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149537
+
149538
+
149539
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149540
+
149541
+
149542
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149543
+
149544
+
149545
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149546
+
149547
+
149548
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149549
+
149550
+
149551
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149552
+
149553
+
149554
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149555
+
149556
+
149557
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:47:00 -0500
149558
+
149559
+
149560
+ Started GET "/pulitzer/posts/jobs/content_elements/4/edit?authenticity_token=l3ZIiEoUazJVBObdndfVsOShC9lR924dysbwG%2FyC7dnzuMLtc%2FDZTUVcZ6frt0gbIcfShqK9Pz0ozcnBH%2Fd%2F9w%3D%3D" for ::1 at 2015-11-19 21:47:05 -0500
149561
+ Processing by Pulitzer::ContentElementsController#edit as */*
149562
+ Parameters: {"authenticity_token"=>"l3ZIiEoUazJVBObdndfVsOShC9lR924dysbwG/yC7dnzuMLtc/DZTUVcZ6frt0gbIcfShqK9Pz0ozcnBH/d/9w==", "post_id"=>"jobs", "id"=>"4"}
149563
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149564
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149565
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.0ms)
149566
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (14.1ms)
149567
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms)
149568
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (46.3ms)
149569
+ Completed 200 OK in 63ms (Views: 61.9ms | ActiveRecord: 0.2ms)
149570
+
149571
+
149572
+ Started PATCH "/pulitzer/content_elements/4" for ::1 at 2015-11-19 21:47:08 -0500
149573
+ Processing by Pulitzer::ContentElementsController#update as */*
149574
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"YdBC9TWQgN5C4suZnsPbzad12mOalj/bq2mOLyv+y9wFHsiQDHQyoVK6SuPoo0ZmYhMDPGncbvtJYrf1yItZ8g==", "content_element"=>{"title"=>"asdf", "body"=>"asdf"}, "commit"=>"Update", "id"=>"4"}
149575
+ Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149576
+  (0.1ms) begin transaction
149577
+  (0.1ms) commit transaction
149578
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149579
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149580
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149581
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (5.0ms)
149582
+ Completed 200 OK in 31ms (Views: 26.4ms | ActiveRecord: 0.7ms)
149583
+
149584
+
149585
+ Started GET "/pulitzer/posts/jobs/content_elements" for ::1 at 2015-11-19 21:47:18 -0500
149586
+ Processing by Pulitzer::ContentElementsController#index as HTML
149587
+ Parameters: {"post_id"=>"jobs"}
149588
+ Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "jobs"]]
149589
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149590
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149591
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
149592
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149593
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149594
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149595
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149596
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]]
149597
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
149598
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]
149599
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (6.3ms)
149600
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (8.8ms)
149601
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149602
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]]
149603
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (3.3ms)
149604
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (5.8ms)
149605
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]]
149606
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149607
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.0ms)
149608
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.2ms)
149609
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149610
+ Pulitzer::ContentElement Load (0.3ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."sort_order" ASC [["kind", 1]]
149611
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149612
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149613
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149614
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149615
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.2ms)
149616
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (6.0ms)
149617
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149618
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149619
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149620
+ CACHE (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149621
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.0ms)
149622
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.2ms)
149623
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149624
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149625
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149626
+ CACHE (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149627
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.1ms)
149628
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (6.6ms)
149629
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149630
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (1.3ms)
149631
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/index.html.erb within layouts/application (61.2ms)
149632
+ Completed 200 OK in 131ms (Views: 121.8ms | ActiveRecord: 1.8ms)
149633
+
149634
+
149635
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149636
+
149637
+
149638
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149639
+
149640
+
149641
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149642
+
149643
+
149644
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149645
+
149646
+
149647
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149648
+
149649
+
149650
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149651
+
149652
+
149653
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149654
+
149655
+
149656
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149657
+
149658
+
149659
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149660
+
149661
+
149662
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149663
+
149664
+
149665
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149666
+
149667
+
149668
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:47:19 -0500
149669
+
149670
+
149671
+ Started GET "/pulitzer/posts/jobs/content_elements/4/edit?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:47:21 -0500
149672
+ Processing by Pulitzer::ContentElementsController#edit as */*
149673
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "post_id"=>"jobs", "id"=>"4"}
149674
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149675
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149676
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.0ms)
149677
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (14.7ms)
149678
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms)
149679
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (51.9ms)
149680
+ Completed 200 OK in 68ms (Views: 66.8ms | ActiveRecord: 0.2ms)
149681
+
149682
+
149683
+ Started GET "/pulitzer/content_elements/4?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:47:22 -0500
149684
+ Processing by Pulitzer::ContentElementsController#show as */*
149685
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "id"=>"4"}
149686
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149687
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149688
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149689
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149690
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.4ms)
149691
+ Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.4ms)
149692
+
149693
+
149694
+ Started GET "/pulitzer/posts/jobs/content_elements/4/edit?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:47:24 -0500
149695
+ Processing by Pulitzer::ContentElementsController#edit as */*
149696
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "post_id"=>"jobs", "id"=>"4"}
149697
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149698
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149699
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.0ms)
149700
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (14.3ms)
149701
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms)
149702
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (48.2ms)
149703
+ Completed 200 OK in 64ms (Views: 62.9ms | ActiveRecord: 0.2ms)
149704
+
149705
+
149706
+ Started GET "/pulitzer/content_elements/4?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:47:25 -0500
149707
+ Processing by Pulitzer::ContentElementsController#show as */*
149708
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "id"=>"4"}
149709
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149710
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149711
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149712
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149713
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.2ms)
149714
+ Completed 200 OK in 28ms (Views: 25.7ms | ActiveRecord: 0.4ms)
149715
+
149716
+
149717
+ Started GET "/pulitzer/posts/jobs/content_elements/4/edit?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:47:28 -0500
149718
+ Processing by Pulitzer::ContentElementsController#edit as */*
149719
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "post_id"=>"jobs", "id"=>"4"}
149720
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149721
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149722
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.0ms)
149723
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (14.6ms)
149724
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms)
149725
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (46.9ms)
149726
+ Completed 200 OK in 63ms (Views: 61.7ms | ActiveRecord: 0.2ms)
149727
+
149728
+
149729
+ Started PATCH "/pulitzer/content_elements/4" for ::1 at 2015-11-19 21:47:30 -0500
149730
+ Processing by Pulitzer::ContentElementsController#update as */*
149731
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"OQyj241DUeG84JqUfQ12iUFKzZiYMrwVIrRzbEt/+7Rdwim+tKfjnqy4G+4LbesihCwUx2t47TXAv0q2qAppmg==", "content_element"=>{"title"=>"asdfasff", "body"=>"asdf"}, "commit"=>"Update", "id"=>"4"}
149732
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149733
+  (0.1ms) begin transaction
149734
+ SQL (0.3ms) UPDATE "pulitzer_content_elements" SET "title" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["title", "asdfasff"], ["updated_at", "2015-11-20 02:47:30.209626"], ["id", 4]]
149735
+  (3053.6ms) commit transaction
149736
+ Pulitzer::ContentElementType Load (0.2ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149737
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149738
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149739
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (5.6ms)
149740
+ Completed 200 OK in 3085ms (Views: 26.6ms | ActiveRecord: 3054.5ms)
149741
+
149742
+
149743
+ Started PATCH "/pulitzer/content_elements/4" for ::1 at 2015-11-19 21:47:33 -0500
149744
+ Processing by Pulitzer::ContentElementsController#update as */*
149745
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"OQyj241DUeG84JqUfQ12iUFKzZiYMrwVIrRzbEt/+7Rdwim+tKfjnqy4G+4LbesihCwUx2t47TXAv0q2qAppmg==", "content_element"=>{"title"=>"asdfasff", "body"=>"asdf"}, "commit"=>"Update", "id"=>"4"}
149746
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149747
+  (0.1ms) begin transaction
149748
+  (0.1ms) commit transaction
149749
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149750
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149751
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149752
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.2ms)
149753
+ Completed 200 OK in 28ms (Views: 22.9ms | ActiveRecord: 0.6ms)
149754
+
149755
+
149756
+ Started GET "/pulitzer/posts/jobs/content_elements/4/edit?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:47:40 -0500
149757
+ Processing by Pulitzer::ContentElementsController#edit as */*
149758
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "post_id"=>"jobs", "id"=>"4"}
149759
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149760
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149761
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.0ms)
149762
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (14.3ms)
149763
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms)
149764
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (51.1ms)
149765
+ Completed 200 OK in 68ms (Views: 67.2ms | ActiveRecord: 0.2ms)
149766
+
149767
+
149768
+ Started GET "/pulitzer/content_elements/4?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:47:41 -0500
149769
+ Processing by Pulitzer::ContentElementsController#show as */*
149770
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "id"=>"4"}
149771
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149772
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149773
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149774
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149775
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.3ms)
149776
+ Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.3ms)
149777
+
149778
+
149779
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:47:50 -0500
149780
+
149781
+
149782
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:47:50 -0500
149783
+
149784
+
149785
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:47:50 -0500
149786
+
149787
+
149788
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:47:50 -0500
149789
+
149790
+
149791
+ Started GET "/pulitzer/posts/jobs/content_elements/4/edit?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:47:59 -0500
149792
+ Processing by Pulitzer::ContentElementsController#edit as */*
149793
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "post_id"=>"jobs", "id"=>"4"}
149794
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149795
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149796
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.0ms)
149797
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (15.3ms)
149798
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms)
149799
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (50.4ms)
149800
+ Completed 200 OK in 66ms (Views: 65.1ms | ActiveRecord: 0.2ms)
149801
+
149802
+
149803
+ Started GET "/pulitzer/content_elements/4?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:48:00 -0500
149804
+ Processing by Pulitzer::ContentElementsController#show as */*
149805
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "id"=>"4"}
149806
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149807
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149808
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149809
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149810
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.1ms)
149811
+ Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.3ms)
149812
+
149813
+
149814
+ Started GET "/pulitzer/posts/jobs/content_elements/3/edit?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:48:10 -0500
149815
+ Processing by Pulitzer::ContentElementsController#edit as */*
149816
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "post_id"=>"jobs", "id"=>"3"}
149817
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 3]]
149818
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149819
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.0ms)
149820
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (14.8ms)
149821
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms)
149822
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (51.8ms)
149823
+ Completed 200 OK in 68ms (Views: 66.8ms | ActiveRecord: 0.2ms)
149824
+
149825
+
149826
+ Started GET "/pulitzer/content_elements/3?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:48:11 -0500
149827
+ Processing by Pulitzer::ContentElementsController#show as */*
149828
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "id"=>"3"}
149829
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 3]]
149830
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.3ms)
149831
+ Pulitzer::ContentElementType Load (0.2ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149832
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149833
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149834
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (18.8ms)
149835
+ Completed 200 OK in 34ms (Views: 32.8ms | ActiveRecord: 0.4ms)
149836
+
149837
+
149838
+ Started GET "/pulitzer/posts/jobs/content_elements/4/edit?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:48:14 -0500
149839
+ Processing by Pulitzer::ContentElementsController#edit as */*
149840
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "post_id"=>"jobs", "id"=>"4"}
149841
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149842
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149843
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.0ms)
149844
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (17.1ms)
149845
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms)
149846
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (52.0ms)
149847
+ Completed 200 OK in 69ms (Views: 67.1ms | ActiveRecord: 0.2ms)
149848
+
149849
+
149850
+ Started GET "/pulitzer/content_elements/4?authenticity_token=bH%2BSTeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS%2BW6zcIsRgo3VnSdSiS7BSn%2BfgBcWuuzeHEe0lrY6ATzON5GQ%3D%3D" for ::1 at 2015-11-19 21:48:15 -0500
149851
+ Processing by Pulitzer::ContentElementsController#show as */*
149852
+ Parameters: {"authenticity_token"=>"bH+STeS9YAo4ym1u0ZllqrQNd5ISjippiWiZyS+W6zcIsRgo3VnSdSiS7BSn+fgBcWuuzeHEe0lrY6ATzON5GQ==", "id"=>"4"}
149853
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 4]]
149854
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149855
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
149856
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
149857
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.5ms)
149858
+ Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.3ms)
149859
+
149860
+
149861
+ Started GET "/pulitzer/posts/jobs/content_elements" for ::1 at 2015-11-19 21:51:45 -0500
149862
+ Processing by Pulitzer::ContentElementsController#index as HTML
149863
+ Parameters: {"post_id"=>"jobs"}
149864
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
149865
+
149866
+ ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!):
149867
+ app/controllers/application_controller.rb:9:in `setup_user'
149868
+
149869
+
149870
+ Rendered /Users/gomayonqui/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
149871
+ Rendered /Users/gomayonqui/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms)
149872
+ Rendered /Users/gomayonqui/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
149873
+ Rendered /Users/gomayonqui/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.5ms)
149874
+
149875
+
149876
+ Started GET "/pulitzer/posts/jobs/content_elements" for ::1 at 2015-11-19 21:51:59 -0500
149877
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
149878
+ Processing by Pulitzer::ContentElementsController#index as HTML
149879
+ Parameters: {"post_id"=>"jobs"}
149880
+ Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "jobs"]]
149881
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149882
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149883
+ Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
149884
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149885
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149886
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149887
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149888
+ Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]]
149889
+ Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
149890
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]
149891
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (21.5ms)
149892
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (24.0ms)
149893
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149894
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]]
149895
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.9ms)
149896
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (4.6ms)
149897
+ Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]]
149898
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149899
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (0.9ms)
149900
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (9.4ms)
149901
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149902
+ Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."sort_order" ASC [["version_id", 1], ["kind", 1]]
149903
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149904
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.4ms)
149905
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.8ms)
149906
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.6ms)
149907
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149908
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149909
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.1ms)
149910
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (4.4ms)
149911
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149912
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149913
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.0ms)
149914
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (4.4ms)
149915
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149916
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (10.1ms)
149917
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/index.html.erb within layouts/application (117.7ms)
149918
+ Completed 200 OK in 1683ms (Views: 238.5ms | ActiveRecord: 3.5ms)
149919
+
149920
+
149921
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149922
+
149923
+
149924
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149925
+
149926
+
149927
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149928
+
149929
+
149930
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149931
+
149932
+
149933
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149934
+
149935
+
149936
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149937
+
149938
+
149939
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149940
+
149941
+
149942
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149943
+
149944
+
149945
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149946
+
149947
+
149948
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149949
+
149950
+
149951
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149952
+
149953
+
149954
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:52:01 -0500
149955
+
149956
+
149957
+ Started GET "/pulitzer/posts/jobs/content_elements" for ::1 at 2015-11-19 21:52:02 -0500
149958
+ Processing by Pulitzer::ContentElementsController#index as HTML
149959
+ Parameters: {"post_id"=>"jobs"}
149960
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "jobs"]]
149961
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149962
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149963
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
149964
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149965
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149966
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149967
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149968
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]]
149969
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
149970
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]
149971
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (4.0ms)
149972
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (5.6ms)
149973
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149974
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]]
149975
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.4ms)
149976
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (4.0ms)
149977
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]]
149978
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149979
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (0.4ms)
149980
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (3.0ms)
149981
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149982
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."sort_order" ASC [["version_id", 1], ["kind", 1]]
149983
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149984
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149985
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (1.9ms)
149986
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (4.6ms)
149987
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149988
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149989
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.1ms)
149990
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.0ms)
149991
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
149992
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
149993
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (1.9ms)
149994
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (4.3ms)
149995
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
149996
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (2.6ms)
149997
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/index.html.erb within layouts/application (49.2ms)
149998
+ Completed 200 OK in 147ms (Views: 140.2ms | ActiveRecord: 1.0ms)
149999
+
150000
+
150001
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150002
+
150003
+
150004
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150005
+
150006
+
150007
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150008
+
150009
+
150010
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150011
+
150012
+
150013
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150014
+
150015
+
150016
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150017
+
150018
+
150019
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150020
+
150021
+
150022
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150023
+
150024
+
150025
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150026
+
150027
+
150028
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150029
+
150030
+
150031
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150032
+
150033
+
150034
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:52:02 -0500
150035
+
150036
+
150037
+ Started GET "/pulitzer/post_types" for ::1 at 2015-11-19 21:52:13 -0500
150038
+ Processing by Pulitzer::PostTypesController#index as HTML
150039
+ Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types"
150040
+ Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]]
150041
+ Pulitzer::PostTypeContentElementType Load (0.4ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]]
150042
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150043
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show.html.erb (3.1ms)
150044
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show_wrapper.html.erb (7.1ms)
150045
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (29.4ms)
150046
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (32.8ms)
150047
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (37.8ms)
150048
+ Completed 200 OK in 132ms (Views: 130.5ms | ActiveRecord: 1.2ms)
150049
+
150050
+
150051
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150052
+
150053
+
150054
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150055
+
150056
+
150057
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150058
+
150059
+
150060
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150061
+
150062
+
150063
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150064
+
150065
+
150066
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150067
+
150068
+
150069
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150070
+
150071
+
150072
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150073
+
150074
+
150075
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150076
+
150077
+
150078
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150079
+
150080
+
150081
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150082
+
150083
+
150084
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:52:14 -0500
150085
+
150086
+
150087
+ Started GET "/pulitzer/post_types/new?authenticity_token=1QR2dcYBNsjwI1JeAnmkSFUq8%2FEi%2BGTgaIy3ODoL%2FFuxyvwQ%2F%2BWEt%2BB70yR0GTnjkEwqrtGyNcCKh47i2X5udQ%3D%3D" for ::1 at 2015-11-19 21:52:15 -0500
150088
+ Processing by Pulitzer::PostTypesController#new as */*
150089
+ Parameters: {"authenticity_token"=>"1QR2dcYBNsjwI1JeAnmkSFUq8/Ei+GTgaIy3ODoL/FuxyvwQ/+WEt+B70yR0GTnjkEwqrtGyNcCKh47i2X5udQ=="}
150090
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_form_fields.html.erb (15.0ms)
150091
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms)
150092
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_new.html.erb (56.9ms)
150093
+ Completed 200 OK in 1361ms (Views: 1360.0ms | ActiveRecord: 0.0ms)
150094
+
150095
+
150096
+ Started POST "/pulitzer/post_types" for ::1 at 2015-11-19 21:52:21 -0500
150097
+ Processing by Pulitzer::PostTypesController#create as */*
150098
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Pta5Vl1C3VoVM8O3VBLv5juKimTdeX6ze34Ia+iv2F5aGDMzZKZvJQVrQs0icnJN/uxTOy4zL5OZdTGxC9pKcA==", "post_type"=>{"name"=>"test", "plural"=>"0", "kind"=>"hybrid"}, "commit"=>"Create"}
150099
+  (0.1ms) begin transaction
150100
+ SQL (0.8ms) INSERT INTO "pulitzer_post_types" ("name", "plural", "kind", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "test"], ["plural", "f"], ["kind", 2], ["created_at", "2015-11-20 02:52:21.600553"], ["updated_at", "2015-11-20 02:52:21.600553"]]
150101
+  (0.6ms) commit transaction
150102
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 2]]
150103
+  (0.1ms) begin transaction
150104
+ Pulitzer::Post Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "test"]]
150105
+ SQL (0.7ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "test"], ["post_type_id", 2], ["slug", "test"], ["created_at", "2015-11-20 02:52:21.624615"], ["updated_at", "2015-11-20 02:52:21.624615"]]
150106
+ SQL (0.3ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 2], ["created_at", "2015-11-20 02:52:21.628345"], ["updated_at", "2015-11-20 02:52:21.628345"]]
150107
+  (0.8ms) commit transaction
150108
+ Pulitzer::PostTypeContentElementType Load (0.2ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 2]]
150109
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 2]]
150110
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (3.7ms)
150111
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (22.3ms)
150112
+ Completed 200 OK in 76ms (Views: 38.5ms | ActiveRecord: 3.9ms)
150113
+
150114
+
150115
+ Started GET "/pulitzer/post_type_content_element_types/new?post_type_id=2&authenticity_token=1QR2dcYBNsjwI1JeAnmkSFUq8%2FEi%2BGTgaIy3ODoL%2FFuxyvwQ%2F%2BWEt%2BB70yR0GTnjkEwqrtGyNcCKh47i2X5udQ%3D%3D" for ::1 at 2015-11-19 21:52:23 -0500
150116
+ Processing by Pulitzer::PostTypeContentElementTypesController#new as */*
150117
+ Parameters: {"post_type_id"=>"2", "authenticity_token"=>"1QR2dcYBNsjwI1JeAnmkSFUq8/Ei+GTgaIy3ODoL/FuxyvwQ/+WEt+B70yR0GTnjkEwqrtGyNcCKh47i2X5udQ=="}
150118
+ Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 2]]
150119
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types"
150120
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = ? LIMIT 1 [["name", "Image"]]
150121
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = ? LIMIT 1 [["name", "Text"]]
150122
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_form_fields.html.erb (7.7ms)
150123
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_new.html.erb (27.4ms)
150124
+ Completed 200 OK in 52ms (Views: 49.3ms | ActiveRecord: 0.5ms)
150125
+
150126
+
150127
+ Started POST "/pulitzer/post_type_content_element_types" for ::1 at 2015-11-19 21:52:27 -0500
150128
+ Processing by Pulitzer::PostTypeContentElementTypesController#create as */*
150129
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"dKFI9xOxbAF7ZOPKijbrSCdoCPkcCan+JACXKNd+PCoQb8KSKlXefms8YrD8Vnbj4g7Rpu9D+N7GC67yNAuuBA==", "post_type_content_element_type"=>{"label"=>"plz", "content_element_type_id"=>"1", "post_type_id"=>"2", "text_editor"=>"None"}, "commit"=>"Create"}
150130
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 2]]
150131
+  (0.0ms) begin transaction
150132
+ SQL (0.3ms) INSERT INTO "pulitzer_post_type_content_element_types" ("label", "content_element_type_id", "post_type_id", "text_editor", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "plz"], ["content_element_type_id", 1], ["post_type_id", 2], ["text_editor", "None"], ["created_at", "2015-11-20 02:52:27.045582"], ["updated_at", "2015-11-20 02:52:27.045582"]]
150133
+  (627.5ms) commit transaction
150134
+ Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? [["post_type_id", 2]]
150135
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150136
+  (0.1ms) begin transaction
150137
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150138
+ SQL (0.4ms) INSERT INTO "pulitzer_content_elements" ("version_id", "label", "text_editor", "content_element_type_id", "post_type_content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["version_id", 2], ["label", "plz"], ["text_editor", "None"], ["content_element_type_id", 1], ["post_type_content_element_type_id", 2], ["created_at", "2015-11-20 02:52:27.686798"], ["updated_at", "2015-11-20 02:52:27.686798"]]
150139
+  (1.2ms) commit transaction
150140
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show.html.erb (1.0ms)
150141
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show_wrapper.html.erb (18.8ms)
150142
+ Completed 200 OK in 685ms (Views: 36.6ms | ActiveRecord: 630.0ms)
150143
+
150144
+
150145
+ Started GET "/pulitzer/posts/test/content_elements" for ::1 at 2015-11-19 21:52:29 -0500
150146
+ Processing by Pulitzer::ContentElementsController#index as HTML
150147
+ Parameters: {"post_id"=>"test"}
150148
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "test"]]
150149
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150150
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150151
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 2]]
150152
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150153
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150154
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150155
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150156
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "Pulitzer::Tag"]]
150157
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.3ms)
150158
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (3.8ms)
150159
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150160
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "SearchLocation"]]
150161
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.0ms)
150162
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (3.4ms)
150163
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2], ["kind", 0]]
150164
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150165
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.3ms)
150166
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (4.4ms)
150167
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms)
150168
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (1152.5ms)
150169
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (1154.9ms)
150170
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150171
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."sort_order" ASC [["version_id", 2], ["kind", 1]]
150172
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150173
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (1.1ms)
150174
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/index.html.erb within layouts/application (1177.1ms)
150175
+ Completed 200 OK in 1241ms (Views: 1233.9ms | ActiveRecord: 0.8ms)
150176
+
150177
+
150178
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150179
+
150180
+
150181
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150182
+
150183
+
150184
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150185
+
150186
+
150187
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150188
+
150189
+
150190
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150191
+
150192
+
150193
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150194
+
150195
+
150196
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150197
+
150198
+
150199
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150200
+
150201
+
150202
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150203
+
150204
+
150205
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150206
+
150207
+
150208
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150209
+
150210
+
150211
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:52:30 -0500
150212
+
150213
+
150214
+ Started GET "/pulitzer/posts/test/content_elements" for ::1 at 2015-11-19 21:52:56 -0500
150215
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
150216
+ Processing by Pulitzer::ContentElementsController#index as HTML
150217
+ Parameters: {"post_id"=>"test"}
150218
+ Pulitzer::Post Load (0.3ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "test"]]
150219
+ Pulitzer::Version Load (0.2ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150220
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150221
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 2]]
150222
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150223
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150224
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150225
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150226
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "Pulitzer::Tag"]]
150227
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (6.1ms)
150228
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (8.0ms)
150229
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150230
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "SearchLocation"]]
150231
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.3ms)
150232
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (3.9ms)
150233
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2], ["kind", 0]]
150234
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150235
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.2ms)
150236
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (3.2ms)
150237
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms)
150238
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (22.9ms)
150239
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (39.5ms)
150240
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150241
+ Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."sort_order" ASC [["kind", 1]]
150242
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150243
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.3ms)
150244
+ Pulitzer::Version Load (0.2ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
150245
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
150246
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (4.5ms)
150247
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (6.8ms)
150248
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150249
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
150250
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
150251
+ CACHE (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
150252
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (3.1ms)
150253
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.4ms)
150254
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150255
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
150256
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]]
150257
+ CACHE (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
150258
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.8ms)
150259
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.0ms)
150260
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150261
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (1.5ms)
150262
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/index.html.erb within layouts/application (112.8ms)
150263
+ Completed 200 OK in 433ms (Views: 211.7ms | ActiveRecord: 3.0ms)
150264
+
150265
+
150266
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150267
+
150268
+
150269
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150270
+
150271
+
150272
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150273
+
150274
+
150275
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150276
+
150277
+
150278
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150279
+
150280
+
150281
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150282
+
150283
+
150284
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150285
+
150286
+
150287
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150288
+
150289
+
150290
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150291
+
150292
+
150293
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150294
+
150295
+
150296
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150297
+
150298
+
150299
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:52:56 -0500
150300
+
150301
+
150302
+ Started GET "/pulitzer/posts/test/content_elements" for ::1 at 2015-11-19 21:53:12 -0500
150303
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
150304
+ Processing by Pulitzer::ContentElementsController#index as HTML
150305
+ Parameters: {"post_id"=>"test"}
150306
+ Pulitzer::Post Load (0.3ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "test"]]
150307
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150308
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150309
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 2]]
150310
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150311
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150312
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150313
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150314
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "Pulitzer::Tag"]]
150315
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (6.0ms)
150316
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (8.3ms)
150317
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150318
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "SearchLocation"]]
150319
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (200.3ms)
150320
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (202.0ms)
150321
+ Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2], ["kind", 0]]
150322
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150323
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/text_editors/_none.html.erb (0.3ms)
150324
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (3.7ms)
150325
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms)
150326
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (27.1ms)
150327
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (43.8ms)
150328
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150329
+ Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."sort_order" ASC [["version_id", 2], ["kind", 1]]
150330
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 2], ["status", 0]]
150331
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (1.6ms)
150332
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/index.html.erb within layouts/application (294.2ms)
150333
+ Completed 200 OK in 561ms (Views: 387.1ms | ActiveRecord: 2.7ms)
150334
+
150335
+
150336
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150337
+
150338
+
150339
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150340
+
150341
+
150342
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150343
+
150344
+
150345
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150346
+
150347
+
150348
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150349
+
150350
+
150351
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150352
+
150353
+
150354
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150355
+
150356
+
150357
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150358
+
150359
+
150360
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150361
+
150362
+
150363
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150364
+
150365
+
150366
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150367
+
150368
+
150369
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:53:13 -0500
150370
+
150371
+
150372
+ Started GET "/pulitzer/post_types" for ::1 at 2015-11-19 21:53:17 -0500
150373
+ Processing by Pulitzer::PostTypesController#index as HTML
150374
+ Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types"
150375
+ Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]]
150376
+ Pulitzer::PostTypeContentElementType Load (0.2ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]]
150377
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150378
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show.html.erb (3.0ms)
150379
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show_wrapper.html.erb (5.6ms)
150380
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (26.5ms)
150381
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (29.4ms)
150382
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 2]]
150383
+ Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 2]]
150384
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150385
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show.html.erb (1.2ms)
150386
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show_wrapper.html.erb (2.9ms)
150387
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (9.2ms)
150388
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (11.1ms)
150389
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (46.5ms)
150390
+ Completed 200 OK in 120ms (Views: 118.0ms | ActiveRecord: 1.2ms)
150391
+
150392
+
150393
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150394
+
150395
+
150396
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150397
+
150398
+
150399
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150400
+
150401
+
150402
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150403
+
150404
+
150405
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150406
+
150407
+
150408
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150409
+
150410
+
150411
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150412
+
150413
+
150414
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150415
+
150416
+
150417
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150418
+
150419
+
150420
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150421
+
150422
+
150423
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150424
+
150425
+
150426
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:53:18 -0500
150427
+
150428
+
150429
+ Started GET "/pulitzer/posts/jobs/content_elements" for ::1 at 2015-11-19 21:53:19 -0500
150430
+ Processing by Pulitzer::ContentElementsController#index as HTML
150431
+ Parameters: {"post_id"=>"jobs"}
150432
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "jobs"]]
150433
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
150434
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
150435
+ Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
150436
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
150437
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
150438
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
150439
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
150440
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]]
150441
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
150442
+ Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]
150443
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (65.2ms)
150444
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (67.1ms)
150445
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
150446
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]]
150447
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (3.7ms)
150448
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (5.6ms)
150449
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]]
150450
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150451
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (1.2ms)
150452
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (4.8ms)
150453
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
150454
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."sort_order" ASC [["version_id", 1], ["kind", 1]]
150455
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150456
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.4ms)
150457
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.4ms)
150458
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (5.2ms)
150459
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150460
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
150461
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.1ms)
150462
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (4.6ms)
150463
+ CACHE (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
150464
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
150465
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.2ms)
150466
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (4.6ms)
150467
+ CACHE (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
150468
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (1.9ms)
150469
+ Rendered /Users/gomayonqui/Sites/work/pulitzer/app/views/pulitzer/content_elements/index.html.erb within layouts/application (117.2ms)
150470
+ Completed 200 OK in 188ms (Views: 180.0ms | ActiveRecord: 1.9ms)
150471
+
150472
+
150473
+ Started GET "/assets/application-5b583dd2199cbb300213770ac0d2171c.css?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150474
+
150475
+
150476
+ Started GET "/assets/select2-726a3da3f06c953f2eb84ad369a29b08.css?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150477
+
150478
+
150479
+ Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150480
+
150481
+
150482
+ Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150483
+
150484
+
150485
+ Started GET "/assets/thin_man-9470e08dea2bb41b4343b218b5840a3f.js?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150486
+
150487
+
150488
+ Started GET "/assets/pulitzer-9b45c6f813dec40b3b81df0bb0dc7a05.css?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150489
+
150490
+
150491
+ Started GET "/assets/hooch-50c102a807afd9994e6258e72a354402.js?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150492
+
150493
+
150494
+ Started GET "/assets/pulitzer-b0f83585a18d8e57d0c46df10bb601e2.js?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150495
+
150496
+
150497
+ Started GET "/assets/select2-4bcb3dfcf21b892252919ef821a27976.js?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150498
+
150499
+
150500
+ Started GET "/assets/wysihtml-toolbar-db5eddd8a3502c7490e3400df604228e.js?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150501
+
150502
+
150503
+ Started GET "/assets/parser_rules/advanced_and_extended-122c91c676d52010f1694f1b66d6917a.js?body=1" for ::1 at 2015-11-19 21:53:20 -0500
150504
+
150505
+
150506
+ Started GET "/assets/application-7e77011d111d320132c043d0786f8e4a.js?body=1" for ::1 at 2015-11-19 21:53:20 -0500