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

Modified Files:
        timeshift.py generic_record.py 
Log Message:
Inherit config.DEBUG


Index: timeshift.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/timeshift.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** timeshift.py        28 Nov 2003 20:23:43 -0000      1.13
--- timeshift.py        9 Jan 2004 19:37:48 -0000       1.14
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.14  2004/01/09 19:37:48  outlyer
+ # Inherit config.DEBUG
+ #
  # Revision 1.13  2003/11/28 20:23:43  dischi
  # renamed more config variables
***************
*** 64,68 ****
  
  # Set to 1 for debug output
! DEBUG = 1
  
  TRUE = 1
--- 67,71 ----
  
  # Set to 1 for debug output
! DEBUG = config.DEBUG
  
  TRUE = 1

Index: generic_record.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/generic_record.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** generic_record.py   5 Dec 2003 02:26:34 -0000       1.13
--- generic_record.py   9 Jan 2004 19:37:48 -0000       1.14
***************
*** 11,14 ****
--- 11,17 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.14  2004/01/09 19:37:48  outlyer
+ # Inherit config.DEBUG
+ #
  # Revision 1.13  2003/12/05 02:26:34  rshortt
  # Add some new cl_options: frequency, base_filename, title, and sub-title.
***************
*** 121,125 ****
          self.thread.mode_flag.set()
          
!         print('Recorder::Record: %s' % self.rec_command)
          
          
--- 124,128 ----
          self.thread.mode_flag.set()
          
!         if DEBUG: print('Recorder::Record: %s' % self.rec_command)
          
          
***************
*** 171,175 ****
      def run(self):
          while 1:
!             print('Record_Thread::run: mode=%s' % self.mode)
              if self.mode == 'idle':
                  self.mode_flag.wait()
--- 174,178 ----
      def run(self):
          while 1:
!             if DEBUG: print('Record_Thread::run: mode=%s' % self.mode)
              if self.mode == 'idle':
                  self.mode_flag.wait()
***************
*** 177,181 ****
                  
              elif self.mode == 'record':
!                 print('Record_Thread::run: cmd=%s' % self.command)
  
                # The FreeBSD bsdbt848 driver does not support the adevice
--- 180,184 ----
                  
              elif self.mode == 'record':
!                 if DEBUG: print('Record_Thread::run: cmd=%s' % self.command)
  
                # The FreeBSD bsdbt848 driver does not support the adevice
***************
*** 194,198 ****
                      time.sleep(0.5)
  
!                 print('Record_Thread::run: past wait()!!')
  
                  rc.post_event(Event(OS_EVENT_KILL, (self.app.child.pid, 15)))
--- 197,201 ----
                      time.sleep(0.5)
  
!                 if DEBUG: print('Record_Thread::run: past wait()!!')
  
                  rc.post_event(Event(OS_EVENT_KILL, (self.app.child.pid, 15)))




-------------------------------------------------------
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to