1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
|
<%pre>
#include <memory>
#include <vdr/channels.h>
#include <vdr/config.h>
#include <vdr/epg.h>
#include <vdr/i18n.h>
#include "exception.h"
#include "tools.h"
#include "timers.h"
#include "setup.h"
#include "epg_events.h"
#include "timerconflict.h"
#include "i18n.h"
#include "livefeatures.h"
#include "epgsearch.h"
using namespace std;
using namespace vdrlive;
</%pre>
<%args>
// input parameters
string timerid;
string epgid;
string async;
// form parameters
tChannelID channel;
bool active = true;
string title = "";
string date = "";
bool wday_mon = false;
bool wday_tue = false;
bool wday_wed = false;
bool wday_thu = false;
bool wday_fri = false;
bool wday_sat = false;
bool wday_sun = false;
int start_h = 0;
int start_m = 0;
int end_h = 0;
int end_m = 0;
bool vps = 0;
int priority = 0;
int lifetime = 0;
string aux = "";
string directory = "";
</%args>
<%session scope="global">
bool logged_in(false);
string edit_timerreferer;
TimerConflictNotifier timerNotifier;
</%session>
<%request scope="page">
cTimer* timer;
</%request>
<%include>page_init.eh</%include>
<%cpp>
if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
bool ajaxReq = !async.empty() && (lexical_cast<int>(async) != 0);
tChannelID channelid = tChannelID();
tEventID eventid = tEventID();
string message;
cMutexLock timersLock( &LiveTimerManager() );
SortedTimers& timers = LiveTimerManager().GetTimers();
timer = 0;
if ( !timerid.empty() ) {
string tId = SortedTimers::DecodeDomId(timerid);
// dsyslog("DEBUG: TIMER: tId = %s", tId.c_str());
timer = timers.GetByTimerId(tId);
if ( timer == 0 )
throw HtmlError( tr("Couldn't find timer. Maybe you mistyped your request?") );
}
if ( request.getMethod() == "POST" ) {
uint flags = ( active ? tfActive : 0 ) | ( vps ? tfVps : 0 );
string weekdays = string( wday_mon ? "M" : "-" ) + ( wday_tue ? "T" : "-" ) + ( wday_wed ? "W" : "-" )
+ ( wday_thu ? "T" : "-" ) + ( wday_fri ? "F" : "-" ) + ( wday_sat ? "S" : "-" )
+ ( wday_sun ? "S" : "-" );
int start = start_h * 100 + start_m;
int stop = end_h * 100 + end_m;
if (!directory.empty())
title = directory + "~" + title;
if (title.empty())
message = tr("Please set a title for the timer!");
else
{
// TRANSLATORS: only adjust the ordering and separators, don't translate the m's, d's and y's
time_t tdate = GetDateFromDatePicker(date, tr("mm/dd/yyyy"));
string sdate = DatePickerToC(tdate, "yyyy-mm-dd");
LiveTimerManager().UpdateTimer( timer, flags, channel, weekdays, sdate, start, stop, priority, lifetime, title, aux );
timerNotifier.SetTimerModification();
return reply.redirect(!edit_timerreferer.empty()?edit_timerreferer:"timers.html");
}
}
if (message.empty())
edit_timerreferer = request.getHeader("Referer:", "timers.html");
auto_ptr< cTimer > eventTimer;
if ( timer == 0 && !epgid.empty()) {
EpgEvents::DecodeDomId(epgid, channelid, eventid);
if ( channelid.Valid() && eventid != 0 ) {
cerr << "grabbing event" << endl << endl;
cSchedulesLock schedLock;
cSchedules const* schedules = cSchedules::Schedules( schedLock );
cSchedule const* schedule = schedules->GetSchedule( channelid );
eventTimer.reset( new cTimer( schedule->GetEvent( eventid ) ) );
} else {
cerr << "grabbing new timer" << endl << endl;
eventTimer.reset( new cTimer() );
eventTimer->SetFlags( tfActive );
}
timer = eventTimer.get();
}
if (timer == 0)
{
timer = new cTimer();
timer->SetFlags(tfActive);
}
if ( timer != 0 ) {
active = timer->Flags() & tfActive;
channel = timer->Channel()->GetChannelID();
title = timer->File() ? timer->File() : "";
if ( LiveFeatures< features::epgsearch >().Recent() ) {
vector< string > directories = StringSplit( title, '~' );
if (directories.size() > 1)
{
directory = directories[0];
title = title.substr(directory.size()+1);
}
}
// TRANSLATORS: only adjust the ordering and separators, don't translate the m's, d's and y's
date = timer->Day() ? DatePickerToC(timer->Day(), tr("mm/dd/yyyy")) : "";
wday_mon = timer->WeekDays() & 0x01;
wday_tue = timer->WeekDays() & 0x02;
wday_wed = timer->WeekDays() & 0x04;
wday_thu = timer->WeekDays() & 0x08;
wday_fri = timer->WeekDays() & 0x10;
wday_sat = timer->WeekDays() & 0x20;
wday_sun = timer->WeekDays() & 0x40;
start_h = ( timer->Start() / 100 ) % 100;
start_m = timer->Start() % 100;
end_h = ( timer->Stop() / 100 ) % 100;
end_m = timer->Stop() % 100;
vps = timer->Flags() & tfVps;
priority = timer->Priority();
lifetime = timer->Lifetime();
aux = timer->Aux() ? timer->Aux() : "";
}
</%cpp>
<& pageelems.doc_type &>
<html>
<head>
<title>VDR Live - <$ timer ? tr("Edit timer") : tr("New timer") $></title>
<%cpp>
if (!ajaxReq) {
</%cpp>
<& pageelems.stylesheets &>
<& pageelems.ajax_js &>
<%cpp>
}
</%cpp>
</head>
<body>
<%cpp>
if (!ajaxReq) {
</%cpp>
<& pageelems.logo &>
<& menu active=("timers") &>
<%cpp>
}
</%cpp>
<div class="inhalt">
<form method="post" name="edit_timer" id="<$ timerid $>" action="edit_timer.ecpp">
<input type="hidden" name="timerid" value="<$ timerid $>"/>
<input type="hidden" name="aux" value="<$ aux $>"/>
<table class="formular" cellpadding="0" cellspacing="0">
<tr class="head">
<td class="toprow leftcol rightcol" colspan="2"><div class="boxheader"><div><div class="caption"><$ timer ? tr("Edit timer") : tr("New timer") $></div></div></div></td>
</tr>
<tr>
<td class="label leftcol"><div class="withmargin"><$ trVDR("Active") $>:</div></td>
<td class="rightcol">
<div class="dotted">
<input id="active_1" name="active" value="1" <{ reply.out() << ( active ? "checked=\"checked\"" : "" ); }> type="radio"></input>
<label for="active_1"><$ trVDR("yes") $></label>
</div>
<div class="dotted">
<input id="active_0" name="active" value="0" <{ reply.out() << ( !active ? "checked=\"checked\"" : "" ); }> type="radio"></input>
<label for="active_0"><$ trVDR("no") $></label>
</div>
</td>
</tr>
<tr>
<td class="label leftcol"><div class="withmargin"><$ trVDR("Channel") $>:</div></td>
<td class="rightcol"><div class="withmargin"><& channels_widget name=("channel") channelid=(true) selected=(channel) &></div></td>
</tr>
<tr>
<td class="label leftcol"><div class="withmargin"><$ tr("Title" ) $>:</div></td>
<td class="rightcol"><input type="text" name="title" value="<$ title $>" size="80" /></td>
</tr>
<%cpp>
if ( LiveFeatures< features::epgsearch >().Recent() ) {
RecordingDirs recordingdirs(true);
</%cpp>
<tr>
<td class="label leftcol"><div class="withmargin"><$ tr("Directory" ) $>:</div></td>
<td class="rightcol"><select name="directory" size="1" id="directory" style="margin-top: 5px">
<option/>
<%cpp>
for (RecordingDirs::iterator rdir = recordingdirs.begin(); rdir != recordingdirs.end(); ++rdir) {
std::string dir = *rdir;
</%cpp>
<option value="<$ dir $>"
% if (*rdir == directory) {
selected="selected"
% }
><$ dir $></option>
% }
</select>
</td>
</tr>
<%cpp>
}
</%cpp>
<tr>
<td class="label leftcol"><div class="withmargin"><$ trVDR("Day") $>:</div></td>
<td class="rightcol"><input id="date" name="date" type="text" class="DatePicker" value="<$ date $>" /></td>
</tr>
<tr>
<td class="label leftcol"><div class="withmargin"><$ tr("Weekday") $>:</div></td>
<td class="rightcol">
<div class="dotted">
<input id="wday_mon" type="checkbox" name="wday_mon" value="1" <{ reply.out() << ( wday_mon ? "checked=\"checked\"" : "" ); }> />
<label for="wday_mon"><$ tr("Monday") $></label>
</div>
<div class="dotted">
<input id="wday_tue" type="checkbox" name="wday_tue" value="1" <{ reply.out() << ( wday_tue ? "checked=\"checked\"" : "" ); }> />
<label for="wday_tue"><$ tr("Tuesday") $></label>
</div>
<div class="dotted">
<input id="wday_wed" type="checkbox" name="wday_wed" value="1" <{ reply.out() << ( wday_wed ? "checked=\"checked\"" : "" ); }> />
<label for="wday_wed"><$ tr("Wednesday") $></label>
</div>
<div class="dotted">
<input id="wday_thu" type="checkbox" name="wday_thu" value="1" <{ reply.out() << ( wday_thu ? "checked=\"checked\"" : "" ); }> />
<label for="wday_thu"><$ tr("Thursday") $></label>
</div>
<div class="dotted">
<input id ="wday_fri" type="checkbox" name="wday_fri" value="1" <{ reply.out() << ( wday_fri ? "checked=\"checked\"" : "" ); }> />
<label for="wday_fri"><$ tr("Friday") $></label>
</div>
<div class="dotted">
<input id="wday_sat" type="checkbox" name="wday_sat" value="1" <{ reply.out() << ( wday_sat ? "checked=\"checked\"" : "" ); }> />
<label for="wday_sat"><$ tr("Saturday") $></label>
</div>
<div class="dotted">
<input id="wday_sun" type="checkbox" name="wday_sun" value="1" <{ reply.out() << ( wday_sun ? "checked=\"checked\"" : "" ); }> />
<label for="wday_sun"><$ tr("Sunday") $></label>
</div>
</td>
</tr>
<tr>
<td class="label leftcol"><div class="withmargin"><$ trVDR("Start") $>:</div></td>
<td class="rightcol"><input type="text" size="2" maxlength="2" name="start_h" value="<$ ZeroPad(start_h) $>" /> : <input type="text" size="2" maxlength="2" name="start_m" value="<$ ZeroPad(start_m) $>" /></td>
</tr>
<tr>
<td class="label leftcol"><div class="withmargin"><$ trVDR("Stop") $>:</div></td>
<td class="rightcol"><input type="text" size="2" maxlength="2" name="end_h" value="<$ ZeroPad(end_h) $>" /> : <input type="text" size="2" maxlength="2" name="end_m" value="<$ ZeroPad(end_m) $>" /></td>
</tr>
<tr>
<td class="label leftcol"><div class="withmargin"><$ tr("Use VPS") $>:</div></td>
<td class="rightcol"><input type="checkbox" name="vps" value="1" <{ reply.out() << ( vps ? "checked=\"checked\"" : "" ); }>/></td>
</tr>
<tr>
<td class="label leftcol"><div class="withmargin"><$ trVDR("Priority") $>:</div></td>
<td class="rightcol"><input type="text" size="2" maxlength="2" name="priority" value="<$ priority $>" /></td>
</tr>
<tr>
<td class="label leftcol"><div class="withmargin"><$ trVDR("Lifetime") $>:</div></td>
<td class="rightcol"><input type="text" size="2" maxlength="2" name="lifetime" value="<$ lifetime $>" /></td>
</tr>
<tr>
<td class="buttonpanel leftcol rightcol bottomrow" colspan="2">
<div class="withmargin">
<button class="green" type="submit"><$ tr("Save") $></button>
<button type="button" class="red" onclick="history.back()"><$ tr("Cancel") $></button>
</div>
</td>
</tr>
</table>
</form>
<div style="color: red; margin: 0 auto;">
<$ message $>
</div>
</div>
</body>
</html>
<%include>page_exit.eh</%include>
|