Update of /cvsroot/freevo/freevo/src/helpers In directory sc8-pr-cvs1:/tmp/cvs-serv15707/helpers
Modified Files: cache.py imdb.py makeplaylist.py makestationlist.py musicsqlimport.py tvgrep.py vtrelease.py Log Message: removed some old CVS log messages Index: cache.py =================================================================== RCS file: /cvsroot/freevo/freevo/src/helpers/cache.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** cache.py 23 Aug 2003 09:09:18 -0000 1.5 --- cache.py 23 Aug 2003 12:51:42 -0000 1.6 *************** *** 12,18 **** # ----------------------------------------------------------------------- # $Log$ # Revision 1.5 2003/08/23 09:09:18 dischi # moved some helpers to src/helpers - # # # ----------------------------------------------------------------------- --- 12,20 ---- # ----------------------------------------------------------------------- # $Log$ + # Revision 1.6 2003/08/23 12:51:42 dischi + # removed some old CVS log messages + # # Revision 1.5 2003/08/23 09:09:18 dischi # moved some helpers to src/helpers # # ----------------------------------------------------------------------- Index: imdb.py =================================================================== RCS file: /cvsroot/freevo/freevo/src/helpers/imdb.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** imdb.py 5 Aug 2003 19:32:55 -0000 1.1 --- imdb.py 23 Aug 2003 12:51:42 -0000 1.2 *************** *** 12,46 **** # ----------------------------------------------------------------------- # $Log$ ! # Revision 1.1 2003/08/05 19:32:55 dischi ! # Moved the first three helpers from helpers/ to src/helpers and changed ! # the freevo script to easy access them. The old helpers need a cleanup: ! # o what is realy needed? ! # o what should be in src/helpers because we need it from time to time? ! # o what should go to contrib? ! # ! # Revision 1.27 2003/08/04 18:42:03 dischi ! # remove some stuff we do not need with the new freevo script ! # ! # Revision 1.26 2003/07/18 21:31:03 dischi ! # new imdb helper based in the new fxdimdb ! # ! # Revision 1.26 2003/07/16 22:07:00 den_RDC ! # rewrite to use fxd_imdb class ! # ! # Revision 1.25 2003/06/25 15:37:37 dischi ! # some try-except if you can't write files ! # ! # Revision 1.24 2003/06/24 18:38:41 dischi ! # Fixed handling when search returns only one result ! # ! # Revision 1.23 2003/06/24 18:12:45 dischi ! # fixed string translation with urllib (not urllib2) ! # ! # Revision 1.22 2003/06/24 16:15:07 dischi ! # o updated by den_RDC - changed code to urllib2 - exceptions are handled by ! # urllib2, including 302 redirection -- proxy servers ,including transparant ! # proxies now work ! # o added support for better image finder. Right now there we can also get ! # posters from www.impawards.com # # --- 12,17 ---- # ----------------------------------------------------------------------- # $Log$ ! # Revision 1.2 2003/08/23 12:51:42 dischi ! # removed some old CVS log messages # # Index: makeplaylist.py =================================================================== RCS file: /cvsroot/freevo/freevo/src/helpers/makeplaylist.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** makeplaylist.py 23 Aug 2003 09:09:18 -0000 1.1 --- makeplaylist.py 23 Aug 2003 12:51:42 -0000 1.2 *************** *** 15,21 **** # ----------------------------------------------------------------------- # $Log$ # Revision 1.1 2003/08/23 09:09:18 dischi # moved some helpers to src/helpers - # # # ----------------------------------------------------------------------- --- 15,23 ---- # ----------------------------------------------------------------------- # $Log$ + # Revision 1.2 2003/08/23 12:51:42 dischi + # removed some old CVS log messages + # # Revision 1.1 2003/08/23 09:09:18 dischi # moved some helpers to src/helpers # # ----------------------------------------------------------------------- Index: makestationlist.py =================================================================== RCS file: /cvsroot/freevo/freevo/src/helpers/makestationlist.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** makestationlist.py 23 Aug 2003 09:09:18 -0000 1.1 --- makestationlist.py 23 Aug 2003 12:51:42 -0000 1.2 *************** *** 13,19 **** # ----------------------------------------------------------------------- # $Log$ # Revision 1.1 2003/08/23 09:09:18 dischi # moved some helpers to src/helpers - # # # ----------------------------------------------------------------------- --- 13,21 ---- # ----------------------------------------------------------------------- # $Log$ + # Revision 1.2 2003/08/23 12:51:42 dischi + # removed some old CVS log messages + # # Revision 1.1 2003/08/23 09:09:18 dischi # moved some helpers to src/helpers # # ----------------------------------------------------------------------- Index: musicsqlimport.py =================================================================== RCS file: /cvsroot/freevo/freevo/src/helpers/musicsqlimport.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** musicsqlimport.py 5 Aug 2003 19:32:55 -0000 1.1 --- musicsqlimport.py 23 Aug 2003 12:51:42 -0000 1.2 *************** *** 1,3 **** --- 1,40 ---- #!/usr/bin/env python + #if 0 /* + # ----------------------------------------------------------------------- + # musicsqlimport.py - import all music files into sql database + # ----------------------------------------------------------------------- + # $Id$ + # + # Notes: + # + # Todo: + # + # ----------------------------------------------------------------------- + # $Log$ + # Revision 1.2 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 # The basics *************** *** 10,14 **** import mmpython - sys.path.append('./src/') import config, util --- 47,50 ---- Index: tvgrep.py =================================================================== RCS file: /cvsroot/freevo/freevo/src/helpers/tvgrep.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tvgrep.py 23 Aug 2003 09:09:18 -0000 1.1 --- tvgrep.py 23 Aug 2003 12:51:42 -0000 1.2 *************** *** 12,18 **** # ----------------------------------------------------------------------- # $Log$ # Revision 1.1 2003/08/23 09:09:18 dischi # moved some helpers to src/helpers - # # # ----------------------------------------------------------------------- --- 12,20 ---- # ----------------------------------------------------------------------- # $Log$ + # Revision 1.2 2003/08/23 12:51:42 dischi + # removed some old CVS log messages + # # Revision 1.1 2003/08/23 09:09:18 dischi # moved some helpers to src/helpers # # ----------------------------------------------------------------------- Index: vtrelease.py =================================================================== RCS file: /cvsroot/freevo/freevo/src/helpers/vtrelease.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** vtrelease.py 16 Aug 2003 12:18:20 -0000 1.1 --- vtrelease.py 23 Aug 2003 12:51:42 -0000 1.2 *************** *** 1,3 **** --- 1,40 ---- #!/usr/bin/env python + #if 0 /* + # ----------------------------------------------------------------------- + # vtrelease.py - release the ttys after pygame crash + # ----------------------------------------------------------------------- + # $Id$ + # + # Notes: + # + # Todo: + # + # ----------------------------------------------------------------------- + # $Log$ + # Revision 1.2 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 *************** *** 13,24 **** sys.exit(0) ! # set ioctl (tty, KDSETMODE, KD_TEXT) ! try: ! fd = os.open('/dev/tty0', os.O_RDONLY | os.O_NONBLOCK) try: ioctl(fd, 0x4B3A, 0) except: pass - os.close(fd) - except: - pass --- 50,60 ---- sys.exit(0) ! ! for i in range(1,7): try: + fd = os.open('/dev/tty%s' % i, os.O_RDONLY | os.O_NONBLOCK) + # set ioctl (tty, KDSETMODE, KD_TEXT) ioctl(fd, 0x4B3A, 0) + os.close(fd) except: pass ------------------------------------------------------- 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