Update of /cvsroot/freevo/freevo/src/tv/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv28425/src/tv/plugins
Modified Files:
generic_record.py ivtv_basic_tv.py mplayer.py timeshift.py
tvtime.py
Log Message:
Put logfiles into LOGDIR not $FREEVO_STARTDIR because this variable
doesn't exist anymore.
Index: generic_record.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/generic_record.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** generic_record.py 23 Aug 2003 12:51:43 -0000 1.6
--- generic_record.py 3 Sep 2003 17:54:38 -0000 1.7
***************
*** 11,14 ****
--- 11,18 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.7 2003/09/03 17:54:38 dischi
+ # Put logfiles into LOGDIR not $FREEVO_STARTDIR because this variable
+ # doesn't exist anymore.
+ #
# Revision 1.6 2003/08/23 12:51:43 dischi
# removed some old CVS log messages
***************
*** 99,105 ****
def __init__(self, app):
if DEBUG:
! startdir = os.environ['FREEVO_STARTDIR']
! fname_out = os.path.join(startdir, 'recorder_stdout.log')
! fname_err = os.path.join(startdir, 'recorder_stderr.log')
try:
self.log_stdout = open(fname_out, 'a')
--- 103,108 ----
def __init__(self, app):
if DEBUG:
! fname_out = os.path.join(config.LOGDIR, 'recorder_stdout.log')
! fname_err = os.path.join(config.LOGDIR, 'recorder_stderr.log')
try:
self.log_stdout = open(fname_out, 'a')
Index: ivtv_basic_tv.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/ivtv_basic_tv.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** ivtv_basic_tv.py 1 Sep 2003 19:46:03 -0000 1.9
--- ivtv_basic_tv.py 3 Sep 2003 17:54:38 -0000 1.10
***************
*** 13,16 ****
--- 13,20 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.10 2003/09/03 17:54:38 dischi
+ # Put logfiles into LOGDIR not $FREEVO_STARTDIR because this variable
+ # doesn't exist anymore.
+ #
# Revision 1.9 2003/09/01 19:46:03 dischi
# add menuw to eventhandler, it may be needed
***************
*** 279,285 ****
def __init__(self, app):
if config.MPLAYER_DEBUG:
! startdir = os.environ['FREEVO_STARTDIR']
! fname_out = os.path.join(startdir, 'mplayer_stdout.log')
! fname_err = os.path.join(startdir, 'mplayer_stderr.log')
try:
self.log_stdout = open(fname_out, 'a')
--- 283,288 ----
def __init__(self, app):
if config.MPLAYER_DEBUG:
! fname_out = os.path.join(config.LOGDIR, 'mplayer_stdout.log')
! fname_err = os.path.join(config.LOGDIR, 'mplayer_stderr.log')
try:
self.log_stdout = open(fname_out, 'a')
Index: mplayer.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/mplayer.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** mplayer.py 2 Sep 2003 20:29:53 -0000 1.18
--- mplayer.py 3 Sep 2003 17:54:38 -0000 1.19
***************
*** 10,13 ****
--- 10,17 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.19 2003/09/03 17:54:38 dischi
+ # Put logfiles into LOGDIR not $FREEVO_STARTDIR because this variable
+ # doesn't exist anymore.
+ #
# Revision 1.18 2003/09/02 20:29:53 dischi
# only use mixer if we have one
***************
*** 318,324 ****
def __init__(self, app):
if config.MPLAYER_DEBUG:
! startdir = os.environ['FREEVO_STARTDIR']
! fname_out = os.path.join(startdir, 'mplayer_stdout.log')
! fname_err = os.path.join(startdir, 'mplayer_stderr.log')
try:
self.log_stdout = open(fname_out, 'a')
--- 322,327 ----
def __init__(self, app):
if config.MPLAYER_DEBUG:
! fname_out = os.path.join(config.LOGDIR, 'mplayer_stdout.log')
! fname_err = os.path.join(config.LOGDIR, 'mplayer_stderr.log')
try:
self.log_stdout = open(fname_out, 'a')
Index: timeshift.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/timeshift.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** timeshift.py 1 Sep 2003 19:46:03 -0000 1.11
--- timeshift.py 3 Sep 2003 17:54:38 -0000 1.12
***************
*** 10,13 ****
--- 10,17 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.12 2003/09/03 17:54:38 dischi
+ # Put logfiles into LOGDIR not $FREEVO_STARTDIR because this variable
+ # doesn't exist anymore.
+ #
# Revision 1.11 2003/09/01 19:46:03 dischi
# add menuw to eventhandler, it may be needed
***************
*** 309,315 ****
def __init__(self, app):
if config.MPLAYER_DEBUG:
! startdir = os.environ['FREEVO_STARTDIR']
! fname_out = os.path.join(startdir, 'mplayer_stdout.log')
! fname_err = os.path.join(startdir, 'mplayer_stderr.log')
try:
self.log_stdout = open(fname_out, 'a')
--- 313,318 ----
def __init__(self, app):
if config.MPLAYER_DEBUG:
! fname_out = os.path.join(config.LOGDIR, 'mplayer_stdout.log')
! fname_err = os.path.join(config.LOGDIR, 'mplayer_stderr.log')
try:
self.log_stdout = open(fname_out, 'a')
Index: tvtime.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/tvtime.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** tvtime.py 1 Sep 2003 19:46:03 -0000 1.16
--- tvtime.py 3 Sep 2003 17:54:38 -0000 1.17
***************
*** 10,13 ****
--- 10,17 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.17 2003/09/03 17:54:38 dischi
+ # Put logfiles into LOGDIR not $FREEVO_STARTDIR because this variable
+ # doesn't exist anymore.
+ #
# Revision 1.16 2003/09/01 19:46:03 dischi
# add menuw to eventhandler, it may be needed
***************
*** 298,305 ****
def __init__(self, app):
! if config.MPLAYER_DEBUG: # XXX Use MPLAYER_DEBUG for now...
! startdir = os.environ['FREEVO_STARTDIR']
! fname_out = os.path.join(startdir, 'mplayer_stdout.log')
! fname_err = os.path.join(startdir, 'mplayer_stderr.log')
try:
self.log_stdout = open(fname_out, 'a')
--- 302,308 ----
def __init__(self, app):
! if config.MPLAYER_DEBUG:
! fname_out = os.path.join(config.LOGDIR, 'tvtime_stdout.log')
! fname_err = os.path.join(config.LOGDIR, 'tvtime_stderr.log')
try:
self.log_stdout = open(fname_out, 'a')
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog