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

Modified Files:
        df.py icecast.py idlebar.py joy.py mediamenu.py mixer.py 
        rom_drives.py usb.py 
Log Message:
removed some old CVS log messages

Index: df.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/plugins/df.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** df.py       15 Jul 2003 16:52:47 -0000      1.4
--- df.py       23 Aug 2003 12:51:42 -0000      1.5
***************
*** 13,27 ****
  # -----------------------------------------------------------------------
  # $Log$
! # Revision 1.4  2003/07/15 16:52:47  dischi
! # removed some debug
! #
! # Revision 1.3  2003/07/05 17:00:01  dischi
! # added doc
! #
! # Revision 1.2  2003/05/28 17:58:48  dischi
! # moved freespace and totalspace from df.py to util.py
! #
! # Revision 1.1  2003/05/28 17:51:28  dischi
! # added df item plugin for directories from den_RDC
  #
  #
--- 13,18 ----
  # -----------------------------------------------------------------------
  # $Log$
! # Revision 1.5  2003/08/23 12:51:42  dischi
! # removed some old CVS log messages
  #
  #

Index: icecast.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/plugins/icecast.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** icecast.py  1 Jul 2003 21:47:34 -0000       1.4
--- icecast.py  23 Aug 2003 12:51:42 -0000      1.5
***************
*** 1,2 ****
--- 1,41 ----
+ #if 0 /*
+ # -----------------------------------------------------------------------
+ # icecast.py - icecaset plugin for freevo
+ # -----------------------------------------------------------------------
+ # $Id$
+ #
+ # Notes: 
+ #
+ # Todo:        
+ #
+ # -----------------------------------------------------------------------
+ # $Log$
+ # Revision 1.5  2003/08/23 12:51:42  dischi
+ # removed some old CVS log messages
+ #
+ #
+ # -----------------------------------------------------------------------
+ # Freevo - A Home Theater PC framework
+ # Copyright (C) 2002 Krister Lagerstrom, et al. 
+ # Please see the file freevo/Docs/CREDITS for a complete list of authors.
+ #
+ # This program is free software; you can redistribute it and/or modify
+ # it under the terms of the GNU General Public License as published by
+ # the Free Software Foundation; either version 2 of the License, or
+ # (at your option) any later version.
+ #
+ # This program is distributed in the hope that it will be useful, but
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MER-
+ # CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
+ # Public License for more details.
+ #
+ # You should have received a copy of the GNU General Public License along
+ # with this program; if not, write to the Free Software Foundation, Inc.,
+ # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ #
+ # ----------------------------------------------------------------------- */
+ #endif
+ 
+ 
  import os
  import config
***************
*** 21,25 ****
              # start icecast
              mycmd = os.path.basename(config.ICECAST_CMD)
!             self.icecast_pid = os.spawnl(os.P_NOWAIT, config.ICECAST_CMD, mycmd, 
'-d', config.ICECAST_CONF_DIR)
              time.sleep(1)
              # start ices
--- 60,65 ----
              # start icecast
              mycmd = os.path.basename(config.ICECAST_CMD)
!             self.icecast_pid = os.spawnl(os.P_NOWAIT, config.ICECAST_CMD,
!                                          mycmd, '-d', config.ICECAST_CONF_DIR)
              time.sleep(1)
              # start ices
***************
*** 44,48 ****
              try:
                  mycmd = os.path.basename(config.ICES_CMD)
!                 newm3ufile = file(os.path.join(config.FREEVO_CACHEDIR, 
'changem3u.txt'), 'rb').read()
                  if os.path.exists(os.path.join(config.FREEVO_CACHEDIR, 
'changem3u.txt')):
                      os.unlink(os.path.join(config.FREEVO_CACHEDIR, 'changem3u.txt'))
--- 84,89 ----
              try:
                  mycmd = os.path.basename(config.ICES_CMD)
!                 newm3ufile = file(os.path.join(config.FREEVO_CACHEDIR,
!                                                'changem3u.txt'), 'rb').read()
                  if os.path.exists(os.path.join(config.FREEVO_CACHEDIR, 
'changem3u.txt')):
                      os.unlink(os.path.join(config.FREEVO_CACHEDIR, 'changem3u.txt'))

Index: idlebar.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/plugins/idlebar.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** idlebar.py  22 Aug 2003 05:56:56 -0000      1.33
--- idlebar.py  23 Aug 2003 12:51:42 -0000      1.34
***************
*** 42,125 ****
  # -----------------------------------------------------------------------
  # $Log$
  # Revision 1.33  2003/08/22 05:56:56  gsbarbieri
  # Better alignment and horizontal expansion.
- #
- # Revision 1.32  2003/08/21 20:48:16  gsbarbieri
- # Corrected comment
- #
- # Revision 1.31  2003/08/16 13:12:29  dischi
- # move timeformat to plugin arg
- #
- # Revision 1.30  2003/08/16 12:57:55  outlyer
- # Added encoding
- #
- # Revision 1.29  2003/08/15 19:25:15  dischi
- # search all the share stuff in $FREEVO_SHARE now
- #
- # Revision 1.28  2003/08/05 17:54:33  dischi
- # added sensors plugin
- #
- # Revision 1.25 2003/08/5 17:00:00 den_RDC
- # added sensors
- #
- # Revision 1.27  2003/08/04 19:40:00  dischi
- # add doc
- #
- # Revision 1.26  2003/08/04 04:25:09  gsbarbieri
- # changed interface -> PluginInterface to conform with the plugin usage.
- #
- # Revision 1.25  2003/07/24 00:01:19  rshortt
- # Extending the idlebar.tv plugin with the help (and idea) of Mike Ruelle.
- # Now you may add args=(number,) to the plugin.activate for this plugin and
- # it will warn you that number of hours before your xmltv data is invalid and
- # present a more sever warning when your xmltv data is expired.
- #
- # The new icons are kind of lame so anyone feel free to spruce them up.
- #
- # Revision 1.24  2003/07/20 18:22:35  dischi
- # added patch for different temp units from Michael Ruelle
- #
- # Revision 1.23  2003/07/18 03:47:34  outlyer
- # Nasty bug that would cause a crash if you hit any remote button not used
- # by the plugin you were in. It expected menuw to be defined, else it crashed
- # hard.
- #
- # Revision 1.22  2003/07/15 17:08:21  dischi
- # o Add/update some docs
- # o show all rom drives in the bar
- # o update the bar on event IDENTIFY_MEDIA
- #
- # Revision 1.21  2003/07/12 18:52:22  dischi
- # fixed overscan bug
- #
- # Revision 1.20  2003/07/12 17:29:58  dischi
- # redraw when polling
- #
- # Revision 1.19  2003/07/12 17:17:27  dischi
- # moved idlebar to a skin plugin
- #
- # Revision 1.18  2003/07/05 14:57:07  dischi
- # the idlebar registers itself as idlebar to the plugin interface
- #
- # Revision 1.17  2003/07/04 20:14:04  outlyer
- # Fixed some confusing logic. It's still confusing, but it works now. Probably
- # need to clean this up.
- #
- # Revision 1.16  2003/07/04 19:48:18  outlyer
- # Whoops, fix path.
- #
- # Revision 1.15  2003/07/04 19:46:51  outlyer
- # Added Rich C's "holidays" plugin for the idlebar.
- #
- # Revision 1.14  2003/07/04 15:17:56  outlyer
- # New cdstatus plugin. Only tested on my machine so use with caution.
- #
- # To use it:
- # plugin.activate('idlebar.cdstatus', level=60)
- #
- # There are a couple of known problems:
- #
- #     o Only the 'last' drive is shown (last from ROM_DRIVES)
- #     o The way that cdbackup tells us we are ripping isn't so nice
  #
  # -----------------------------------------------------------------------
--- 42,50 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.34  2003/08/23 12:51:42  dischi
+ # removed some old CVS log messages
+ #
  # Revision 1.33  2003/08/22 05:56:56  gsbarbieri
  # Better alignment and horizontal expansion.
  #
  # -----------------------------------------------------------------------

Index: joy.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/plugins/joy.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** joy.py      24 Jul 2003 00:40:10 -0000      1.7
--- joy.py      23 Aug 2003 12:51:42 -0000      1.8
***************
*** 12,37 ****
  # -----------------------------------------------------------------------
  # $Log$
! # Revision 1.7  2003/07/24 00:40:10  rshortt
! # bugfix
! #
! # Revision 1.6  2003/07/20 14:57:50  rshortt
! # Set poll_interval to 0 until we pass some checks.
! #
! # Revision 1.5  2003/07/20 14:37:25  rshortt
! # Patch from Dan Eriksen that:
! # - crash when plugin is activated, but no device is specified in config
! # - bad/confusing error message
! # - treat joystick axis as bool input (adds a dead zone, fixes jitter problems with 
analog joysticks)
! #
! # Revision 1.4  2003/07/11 02:02:29  rshortt
! # Fix for new events, we must call rc.key_event_mapper for the right event
! # for what context we are in.
! #
! # Revision 1.3  2003/05/01 22:50:43  rshortt
! # This is now a real plugin that no longer needs ENABLE_NETWORK_REMOTE to work.
! #
! # Revision 1.2  2003/04/27 17:28:59  rshortt
! # Added the proper fileheader and some notes.
! #
  #
  #
--- 12,17 ----
  # -----------------------------------------------------------------------
  # $Log$
! # Revision 1.8  2003/08/23 12:51:42  dischi
! # removed some old CVS log messages
  #
  #

Index: mediamenu.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/plugins/mediamenu.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** mediamenu.py        22 Aug 2003 19:18:08 -0000      1.12
--- mediamenu.py        23 Aug 2003 12:51:42 -0000      1.13
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.13  2003/08/23 12:51:42  dischi
+ # removed some old CVS log messages
+ #
  # Revision 1.12  2003/08/22 19:18:08  gsbarbieri
  # Now it shows empty ROMs again.
***************
*** 20,58 ****
  # identified. A better solution is to force identify media and BLOCK until
  # it's done.
- #
- # Revision 1.10  2003/08/20 22:45:15  gsbarbieri
- # Capitalize (MOVIE|IMAGE|VIDEO|...). UPPERCASE IS UGLY!
- #
- # Revision 1.9  2003/08/20 22:29:37  gsbarbieri
- # UPPER CASE TEXT IS UGLY! :)
- #
- # Revision 1.8  2003/07/06 19:40:01  dischi
- # fix menu title
- #
- # Revision 1.7  2003/05/28 09:10:00  dischi
- # bugfix
- #
- # Revision 1.6  2003/05/27 17:53:35  dischi
- # Added new event handler module
- #
- # Revision 1.5  2003/05/04 12:05:45  dischi
- # make it possible to force the mediamenu to text or image view
- #
- # Revision 1.4  2003/04/24 19:56:36  dischi
- # comment cleanup for 1.3.2-pre4
- #
- # Revision 1.3  2003/04/21 13:02:45  dischi
- # Reload the mediamenu everytime we display it, some plugins may have
- # changed
- #
- # Revision 1.2  2003/04/20 12:43:33  dischi
- # make the rc events global in rc.py to avoid get_singleton. There is now
- # a function app() to get/set the app. Also the events should be passed to
- # the daemon plugins when there is no handler for them before. Please test
- # it, especialy the mixer functions.
- #
- # Revision 1.1  2003/04/20 10:53:23  dischi
- # moved identifymedia and mediamenu to plugins
- #
  #
  # -----------------------------------------------------------------------
--- 23,26 ----

Index: mixer.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/plugins/mixer.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** mixer.py    27 May 2003 17:53:35 -0000      1.4
--- mixer.py    23 Aug 2003 12:51:42 -0000      1.5
***************
*** 10,27 ****
  # -----------------------------------------------------------------------
  # $Log$
! # Revision 1.4  2003/05/27 17:53:35  dischi
! # Added new event handler module
! #
! # Revision 1.3  2003/04/24 19:56:37  dischi
! # comment cleanup for 1.3.2-pre4
! #
! # Revision 1.2  2003/04/20 12:43:33  dischi
! # make the rc events global in rc.py to avoid get_singleton. There is now
! # a function app() to get/set the app. Also the events should be passed to
! # the daemon plugins when there is no handler for them before. Please test
! # it, especialy the mixer functions.
  #
- # Revision 1.1  2003/04/20 10:55:40  dischi
- # mixer is now a plugin, too
  #
  # -----------------------------------------------------------------------
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
! # Revision 1.5  2003/08/23 12:51:42  dischi
! # removed some old CVS log messages
  #
  #
  # -----------------------------------------------------------------------

Index: rom_drives.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/plugins/rom_drives.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** rom_drives.py       23 Aug 2003 12:10:00 -0000      1.20
--- rom_drives.py       23 Aug 2003 12:51:42 -0000      1.21
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.21  2003/08/23 12:51:42  dischi
+ # removed some old CVS log messages
+ #
  # Revision 1.20  2003/08/23 12:10:00  dischi
  # move to CDROM.py stuff and remove external eject
***************
*** 23,49 ****
  # Revision 1.18  2003/08/20 21:51:34  outlyer
  # Use Python 'touch' rather than system call
- #
- # Revision 1.17  2003/07/20 16:09:53  dischi
- # bugfix
- #
- # Revision 1.16  2003/07/18 19:49:47  dischi
- # do not set speed for dvd, it does not work
- #
- # Revision 1.15  2003/07/12 21:24:19  dischi
- # sort list before checkin
- #
- # Revision 1.14  2003/07/05 09:09:47  dischi
- # fixed eject problems
- #
- # Revision 1.13  2003/07/02 22:05:50  dischi
- # o better cache handling
- # o shorter label for tv show discs
- #
- # Revision 1.12  2003/06/30 15:30:54  dischi
- # some checking to avoid endless scanning
- #
- # Revision 1.11  2003/06/29 20:44:21  dischi
- # mmpython support
- #
  #
  # -----------------------------------------------------------------------
--- 26,29 ----

Index: usb.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/plugins/usb.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** usb.py      27 Apr 2003 17:59:41 -0000      1.2
--- usb.py      23 Aug 2003 12:51:42 -0000      1.3
***************
*** 11,20 ****
  # -----------------------------------------------------------------------
  # $Log$
! # Revision 1.2  2003/04/27 17:59:41  dischi
! # use new poll interface
  #
- # Revision 1.1  2003/04/26 15:12:26  dischi
- # usb daemon plugin to watch for bus changes
  #
  #
  # ----------------------------------------------------------------------- */
--- 11,36 ----
  # -----------------------------------------------------------------------
  # $Log$
! # Revision 1.3  2003/08/23 12:51:42  dischi
! # removed some old CVS log messages
  #
  #
+ # -----------------------------------------------------------------------
+ # Freevo - A Home Theater PC framework
+ # Copyright (C) 2002 Krister Lagerstrom, et al. 
+ # Please see the file freevo/Docs/CREDITS for a complete list of authors.
+ #
+ # This program is free software; you can redistribute it and/or modify
+ # it under the terms of the GNU General Public License as published by
+ # the Free Software Foundation; either version 2 of the License, or
+ # (at your option) any later version.
+ #
+ # This program is distributed in the hope that it will be useful, but
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MER-
+ # CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
+ # Public License for more details.
+ #
+ # You should have received a copy of the GNU General Public License along
+ # with this program; if not, write to the Free Software Foundation, Inc.,
+ # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  #
  # ----------------------------------------------------------------------- */




-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines
at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to