radiant-event_calendar-extension 1.4.0 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.4.
|
1
|
+
1.4.1
|
@@ -27,11 +27,11 @@
|
|
27
27
|
- form.edit_date do
|
28
28
|
%p.start_date
|
29
29
|
= f.label :start_date, t('event_admin.form.start')
|
30
|
-
= f.text_field :start_date, :class => 'textbox date time', :disabled => imported
|
30
|
+
= f.text_field :start_date, :value => f.object.start_date.to_s, :class => 'textbox date time', :disabled => imported
|
31
31
|
= f.check_box :all_day, :disabled => imported
|
32
32
|
= f.label :all_day, t('event_admin.form.all_day'), :class => 'minor'
|
33
33
|
%p.end_date
|
34
|
-
= f.label :end_date, t('event_admin.form.end')
|
34
|
+
= f.label :end_date, :value => f.object.end_date.to_s, t('event_admin.form.end')
|
35
35
|
= f.text_field :end_date, :class => 'textbox date time', :disabled => imported
|
36
36
|
|
37
37
|
.recurrence
|
@@ -56,7 +56,7 @@
|
|
56
56
|
%span#recurrence_unbounded
|
57
57
|
%span#recurrence_limit
|
58
58
|
= rf.label :limiting_date, " "
|
59
|
-
= rf.text_field :limiting_date, :class => 'textbox date'
|
59
|
+
= rf.text_field :limiting_date, :value => f.object.limiting_date.to_s, :class => 'textbox date'
|
60
60
|
%span#recurrence_count
|
61
61
|
= rf.label :limiting_count, t('event_admin.form.many_times'), :class => 'inline'
|
62
62
|
= rf.text_field :limiting_count, :class => 'textbox short'
|
data/event_calendar_extension.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
class EventCalendarExtension < Radiant::Extension
|
2
|
-
version "1.4.
|
2
|
+
version "1.4.1"
|
3
3
|
description "An event calendar extension that administers events locally or draws them from any ical or CalDAV publishers (Google Calendar, .Mac, Darwin Calendar Server, etc.)"
|
4
4
|
url "http://github.com/radiant/radiant-event_calendar-extension"
|
5
5
|
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{radiant-event_calendar-extension}
|
8
|
-
s.version = "1.4.
|
8
|
+
s.version = "1.4.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["spanner"]
|
12
|
-
s.date = %q{2011-05-
|
12
|
+
s.date = %q{2011-05-06}
|
13
13
|
s.description = %q{An event calendar extension that administers events locally or draws them from any ical or CalDAV publishers (Google Calendar, .Mac, Darwin Calendar Server, etc.)}
|
14
14
|
s.email = %q{will@spanner.org}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -39,6 +39,7 @@ Gem::Specification.new do |s|
|
|
39
39
|
"app/views/admin/calendars/index.html.haml",
|
40
40
|
"app/views/admin/calendars/new.html.haml",
|
41
41
|
"app/views/admin/calendars/show.html.haml",
|
42
|
+
"app/views/admin/dashboard/_coming_events.html.haml",
|
42
43
|
"app/views/admin/event_venues/_event_venue.html.haml",
|
43
44
|
"app/views/admin/event_venues/_form.html.haml",
|
44
45
|
"app/views/admin/event_venues/edit.html.haml",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: radiant-event_calendar-extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 5
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 1.4.
|
9
|
+
- 1
|
10
|
+
version: 1.4.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- spanner
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-05-
|
18
|
+
date: 2011-05-06 00:00:00 +01:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -122,6 +122,7 @@ files:
|
|
122
122
|
- app/views/admin/calendars/index.html.haml
|
123
123
|
- app/views/admin/calendars/new.html.haml
|
124
124
|
- app/views/admin/calendars/show.html.haml
|
125
|
+
- app/views/admin/dashboard/_coming_events.html.haml
|
125
126
|
- app/views/admin/event_venues/_event_venue.html.haml
|
126
127
|
- app/views/admin/event_venues/_form.html.haml
|
127
128
|
- app/views/admin/event_venues/edit.html.haml
|