Update of /cvsroot/freevo/freevo/src/tv/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv19229

Modified Files:
        tvtime.py 
Log Message:
adding numeric channel changing and previous channel support

Index: tvtime.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/tvtime.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** tvtime.py   22 Oct 2003 00:01:38 -0000      1.19
--- tvtime.py   22 Oct 2003 17:21:28 -0000      1.20
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.20  2003/10/22 17:21:28  mikeruelle
+ # adding numeric channel changing and previous channel support
+ #
  # Revision 1.19  2003/10/22 00:01:38  mikeruelle
  # found another 4suite probelm, gonna look at minidom instead
***************
*** 533,536 ****
--- 536,548 ----
              return True
          
+         elif event == em.BUTTON:
+           if re.search('^\d+$', event.arg) and int(event.arg) in range(10):
+                 self.thread.app.write('CHANNEL_%s\n' % event.arg)
+                 return True
+             if event.arg == 'PREV_CH':
+                 self.thread.app.write('CHANNEL_PREV\n')
+                 return True
+               
+ 
          return False
          




-------------------------------------------------------
This SF.net email is sponsored by OSDN developer relations
Here's your chance to show off your extensive product knowledge
We want to know what you know. Tell us and you have a chance to win $100
http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to