pulitzer 0.4.4 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/pulitzer/post_types_controller.rb +1 -1
- data/app/views/pulitzer/post_types/_index.html.erb +1 -2
- data/app/views/pulitzer/post_types/_new.html.erb +1 -1
- data/lib/pulitzer/version.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +1213 -0
- data/spec/dummy/public/uploads/tmp/1464026903-68945-9171/cms_sam_and_snow.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1464026903-68945-9171/sam_and_snow.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1464026903-68945-9171/thumb_sam_and_snow.jpg +0 -0
- metadata +7 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e1912ca3282a4de6db4668ef7b79114037566d3
|
4
|
+
data.tar.gz: 9cd904c638c5021a820cad1a23c4797ce56c2455
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b79e25f3a973cd394c2dfad3411e2593cdb21fc2ea64c37f10d89701c4ecc5e10dd2c49a0c3c72ae846870c3b3bab33a9fc5cea412640f5ff2027c59c2382221
|
7
|
+
data.tar.gz: 4c74d9c59765e59b46ab6124bb2c94fd7ea7a84e6a382f07e081f749d72223bdc6560a56fab22b37c273c004dcd9b3734deaf477c95cd7b4fb84eea452c153b1
|
@@ -5,7 +5,7 @@ class Pulitzer::PostTypesController < Pulitzer::ApplicationController
|
|
5
5
|
if params[:post_type_kind]
|
6
6
|
@post_type_kind = params[:post_type_kind]
|
7
7
|
else
|
8
|
-
@post_type_kind = '
|
8
|
+
@post_type_kind = 'template'
|
9
9
|
end
|
10
10
|
if request.xhr?
|
11
11
|
@post_types = Pulitzer::PostType.send @post_type_kind
|
@@ -1,4 +1,3 @@
|
|
1
|
-
<h1> <%= @post_type_kind.humanize %> </h1>
|
2
1
|
<div class="pulitzer-row margin-bottom list-item">
|
3
2
|
<% if Pulitzer.skip_metadata_auth? || self.instance_eval(&Pulitzer.metadata_closure) %>
|
4
3
|
<%= ajax_link "add a new #{@post_type_kind}", new_post_type_path(post_type: {kind: @post_type_kind}), {}, "#new_#{@post_type_kind}" %>
|
@@ -6,7 +5,7 @@
|
|
6
5
|
<div id="new_<%= @post_type_kind %>"></div>
|
7
6
|
</div>
|
8
7
|
|
9
|
-
<div id="
|
8
|
+
<div id="<%= @post_type_kind %>s_container">
|
10
9
|
<% @post_types.each do |post_type| %>
|
11
10
|
<%= render partial: 'show_wrapper', locals: {post_type: post_type} %>
|
12
11
|
<% end %>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<%= form_for post_type, html: ajax_form_hash(
|
1
|
+
<%= form_for post_type, html: ajax_form_hash("##{post_type.kind}s_container", insert_method: 'append', empty_on_success: "#new_#{post_type.kind}") do |f| %>
|
2
2
|
<%= render partial: 'form_fields', locals: { f: f } %>
|
3
3
|
<div class="pulitzer-span margin"><%= f.submit "Create" %></div>
|
4
4
|
<div class="button pulitzer-span" <%= emptier "#new_#{post_type.kind}" %>>Cancel</div>
|
data/lib/pulitzer/version.rb
CHANGED
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|