2014-06-18, 08:50 AM
pkscout Wrote:1- There seems to be some kind of new(or retrograde) bug in XNEWA_Connect.py. With the 2.40~beta1 if I go to All Recordings I get a message that the NextPVR server can't be contacted. The home screen loads fine, as does everything else. I copied XNEWA_Connect.py from the 2.3.1~beta5 I had and everything worked fine after that. I've attached a log of the problem. I do see a 405 being returned from NEWA.
The 405 is expected since I a call a function not yet in your NEWA. For some reason the exception handling isn't working
Change
Code:
try:
schObj.recurr_priority = 0
except:
print 'Update to NEWA required'
Code:
if hasattr(schObj,'recurr_priority') == True:
schObj.recurr_priority = 0
else:
print 'Update to NEWA required'
Quote:2- I think the "classic" skin still needs to be the default. The Confluence skin is not stand alone (it has references to include and image files only available in Confluence). So if someone is using a skin other than Confluence, the skin I did won't work. I'd suggest they be listed as "Default" and "Confluence."
I have to think about this since Default doesn't work with all skins either
Quote:The obvious disadvantage is that the user can't opt for the Classic skin if there is a skin specific skin available.
And for now I do want to give the user the option.
Martin