Update of /cvsroot/freevo/freevo/src/tv
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13473/src/tv
Modified Files:
__init__.py channels.py edit_favorite.py epg_types.py
epg_xmltv.py freq.py ivtv.py program_display.py
program_search.py record_client.py record_types.py tvguide.py
tvmenu.py v4l2.py
Log Message:
header cleanup
Index: tvguide.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/tvguide.py,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** tvguide.py 28 Jun 2004 15:56:42 -0000 1.34
--- tvguide.py 10 Jul 2004 12:33:41 -0000 1.35
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# tvguide.py - This is the Freevo TV Guide module.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# tvguide.py - This is the Freevo TV Guide module.
***************
*** 10,13 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.35 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.34 2004/06/28 15:56:42 dischi
# fix off by one error on scrolling down
***************
*** 22,51 ****
# Fix a crash.
#
- # Revision 1.30 2004/06/05 18:15:46 dischi
- # cleanup
- #
- # Revision 1.29 2004/03/19 21:03:40 dischi
- # fix tvguide context bug
- #
- # Revision 1.28 2004/03/08 19:15:14 dischi
- # fix popup input focus
- #
- # Revision 1.27 2004/02/25 17:44:30 dischi
- # add special event mapping for tvmenu
- #
- # Revision 1.26 2004/02/23 21:51:15 dischi
- # fix unicode problem
- #
- # Revision 1.25 2004/02/23 03:54:25 rshortt
- # Use ProgramItem and display_program rather than clunky popup-gui. Because
- # of this the tvguide does no longer need to extend GUIObject. For now it
- # needs to extend Item unless we make each program block into a distinctive
- # ProgramItem which may unnesseccarily increase overhead.
- #
- # Revision 1.24 2004/02/16 18:10:54 outlyer
- # Patch from James A. Laska to make the TV Guide behave intuitively when
- # clicking on a future program. As you would expect, it now pops up the record
- # dialog.
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 25,28 ----
***************
*** 68,72 ****
#
# ----------------------------------------------------------------------- */
! #endif
import os
--- 45,49 ----
#
# ----------------------------------------------------------------------- */
!
import os
Index: record_types.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/record_types.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** record_types.py 1 Jul 2004 19:06:41 -0000 1.13
--- record_types.py 10 Jul 2004 12:33:41 -0000 1.14
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# record_types.py - Some classes that are important to recording.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# record_types.py - Some classes that are important to recording.
***************
*** 10,13 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.14 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.13 2004/07/01 19:06:41 dischi
# fix unicode crash in debug
***************
*** 16,28 ****
# Small cleanup, use config.DEBUG.
#
- # Revision 1.11 2004/02/22 06:23:51 gsbarbieri
- # Unicode support: name could be an unicode object and unicode doesn't provide
- # translate() method.
- #
- # Revision 1.10 2004/01/09 19:43:56 outlyer
- # Was that \x0 supposed to be there? If so, sorry. I didn't think it was
- # supposed to be there and it was causing warnings in the recordserver
- # and the OSD interface.
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 19,22 ----
***************
*** 45,49 ****
#
# ----------------------------------------------------------------------- */
! #endif
import sys, time, os, string
--- 39,43 ----
#
# ----------------------------------------------------------------------- */
!
import sys, time, os, string
Index: program_display.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/program_display.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** program_display.py 23 Jun 2004 12:18:54 -0000 1.38
--- program_display.py 10 Jul 2004 12:33:41 -0000 1.39
***************
*** 1,6 ****
! #!/usr/bin/env python
! #-----------------------------------------------------------------------
# ProgramDisplay - Information and actions for TvPrograms.
! #-----------------------------------------------------------------------
# $Id$
#
--- 1,6 ----
! # -*- coding: iso-8859-1 -*-
! # -----------------------------------------------------------------------
# ProgramDisplay - Information and actions for TvPrograms.
! # -----------------------------------------------------------------------
# $Id$
#
***************
*** 8,13 ****
# Notes:
#
! #-----------------------------------------------------------------------
# $Log$
# Revision 1.38 2004/06/23 12:18:54 outlyer
# More crashe fixes for assumed variables that don't exist.
--- 8,16 ----
# Notes:
#
! # -----------------------------------------------------------------------
# $Log$
+ # Revision 1.39 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.38 2004/06/23 12:18:54 outlyer
# More crashe fixes for assumed variables that don't exist.
***************
*** 17,55 ****
#
# Revision 1.36 2004/05/27 01:04:37 mikeruelle
! # fix bug with search for more like this. need better stack pop but this fixes
things for now.
! #
! # Revision 1.35 2004/03/13 22:29:39 dischi
! # improve input select dialog
! #
! # Revision 1.34 2004/03/13 20:14:12 rshortt
! # Add 'add to favorites' capabilities. This needs more work and error handling
still.
! # 'remove from favorites' isn't implimented yet either.
! #
! # Revision 1.33 2004/03/13 03:28:06 rshortt
! # More favorites support... almost there!
! #
! # Revision 1.32 2004/02/24 05:08:11 rshortt
! # Differentiate between name and title.
! #
! # Revision 1.31 2004/02/24 04:42:03 rshortt
! # Add FavoriteItem class here but we could find a better place for them both.
! # One possability is merging the types in here, epg_types, and record_types
! # into one module.
! #
! # Revision 1.30 2004/02/23 23:34:10 rshortt
! # More acurate handling of when to display schedule or remove options.
! #
! # Revision 1.29 2004/02/23 21:41:10 dischi
! # start some unicode fixes, still not working every time
! #
! # Revision 1.28 2004/02/23 08:22:10 gsbarbieri
! # i18n: help translators job.
! #
! # Revision 1.27 2004/02/23 03:43:23 rshortt
! # Ditch the popup-gui style in favour of a faster and more freevo-like menu.
! #
! #
#
! #-----------------------------------------------------------------------
#
# Freevo - A Home Theater PC framework
--- 20,27 ----
#
# Revision 1.36 2004/05/27 01:04:37 mikeruelle
! # fix bug with search for more like this. need better stack pop but this
! # fixes things for now.
#
! # -----------------------------------------------------------------------
#
# Freevo - A Home Theater PC framework
***************
*** 73,76 ****
--- 45,49 ----
# ----------------------------------------------------------------------
+
import time, traceback
from time import gmtime, strftime
Index: __init__.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/__init__.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** __init__.py 6 Dec 2003 16:52:11 -0000 1.9
--- __init__.py 10 Jul 2004 12:33:41 -0000 1.10
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# tv.py - This is the Freevo TV plugin.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# tv.py - This is the Freevo TV plugin.
***************
*** 10,32 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.9 2003/12/06 16:52:11 dischi
# only import stuff we need
#
- # Revision 1.8 2003/11/30 14:41:10 dischi
- # use new Mimetype plugin interface
- #
- # Revision 1.7 2003/09/05 02:48:12 rshortt
- # Removing src/tv and src/www from PYTHONPATH in the freevo script. Therefore any
module that was imported from src/tv/ or src/www that didn't have a leading 'tv.' or
'www.' needed it added. Also moved tv/tv.py to tv/tvmenu.py to avoid namespace
conflicts.
- #
- # Revision 1.6 2003/08/24 06:58:18 gsbarbieri
- # Partial support for "out" icons in main menu.
- # The missing part is in listing_area, which have other changes to
- # allow box_under_icon feature (I mailed the list asking for opinions on
- # that)
- #
- # Revision 1.5 2003/08/23 12:51:43 dischi
- # removed some old CVS log messages
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 10,19 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.10 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.9 2003/12/06 16:52:11 dischi
# only import stuff we need
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 49,53 ****
#
# ----------------------------------------------------------------------- */
- #endif
--- 36,39 ----
Index: record_client.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/record_client.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** record_client.py 13 Mar 2004 20:11:36 -0000 1.18
--- record_client.py 10 Jul 2004 12:33:41 -0000 1.19
***************
*** 1,5 ****
! #!/usr/bin/env python
!
! #if 0 /*
# -----------------------------------------------------------------------
# record_client.py - A client interface to the Freevo recording server.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# record_client.py - A client interface to the Freevo recording server.
***************
*** 12,15 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.19 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.18 2004/03/13 20:11:36 rshortt
# Some quick debug for addEditedFavorite()
***************
*** 18,54 ****
# Lets see traceback and exception. We should clean this file up further.
#
- # Revision 1.16 2004/03/08 19:15:49 dischi
- # use our marmalade
- #
- # Revision 1.15 2004/03/05 20:49:11 rshortt
- # Add support for searching by movies only. This uses the date field in xmltv
- # which is what tv_imdb uses and is really acurate. I added a date property
- # to TvProgram for this and updated findMatches in the record_client and
- # recordserver.
- #
- # Revision 1.14 2004/02/23 21:41:10 dischi
- # start some unicode fixes, still not working every time
- #
- # Revision 1.13 2004/02/23 08:22:10 gsbarbieri
- # i18n: help translators job.
- #
- # Revision 1.12 2004/01/09 02:07:05 rshortt
- # Marmalade name and title for favorites. Thanks Matthieu Weber.
- #
- # Revision 1.11 2003/11/30 16:30:58 rshortt
- # Convert some tv variables to new format (TV_).
- #
- # Revision 1.10 2003/11/16 17:38:48 dischi
- # i18n patch from David Sagnol
- #
- # Revision 1.9 2003/09/05 02:32:46 rshortt
- # Getting rid of the hack to strip out "tv." because it is now safe to import the tv
namespace.
- #
- # This hack also messed up any new xmltv data that had "tv." in a channel id.
- #
- # Revision 1.8 2003/08/23 12:51:43 dischi
- # removed some old CVS log messages
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 19,22 ----
***************
*** 71,75 ****
#
# ----------------------------------------------------------------------- */
! #endif
import config
--- 39,43 ----
#
# ----------------------------------------------------------------------- */
!
import config
Index: epg_types.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/epg_types.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** epg_types.py 1 Jul 2004 22:49:49 -0000 1.19
--- epg_types.py 10 Jul 2004 12:33:41 -0000 1.20
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# epg_types.py - This file contains the types for the Freevo Electronic
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# epg_types.py - This file contains the types for the Freevo Electronic
***************
*** 11,14 ****
--- 11,17 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.20 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.19 2004/07/01 22:49:49 rshortt
# Unicode fix.
***************
*** 23,61 ****
# recordserver.
#
- # Revision 1.16 2004/02/23 21:41:10 dischi
- # start some unicode fixes, still not working every time
- #
- # Revision 1.15 2004/02/23 20:05:36 dischi
- # increase EPG_VERSION because of the unicode fixes
- #
- # Revision 1.14 2004/02/23 19:59:34 dischi
- # unicode fixes
- #
- # Revision 1.13 2004/02/22 06:18:20 gsbarbieri
- # Better unicode support.
- #
- # Revision 1.12 2003/10/18 09:32:40 dischi
- # add var scheduled to TvProgram
- #
- # Revision 1.11 2003/09/07 13:36:43 dischi
- # bugfix for German tv movie listing
- #
- # Revision 1.10 2003/08/28 18:02:22 dischi
- # fix guide correction for unsorted listings
- #
- # Revision 1.9 2003/08/24 18:28:39 mikeruelle
- # add space to store ratings and categories
- #
- # Revision 1.8 2003/08/24 17:08:15 dischi
- # added attr date and use config formatstrings
- #
- # Revision 1.7 2003/08/23 12:51:43 dischi
- # removed some old CVS log messages
- #
- # Revision 1.6 2003/08/16 18:41:10 dischi
- # Fix overlapping programs. The German listing sometimes has a program with
- # a wrong stop time so that is overlapps the next entries (mostly the wrong
- # entry stops at the end of the day)
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 26,29 ----
***************
*** 78,82 ****
#
# ----------------------------------------------------------------------- */
- #endif
--- 46,49 ----
Index: channels.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/channels.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** channels.py 5 Mar 2004 04:04:10 -0000 1.17
--- channels.py 10 Jul 2004 12:33:41 -0000 1.18
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# channels.py - Freevo module to handle channel changing.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# channels.py - Freevo module to handle channel changing.
***************
*** 10,49 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.17 2004/03/05 04:04:10 rshortt
# Only call setChannel on an external tuner plugin if we really have one.
#
- # Revision 1.16 2004/02/23 05:40:35 gsbarbieri
- # BUGFIX: fix bug printing strings with 'chan', a unicode object.
- # i18n: Help translators job.
- #
- # Revision 1.15 2004/02/22 21:22:01 rshortt
- # Make sure chan is a string and add better error handling for clist and freq.
- #
- # Revision 1.14 2004/02/19 04:57:57 gsbarbieri
- # Support Web Interface i18n.
- # To use this, I need to get the gettext() translations in unicode, so some changes
are required to files that use "print _('string')", need to make them "print
String(_('string'))".
- #
- # Revision 1.13 2004/02/05 14:23:50 outlyer
- # Patch from Viggo Fredriksen
- #
- # o Move to ChildApp2 for mplayer TV plugin
- # o Channel changing via the number pad on the remote
- #
- # Revision 1.12 2004/02/04 14:11:19 outlyer
- # Cleanup and fixup:
- #
- # o Now uses the mplayer OSD to show channel information when changing channels,
- # or you press the 'display' key.
- # o Removed many old CVS log messages
- # o Removed many debug-related 'print' statements
- #
- # Revision 1.11 2003/12/31 16:08:08 rshortt
- # Use a fifth field in TV_CHANNELS to specify an optional VideoGroup
- # (VIDEO_GROUPS index). Also fix a frequency bug in channels.py.
- #
- # Revision 1.10 2003/11/25 16:32:33 rshortt
- # Make plugin_external_tuner work again.
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 10,19 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.18 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.17 2004/03/05 04:04:10 rshortt
# Only call setChannel on an external tuner plugin if we really have one.
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 66,70 ****
#
# ----------------------------------------------------------------------- */
! #endif
import config, plugin
--- 36,40 ----
#
# ----------------------------------------------------------------------- */
!
import config, plugin
Index: ivtv.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/ivtv.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** ivtv.py 31 Dec 2003 16:05:34 -0000 1.12
--- ivtv.py 10 Jul 2004 12:33:41 -0000 1.13
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# ivtv.py - Python interface to ivtv based capture cards.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# ivtv.py - Python interface to ivtv based capture cards.
***************
*** 10,13 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.13 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.12 2003/12/31 16:05:34 rshortt
# No longer override setstd because the mspSetMatrix() call was only to work
***************
*** 15,28 ****
# now taken care of by the VideoGroup and channels.py.
#
- # Revision 1.11 2003/11/30 16:30:58 rshortt
- # Convert some tv variables to new format (TV_).
- #
- # Revision 1.10 2003/09/05 02:48:12 rshortt
- # Removing src/tv and src/www from PYTHONPATH in the freevo script. Therefore any
module that was imported from src/tv/ or src/www that didn't have a leading 'tv.' or
'www.' needed it added. Also moved tv/tv.py to tv/tvmenu.py to avoid namespace
conflicts.
- #
- # Revision 1.9 2003/08/23 12:51:43 dischi
- # removed some old CVS log messages
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 18,21 ----
***************
*** 45,49 ****
#
# ----------------------------------------------------------------------- */
! #endif
import string, struct, fcntl, time
--- 38,42 ----
#
# ----------------------------------------------------------------------- */
!
import string, struct, fcntl, time
Index: tvmenu.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/tvmenu.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** tvmenu.py 24 Feb 2004 19:34:19 -0000 1.16
--- tvmenu.py 10 Jul 2004 12:33:41 -0000 1.17
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# tv.py - This is the Freevo TV module.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# tv.py - This is the Freevo TV module.
***************
*** 10,13 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.17 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.16 2004/02/24 19:34:19 dischi
# make it possible to start a plugin guide
***************
*** 16,39 ****
# Make 'View Favorites' a menu based plugin, still incomplete.
#
- # Revision 1.14 2004/02/23 03:51:22 rshortt
- # Remove scheduled recordings because it is now a plugin. Also comment out
- # view favorites because it is next as well as search because search is now
- # menu and item based, we just need a text input for the skin based UI.
- # View/Edit favorites and search will be plugins as well.
- #
- # Revision 1.13 2004/02/04 14:11:18 outlyer
- # Cleanup and fixup:
- #
- # o Now uses the mplayer OSD to show channel information when changing channels,
- # or you press the 'display' key.
- # o Removed many old CVS log messages
- # o Removed many debug-related 'print' statements
- #
- # Revision 1.12 2004/01/11 15:44:01 dischi
- # changed menu display type to 'x main menu'
- #
- # Revision 1.11 2004/01/09 02:10:00 rshortt
- # Patch from Matthieu Weber to revive add/edit favorites support from the
- # TV interface.
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 19,22 ----
***************
*** 56,60 ****
#
# ----------------------------------------------------------------------- */
- #endif
--- 39,42 ----
Index: v4l2.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/v4l2.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** v4l2.py 13 Jan 2004 15:08:22 -0000 1.14
--- v4l2.py 10 Jul 2004 12:33:42 -0000 1.15
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# v4l2.py - V4L2 python interface.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# v4l2.py - V4L2 python interface.
***************
*** 10,39 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.14 2004/01/13 15:08:22 outlyer
# Removed an extraneous 'print'
#
- # Revision 1.13 2003/10/11 15:09:41 rshortt
- # Make sure channel is a string.
- #
- # Revision 1.12 2003/10/08 03:29:22 outlyer
- # Just move all FutureWarnings to config. This removes all the silly hex
- # constant warnings.
- #
- # Revision 1.11 2003/10/08 03:14:17 outlyer
- # Filter out annoying warnings in Python >= 2.3
- #
- # Revision 1.10 2003/09/25 03:00:45 outlyer
- # Rollback...
- #
- # Revision 1.8 2003/09/18 00:50:12 rshortt
- # FutureWarning isn't a class of python 2.2, is there another one we can use? This
one crashes.
- #
- # Revision 1.7 2003/09/11 14:16:21 outlyer
- # Filter out the warnings about the ioctl's. We can't do much with it just yet.
- #
- # Revision 1.6 2003/08/23 12:51:43 dischi
- # removed some old CVS log messages
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 10,19 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.15 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.14 2004/01/13 15:08:22 outlyer
# Removed an extraneous 'print'
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 56,60 ****
#
# ----------------------------------------------------------------------- */
! #endif
import string
--- 36,40 ----
#
# ----------------------------------------------------------------------- */
!
import string
Index: freq.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/freq.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** freq.py 28 May 2003 23:32:49 -0000 1.1
--- freq.py 10 Jul 2004 12:33:41 -0000 1.2
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# freq.py - Video Channel Frequencies
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# freq.py - Video Channel Frequencies
***************
*** 10,18 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.1 2003/05/28 23:32:49 rshortt
# V4L device control by Thomas Schueppel.
#
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 10,19 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.2 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.1 2003/05/28 23:32:49 rshortt
# V4L device control by Thomas Schueppel.
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 35,39 ****
#
# ----------------------------------------------------------------------- */
- #endif
--- 36,39 ----
Index: program_search.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/program_search.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** program_search.py 23 Feb 2004 08:22:10 -0000 1.14
--- program_search.py 10 Jul 2004 12:33:41 -0000 1.15
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# ProgramSearch - a popup that allows the user to search the EPG
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# ProgramSearch - a popup that allows the user to search the EPG
***************
*** 12,15 ****
--- 12,18 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.15 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.14 2004/02/23 08:22:10 gsbarbieri
# i18n: help translators job.
***************
*** 18,30 ****
# use eventhandler from letter box
#
- # Revision 1.12 2004/02/18 21:55:11 dischi
- # update to new gui code
- #
- # Revision 1.11 2003/11/16 17:38:48 dischi
- # i18n patch from David Sagnol
- #
- # Revision 1.10 2003/10/20 01:41:55 rshortt
- # Moving tv_util from src/tv/ to src/util/.
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 21,24 ----
***************
*** 47,51 ****
#
# ----------------------------------------------------------------------- */
! #endif
import time
--- 41,45 ----
#
# ----------------------------------------------------------------------- */
!
import time
Index: epg_xmltv.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/epg_xmltv.py,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** epg_xmltv.py 23 Jun 2004 20:22:19 -0000 1.51
--- epg_xmltv.py 10 Jul 2004 12:33:41 -0000 1.52
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# epg_xmltv.py - Freevo Electronic Program Guide module for XMLTV
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# epg_xmltv.py - Freevo Electronic Program Guide module for XMLTV
***************
*** 10,13 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.52 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.51 2004/06/23 20:22:19 dischi
# fix popup crash
***************
*** 16,54 ****
# Add ratings and advisories.
#
- # Revision 1.49 2004/03/16 01:04:18 rshortt
- # Changes to stop two processes tripping over the creation of the epg pickle file.
- #
- # Revision 1.48 2004/03/13 22:28:41 dischi
- # better handling of bad programs
- #
- # Revision 1.47 2004/03/05 20:49:11 rshortt
- # Add support for searching by movies only. This uses the date field in xmltv
- # which is what tv_imdb uses and is really acurate. I added a date property
- # to TvProgram for this and updated findMatches in the record_client and
- # recordserver.
- #
- # Revision 1.46 2004/02/23 21:41:10 dischi
- # start some unicode fixes, still not working every time
- #
- # Revision 1.45 2004/02/22 06:22:16 gsbarbieri
- # Handle info in unicode (don't need to convert to string anymore).
- # People envolved to Record & Favorites, please test it and ensure it works.
- #
- # Revision 1.44 2004/02/19 04:57:57 gsbarbieri
- # Support i18n.
- #
- # Revision 1.43 2004/02/09 20:14:06 dischi
- # add verbose flag
- #
- # Revision 1.42 2004/02/06 20:54:26 dischi
- # fix for undefined timezone
- #
- # Revision 1.41 2004/02/05 19:26:42 dischi
- # fix unicode handling
- #
- # Revision 1.40 2003/12/31 16:08:08 rshortt
- # Use a fifth field in TV_CHANNELS to specify an optional VideoGroup
- # (VIDEO_GROUPS index). Also fix a frequency bug in channels.py.
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 19,22 ----
***************
*** 71,75 ****
#
# ----------------------------------------------------------------------- */
! #endif
import sys
--- 39,43 ----
#
# ----------------------------------------------------------------------- */
!
import sys
Index: edit_favorite.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/edit_favorite.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** edit_favorite.py 6 Jun 2004 07:23:16 -0000 1.12
--- edit_favorite.py 10 Jul 2004 12:33:41 -0000 1.13
***************
*** 1,6 ****
! #!/usr/bin/env python
! #-----------------------------------------------------------------------
# EditFavorite -
! #-----------------------------------------------------------------------
# $Id$
#
--- 1,6 ----
! # -*- coding: iso-8859-1 -*-
! # -----------------------------------------------------------------------
# EditFavorite -
! # -----------------------------------------------------------------------
# $Id$
#
***************
*** 8,48 ****
# Notes:
#
! #-----------------------------------------------------------------------
# $Log$
# Revision 1.12 2004/06/06 07:23:16 dischi
# do not import tv.xxx, use xxx, we are in tv
#
! # Revision 1.11 2004/02/23 21:41:10 dischi
! # start some unicode fixes, still not working every time
! #
! # Revision 1.10 2004/02/23 08:22:10 gsbarbieri
! # i18n: help translators job.
! #
! # Revision 1.9 2004/02/19 04:57:57 gsbarbieri
! # Support i18n.
! #
! # Revision 1.8 2004/02/18 21:55:11 dischi
! # update to new gui code
! #
! # Revision 1.7 2004/01/09 19:35:49 outlyer
! # Inherit DEBUG parameter from config, move some prints into DEBUG
! #
! # Revision 1.6 2004/01/09 02:10:00 rshortt
! # Patch from Matthieu Weber to revive add/edit favorites support from the
! # TV interface.
! #
! # Revision 1.5 2003/11/16 17:38:48 dischi
! # i18n patch from David Sagnol
! #
! # Revision 1.4 2003/09/05 02:48:12 rshortt
! # Removing src/tv and src/www from PYTHONPATH in the freevo script. Therefore any
module that was imported from src/tv/ or src/www that didn't have a leading 'tv.' or
'www.' needed it added. Also moved tv/tv.py to tv/tvmenu.py to avoid namespace
conflicts.
! #
! # Revision 1.3 2003/09/01 19:46:02 dischi
! # add menuw to eventhandler, it may be needed
! #
! # Revision 1.2 2003/08/23 12:51:43 dischi
! # removed some old CVS log messages
! #
! #-----------------------------------------------------------------------
#
# Freevo - A Home Theater PC framework
--- 8,20 ----
# Notes:
#
! # -----------------------------------------------------------------------
# $Log$
+ # Revision 1.13 2004/07/10 12:33:41 dischi
+ # header cleanup
+ #
# Revision 1.12 2004/06/06 07:23:16 dischi
# do not import tv.xxx, use xxx, we are in tv
#
! # -----------------------------------------------------------------------
#
# Freevo - A Home Theater PC framework
***************
*** 66,69 ****
--- 38,42 ----
# ----------------------------------------------------------------------
+
from time import gmtime, strftime
-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog