I am using the default skin (Vix-Night-1080 skin) and I would like to change the defaults that are used when an Autotimer is created via the REC button "Timer menu". The default creates an Autotimer with the "Restrict to Days" set to "Enabled" and I would like to change it so that it defaults to "Disabled", ie any Autotimer set up via the Rec Button menu will repeat every day.
I've not found an option for this (have I missed it?) so I suspect its hardcoded somewhere.
I am not familiar with Python but looking through the Openvix repository I think the relevent code are lines 267-270 in EpgSelectionBase.py
def addAutoTimerSilent(self, event, service):
try:
from Plugins.Extensions.AutoTimer.AutoTimerEditor import addAutotimerFromEventSilent
addAutotimerFromEventSilent(self.session, evt=event, service=service)
Could someone be kind enough to answer the following:
1. I've probably missed it, but where is the code for Plugins.Extensions.AutoTimer.AutoTimerEditor held?
2. Other than Day/time (I assume) what other data is in the event parameter?
3. Is there a guide/posting on to how to debug python code running on an Enigma box, ie how do you see the contents of varibles, set breakpoints etc. etc?
Any help gratefully received.
I've not found an option for this (have I missed it?) so I suspect its hardcoded somewhere.
I am not familiar with Python but looking through the Openvix repository I think the relevent code are lines 267-270 in EpgSelectionBase.py
def addAutoTimerSilent(self, event, service):
try:
from Plugins.Extensions.AutoTimer.AutoTimerEditor import addAutotimerFromEventSilent
addAutotimerFromEventSilent(self.session, evt=event, service=service)
Could someone be kind enough to answer the following:
1. I've probably missed it, but where is the code for Plugins.Extensions.AutoTimer.AutoTimerEditor held?
2. Other than Day/time (I assume) what other data is in the event parameter?
3. Is there a guide/posting on to how to debug python code running on an Enigma box, ie how do you see the contents of varibles, set breakpoints etc. etc?
Any help gratefully received.