Update of /cvsroot/freevo/freevo/src/tv
In directory sc8-pr-cvs1:/tmp/cvs-serv16326
Modified Files:
ExtendedMenu_TV.py
Log Message:
Show the episode title in the description of a TV show if it's available.
Example:
---
The Simpsons
"The Parent Rap" <-- the sub-title
Bart goes before a tough judge for stealing a police car.
---
Shows without a title (called a sub-title in xmltv) are shown as they were
before. Maybe we should use this when naming the Recorded files? It would
be an inexpensive way of making sure we don't re-record the same episodes.
Index: ExtendedMenu_TV.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/ExtendedMenu_TV.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ExtendedMenu_TV.py 25 Nov 2002 01:56:03 -0000 1.2
--- ExtendedMenu_TV.py 27 Feb 2003 03:29:08 -0000 1.3
***************
*** 10,13 ****
--- 10,28 ----
# -----------------------------------------------------------------------
# $Log$
+ # 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.
+ #
+ # Example:
+ #
+ # ---
+ # The Simpsons
+ # "The Parent Rap" <-- the sub-title
+ # Bart goes before a tough judge for stealing a police car.
+ # ---
+ #
+ # Shows without a title (called a sub-title in xmltv) are shown as they were
+ # before. Maybe we should use this when naming the Recorded files? It would
+ # be an inexpensive way of making sure we don't re-record the same episodes.
+ #
# Revision 1.2 2002/11/25 01:56:03 krister
# Updated from old src tree.
***************
*** 300,304 ****
else:
prg = programs[i]
! to_info = (prg.title, prg.desc)
else:
prg = epg_types.TvProgram()
--- 315,323 ----
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()
-------------------------------------------------------
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