Author: dmeyer
Date: Fri Apr 21 20:36:44 2006
New Revision: 8155

Modified:
   trunk/tvserver/src/epg.py
   trunk/tvserver/src/server.py

Log:
reset epg update status to false, not true

Modified: trunk/tvserver/src/epg.py
==============================================================================
--- trunk/tvserver/src/epg.py   (original)
+++ trunk/tvserver/src/epg.py   Fri Apr 21 20:36:44 2006
@@ -240,7 +240,7 @@
         if not sources:
             log.info('epg update complete')
             kaa.epg.guide.signals["updated"].disconnect(self.update_step)
-            self.updating = True
+            self.updating = False
             self.signals['updated'].emit()
             return True
 

Modified: trunk/tvserver/src/server.py
==============================================================================
--- trunk/tvserver/src/server.py        (original)
+++ trunk/tvserver/src/server.py        Fri Apr 21 20:36:44 2006
@@ -621,7 +621,7 @@
         if rec:
             # something is recording, add busy time of first recording
             busy = rec[0].stop + rec[0].stop_padding - ctime
-            self.status.set('busy', max(2, int(busy / 60) + 1))
+            self.status.set('busy', max(1, int(busy / 60) + 1))
         elif self.epg.updating:
             # epg update in progress
             self.status.set('busy', 1)


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to