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

Modified Files:
        ExtendedMenu_TV.py 
Log Message:
Turns out I needed to add the sub-title thing to each of the different
direction events or it would only show up when I was going left. 


Index: ExtendedMenu_TV.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/ExtendedMenu_TV.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ExtendedMenu_TV.py  27 Feb 2003 03:29:08 -0000      1.3
--- ExtendedMenu_TV.py  27 Feb 2003 03:40:40 -0000      1.4
***************
*** 10,13 ****
--- 10,17 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.4  2003/02/27 03:40:40  outlyer
+ # Turns out I needed to add the sub-title thing to each of the different
+ # direction events or it would only show up when I was going left.
+ #
  # Revision 1.3  2003/02/27 03:29:08  outlyer
  # Show the episode title in the description of a TV show if it's available.
***************
*** 362,367 ****
              else:
                  prg = programs[i]
! 
!             to_info = (prg.title, prg.desc)
          else:
              prg = epg_types.TvProgram()
--- 366,374 ----
              else:
                  prg = programs[i]
!             if prg.sub_title:
!                 procdesc = '"' + prg.sub_title + '"\n' + prg.desc
!             else:
!                 procdesc = prg.desc
!             to_info = (prg.title, procdesc)
          else:
              prg = epg_types.TvProgram()
***************
*** 421,425 ****
                  
              prg = programs[i]
!             to_info = (prg.title, prg.desc)
          else:
              prg = epg_types.TvProgram()
--- 428,437 ----
                  
              prg = programs[i]
!             if prg.sub_title:
!                 procdesc = '"' + prg.sub_title + '"\n' + prg.desc
!             else:
!                 procdesc = prg.desc
!             
!             to_info = (prg.title, procdesc)
          else:
              prg = epg_types.TvProgram()
***************
*** 482,486 ****
  
              prg = programs[i]
!             to_info = (prg.title, prg.desc)
          else:
              prg = epg_types.TvProgram()
--- 494,503 ----
  
              prg = programs[i]
!             if prg.sub_title:
!                 procdesc = '"' + prg.sub_title + '"\n' + prg.desc
!             else:
!                 procdesc = prg.desc
!             
!             to_info = (prg.title, procdesc)
          else:
              prg = epg_types.TvProgram()
***************
*** 533,537 ****
                  
              prg = programs[i]
!             to_info = (prg.title, prg.desc)
          else:
              prg = epg_types.TvProgram()
--- 550,559 ----
                  
              prg = programs[i]
!             if prg.sub_title:
!                 procdesc = '"' + prg.sub_title + '"\n' + prg.desc
!             else:
!                 procdesc = prg.desc
!             
!             to_info = (prg.title, procdesc)
          else:
              prg = epg_types.TvProgram()
***************
*** 596,600 ****
                  
              prg = programs[i]
!             to_info = (prg.title, prg.desc)
          else:
              prg = epg_types.TvProgram()
--- 618,627 ----
                  
              prg = programs[i]
!             if prg.sub_title:
!                 procdesc = '"' + prg.sub_title + '"\n' + prg.desc
!             else:
!                 procdesc = prg.desc
!             
!             to_info = (prg.title, procdesc)
          else:
              prg = epg_types.TvProgram()




-------------------------------------------------------
This SF.net email is sponsored by: Scholarships for Techies!
Can't afford IT training? All 2003 ictp students receive scholarships.
Get hands-on training in Microsoft, Cisco, Sun, Linux/UNIX, and more.
www.ictp.com/training/sourceforge.asp
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to