acts_as_content_node 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/acts_as_content_node.gemspec +2 -2
- data/app/views/content_nodes/_publish_select.html.erb +4 -4
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.9
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{acts_as_content_node}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.9"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Steve England"]
|
12
|
-
s.date = %q{2009-
|
12
|
+
s.date = %q{2009-12-02}
|
13
13
|
s.description = %q{Common functions for a record used as content of a website. Generator for cms and front end.}
|
14
14
|
s.email = %q{steve@wearebeef.co.uk}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -2,13 +2,13 @@
|
|
2
2
|
<legend>Publishing Options</legend>
|
3
3
|
<p>
|
4
4
|
<%= f.label :published_at, "Publish at" %><br/>
|
5
|
-
<%= check_box_tag '
|
6
|
-
<span id="published_at"><%= f.datetime_select :published_at, :disabled => params[:
|
5
|
+
<%= check_box_tag 'published_at', true, params[:published_at], :onclick => 'toggle_published_at(this.checked)', :id => 'live-from' %>
|
6
|
+
<span id="published_at"><%= f.datetime_select :published_at, :disabled => params[:published_at] ? nil : 'disabled' %></span>
|
7
7
|
</p>
|
8
8
|
|
9
9
|
<p>
|
10
10
|
<%= f.label :published_to, "Publish till" %><br/>
|
11
|
-
<%= check_box_tag '
|
12
|
-
<span id="published_to"><%= f.datetime_select :published_to, :disabled => params[:
|
11
|
+
<%= check_box_tag 'published_to', true, params[:published_to], :onclick => 'toggle_published_to(this.checked)', :id => 'live-to' %>
|
12
|
+
<span id="published_to"><%= f.datetime_select :published_to, :disabled => params[:published_to] ? nil : 'disabled' %></span>
|
13
13
|
</p>
|
14
14
|
</fieldset>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: acts_as_content_node
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steve England
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-12-02 00:00:00 +00:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|