Dear visitor, welcome to Dreamboard. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
This post has been edited 1 times, last edit by "Reichi" (Apr 3rd 2007, 11:56pm)




This post has been edited 1 times, last edit by "denony" (Apr 10th 2007, 11:00am)
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 |
Traceback (most recent call last):
File "/usr/lib/enigma2/python/timer.py", line 183, in calcNextActivation
self.processActivation()
File "/usr/lib/enigma2/python/timer.py", line 244, in processActivation
self.doActivate(self.timer_list[0])
File "/usr/lib/enigma2/python/timer.py", line 220, in doActivate
if w.activate():
File "/usr/lib/enigma2/python/RecordTimer.py", line 216, in activate
if self.tryPrepare():
File "/usr/lib/enigma2/python/RecordTimer.py", line 173, in tryPrepare
prep_res=self.record_service.prepare(self.Filename + ".ts", self.begin, self.end, event_id)
TypeError: in method 'iRecordableServicePtr_prepare', argument 3 of type 'time_t'
|
|
|
Source code |
1 2 3 4 5 6 7 |
doRequest(url_timerchange+"?"+"sRef="+channel.replace(""", '"')+"&begin="+begin
+"&end="+end+"&name="+escape(nameClean)+"&description="+escape(descriptionClean)
+"&afterevent="+afterEvent+"&eit=0&disabled="+disabled
+"&justplay="+justplay+"&repeated="+repeated
+"&channelOld="+channel
+"&beginOld="+begin+"&endOld="+end
+"&deleteOldOnSave=1", incomingTimerAddResult, false);
|
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
try:
for x in self.recordtimer.timer_list + self.recordtimer.processed_timers:
#print "x.begin(%s), x.end(%s), x.service_ref(%s)" % (x.begin, x.end, x.service_ref)
#print "beginOld(%s), endOld(%s), channelOld(%s)" % (beginOld, endOld, channelOld)
if str(x.service_ref) == str(channelOld) and float(x.begin) == beginOld and float(x.end) == endOld:
toChange = x
toChange.service_ref = ServiceReference(param['sRef'])
toChange.begin = int(begin)
toChange.end = int(end)
toChange.name = name
toChange.description = description
toChange.disabled = disabled
toChange.justplay = justplay
toChange.afterEvent = afterevent
toChange.repeated = repeated
self.session.nav.RecordTimer.timeChanged(toChange)
print "Timer changed"
return True,"Timer changed"
break
except:
return False,"error searching for old Timer"
|
!
This post has been edited 1 times, last edit by "Reichi" (May 24th 2007, 7:41pm)


This post has been edited 3 times, last edit by "candyman666" (Jan 19th 2008, 10:23pm)
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 |
#if item.eit is not None:
#
# event = self.epgcache.lookupEvent(['E',("%s" % item.service_ref ,2,item.eit)])
# if event[0][0] is not None:
# timer.append(event[0][0])
# else:
# timer.append("N/A")
#else:
# timer.append("N/A")
#
timer.append("N/A")
|