Justin Wetherell wrote: > The idlebar plugin always shows active: > > This match is too general: > self.tvlockfile = config.FREEVO_CACHEDIR + '/record*' (line 280) > in my case: > /var/cache/freevo/record* > > because the recordings file also matches: > /var/cache/freevo/record_schedule.xml
Thank you Justin, forgot about record_schedule.xml as I move this to /var/lib/freevo. The patch is applied in r8333. In fact, I move logos, overlay, TV.xml and record_schedule.xml to /var/lib/freevo as these are not really temporary files and cannot be safely removed without breaking the system. record_schedule.xml is horrid file as it contains both static favourites and dynamic schedule, removing it you lose your favourites. Do you think that this should be changed. BTW I would prefer if you use the bug tracker for these because I will generate the change log from the bug tracker and I link the svn commit to a bug. If it is only in the devel list I *will* miss certain changes and big fixes. There are other reasons too why I like the tracker. TIA Duncan > > change to: > self.tvlockfile = config.FREEVO_CACHEDIR + '/record.*' > > freevo/src/plugins/idlebar# diff -u __init__.org __init__.py > --- __init__.org 2006-10-06 21:44:24.000000000 -0400 > +++ __init__.py 2006-10-06 21:44:38.000000000 -0400 > @@ -277,7 +277,7 @@ > self.listings_threshold = listings_threshold > self.next_guide_check = 0 > self.listings_expire = 0 > - self.tvlockfile = config.FREEVO_CACHEDIR + '/record*' > + self.tvlockfile = config.FREEVO_CACHEDIR + '/record.*' > icondir = os.path.join(config.ICON_DIR, 'status') > self.TVLOCKED = os.path.join(icondir, > 'television_active.png') > self.TVFREE = os.path.join(icondir, > 'television_inactive.png') ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Freevo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-devel
