Update of /cvsroot/freevo/freevo/src/tv/plugins
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2990/src/tv/plugins

Modified Files:
        manual_record.py mplayer.py xine.py 
Log Message:
use kaa.epg instead of pyepg

Index: mplayer.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/mplayer.py,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -d -r1.45 -r1.46
*** mplayer.py  8 Jan 2005 15:40:54 -0000       1.45
--- mplayer.py  26 Jun 2005 10:53:00 -0000      1.46
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.46  2005/06/26 10:53:00  dischi
+ # use kaa.epg instead of pyepg
+ #
  # Revision 1.45  2005/01/08 15:40:54  dischi
  # remove TRUE, FALSE, DEBUG and HELPER
***************
*** 21,25 ****
  # Revision 1.42  2004/08/05 17:27:16  dischi
  # Major (unfinished) tv update:
! # o the epg is now taken from pyepg in lib
  # o all player should inherit from player.py
  # o VideoGroups are replaced by channels.py
--- 24,28 ----
  # Revision 1.42  2004/08/05 17:27:16  dischi
  # Major (unfinished) tv update:
! # o the epg is now taken from kaa.epg in lib
  # o all player should inherit from player.py
  # o VideoGroups are replaced by channels.py

Index: manual_record.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/manual_record.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** manual_record.py    4 Jun 2005 17:18:15 -0000       1.13
--- manual_record.py    26 Jun 2005 10:53:00 -0000      1.14
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.14  2005/06/26 10:53:00  dischi
+ # use kaa.epg instead of pyepg
+ #
  # Revision 1.13  2005/06/04 17:18:15  dischi
  # adjust to gui changes
***************
*** 24,28 ****
  # Revision 1.9  2004/08/05 17:27:16  dischi
  # Major (unfinished) tv update:
! # o the epg is now taken from pyepg in lib
  # o all player should inherit from player.py
  # o VideoGroups are replaced by channels.py
--- 27,31 ----
  # Revision 1.9  2004/08/05 17:27:16  dischi
  # Major (unfinished) tv update:
! # o the epg is now taken from kaa.epg in lib
  # o all player should inherit from player.py
  # o VideoGroups are replaced by channels.py

Index: xine.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/xine.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** xine.py     28 Dec 2004 18:07:34 -0000      1.11
--- xine.py     26 Jun 2005 10:53:00 -0000      1.12
***************
*** 14,17 ****
--- 14,20 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.12  2005/06/26 10:53:00  dischi
+ # use kaa.epg instead of pyepg
+ #
  # Revision 1.11  2004/12/28 18:07:34  dischi
  # fix for missing pyvdr
***************
*** 35,39 ****
  # Revision 1.5  2004/08/05 17:27:17  dischi
  # Major (unfinished) tv update:
! # o the epg is now taken from pyepg in lib
  # o all player should inherit from player.py
  # o VideoGroups are replaced by channels.py
--- 38,42 ----
  # Revision 1.5  2004/08/05 17:27:17  dischi
  # Major (unfinished) tv update:
! # o the epg is now taken from kaa.epg in lib
  # o all player should inherit from player.py
  # o VideoGroups are replaced by channels.py
***************
*** 83,87 ****
  from tv.player import TVPlayer
  
! import pyepg
  if config.XINE_USE_VDR:
      from vdr.vdr import VDR
--- 86,90 ----
  from tv.player import TVPlayer
  
! import kaa.epg
  if config.XINE_USE_VDR:
      from vdr.vdr import VDR
***************
*** 253,257 ****
          if event == TV_CHANNEL_UP:
              if config.XINE_USE_VDR:
!                 self.channel = pyepg.get_channel(self.channel, 1)
                  uri = self.channel.get_uri(self.channel, self.device)
                  self.vdr.svdrp.chan(String(uri))
--- 256,260 ----
          if event == TV_CHANNEL_UP:
              if config.XINE_USE_VDR:
!                 self.channel = kaa.epg.get_channel(self.channel, 1)
                  uri = self.channel.get_uri(self.channel, self.device)
                  self.vdr.svdrp.chan(String(uri))
***************
*** 260,264 ****
          if event == TV_CHANNEL_DOWN:
              if config.XINE_USE_VDR:
!                 self.channel = pyepg.get_channel(self.channel, -1)
                  uri = self.channel.get_uri(self.channel, self.device)
                  self.vdr.svdrp.chan(String(uri))
--- 263,267 ----
          if event == TV_CHANNEL_DOWN:
              if config.XINE_USE_VDR:
!                 self.channel = kaa.epg.get_channel(self.channel, -1)
                  uri = self.channel.get_uri(self.channel, self.device)
                  self.vdr.svdrp.chan(String(uri))



-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to