candl 0.1.16 → 0.1.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +0 -2
- data/app/views/candl/calendar/_month.slim +4 -3
- data/lib/candl/agenda_model.rb +17 -11
- data/lib/candl/event_loader_model.rb +38 -22
- data/lib/candl/month_model.rb +35 -27
- data/lib/candl/version.rb +1 -1
- data/spec/candl_spec.rb +15 -9
- data/spec/dummy/log/development.log +732 -0
- data/spec/dummy/log/test.log +1120 -0
- data/spec/dummy/tmp/pids/server.pid +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14f1247984afb60aa8cb667c5008223893b4cb3979b51da2012ff1ff3627c88e
|
4
|
+
data.tar.gz: 54b899f780f6cf497fc33beabc3c745b01f7485fd26a3f7cdfb04b6f8034e873
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6229587dd3766153703b713caa46ddc984ce96aa69cef2054c78c4a70cb9e2f171ddfefc946a8f0f581545ed90d474ce20474e8822e7fd129e868e4739d5801e
|
7
|
+
data.tar.gz: 283a301ab15016aed02e64a3f4db5c3e9d9fd69ce7af433425259d3194963e8ce782a5b75c3c251dedf8506e262a51f4f7efc7902a75129f6515b5c441c329db
|
data/README.md
CHANGED
@@ -101,8 +101,6 @@ Hints:
|
|
101
101
|
- In "agenda" you can set the span "display_day_count" of day's considered/loaded in one view and by how many day's it will be shifted "days_shift_coefficient".
|
102
102
|
- In "month" you can set the "summary_teaser_length_in_characters" and in your view you can truncate the title to that length to reduce the size of the seperate events not to become to big in the view. The "delta_start_of_weekday_from_sunday" can be set to whatever value you need to have the week start at another day than sunday. (Like 1 -> Monday)
|
103
103
|
|
104
|
-
For most values there are sensible standards defined but for the sake of clarity you may still define them in the config.
|
105
|
-
|
106
104
|
Then at the position in your view where the calendar is supposed to show itself:
|
107
105
|
```slim
|
108
106
|
= render partial: "candl/calendar/frame", locals: { config: config }
|
@@ -19,13 +19,14 @@ table.table.table-bordered.month_view
|
|
19
19
|
.day_head = current_day.day.to_s
|
20
20
|
|
21
21
|
- weekly_multiday_event_heap = calendar_month.grouped_multiday_events[row]
|
22
|
-
|
23
|
-
- until weekly_multiday_event_heap.empty?
|
22
|
+
- unless weekly_multiday_event_heap.empty?
|
24
23
|
tr
|
25
24
|
- collumn = 0
|
25
|
+
|
26
26
|
- while collumn < 7 do
|
27
27
|
- current_day = calendar_month.view_dates[7 * row + collumn]
|
28
28
|
- current_event = Candl::MonthModel.find_best_fit_for_day(calendar_month.view_dates[7 * row], current_day, weekly_multiday_event_heap)
|
29
|
+
|
29
30
|
- if current_event
|
30
31
|
- weekly_multiday_event_heap.delete_if{ |event| event.uid == current_event.uid }
|
31
32
|
|
@@ -35,7 +36,7 @@ table.table.table-bordered.month_view
|
|
35
36
|
|
36
37
|
- if current_event_length_within_current_week > 0
|
37
38
|
td.small_padding colspan=current_event_length_within_current_week
|
38
|
-
.multiday_event.onclick_open_backdrop class=Candl::MonthModel.multiday_event_cutoff(current_event.dtstart < current_day, current_event.dtend > (calendar_month.view_dates[7 * row + 6] + 1.day), 'multiday_event_leftcut', 'multiday_event_bothcut', 'multiday_event_rightcut')
|
39
|
+
.multiday_event.onclick_open_backdrop class=Candl::MonthModel.multiday_event_cutoff({ start: current_event.dtstart < current_day, end: current_event.dtend > (calendar_month.view_dates[7 * row + 6] + 1.day) }, { start: 'multiday_event_leftcut', both: 'multiday_event_bothcut', end: 'multiday_event_rightcut' })
|
39
40
|
|
40
41
|
.snowflake_popover[data-placement="bottom" data-toggle="popover" data-container="body" type="button" data-html="true" href="#"]
|
41
42
|
|
data/lib/candl/agenda_model.rb
CHANGED
@@ -43,13 +43,11 @@ module Candl
|
|
43
43
|
from = current_start_date(current_shift_factor, date_today)
|
44
44
|
to = current_end_date(current_shift_factor, date_today)
|
45
45
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
logger.error "ERROR: #{exception}"
|
52
|
-
end
|
46
|
+
calendar_adress = { path: google_calendar_base_path, id: calendar_id, key: api_key }
|
47
|
+
result = EventLoaderModel.get_events(calendar_adress, from, to, :agenda)
|
48
|
+
|
49
|
+
events = result[:events]
|
50
|
+
self.initialization_successful = result[:success]
|
53
51
|
|
54
52
|
self.agenda_grouped_events = get_days_grouped_events(events)
|
55
53
|
end
|
@@ -114,10 +112,18 @@ module Candl
|
|
114
112
|
|
115
113
|
private
|
116
114
|
|
117
|
-
# load events for agenda view
|
118
|
-
def agenda_events(from, to)
|
119
|
-
|
120
|
-
|
115
|
+
# # load events for agenda view
|
116
|
+
# def agenda_events(from, to)
|
117
|
+
# begin
|
118
|
+
# calendar_adress = { path: google_calendar_base_path, id: calendar_id, key: api_key }
|
119
|
+
# events = EventLoaderModel.get_events(calendar_adress, from, to, :agenda)
|
120
|
+
# self.initialization_successful = true
|
121
|
+
# rescue => exception
|
122
|
+
# logger.error "ERROR: #{exception}"
|
123
|
+
# self.initialization_successful = false
|
124
|
+
# end
|
125
|
+
# events
|
126
|
+
# end
|
121
127
|
|
122
128
|
# load events for agenda view grouped by day
|
123
129
|
def get_days_grouped_events(events)
|
@@ -4,45 +4,49 @@ require 'uri'
|
|
4
4
|
module Candl
|
5
5
|
class EventLoaderModel
|
6
6
|
Event ||= Struct.new(:dtstart, :dtend, :summary, :description, :location, :uid)
|
7
|
-
|
8
|
-
Event.new(:dtstart, :dtend, :summary, :description, :location, :uid)
|
9
|
-
end
|
10
|
-
|
7
|
+
|
11
8
|
# load events prepared for agenda view
|
12
|
-
def self.
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
9
|
+
def self.get_events(calendar_adress, from, to, view)
|
10
|
+
begin
|
11
|
+
events = parse_calendar(calendar_adress, from, to)
|
12
|
+
initialization_successful = true
|
13
|
+
rescue => exception
|
14
|
+
logger.error "ERROR: #{exception}"
|
15
|
+
initialization_successful = false
|
18
16
|
end
|
19
|
-
end
|
20
17
|
|
21
|
-
|
22
|
-
|
23
|
-
|
18
|
+
if view == :month
|
19
|
+
sorted_events = (events).sort_by do |el|
|
20
|
+
[el.dtstart, el.summary]
|
21
|
+
end
|
22
|
+
elsif view == :agenda
|
23
|
+
spreaded_events = spread_multiday_events(events, from, to)
|
24
24
|
|
25
|
-
|
26
|
-
|
25
|
+
sorted_events = (events + spreaded_events.to_a).sort_by do |el|
|
26
|
+
[el.dtstart, el.summary]
|
27
|
+
end
|
28
|
+
else
|
29
|
+
raise `Unknown view type: #{view}`
|
27
30
|
end
|
31
|
+
|
32
|
+
{ events: sorted_events, success: initialization_successful }
|
28
33
|
end
|
29
34
|
|
30
35
|
private
|
31
36
|
|
32
37
|
# build request path to calendar host (google calendar)
|
33
|
-
def self.build_google_request_path(
|
34
|
-
google_test_path = "#{
|
38
|
+
def self.build_google_request_path(calendar_adress, from, to)
|
39
|
+
google_test_path = "#{calendar_adress[:path]}#{calendar_adress[:id]}/events?key=#{calendar_adress[:key]}&singleEvents=true&orderBy=startTime&timeMin=#{CGI.escape(from.to_s)}&timeMax=#{CGI.escape(to.to_s)}"
|
35
40
|
end
|
36
41
|
|
37
42
|
# parses json response form calendar host (google calendar)
|
38
|
-
def self.parse_calendar(
|
39
|
-
|
40
|
-
google_test_path = build_google_request_path(google_calendar_base_path, calendar_id, api_key, from.to_datetime, to.to_datetime)
|
43
|
+
def self.parse_calendar(calendar_adress, from, to)
|
44
|
+
google_test_path = build_google_request_path(calendar_adress, from.to_datetime, to.to_datetime)
|
41
45
|
|
42
46
|
requested_events = JSON.parse(Net::HTTP.get(URI.parse(google_test_path)))
|
43
47
|
|
44
48
|
if requested_events["items"] != nil
|
45
|
-
restructured_events = requested_events
|
49
|
+
restructured_events = parse_event_time_type(requested_events)
|
46
50
|
else
|
47
51
|
raise "Calendar event request failed and responded with:\n #{requested_events}"
|
48
52
|
end
|
@@ -50,6 +54,18 @@ module Candl
|
|
50
54
|
restructured_events.to_a
|
51
55
|
end
|
52
56
|
|
57
|
+
def self.parse_event_time_type(events)
|
58
|
+
events["items"].map{ |e|
|
59
|
+
if e["start"]["date"] != nil
|
60
|
+
parsedStart = Date.parse(e["start"]["date"])
|
61
|
+
parsedEnd = Date.parse(e["end"]["date"])
|
62
|
+
else
|
63
|
+
parsedStart = DateTime.parse(e["start"]["dateTime"])
|
64
|
+
parsedEnd = DateTime.parse(e["end"]["dateTime"])
|
65
|
+
end
|
66
|
+
Event.new(parsedStart, parsedEnd, e["summary"], e["description"], e["location"], e["id"]) }
|
67
|
+
end
|
68
|
+
|
53
69
|
# inserts new event starts for events that are multiple day's long so in the agenda one can see them filling multiple day's
|
54
70
|
def self.spread_multiday_events(events, from, to)
|
55
71
|
unspreaded_events = events.select{ |event| (event.dtend - event.dtstart).to_i > 0 }
|
data/lib/candl/month_model.rb
CHANGED
@@ -32,30 +32,27 @@ module Candl
|
|
32
32
|
# } \
|
33
33
|
# }
|
34
34
|
def initialize(config, current_shift_factor, date_today = Date.today)
|
35
|
-
self.google_calendar_base_path = config[:calendar][:google_calendar_api_host_base_path]
|
35
|
+
self.google_calendar_base_path = config[:calendar][:google_calendar_api_host_base_path]
|
36
36
|
self.calendar_id = config[:calendar][:calendar_id]
|
37
37
|
self.api_key = config[:calendar][:api_key]
|
38
38
|
|
39
|
-
self.summary_teaser_length = config[:month][:summary_teaser_length_in_characters]
|
40
|
-
self.delta_start_of_weekday_from_sunday = config[:month][:delta_start_of_weekday_from_sunday]
|
39
|
+
self.summary_teaser_length = config[:month][:summary_teaser_length_in_characters]
|
40
|
+
self.delta_start_of_weekday_from_sunday = config[:month][:delta_start_of_weekday_from_sunday]
|
41
|
+
self.days_shift_coefficient = config[:agenda][:days_shift_coefficient]
|
41
42
|
|
42
|
-
self.
|
43
|
-
|
44
|
-
self.maps_query_host = config[:general][:maps_query_host] ||= "https://www.google.de/maps"
|
45
|
-
self.maps_query_parameter = config[:general][:maps_query_parameter] ||= "q"
|
43
|
+
self.maps_query_host = config[:general][:maps_query_host]
|
44
|
+
self.maps_query_parameter = config[:general][:maps_query_parameter]
|
46
45
|
|
47
46
|
date_month_start = MonthModel.current_month_start(current_shift_factor, date_today)
|
48
47
|
date_month_end = MonthModel.current_month_end(current_shift_factor, date_today)
|
49
48
|
|
50
49
|
self.view_dates = generate_months_view_dates(date_month_start, date_month_end)
|
51
50
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
logger.error "ERROR: #{exception}"
|
58
|
-
end
|
51
|
+
calendar_adress = { path: google_calendar_base_path, id: calendar_id, key: api_key }
|
52
|
+
result = EventLoaderModel.get_events(calendar_adress, view_dates.first, view_dates.last, :month)
|
53
|
+
|
54
|
+
events = result[:events]
|
55
|
+
self.initialization_successful = result[:success]
|
59
56
|
|
60
57
|
self.grouped_events = MonthModel::group_events(events, view_dates.first, view_dates.last)
|
61
58
|
self.grouped_multiday_events = MonthModel::group_multiday_events(events, view_dates)
|
@@ -63,7 +60,10 @@ module Candl
|
|
63
60
|
|
64
61
|
# finds the best event, among those multiday events within a week-group, for the current day (the algorithm will find the longest events first to display them above shorter multiday events)
|
65
62
|
def self.find_best_fit_for_day(first_weekday, day, event_heap)
|
66
|
-
best_fit = event_heap.select{ |event|
|
63
|
+
best_fit = event_heap.select{ |event|
|
64
|
+
(day == first_weekday ?
|
65
|
+
(event.dtstart.to_date <= day.to_date && event.dtend.to_date >= day.to_date) :
|
66
|
+
(event.dtstart.to_date == day.to_date)) }.sort_by{ |event| [event.dtstart.to_time.to_i, -event.dtend.to_time.to_i] }.first
|
67
67
|
end
|
68
68
|
|
69
69
|
# builds base path of current view
|
@@ -107,13 +107,13 @@ module Candl
|
|
107
107
|
end
|
108
108
|
|
109
109
|
# depending on the cutoff conditions this will apply a cutoff style to the start of the event, the end of it, both ends or neither
|
110
|
-
def self.multiday_event_cutoff(
|
111
|
-
if (
|
112
|
-
|
113
|
-
elsif (
|
114
|
-
|
115
|
-
elsif (
|
116
|
-
|
110
|
+
def self.multiday_event_cutoff(start_end_conditions, cutoff_styles)
|
111
|
+
if (start_end_conditions[:start] && start_end_conditions[:end])
|
112
|
+
cutoff_styles[:both]
|
113
|
+
elsif (start_end_conditions[:start])
|
114
|
+
cutoff_styles[:start]
|
115
|
+
elsif (start_end_conditions[:end])
|
116
|
+
cutoff_styles[:end]
|
117
117
|
else
|
118
118
|
''
|
119
119
|
end
|
@@ -174,10 +174,18 @@ module Candl
|
|
174
174
|
|
175
175
|
private
|
176
176
|
|
177
|
-
# gets events of all kinds for the timeframe [form, to]
|
178
|
-
def get_month_events(from, to)
|
179
|
-
|
180
|
-
|
177
|
+
# # gets events of all kinds for the timeframe [form, to]
|
178
|
+
# def get_month_events(from, to)
|
179
|
+
# begin
|
180
|
+
# calendar_adress = { path: google_calendar_base_path, id: calendar_id, key: api_key }
|
181
|
+
# events = EventLoaderModel.get_events(calendar_adress, from, to, :month)
|
182
|
+
# self.initialization_successful = true
|
183
|
+
# rescue => exception
|
184
|
+
# logger.error "ERROR: #{exception}"
|
185
|
+
# self.initialization_successful = false
|
186
|
+
# end
|
187
|
+
# events
|
188
|
+
# end
|
181
189
|
|
182
190
|
# gets events within a day grouped by day
|
183
191
|
def self.group_events(events, from, to)
|
@@ -194,7 +202,7 @@ module Candl
|
|
194
202
|
first_weekday = view_dates[7 * week]
|
195
203
|
last_weekday = view_dates[7 * week + 6]
|
196
204
|
|
197
|
-
weeks_events = multiday_events.select{ |event| event.dtend > first_weekday && event.dtstart
|
205
|
+
weeks_events = multiday_events.select{ |event| event.dtend > first_weekday && event.dtstart < last_weekday.next_day }
|
198
206
|
|
199
207
|
grouped_multiday_events[week] = weeks_events
|
200
208
|
end
|
data/lib/candl/version.rb
CHANGED
data/spec/candl_spec.rb
CHANGED
@@ -67,7 +67,8 @@ RSpec.describe Candl::EventLoaderModel do
|
|
67
67
|
let(:from) { Date.parse("2019-01-01") }
|
68
68
|
let(:to) { Date.parse("2019-01-31") }
|
69
69
|
it "Build google request path" do
|
70
|
-
|
70
|
+
calendar_adress = { path: google_base_path, id: calendar_id, key: api_key }
|
71
|
+
expect(Candl::EventLoaderModel.build_google_request_path(calendar_adress, from, to)).to eq("#{google_base_path}#{calendar_id}/events?key=#{api_key}&singleEvents=true&orderBy=startTime&timeMin=#{from}&timeMax=#{to}")
|
71
72
|
end
|
72
73
|
end
|
73
74
|
end
|
@@ -138,7 +139,7 @@ RSpec.describe Candl::AgendaModel do
|
|
138
139
|
let(:month) { Candl::MonthModel.new(test_config, current_shift_factor, fake_today) }
|
139
140
|
let(:months_view_dates) { month.generate_months_view_dates(date_month_start, date_month_end) }
|
140
141
|
|
141
|
-
let(:events) {
|
142
|
+
let(:events) { EventLoaderModel.get_events(calendar_adress, view_dates.first, view_dates.last, :month)[:events] }
|
142
143
|
|
143
144
|
let(:test_range_in_month) { 13 }
|
144
145
|
it "month(agenda(month)) ?= month" do
|
@@ -167,13 +168,18 @@ RSpec.describe Candl::MonthModel do
|
|
167
168
|
let(:grouped_multiday_events) { month.grouped_multiday_events }
|
168
169
|
let(:out_of_timeframe) { grouped_multiday_events.select { |e| e.dtstart < first_day_of_first_week || e.dtend > last_day_of_first_week } }
|
169
170
|
|
171
|
+
# Week: 7.1.19 - 13.1.19
|
170
172
|
let(:first_weekday) { Date.parse("2019-01-07") }
|
171
173
|
let(:day) { Date.parse("2019-01-08") }
|
172
|
-
let(:event_heap) {
|
173
|
-
Candl::EventLoaderModel::Event.new(Date.parse("2019-01-
|
174
|
+
let(:event_heap) {
|
175
|
+
[ Candl::EventLoaderModel::Event.new(Date.parse("2019-01-04"), Date.parse("2019-01-11"), "s_1", "d_1", "l_1", "u_1"),
|
176
|
+
Candl::EventLoaderModel::Event.new(DateTime.parse("2019-01-06T10:00:00"), DateTime.parse("2019-01-12T18:30:00"), "s_5", "d_5", "l_5", "u_5"),
|
177
|
+
Candl::EventLoaderModel::Event.new(Date.parse("2019-01-08"), Date.parse("2019-01-09"), "s_2", "d_2", "l_2", "u_2"),
|
178
|
+
Candl::EventLoaderModel::Event.new(Date.parse("2019-01-08"), Date.parse("2019-01-10"), "s_3", "d_3", "l_3", "u_3"),
|
179
|
+
Candl::EventLoaderModel::Event.new(Date.parse("2019-01-09"), Date.parse("2019-01-11"), "s_4", "d_4", "l_4", "u_4")] }
|
174
180
|
|
175
181
|
it "Find best fit for day" do
|
176
|
-
expect(Candl::MonthModel.find_best_fit_for_day(first_weekday, day, event_heap)).to eq(Candl::EventLoaderModel::Event.new(Date.parse("2019-01-08"), Date.parse("2019-01-
|
182
|
+
expect(Candl::MonthModel.find_best_fit_for_day(first_weekday, day, event_heap)).to eq(Candl::EventLoaderModel::Event.new(Date.parse("2019-01-08"), Date.parse("2019-01-10"), "s_3", "d_3", "l_3", "u_3"))
|
177
183
|
end
|
178
184
|
|
179
185
|
|
@@ -203,16 +209,16 @@ RSpec.describe Candl::MonthModel do
|
|
203
209
|
end
|
204
210
|
|
205
211
|
it "multiday event cutoff start" do
|
206
|
-
expect(Candl::MonthModel.multiday_event_cutoff(true, false, "start", "both", "end")).to eq("start")
|
212
|
+
expect(Candl::MonthModel.multiday_event_cutoff({ start: true, end: false }, { start: "start", both: "both", end: "end" })).to eq("start")
|
207
213
|
end
|
208
214
|
it "multiday event cutoff both" do
|
209
|
-
expect(Candl::MonthModel.multiday_event_cutoff(true, true, "start", "both", "end")).to eq("both")
|
215
|
+
expect(Candl::MonthModel.multiday_event_cutoff({ start: true, end: true }, { start: "start", both: "both", end: "end" })).to eq("both")
|
210
216
|
end
|
211
217
|
it "multiday event cutoff end" do
|
212
|
-
expect(Candl::MonthModel.multiday_event_cutoff(false, true, "start", "both", "end")).to eq("end")
|
218
|
+
expect(Candl::MonthModel.multiday_event_cutoff({ start: false, end: true }, { start: "start", both: "both", end: "end" })).to eq("end")
|
213
219
|
end
|
214
220
|
it "multiday event cutoff none" do
|
215
|
-
expect(Candl::MonthModel.multiday_event_cutoff(false, false, "start", "both", "end")).to eq("")
|
221
|
+
expect(Candl::MonthModel.multiday_event_cutoff({ start: false, end: false }, { start: "start", both: "both", end: "end" })).to eq("")
|
216
222
|
end
|
217
223
|
|
218
224
|
let(:weekday_dates_of_date_today) { [Date.parse("2019-01-07"), Date.parse("2019-01-08"), Date.parse("2019-01-09"), Date.parse("2019-01-10"), Date.parse("2019-01-11"), Date.parse("2019-01-12"), Date.parse("2019-01-13")] }
|
@@ -14451,3 +14451,735 @@ Processing by SampleController#show as HTML
|
|
14451
14451
|
Completed 200 OK in 520ms (Views: 503.7ms | ActiveRecord: 0.0ms)
|
14452
14452
|
|
14453
14453
|
|
14454
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 11:55:03 +0100
|
14455
|
+
Processing by SampleController#show as HTML
|
14456
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14457
|
+
Rendering sample/show.slim within layouts/application
|
14458
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (164.7ms)
|
14459
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (540.7ms)
|
14460
|
+
Rendered sample/show.slim within layouts/application (589.1ms)
|
14461
|
+
Completed 500 Internal Server Error in 697ms (ActiveRecord: 0.0ms)
|
14462
|
+
|
14463
|
+
|
14464
|
+
|
14465
|
+
ActionView::Template::Error (wrong number of arguments (given 2, expected 5)):
|
14466
|
+
37: td.small_padding colspan=current_event_length_within_current_week
|
14467
|
+
38: / .multiday_event.onclick_open_backdrop class=Candl::MonthModel.multiday_event_cutoff(current_event.dtstart < current_day, current_event.dtend > (calendar_month.view_dates[7 * row + 6] + 1.day), 'multiday_event_leftcut', 'multiday_event_bothcut', 'multiday_event_rightcut')
|
14468
|
+
39:
|
14469
|
+
40: .multiday_event.onclick_open_backdrop class=Candl::MonthModel.multiday_event_cutoff({ start: current_event.dtstart < current_day, end: current_event.dtend > (calendar_month.view_dates[7 * row + 6] + 1.day) }, { start: 'multiday_event_leftcut', both: 'multiday_event_bothcut', end: 'multiday_event_rightcut' })
|
14470
|
+
41:
|
14471
|
+
42: .snowflake_popover[data-placement="bottom" data-toggle="popover" data-container="body" type="button" data-html="true" href="#"]
|
14472
|
+
43:
|
14473
|
+
|
14474
|
+
app/views/sample/show.slim:25:in `_app_views_sample_show_slim__871951648_106444760'
|
14475
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 11:55:52 +0100
|
14476
|
+
Processing by SampleController#show as HTML
|
14477
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14478
|
+
Rendering sample/show.slim within layouts/application
|
14479
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (64.5ms)
|
14480
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (346.0ms)
|
14481
|
+
Rendered sample/show.slim within layouts/application (390.2ms)
|
14482
|
+
Completed 200 OK in 2506ms (Views: 2486.0ms | ActiveRecord: 0.0ms)
|
14483
|
+
|
14484
|
+
|
14485
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-22 11:58:13 +0100
|
14486
|
+
Processing by SampleController#show as HTML
|
14487
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
14488
|
+
Rendering sample/show.slim within layouts/application
|
14489
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.5ms)
|
14490
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (243.8ms)
|
14491
|
+
Rendered sample/show.slim within layouts/application (278.4ms)
|
14492
|
+
Completed 200 OK in 455ms (Views: 437.3ms | ActiveRecord: 0.0ms)
|
14493
|
+
|
14494
|
+
|
14495
|
+
Started GET "/calendar?s=-8&v=a" for ::1 at 2019-02-22 11:58:16 +0100
|
14496
|
+
Processing by SampleController#show as HTML
|
14497
|
+
Parameters: {"s"=>"-8", "v"=>"a"}
|
14498
|
+
Rendering sample/show.slim within layouts/application
|
14499
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (10.6ms)
|
14500
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (262.2ms)
|
14501
|
+
Rendered sample/show.slim within layouts/application (299.8ms)
|
14502
|
+
Completed 200 OK in 485ms (Views: 467.8ms | ActiveRecord: 0.0ms)
|
14503
|
+
|
14504
|
+
|
14505
|
+
Started GET "/calendar?s=-9&v=a" for ::1 at 2019-02-22 11:58:17 +0100
|
14506
|
+
Processing by SampleController#show as HTML
|
14507
|
+
Parameters: {"s"=>"-9", "v"=>"a"}
|
14508
|
+
Rendering sample/show.slim within layouts/application
|
14509
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.8ms)
|
14510
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (268.1ms)
|
14511
|
+
Rendered sample/show.slim within layouts/application (302.7ms)
|
14512
|
+
Completed 200 OK in 462ms (Views: 444.7ms | ActiveRecord: 0.0ms)
|
14513
|
+
|
14514
|
+
|
14515
|
+
Started GET "/calendar?s=-8&v=a" for ::1 at 2019-02-22 11:58:19 +0100
|
14516
|
+
Processing by SampleController#show as HTML
|
14517
|
+
Parameters: {"s"=>"-8", "v"=>"a"}
|
14518
|
+
Rendering sample/show.slim within layouts/application
|
14519
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.9ms)
|
14520
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (258.4ms)
|
14521
|
+
Rendered sample/show.slim within layouts/application (290.9ms)
|
14522
|
+
Completed 200 OK in 457ms (Views: 440.0ms | ActiveRecord: 0.0ms)
|
14523
|
+
|
14524
|
+
|
14525
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-22 11:58:20 +0100
|
14526
|
+
Processing by SampleController#show as HTML
|
14527
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
14528
|
+
Rendering sample/show.slim within layouts/application
|
14529
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.4ms)
|
14530
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (235.4ms)
|
14531
|
+
Rendered sample/show.slim within layouts/application (271.0ms)
|
14532
|
+
Completed 200 OK in 432ms (Views: 415.1ms | ActiveRecord: 0.0ms)
|
14533
|
+
|
14534
|
+
|
14535
|
+
Started GET "/calendar?s=-6&v=a" for ::1 at 2019-02-22 11:58:22 +0100
|
14536
|
+
Processing by SampleController#show as HTML
|
14537
|
+
Parameters: {"s"=>"-6", "v"=>"a"}
|
14538
|
+
Rendering sample/show.slim within layouts/application
|
14539
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (13.0ms)
|
14540
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (254.7ms)
|
14541
|
+
Rendered sample/show.slim within layouts/application (286.3ms)
|
14542
|
+
Completed 200 OK in 446ms (Views: 428.2ms | ActiveRecord: 0.0ms)
|
14543
|
+
|
14544
|
+
|
14545
|
+
Started GET "/calendar?s=-5&v=a" for ::1 at 2019-02-22 11:58:23 +0100
|
14546
|
+
Processing by SampleController#show as HTML
|
14547
|
+
Parameters: {"s"=>"-5", "v"=>"a"}
|
14548
|
+
Rendering sample/show.slim within layouts/application
|
14549
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (8.1ms)
|
14550
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (246.1ms)
|
14551
|
+
Rendered sample/show.slim within layouts/application (277.8ms)
|
14552
|
+
Completed 200 OK in 442ms (Views: 424.2ms | ActiveRecord: 0.0ms)
|
14553
|
+
|
14554
|
+
|
14555
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 11:58:31 +0100
|
14556
|
+
Processing by SampleController#show as HTML
|
14557
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14558
|
+
Rendering sample/show.slim within layouts/application
|
14559
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (14.5ms)
|
14560
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (245.1ms)
|
14561
|
+
Rendered sample/show.slim within layouts/application (277.1ms)
|
14562
|
+
Completed 200 OK in 447ms (Views: 428.9ms | ActiveRecord: 0.0ms)
|
14563
|
+
|
14564
|
+
|
14565
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:07:35 +0100
|
14566
|
+
Processing by SampleController#show as HTML
|
14567
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14568
|
+
Rendering sample/show.slim within layouts/application
|
14569
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (27.8ms)
|
14570
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (338.9ms)
|
14571
|
+
Rendered sample/show.slim within layouts/application (373.9ms)
|
14572
|
+
Completed 200 OK in 536ms (Views: 518.5ms | ActiveRecord: 0.0ms)
|
14573
|
+
|
14574
|
+
|
14575
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:07:51 +0100
|
14576
|
+
Processing by SampleController#show as HTML
|
14577
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14578
|
+
Rendering sample/show.slim within layouts/application
|
14579
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (38.2ms)
|
14580
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (332.7ms)
|
14581
|
+
Rendered sample/show.slim within layouts/application (373.8ms)
|
14582
|
+
Completed 200 OK in 1387ms (Views: 1367.1ms | ActiveRecord: 0.0ms)
|
14583
|
+
|
14584
|
+
|
14585
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:12:49 +0100
|
14586
|
+
Processing by SampleController#show as HTML
|
14587
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14588
|
+
Rendering sample/show.slim within layouts/application
|
14589
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (37.2ms)
|
14590
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (354.1ms)
|
14591
|
+
Rendered sample/show.slim within layouts/application (393.6ms)
|
14592
|
+
Completed 200 OK in 1404ms (Views: 1384.7ms | ActiveRecord: 0.0ms)
|
14593
|
+
|
14594
|
+
|
14595
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:15:46 +0100
|
14596
|
+
Processing by SampleController#show as HTML
|
14597
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14598
|
+
Rendering sample/show.slim within layouts/application
|
14599
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (38.4ms)
|
14600
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (356.4ms)
|
14601
|
+
Rendered sample/show.slim within layouts/application (396.3ms)
|
14602
|
+
Completed 200 OK in 1404ms (Views: 1384.5ms | ActiveRecord: 0.0ms)
|
14603
|
+
|
14604
|
+
|
14605
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:23:36 +0100
|
14606
|
+
Processing by SampleController#show as HTML
|
14607
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14608
|
+
Rendering sample/show.slim within layouts/application
|
14609
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (37.6ms)
|
14610
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (335.5ms)
|
14611
|
+
Rendered sample/show.slim within layouts/application (374.4ms)
|
14612
|
+
Completed 200 OK in 1399ms (Views: 1379.0ms | ActiveRecord: 0.0ms)
|
14613
|
+
|
14614
|
+
|
14615
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:30:42 +0100
|
14616
|
+
Processing by SampleController#show as HTML
|
14617
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14618
|
+
Rendering sample/show.slim within layouts/application
|
14619
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (36.0ms)
|
14620
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (347.1ms)
|
14621
|
+
Rendered sample/show.slim within layouts/application (387.4ms)
|
14622
|
+
Completed 200 OK in 1385ms (Views: 1364.2ms | ActiveRecord: 0.0ms)
|
14623
|
+
|
14624
|
+
|
14625
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:31:08 +0100
|
14626
|
+
Processing by SampleController#show as HTML
|
14627
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14628
|
+
Rendering sample/show.slim within layouts/application
|
14629
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (257.0ms)
|
14630
|
+
Rendered sample/show.slim within layouts/application (296.4ms)
|
14631
|
+
Completed 500 Internal Server Error in 388ms (ActiveRecord: 0.0ms)
|
14632
|
+
|
14633
|
+
|
14634
|
+
|
14635
|
+
ActionView::Template::Error (undefined method `debug' for Sun, 06 Jan 2019:Date):
|
14636
|
+
6:
|
14637
|
+
7: - if is_month
|
14638
|
+
8: - model = Rails.cache.fetch("#month/#{current_shift_factor}/#{date_today}", expires_in: update_interval) do
|
14639
|
+
9: - Candl::MonthModel.new(config, current_shift_factor, date_today)
|
14640
|
+
10: - else
|
14641
|
+
11: - model = Rails.cache.fetch("#agenda/#{current_shift_factor}/#{date_today}", expires_in: update_interval) do
|
14642
|
+
12: - Candl::AgendaModel.new(config, current_shift_factor, date_today)
|
14643
|
+
|
14644
|
+
app/views/sample/show.slim:25:in `_app_views_sample_show_slim__34538668_54823840'
|
14645
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:33:42 +0100
|
14646
|
+
Processing by SampleController#show as HTML
|
14647
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14648
|
+
Rendering sample/show.slim within layouts/application
|
14649
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (36.4ms)
|
14650
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (1385.9ms)
|
14651
|
+
Rendered sample/show.slim within layouts/application (1425.7ms)
|
14652
|
+
Completed 200 OK in 2436ms (Views: 2416.1ms | ActiveRecord: 0.0ms)
|
14653
|
+
|
14654
|
+
|
14655
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:38:14 +0100
|
14656
|
+
Processing by SampleController#show as HTML
|
14657
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14658
|
+
Rendering sample/show.slim within layouts/application
|
14659
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (38.9ms)
|
14660
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (354.4ms)
|
14661
|
+
Rendered sample/show.slim within layouts/application (393.6ms)
|
14662
|
+
Completed 200 OK in 1398ms (Views: 1377.3ms | ActiveRecord: 0.0ms)
|
14663
|
+
|
14664
|
+
|
14665
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:51:03 +0100
|
14666
|
+
Processing by SampleController#show as HTML
|
14667
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14668
|
+
Rendering sample/show.slim within layouts/application
|
14669
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (16.5ms)
|
14670
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (354.4ms)
|
14671
|
+
Rendered sample/show.slim within layouts/application (387.5ms)
|
14672
|
+
Completed 200 OK in 577ms (Views: 559.3ms | ActiveRecord: 0.0ms)
|
14673
|
+
|
14674
|
+
|
14675
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:51:29 +0100
|
14676
|
+
Processing by SampleController#show as HTML
|
14677
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14678
|
+
Rendering sample/show.slim within layouts/application
|
14679
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (95472.9ms)
|
14680
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (95742.8ms)
|
14681
|
+
Rendered sample/show.slim within layouts/application (95781.9ms)
|
14682
|
+
Completed in 95871ms (ActiveRecord: 0.0ms)
|
14683
|
+
|
14684
|
+
|
14685
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:53:21 +0100
|
14686
|
+
Processing by SampleController#show as HTML
|
14687
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14688
|
+
Rendering sample/show.slim within layouts/application
|
14689
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (104280.2ms)
|
14690
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (104524.7ms)
|
14691
|
+
Rendered sample/show.slim within layouts/application (104565.5ms)
|
14692
|
+
Completed in 104653ms (ActiveRecord: 0.0ms)
|
14693
|
+
|
14694
|
+
|
14695
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:55:45 +0100
|
14696
|
+
Processing by SampleController#show as HTML
|
14697
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14698
|
+
Rendering sample/show.slim within layouts/application
|
14699
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (48002.0ms)
|
14700
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (48284.5ms)
|
14701
|
+
Rendered sample/show.slim within layouts/application (48323.8ms)
|
14702
|
+
Completed in 48416ms (ActiveRecord: 0.0ms)
|
14703
|
+
|
14704
|
+
|
14705
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:57:10 +0100
|
14706
|
+
Processing by SampleController#show as HTML
|
14707
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14708
|
+
Rendering sample/show.slim within layouts/application
|
14709
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (36.7ms)
|
14710
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (285.6ms)
|
14711
|
+
Rendered sample/show.slim within layouts/application (326.8ms)
|
14712
|
+
Completed 200 OK in 1332ms (Views: 1312.7ms | ActiveRecord: 0.0ms)
|
14713
|
+
|
14714
|
+
|
14715
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 12:58:02 +0100
|
14716
|
+
Processing by SampleController#show as HTML
|
14717
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14718
|
+
Rendering sample/show.slim within layouts/application
|
14719
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (91012.7ms)
|
14720
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (91278.4ms)
|
14721
|
+
Rendered sample/show.slim within layouts/application (91321.8ms)
|
14722
|
+
Completed in 91410ms (ActiveRecord: 0.0ms)
|
14723
|
+
|
14724
|
+
|
14725
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 13:02:09 +0100
|
14726
|
+
Processing by SampleController#show as HTML
|
14727
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14728
|
+
Rendering sample/show.slim within layouts/application
|
14729
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (11708.7ms)
|
14730
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (11999.2ms)
|
14731
|
+
Rendered sample/show.slim within layouts/application (12039.0ms)
|
14732
|
+
Completed in 12129ms (ActiveRecord: 0.0ms)
|
14733
|
+
|
14734
|
+
|
14735
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 13:48:45 +0100
|
14736
|
+
Processing by SampleController#show as HTML
|
14737
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14738
|
+
Rendering sample/show.slim within layouts/application
|
14739
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (37.0ms)
|
14740
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (302.4ms)
|
14741
|
+
Rendered sample/show.slim within layouts/application (340.9ms)
|
14742
|
+
Completed 200 OK in 1470ms (Views: 1451.2ms | ActiveRecord: 0.0ms)
|
14743
|
+
|
14744
|
+
|
14745
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 13:50:46 +0100
|
14746
|
+
Processing by SampleController#show as HTML
|
14747
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14748
|
+
Rendering sample/show.slim within layouts/application
|
14749
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (16.0ms)
|
14750
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (337.3ms)
|
14751
|
+
Rendered sample/show.slim within layouts/application (368.5ms)
|
14752
|
+
Completed 200 OK in 553ms (Views: 536.8ms | ActiveRecord: 0.0ms)
|
14753
|
+
|
14754
|
+
|
14755
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 13:52:23 +0100
|
14756
|
+
Processing by SampleController#show as HTML
|
14757
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14758
|
+
Rendering sample/show.slim within layouts/application
|
14759
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (24.1ms)
|
14760
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (305.5ms)
|
14761
|
+
Rendered sample/show.slim within layouts/application (336.9ms)
|
14762
|
+
Completed 200 OK in 507ms (Views: 491.1ms | ActiveRecord: 0.0ms)
|
14763
|
+
|
14764
|
+
|
14765
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 13:56:43 +0100
|
14766
|
+
Processing by SampleController#show as HTML
|
14767
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14768
|
+
Rendering sample/show.slim within layouts/application
|
14769
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (135880.8ms)
|
14770
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (136174.2ms)
|
14771
|
+
Rendered sample/show.slim within layouts/application (136216.9ms)
|
14772
|
+
Completed in 136303ms (ActiveRecord: 0.0ms)
|
14773
|
+
|
14774
|
+
|
14775
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 14:01:09 +0100
|
14776
|
+
Processing by SampleController#show as HTML
|
14777
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14778
|
+
Rendering sample/show.slim within layouts/application
|
14779
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (377384.6ms)
|
14780
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (377712.2ms)
|
14781
|
+
Rendered sample/show.slim within layouts/application (377750.2ms)
|
14782
|
+
Completed in 377834ms (ActiveRecord: 0.0ms)
|
14783
|
+
|
14784
|
+
|
14785
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:10:42 +0100
|
14786
|
+
Processing by SampleController#show as HTML
|
14787
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14788
|
+
Rendering sample/show.slim within layouts/application
|
14789
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (53057.3ms)
|
14790
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (53314.5ms)
|
14791
|
+
Rendered sample/show.slim within layouts/application (53360.5ms)
|
14792
|
+
Completed in 53468ms (ActiveRecord: 0.0ms)
|
14793
|
+
|
14794
|
+
|
14795
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:11:59 +0100
|
14796
|
+
Processing by SampleController#show as HTML
|
14797
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14798
|
+
Rendering sample/show.slim within layouts/application
|
14799
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (25547.6ms)
|
14800
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (25790.3ms)
|
14801
|
+
Rendered sample/show.slim within layouts/application (25828.6ms)
|
14802
|
+
Completed in 25913ms (ActiveRecord: 0.0ms)
|
14803
|
+
|
14804
|
+
|
14805
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:12:36 +0100
|
14806
|
+
Processing by SampleController#show as HTML
|
14807
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14808
|
+
Rendering sample/show.slim within layouts/application
|
14809
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (243.2ms)
|
14810
|
+
Rendered sample/show.slim within layouts/application (281.4ms)
|
14811
|
+
Completed 500 Internal Server Error in 375ms (ActiveRecord: 0.0ms)
|
14812
|
+
|
14813
|
+
|
14814
|
+
|
14815
|
+
ActionView::Template::Error (undefined method `initialization_successful' for nil:NilClass):
|
14816
|
+
12: - model = Rails.cache.fetch("#agenda/#{current_shift_factor}/#{date_today}", expires_in: update_interval) do
|
14817
|
+
13: - Candl::AgendaModel.new(config, current_shift_factor, date_today)
|
14818
|
+
14:
|
14819
|
+
15: - if model.initialization_successful
|
14820
|
+
16: .popover_backdrop.init_display_none
|
14821
|
+
17:
|
14822
|
+
18: div
|
14823
|
+
|
14824
|
+
app/views/sample/show.slim:25:in `_app_views_sample_show_slim__121803466_55103120'
|
14825
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:13:48 +0100
|
14826
|
+
Processing by SampleController#show as HTML
|
14827
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14828
|
+
Rendering sample/show.slim within layouts/application
|
14829
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (13718.1ms)
|
14830
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (13950.0ms)
|
14831
|
+
Rendered sample/show.slim within layouts/application (13988.7ms)
|
14832
|
+
Completed in 14075ms (ActiveRecord: 0.0ms)
|
14833
|
+
|
14834
|
+
|
14835
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:15:32 +0100
|
14836
|
+
Processing by SampleController#show as HTML
|
14837
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14838
|
+
Rendering sample/show.slim within layouts/application
|
14839
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (51672.5ms)
|
14840
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (51943.7ms)
|
14841
|
+
Rendered sample/show.slim within layouts/application (51986.4ms)
|
14842
|
+
Completed in 52071ms (ActiveRecord: 0.0ms)
|
14843
|
+
|
14844
|
+
|
14845
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:16:46 +0100
|
14846
|
+
Processing by SampleController#show as HTML
|
14847
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14848
|
+
Rendering sample/show.slim within layouts/application
|
14849
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (40781.1ms)
|
14850
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (41015.1ms)
|
14851
|
+
Rendered sample/show.slim within layouts/application (41055.0ms)
|
14852
|
+
Completed in 41144ms (ActiveRecord: 0.0ms)
|
14853
|
+
|
14854
|
+
|
14855
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:17:50 +0100
|
14856
|
+
Processing by SampleController#show as HTML
|
14857
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14858
|
+
Rendering sample/show.slim within layouts/application
|
14859
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (11589.2ms)
|
14860
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (11832.1ms)
|
14861
|
+
Rendered sample/show.slim within layouts/application (11870.7ms)
|
14862
|
+
Completed in 11954ms (ActiveRecord: 0.0ms)
|
14863
|
+
|
14864
|
+
|
14865
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:19:19 +0100
|
14866
|
+
Processing by SampleController#show as HTML
|
14867
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14868
|
+
Rendering sample/show.slim within layouts/application
|
14869
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (104907.1ms)
|
14870
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (105145.5ms)
|
14871
|
+
Rendered sample/show.slim within layouts/application (105184.9ms)
|
14872
|
+
Completed in 105269ms (ActiveRecord: 0.0ms)
|
14873
|
+
|
14874
|
+
|
14875
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:24:57 +0100
|
14876
|
+
Processing by SampleController#show as HTML
|
14877
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14878
|
+
Rendering sample/show.slim within layouts/application
|
14879
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (121890.1ms)
|
14880
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (122229.9ms)
|
14881
|
+
Rendered sample/show.slim within layouts/application (122267.3ms)
|
14882
|
+
Completed in 122355ms (ActiveRecord: 0.0ms)
|
14883
|
+
|
14884
|
+
|
14885
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:27:21 +0100
|
14886
|
+
Processing by SampleController#show as HTML
|
14887
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14888
|
+
Rendering sample/show.slim within layouts/application
|
14889
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (6046.8ms)
|
14890
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (6361.7ms)
|
14891
|
+
Rendered sample/show.slim within layouts/application (6399.8ms)
|
14892
|
+
Completed in 6485ms (ActiveRecord: 0.0ms)
|
14893
|
+
|
14894
|
+
|
14895
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:29:36 +0100
|
14896
|
+
Processing by SampleController#show as HTML
|
14897
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14898
|
+
Rendering sample/show.slim within layouts/application
|
14899
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (6045.4ms)
|
14900
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (6311.7ms)
|
14901
|
+
Rendered sample/show.slim within layouts/application (6350.7ms)
|
14902
|
+
Completed in 6436ms (ActiveRecord: 0.0ms)
|
14903
|
+
|
14904
|
+
|
14905
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:42:55 +0100
|
14906
|
+
Processing by SampleController#show as HTML
|
14907
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14908
|
+
Rendering sample/show.slim within layouts/application
|
14909
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (87047.7ms)
|
14910
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (87347.6ms)
|
14911
|
+
Rendered sample/show.slim within layouts/application (87387.7ms)
|
14912
|
+
Completed in 87475ms (ActiveRecord: 0.0ms)
|
14913
|
+
|
14914
|
+
|
14915
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:49:06 +0100
|
14916
|
+
Processing by SampleController#show as HTML
|
14917
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14918
|
+
Rendering sample/show.slim within layouts/application
|
14919
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (102.0ms)
|
14920
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (410.4ms)
|
14921
|
+
Rendered sample/show.slim within layouts/application (447.5ms)
|
14922
|
+
Completed 200 OK in 2429ms (Views: 2409.4ms | ActiveRecord: 0.0ms)
|
14923
|
+
|
14924
|
+
|
14925
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 15:58:51 +0100
|
14926
|
+
Processing by SampleController#show as HTML
|
14927
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14928
|
+
Rendering sample/show.slim within layouts/application
|
14929
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (81.3ms)
|
14930
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (370.5ms)
|
14931
|
+
Rendered sample/show.slim within layouts/application (401.2ms)
|
14932
|
+
Completed 200 OK in 586ms (Views: 569.1ms | ActiveRecord: 0.0ms)
|
14933
|
+
|
14934
|
+
|
14935
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 16:03:36 +0100
|
14936
|
+
Processing by SampleController#show as HTML
|
14937
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14938
|
+
Rendering sample/show.slim within layouts/application
|
14939
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (78.8ms)
|
14940
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (364.5ms)
|
14941
|
+
Rendered sample/show.slim within layouts/application (402.5ms)
|
14942
|
+
Completed 500 Internal Server Error in 491ms (ActiveRecord: 0.0ms)
|
14943
|
+
|
14944
|
+
|
14945
|
+
|
14946
|
+
ActionView::Template::Error (undefined local variable or method `collumn' for #<#<Class:0x0000000006975120>:0x0000000006964050>):
|
14947
|
+
21: - weekly_multiday_event_heap = calendar_month.grouped_multiday_events[row]
|
14948
|
+
22:
|
14949
|
+
23: / TODO: Take 100 up into configuration
|
14950
|
+
24: - until (weekly_multiday_event_heap.empty? || collumn > 100)
|
14951
|
+
25: tr
|
14952
|
+
26: - collumn = 0
|
14953
|
+
27:
|
14954
|
+
|
14955
|
+
app/views/sample/show.slim:25:in `_app_views_sample_show_slim__704532280_55292160'
|
14956
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 16:05:11 +0100
|
14957
|
+
Processing by SampleController#show as HTML
|
14958
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14959
|
+
Rendering sample/show.slim within layouts/application
|
14960
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (79.5ms)
|
14961
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (365.3ms)
|
14962
|
+
Rendered sample/show.slim within layouts/application (403.7ms)
|
14963
|
+
Completed 200 OK in 1394ms (Views: 1374.1ms | ActiveRecord: 0.0ms)
|
14964
|
+
|
14965
|
+
|
14966
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 16:06:53 +0100
|
14967
|
+
Processing by SampleController#show as HTML
|
14968
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14969
|
+
Rendering sample/show.slim within layouts/application
|
14970
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (71.1ms)
|
14971
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (331.7ms)
|
14972
|
+
Rendered sample/show.slim within layouts/application (363.0ms)
|
14973
|
+
Completed 200 OK in 540ms (Views: 523.2ms | ActiveRecord: 0.0ms)
|
14974
|
+
|
14975
|
+
|
14976
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 16:07:13 +0100
|
14977
|
+
Processing by SampleController#show as HTML
|
14978
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14979
|
+
Rendering sample/show.slim within layouts/application
|
14980
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (60.6ms)
|
14981
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (292.2ms)
|
14982
|
+
Rendered sample/show.slim within layouts/application (329.4ms)
|
14983
|
+
Completed 200 OK in 1340ms (Views: 1320.8ms | ActiveRecord: 0.0ms)
|
14984
|
+
|
14985
|
+
|
14986
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 16:09:31 +0100
|
14987
|
+
Processing by SampleController#show as HTML
|
14988
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14989
|
+
Rendering sample/show.slim within layouts/application
|
14990
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (37.2ms)
|
14991
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (289.6ms)
|
14992
|
+
Rendered sample/show.slim within layouts/application (327.2ms)
|
14993
|
+
Completed 200 OK in 1318ms (Views: 1298.1ms | ActiveRecord: 0.0ms)
|
14994
|
+
|
14995
|
+
|
14996
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 16:18:07 +0100
|
14997
|
+
Processing by SampleController#show as HTML
|
14998
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14999
|
+
Rendering sample/show.slim within layouts/application
|
15000
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (40.1ms)
|
15001
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (357.7ms)
|
15002
|
+
Rendered sample/show.slim within layouts/application (395.8ms)
|
15003
|
+
Completed 200 OK in 1429ms (Views: 1410.0ms | ActiveRecord: 0.0ms)
|
15004
|
+
|
15005
|
+
|
15006
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-22 16:19:34 +0100
|
15007
|
+
Processing by SampleController#show as HTML
|
15008
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
15009
|
+
Rendering sample/show.slim within layouts/application
|
15010
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.3ms)
|
15011
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (246.5ms)
|
15012
|
+
Rendered sample/show.slim within layouts/application (277.1ms)
|
15013
|
+
Completed 200 OK in 448ms (Views: 430.9ms | ActiveRecord: 0.0ms)
|
15014
|
+
|
15015
|
+
|
15016
|
+
Started GET "/calendar?s=-8&v=a" for ::1 at 2019-02-22 16:19:37 +0100
|
15017
|
+
Processing by SampleController#show as HTML
|
15018
|
+
Parameters: {"s"=>"-8", "v"=>"a"}
|
15019
|
+
Rendering sample/show.slim within layouts/application
|
15020
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (9.8ms)
|
15021
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (245.7ms)
|
15022
|
+
Rendered sample/show.slim within layouts/application (281.3ms)
|
15023
|
+
Completed 200 OK in 460ms (Views: 443.0ms | ActiveRecord: 0.0ms)
|
15024
|
+
|
15025
|
+
|
15026
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-22 16:19:38 +0100
|
15027
|
+
Processing by SampleController#show as HTML
|
15028
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
15029
|
+
Rendering sample/show.slim within layouts/application
|
15030
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.7ms)
|
15031
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (232.5ms)
|
15032
|
+
Rendered sample/show.slim within layouts/application (263.7ms)
|
15033
|
+
Completed 200 OK in 417ms (Views: 401.2ms | ActiveRecord: 0.0ms)
|
15034
|
+
|
15035
|
+
|
15036
|
+
Started GET "/calendar?s=-6&v=a" for ::1 at 2019-02-22 16:19:39 +0100
|
15037
|
+
Processing by SampleController#show as HTML
|
15038
|
+
Parameters: {"s"=>"-6", "v"=>"a"}
|
15039
|
+
Rendering sample/show.slim within layouts/application
|
15040
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (11.7ms)
|
15041
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (254.6ms)
|
15042
|
+
Rendered sample/show.slim within layouts/application (285.1ms)
|
15043
|
+
Completed 200 OK in 448ms (Views: 431.7ms | ActiveRecord: 0.0ms)
|
15044
|
+
|
15045
|
+
|
15046
|
+
Started GET "/calendar?s=-6&v=a" for ::1 at 2019-02-22 17:57:46 +0100
|
15047
|
+
Processing by SampleController#show as HTML
|
15048
|
+
Parameters: {"s"=>"-6", "v"=>"a"}
|
15049
|
+
Rendering sample/show.slim within layouts/application
|
15050
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (20.4ms)
|
15051
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (341.7ms)
|
15052
|
+
Rendered sample/show.slim within layouts/application (386.0ms)
|
15053
|
+
Completed 200 OK in 636ms (Views: 613.3ms | ActiveRecord: 0.0ms)
|
15054
|
+
|
15055
|
+
|
15056
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 17:57:49 +0100
|
15057
|
+
Processing by SampleController#show as HTML
|
15058
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
15059
|
+
Rendering sample/show.slim within layouts/application
|
15060
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (38.2ms)
|
15061
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (292.0ms)
|
15062
|
+
Rendered sample/show.slim within layouts/application (323.7ms)
|
15063
|
+
Completed 200 OK in 481ms (Views: 465.2ms | ActiveRecord: 0.0ms)
|
15064
|
+
|
15065
|
+
|
15066
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 17:58:18 +0100
|
15067
|
+
Processing by SampleController#show as HTML
|
15068
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
15069
|
+
Rendering sample/show.slim within layouts/application
|
15070
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (37.0ms)
|
15071
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (276.8ms)
|
15072
|
+
Rendered sample/show.slim within layouts/application (315.3ms)
|
15073
|
+
Completed 200 OK in 1308ms (Views: 1288.6ms | ActiveRecord: 0.0ms)
|
15074
|
+
|
15075
|
+
|
15076
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-22 17:58:29 +0100
|
15077
|
+
Processing by SampleController#show as HTML
|
15078
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
15079
|
+
Rendering sample/show.slim within layouts/application
|
15080
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.1ms)
|
15081
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (238.1ms)
|
15082
|
+
Rendered sample/show.slim within layouts/application (268.4ms)
|
15083
|
+
Completed 200 OK in 435ms (Views: 418.9ms | ActiveRecord: 0.0ms)
|
15084
|
+
|
15085
|
+
|
15086
|
+
Started GET "/calendar?s=-6&v=a" for ::1 at 2019-02-22 17:58:31 +0100
|
15087
|
+
Processing by SampleController#show as HTML
|
15088
|
+
Parameters: {"s"=>"-6", "v"=>"a"}
|
15089
|
+
Rendering sample/show.slim within layouts/application
|
15090
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (13.3ms)
|
15091
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (253.8ms)
|
15092
|
+
Rendered sample/show.slim within layouts/application (290.6ms)
|
15093
|
+
Completed 200 OK in 475ms (Views: 458.5ms | ActiveRecord: 0.0ms)
|
15094
|
+
|
15095
|
+
|
15096
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 17:58:35 +0100
|
15097
|
+
Processing by SampleController#show as HTML
|
15098
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
15099
|
+
Rendering sample/show.slim within layouts/application
|
15100
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (15.1ms)
|
15101
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (274.6ms)
|
15102
|
+
Rendered sample/show.slim within layouts/application (305.6ms)
|
15103
|
+
Completed 200 OK in 462ms (Views: 445.1ms | ActiveRecord: 0.0ms)
|
15104
|
+
|
15105
|
+
|
15106
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 18:39:07 +0100
|
15107
|
+
Processing by SampleController#show as HTML
|
15108
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
15109
|
+
Rendering sample/show.slim within layouts/application
|
15110
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (37.6ms)
|
15111
|
+
Rendered sample/show.slim within layouts/application (76.7ms)
|
15112
|
+
Completed 500 Internal Server Error in 163ms (ActiveRecord: 0.0ms)
|
15113
|
+
|
15114
|
+
|
15115
|
+
|
15116
|
+
ActionView::Template::Error (undefined local variable or method `from' for #<Candl::MonthModel:0x0000000005bc7168>):
|
15117
|
+
6:
|
15118
|
+
7: - if is_month
|
15119
|
+
8: - model = Rails.cache.fetch("#month/#{current_shift_factor}/#{date_today}", expires_in: update_interval) do
|
15120
|
+
9: - Candl::MonthModel.new(config, current_shift_factor, date_today)
|
15121
|
+
10: - else
|
15122
|
+
11: - model = Rails.cache.fetch("#agenda/#{current_shift_factor}/#{date_today}", expires_in: update_interval) do
|
15123
|
+
12: - Candl::AgendaModel.new(config, current_shift_factor, date_today)
|
15124
|
+
|
15125
|
+
app/views/sample/show.slim:25:in `_app_views_sample_show_slim__899104809_56001840'
|
15126
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 18:39:42 +0100
|
15127
|
+
Processing by SampleController#show as HTML
|
15128
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
15129
|
+
Rendering sample/show.slim within layouts/application
|
15130
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (33.7ms)
|
15131
|
+
Rendered sample/show.slim within layouts/application (64.7ms)
|
15132
|
+
Completed 500 Internal Server Error in 140ms (ActiveRecord: 0.0ms)
|
15133
|
+
|
15134
|
+
|
15135
|
+
|
15136
|
+
ActionView::Template::Error (undefined local variable or method `from' for #<Candl::MonthModel:0x0000000006989e40>):
|
15137
|
+
6:
|
15138
|
+
7: - if is_month
|
15139
|
+
8: - model = Rails.cache.fetch("#month/#{current_shift_factor}/#{date_today}", expires_in: update_interval) do
|
15140
|
+
9: - Candl::MonthModel.new(config, current_shift_factor, date_today)
|
15141
|
+
10: - else
|
15142
|
+
11: - model = Rails.cache.fetch("#agenda/#{current_shift_factor}/#{date_today}", expires_in: update_interval) do
|
15143
|
+
12: - Candl::AgendaModel.new(config, current_shift_factor, date_today)
|
15144
|
+
|
15145
|
+
app/views/sample/show.slim:25:in `_app_views_sample_show_slim__899104809_57172040'
|
15146
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 18:43:21 +0100
|
15147
|
+
Processing by SampleController#show as HTML
|
15148
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
15149
|
+
Rendering sample/show.slim within layouts/application
|
15150
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (36.8ms)
|
15151
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (279.6ms)
|
15152
|
+
Rendered sample/show.slim within layouts/application (318.6ms)
|
15153
|
+
Completed 200 OK in 1306ms (Views: 1286.5ms | ActiveRecord: 0.0ms)
|
15154
|
+
|
15155
|
+
|
15156
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-22 18:43:25 +0100
|
15157
|
+
Processing by SampleController#show as HTML
|
15158
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
15159
|
+
Rendering sample/show.slim within layouts/application
|
15160
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.1ms)
|
15161
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (243.0ms)
|
15162
|
+
Rendered sample/show.slim within layouts/application (273.7ms)
|
15163
|
+
Completed 200 OK in 445ms (Views: 426.6ms | ActiveRecord: 0.0ms)
|
15164
|
+
|
15165
|
+
|
15166
|
+
Started GET "/calendar?s=-6&v=a" for ::1 at 2019-02-22 18:43:27 +0100
|
15167
|
+
Processing by SampleController#show as HTML
|
15168
|
+
Parameters: {"s"=>"-6", "v"=>"a"}
|
15169
|
+
Rendering sample/show.slim within layouts/application
|
15170
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (12.4ms)
|
15171
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (262.1ms)
|
15172
|
+
Rendered sample/show.slim within layouts/application (297.4ms)
|
15173
|
+
Completed 200 OK in 484ms (Views: 466.4ms | ActiveRecord: 0.0ms)
|
15174
|
+
|
15175
|
+
|
15176
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-22 18:43:29 +0100
|
15177
|
+
Processing by SampleController#show as HTML
|
15178
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
15179
|
+
Rendering sample/show.slim within layouts/application
|
15180
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (15.0ms)
|
15181
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (257.4ms)
|
15182
|
+
Rendered sample/show.slim within layouts/application (288.4ms)
|
15183
|
+
Completed 200 OK in 447ms (Views: 431.0ms | ActiveRecord: 0.0ms)
|
15184
|
+
|
15185
|
+
|