Justin Wetherell wrote: > How do you specify Freevo to use /var/lib/freevo instead of > /var/cache/freevo? If /var/lib/freevo exists, you will use that if it > doesnt use /var/cache/freevo or does Freevo search both all the time? > BTW I like the idea of using /var/lib/freevo. I know you can adjust > the record schedule with the TV_RECORD_SCHEDULE variable in > local_conf but what about the other files?
OVERLAY_DIR = '/var/lib/freevo/overlay' TV_RECORD_SCHEDULE = '/var/lib/freevo/record_schedule.xml' XMLTV_FILE = '/var/lib/freevo/TV.xml' TV_LOGOS = '/var/lib/freevo/logos' > > Static Favorite should be in their own file; so you can make a daily > backup, in case of coruption IMO. I agree a static favourite would be good, splitting scheduled recording should be a feature request. > > Sorry about the bug tracker; I didn't set out to test Freevo last > night, it just happend :-) No problem. > > On 10/7/06, *Duncan Webb* <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > 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 > > <http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV> > _______________________________________________ > Freevo-devel mailing list > [email protected] > <mailto:[email protected]> > https://lists.sourceforge.net/lists/listinfo/freevo-devel > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > 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 > ------------------------------------------------------------------------- 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
