Update of /cvsroot/freevo/freevo/src/util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13473/src/util
Modified Files:
__init__.py dbutil.py distribution.py distutils.py
extendedmeta.py fileops.py fxdimdb.py fxdparser.py ioctl.py
lirc.py mediainfo.py misc.py objectcache.py popen3.py
tv_util.py vfs.py videothumb.py
Log Message:
header cleanup
Index: dbutil.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/dbutil.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** dbutil.py 7 Feb 2004 13:07:55 -0000 1.5
--- dbutil.py 10 Jul 2004 12:33:42 -0000 1.6
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 11,14 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.6 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.5 2004/02/07 13:07:55 dischi
# fix unicode/encoding problem with sqlite
***************
*** 17,47 ****
# Catch some exceptions probably having to do with bad data.
#
- # Revision 1.3 2004/01/18 19:06:00 outlyer
- # Add a "commit" function...call it to make sure the insert/updates are
- # written to disc.
- #
- # Revision 1.2 2004/01/16 14:40:33 outlyer
- # (Don't you love it when your neighbours make enough noise to wake you up
- # early on your day off)
- #
- # Just some fixes from the code I commited last night.
- #
- # o Use the proper db instead of my test db
- # o use md5
- # o Remove some unnecessary 'print'
- # o remove mp3.py and smartimage.py as they are both merged into extendedmeta
- # o Remove musicsqlimport as it's all being done in extendedadd.py now.
- #
- # Revision 1.1 2004/01/16 08:14:04 outlyer
- # Forgot to commit this earlier. This is:
- #
- # extendedmeta: Parser for embedded covers, folder cache, and sqlite scoring
- # dbutil: Helper class for dealing with the sqlite db
- # extendedadd: A tool which calls the extendedmeta functions on a path, an
- # example of how to add all three types of data from the
- # command-line. Since the data is already used in blurr2, and
- # the info skins, it's nice to have.
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 19,22 ----
***************
*** 64,68 ****
#
# ----------------------------------------------------------------------- */
! #endif
import os, traceback
--- 39,43 ----
#
# ----------------------------------------------------------------------- */
!
import os, traceback
Index: ioctl.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/ioctl.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ioctl.py 11 Oct 2003 11:54:22 -0000 1.1
--- ioctl.py 10 Jul 2004 12:33:42 -0000 1.2
***************
*** 1,4 ****
!
! #if 0 /*
# -----------------------------------------------------------------------
# ioctl.py - A modules to make ioctl's in python easier.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# ioctl.py - A modules to make ioctl's in python easier.
***************
*** 11,19 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.1 2003/10/11 11:54:22 rshortt
# A class to make using ioctls much easier.
#
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 10,19 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.2 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.1 2003/10/11 11:54:22 rshortt
# A class to make using ioctls much easier.
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 36,40 ****
#
# ----------------------------------------------------------------------- */
! #endif
import struct
--- 36,40 ----
#
# ----------------------------------------------------------------------- */
!
import struct
Index: vfs.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/vfs.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** vfs.py 9 Jun 2004 20:09:10 -0000 1.18
--- vfs.py 10 Jul 2004 12:33:42 -0000 1.19
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 17,20 ****
--- 16,22 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.19 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.18 2004/06/09 20:09:10 dischi
# cleanup
***************
*** 30,86 ****
# NOTE: Many of the bugs are related to using str() everywhere, so please stop doing
that.
#
- # Revision 1.14 2004/02/05 02:52:26 gsbarbieri
- # Handle filenames internally as unicode objects.
- #
- # This does *NOT* affect filenames that have only ASCII chars, since the
- # translation ASCII -> Unicode is painless. However this *DOES* affect files with
- # accents, like é (e acute, \xe9) and others.
- #
- # I tested with Video, Images and Music modules, but *NOT* with Games, so if you
- # have the games modules, give it a try.
- #
- # It determines the encoding based on (in order) FREEVO_LOCALE, LANG and LC_ALL,
- # which may have the form: "LANGUAGE_CODE.ENCODING", like "pt_BR.UTF-8", and others.
- #
- # Revision 1.13 2004/02/04 11:54:27 dischi
- # check if directory is not overlay_dir
- #
- # Revision 1.12 2004/01/18 16:47:16 dischi
- # more verbose
- #
- # Revision 1.11 2004/01/09 19:03:39 dischi
- # make it possible to exclude dot files and overlay dir
- #
- # Revision 1.10 2004/01/06 19:25:46 dischi
- # added mtime function using stat
- #
- # Revision 1.9 2004/01/05 17:39:22 dischi
- # make overlay abspath before getting the dirname
- #
- # Revision 1.8 2004/01/03 17:38:17 dischi
- # Freevo now needs the vfs active. OVERLAY_DIR is set to ~/.freevo/vfs as
- # default value.
- #
- # Revision 1.7 2003/12/31 16:43:49 dischi
- # major speed enhancements
- #
- # Revision 1.6 2003/12/30 22:30:50 dischi
- # major speedup in vfs using
- #
- # Revision 1.5 2003/12/30 15:28:48 dischi
- # remove old code
- #
- # Revision 1.4 2003/12/18 18:21:33 outlyer
- # I'm assuming these were supposed to be debug messages.
- #
- # Revision 1.3 2003/12/07 11:06:45 dischi
- # small bugfix
- #
- # Revision 1.2 2003/11/23 16:57:08 dischi
- # small fixes
- #
- # Revision 1.1 2003/11/22 20:33:53 dischi
- # new vfs
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 32,35 ----
***************
*** 103,107 ****
#
# ----------------------------------------------------------------------- */
- #endif
--- 52,55 ----
Index: popen3.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/popen3.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** popen3.py 28 May 2004 20:22:32 -0000 1.10
--- popen3.py 10 Jul 2004 12:33:42 -0000 1.11
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 11,14 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.11 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.10 2004/05/28 20:22:32 dischi
# add run function as better os.system
***************
*** 17,47 ****
# close file handlers
#
- # Revision 1.8 2003/12/10 19:46:35 dischi
- # add function to get the stdout of a command call
- #
- # Revision 1.7 2003/10/19 14:19:44 rshortt
- # Added OS_EVENT_WAITPID event for popen3.waitpid() to post so that recordserver
- # can pick it up and wait on its own child. Child processes from recordserver
- # now get signals and clean up properly.
- #
- # Revision 1.6 2003/10/19 12:42:19 rshortt
- # Oops.
- #
- # Revision 1.5 2003/10/19 12:41:13 rshortt
- # in waitpid handle recordserver like main.
- #
- # Revision 1.4 2003/10/19 09:08:14 dischi
- # support for changing the working directory before exec, some cleanup changes
- #
- # Revision 1.3 2003/10/18 21:34:19 rshortt
- # recordserver now handles events like main.
- #
- # Revision 1.2 2003/10/18 17:56:58 dischi
- # more childapp fixes
- #
- # Revision 1.1 2003/10/18 10:45:46 dischi
- # our own thread working version of popen and waitpid
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 19,22 ----
***************
*** 64,68 ****
#
# ----------------------------------------------------------------------- */
- #endif
--- 39,42 ----
Index: misc.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/misc.py,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** misc.py 4 Jul 2004 08:10:50 -0000 1.40
--- misc.py 10 Jul 2004 12:33:42 -0000 1.41
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 11,14 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.41 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.40 2004/07/04 08:10:50 dischi
# make sure upsoon is written
***************
*** 21,61 ****
# property anymore, so make sure it exists before trying to access it.
#
- # Revision 1.37 2004/04/20 17:13:34 dischi
- # fix strange crash
- #
- # Revision 1.36 2004/04/12 05:44:34 dischi
- # unicode problems with mp3 tag fix
- #
- # Revision 1.35 2004/03/22 11:04:51 dischi
- # improve caching
- #
- # Revision 1.34 2004/02/28 21:04:17 dischi
- # unicode fixes
- #
- # Revision 1.33 2004/02/27 20:08:42 dischi
- # add function to check for identical string beginnings
- #
- # Revision 1.32 2004/02/23 19:59:35 dischi
- # unicode fixes
- #
- # Revision 1.31 2004/02/23 16:34:48 dischi
- # bugfix
- #
- # Revision 1.30 2004/02/22 05:27:01 gsbarbieri
- # comingup to support i18n and unicode.
- #
- # Revision 1.29 2004/02/16 17:56:22 dischi
- # helper function for cmp
- #
- # Revision 1.28 2004/02/13 17:18:39 dischi
- # do not skip after . for directories
- #
- # Revision 1.27 2004/02/08 06:12:31 outlyer
- # Missing the text... it looks like other shows are tomorrow, when they're
- # really not.
- #
- # Revision 1.26 2004/02/07 13:24:21 dischi
- # better directory name building
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 23,26 ----
***************
*** 78,82 ****
#
# ----------------------------------------------------------------------- */
- #endif
--- 43,46 ----
Index: fxdparser.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/fxdparser.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** fxdparser.py 6 Mar 2004 10:15:22 -0000 1.15
--- fxdparser.py 10 Jul 2004 12:33:42 -0000 1.16
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# fxdparser.py - Parser for fxd files
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# fxdparser.py - Parser for fxd files
***************
*** 10,26 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.15 2004/03/06 10:15:22 dischi
# patches from Sylvain
#
- # Revision 1.14 2004/02/28 21:04:17 dischi
- # unicode fixes
- #
- # Revision 1.13 2004/01/16 16:23:07 dischi
- # made a ugly unicode fix...I will never understand python character encoding
- #
- # Revision 1.12 2004/01/15 04:33:34 outlyer
- # Check for the filename before trying to read it... without it, I couldn't
- # use fxd files which were only in my overlay, but not in the path.
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 10,19 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.16 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.15 2004/03/06 10:15:22 dischi
# patches from Sylvain
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 43,47 ****
#
# ----------------------------------------------------------------------- */
! #endif
import os
--- 36,40 ----
#
# ----------------------------------------------------------------------- */
!
import os
Index: fileops.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/fileops.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** fileops.py 4 Jul 2004 08:04:21 -0000 1.24
--- fileops.py 10 Jul 2004 12:33:42 -0000 1.25
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 11,14 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.25 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.24 2004/07/04 08:04:21 dischi
# handle PIL exception
***************
*** 23,39 ****
# do not take care of install.py
#
- # Revision 1.20 2004/06/13 18:47:46 dischi
- # expect errors when loading image
- #
- # Revision 1.19 2004/06/09 20:09:10 dischi
- # cleanup
- #
- # Revision 1.18 2004/06/09 19:50:32 dischi
- # change thumbnail caching format to be much faster: do not use pickle and
- # also reduce the image size from max 300x300 to 255x255
- #
- # Revision 1.17 2004/03/22 11:04:51 dischi
- # improve caching
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 25,28 ----
***************
*** 56,60 ****
#
# ----------------------------------------------------------------------- */
! #endif
import os
--- 45,49 ----
#
# ----------------------------------------------------------------------- */
!
import os
Index: __init__.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/__init__.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** __init__.py 13 Jun 2004 18:49:39 -0000 1.17
--- __init__.py 10 Jul 2004 12:33:42 -0000 1.18
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 11,29 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.17 2004/06/13 18:49:39 dischi
# do not take care of install.py
#
- # Revision 1.16 2004/03/13 22:30:02 dischi
- # better string transformation
- #
- # Revision 1.15 2004/02/28 21:04:17 dischi
- # unicode fixes
- #
- # Revision 1.14 2004/02/27 20:15:03 dischi
- # more unicode fixes
- #
- # Revision 1.13 2004/02/25 19:50:51 dischi
- # fix unicode problem for utf-8
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 10,19 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.18 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.17 2004/06/13 18:49:39 dischi
# do not take care of install.py
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 46,50 ****
#
# ----------------------------------------------------------------------- */
! #endif
import sys
--- 36,40 ----
#
# ----------------------------------------------------------------------- */
!
import sys
Index: tv_util.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/tv_util.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tv_util.py 23 Jun 2004 21:10:20 -0000 1.5
--- tv_util.py 10 Jul 2004 12:33:42 -0000 1.6
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# util/tv.py - A module to make some tasks related to TV easier.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# util/tv.py - A module to make some tasks related to TV easier.
***************
*** 7,10 ****
--- 7,13 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.6 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.5 2004/06/23 21:10:20 dischi
# make nicer filename
***************
*** 17,33 ****
# remove -_ at the end of the filename
#
- # Revision 1.2 2004/04/28 21:19:19 rshortt
- # String / Unicode fix.
- #
- # Revision 1.1 2003/10/11 17:57:39 rshortt
- # Sorry, there was a namespace issue with having a tv.py module here. For
- # example the save_pickle function was bombing because it was looking in this
- # tv namespace for the TVGuide object.
- #
- # Revision 1.1 2003/10/11 12:04:46 rshortt
- # Moving tv/tv_util.py to util/tv.py. I will remove te old one once I am
- # sure everthing else is working fine with the new location.
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 20,23 ----
***************
*** 50,54 ****
#
# ----------------------------------------------------------------------- */
! #endif
import sys, string, re
--- 40,44 ----
#
# ----------------------------------------------------------------------- */
!
import sys, string, re
Index: mediainfo.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/mediainfo.py,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** mediainfo.py 9 Jul 2004 14:34:52 -0000 1.53
--- mediainfo.py 10 Jul 2004 12:33:42 -0000 1.54
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 11,14 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.54 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.53 2004/07/09 14:34:52 dischi
# inverse the rc.app() call. One line, two bugs :-(
***************
*** 23,35 ****
# reload cache if cache helper runs while running freevo
#
- # Revision 1.49 2004/06/09 20:09:10 dischi
- # cleanup
- #
- # Revision 1.48 2004/06/06 06:52:37 dischi
- # cache updates
- #
- # Revision 1.47 2004/06/06 06:41:47 dischi
- # delete cache on mmpython update
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 25,28 ----
***************
*** 52,56 ****
#
# ----------------------------------------------------------------------- */
- #endif
--- 45,48 ----
Index: extendedmeta.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/extendedmeta.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** extendedmeta.py 29 May 2004 12:32:23 -0000 1.12
--- extendedmeta.py 10 Jul 2004 12:33:42 -0000 1.13
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 11,77 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.12 2004/05/29 12:32:23 dischi
# try to find out if all items in a dir belong to one album
#
- # Revision 1.11 2004/02/24 18:55:38 dischi
- # unicode fix
- #
- # Revision 1.10 2004/02/22 20:20:06 dischi
- # unicode fix again
- #
- # Revision 1.9 2004/02/21 19:44:05 dischi
- # unicode fix
- #
- # Revision 1.8 2004/02/13 17:33:42 dischi
- # no defaults for addPathDB
- #
- # Revision 1.7 2004/02/08 17:37:15 dischi
- # add playlist parser
- #
- # Revision 1.6 2004/01/19 17:56:30 outlyer
- # Write cover images to the overlay directory, not the current one.
- #
- # Revision 1.5 2004/01/18 16:47:35 dischi
- # cleanup
- #
- # Revision 1.4 2004/01/17 20:28:12 dischi
- # use new metainfo
- #
- # Revision 1.3 2004/01/16 17:15:29 dischi
- # Many improvements to AudioParser
- # o try to detect if we should overwrite an existing fxd file
- # o Various is not included anymore, the value is not set in the fxd
- # Aubin: the skin now doesn't need to check for 'Various', it needs
- # to write 'Various' if Album/Artist is not set
- # o make it much faster by comparing timestamps to avoid rechecking
- #
- # Warning: I made the changes to mp3info which was removed while I was
- # working. I hope I didn't forgot something to copy
- #
- # Also made the db optional
- #
- # Revision 1.2 2004/01/16 14:40:33 outlyer
- # (Don't you love it when your neighbours make enough noise to wake you up
- # early on your day off)
- #
- # Just some fixes from the code I commited last night.
- #
- # o Use the proper db instead of my test db
- # o use md5
- # o Remove some unnecessary 'print'
- # o remove mp3.py and smartimage.py as they are both merged into extendedmeta
- # o Remove musicsqlimport as it's all being done in extendedadd.py now.
- #
- # Revision 1.1 2004/01/16 08:14:04 outlyer
- # Forgot to commit this earlier. This is:
- #
- # extendedmeta: Parser for embedded covers, folder cache, and sqlite scoring
- # dbutil: Helper class for dealing with the sqlite db
- # extendedadd: A tool which calls the extendedmeta functions on a path, an
- # example of how to add all three types of data from the
- # command-line. Since the data is already used in blurr2, and
- # the info skins, it's nice to have.
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 10,19 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.13 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.12 2004/05/29 12:32:23 dischi
# try to find out if all items in a dir belong to one album
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 94,98 ****
#
# ----------------------------------------------------------------------- */
! #endif
# The basics
--- 36,40 ----
#
# ----------------------------------------------------------------------- */
!
# The basics
Index: lirc.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/lirc.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** lirc.py 11 Oct 2003 11:57:11 -0000 1.1
--- lirc.py 10 Jul 2004 12:33:42 -0000 1.2
***************
*** 1,4 ****
!
! #if 0 /*
# -----------------------------------------------------------------------
# util/lirc.py - A module to help with some lirc tasks.
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# util/lirc.py - A module to help with some lirc tasks.
***************
*** 11,20 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.1 2003/10/11 11:57:11 rshortt
# A new module to help with lirc. This contains a lircd.conf file parser which
# I will be using for some infrared transmitting modules.
#
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 10,20 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.2 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.1 2003/10/11 11:57:11 rshortt
# A new module to help with lirc. This contains a lircd.conf file parser which
# I will be using for some infrared transmitting modules.
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 37,41 ****
#
# ----------------------------------------------------------------------- */
! #endif
import string, os, re
--- 37,41 ----
#
# ----------------------------------------------------------------------- */
!
import string, os, re
Index: objectcache.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/objectcache.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** objectcache.py 23 Jun 2004 20:05:16 -0000 1.8
--- objectcache.py 10 Jul 2004 12:33:42 -0000 1.9
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 11,14 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.9 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.8 2004/06/23 20:05:16 dischi
# fix bad bug in the object cache, much faster again
***************
*** 22,52 ****
# Revision 1.5 2004/02/04 17:20:24 dischi
# fix crash when object is None
- #
- # Revision 1.4 2004/01/30 20:40:28 dischi
- # make key an unicode object to prevent crash
- #
- # Revision 1.3 2004/01/19 20:24:51 dischi
- # remove unneeded try except blocks
- #
- # Revision 1.2 2003/12/07 16:04:50 dischi
- # speed up
- #
- # Revision 1.1 2003/11/29 11:27:41 dischi
- # move objectcache to util
- #
- # Revision 1.5 2003/09/14 20:09:36 dischi
- # removed some TRUE=1 and FALSE=0 add changed some debugs to _debug_
- #
- # Revision 1.4 2003/08/26 20:07:50 outlyer
- # Declare encoding, remove another warning.
- #
- # Revision 1.3 2003/08/22 19:22:50 dischi
- # small check to prevent crashes
- #
- # Revision 1.2 2003/04/24 19:55:51 dischi
- # comment cleanup for 1.3.2-pre4
- #
- # Revision 1.1 2003/01/07 07:17:07 krister
- # Added Thomas Sch�ppels objectcache layer for the OSD objects.
#
# -----------------------------------------------------------------------
--- 24,27 ----
***************
*** 70,74 ****
#
# ----------------------------------------------------------------------- */
! #endif
import config
--- 45,49 ----
#
# ----------------------------------------------------------------------- */
!
import config
Index: videothumb.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/videothumb.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** videothumb.py 8 Jul 2004 11:03:02 -0000 1.12
--- videothumb.py 10 Jul 2004 12:33:42 -0000 1.13
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# videothumb - create a thumbnail for video files
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# videothumb - create a thumbnail for video files
***************
*** 14,17 ****
--- 14,20 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.13 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.12 2004/07/08 11:03:02 dischi
# use .tmp filename and new freevo raw format
***************
*** 23,55 ****
# better python code
#
- # Revision 1.9 2004/02/09 20:04:33 dischi
- # better error handling
- #
- # Revision 1.8 2004/02/08 12:16:27 dischi
- # chdir to tmp to call mplayer
- #
- # Revision 1.7 2004/02/08 12:09:01 dischi
- # o let mplayer keep the aspect of the movie
- # o add bars/resize to fit 4:3 so all thumbnails have the same geometry
- #
- # Revision 1.6 2004/02/01 17:05:28 dischi
- # popup support
- #
- # Revision 1.5 2004/01/10 18:45:23 dischi
- # always use thumbnail
- #
- # Revision 1.4 2004/01/10 04:12:02 outlyer
- # Take a snapshot/thumbnail after a file is recorded...
- #
- # Revision 1.3 2004/01/04 17:19:57 dischi
- # store image as .raw file if no filename is given
- #
- # Revision 1.2 2004/01/04 13:07:14 dischi
- # make image max 300x300
- #
- # Revision 1.1 2004/01/04 11:16:32 dischi
- # add function to create a thumbnail from videofiles
- #
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 26,29 ----
***************
*** 72,76 ****
#
# ----------------------------------------------------------------------- */
! #endif
import sys, os, mmpython, glob, shutil
--- 46,50 ----
#
# ----------------------------------------------------------------------- */
!
import sys, os, mmpython, glob, shutil
Index: distribution.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/distribution.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** distribution.py 10 Jun 2004 11:06:40 -0000 1.9
--- distribution.py 10 Jul 2004 12:33:42 -0000 1.10
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 63,93 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.9 2004/06/10 11:06:40 dischi
# make it possible to give a cmdclass to setup
#
- # Revision 1.8 2004/06/03 18:20:27 dischi
- # add freevo_config.py to translation list, cleanup
- #
- # Revision 1.7 2004/06/02 19:04:35 dischi
- # translation updates
- #
- # Revision 1.6 2004/06/02 18:11:57 dischi
- # get real skin text strings for i18n
- #
- # Revision 1.5 2004/02/25 19:51:17 dischi
- # add helpers to __init__ del list
- #
- # Revision 1.4 2004/02/25 19:19:36 dischi
- # add skins/plugins from which not to install __init__
- #
- # Revision 1.3 2004/02/19 04:57:58 gsbarbieri
- # Support i18n.
- #
- # Revision 1.2 2003/11/22 12:03:31 dischi
- # do not install __init__ files from freevo
- #
- # Revision 1.1 2003/11/18 15:56:38 dischi
- # distutils.py replacement after 1.4
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 62,71 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.10 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.9 2004/06/10 11:06:40 dischi
# make it possible to give a cmdclass to setup
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 110,114 ****
#
# ----------------------------------------------------------------------- */
! #endif
import os
--- 88,92 ----
#
# ----------------------------------------------------------------------- */
!
import os
Index: distutils.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/distutils.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** distutils.py 10 Nov 2003 18:46:09 -0000 1.11
--- distutils.py 10 Jul 2004 12:33:42 -0000 1.12
***************
*** 1,3 ****
- #if 0 /*
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
--- 1,2 ----
***************
*** 68,92 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.11 2003/11/10 18:46:09 dischi
# bugfix for freevo.pot
#
- # Revision 1.10 2003/11/05 19:19:34 dischi
- # Oops
- #
- # Revision 1.9 2003/11/05 19:14:52 dischi
- # enhance i18n support and better doc
- #
- # Revision 1.8 2003/11/01 15:21:20 dischi
- # better howto support
- #
- # Revision 1.7 2003/10/31 18:56:14 dischi
- # Add framework for plugin writing howto
- #
- # Revision 1.6 2003/10/19 17:30:30 dischi
- # looks nicer
- #
- # Revision 1.5 2003/10/19 16:40:09 dischi
- # i18n support function for plugins
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 67,76 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.12 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.11 2003/11/10 18:46:09 dischi
# bugfix for freevo.pot
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 109,113 ****
#
# ----------------------------------------------------------------------- */
! #endif
import os
--- 93,97 ----
#
# ----------------------------------------------------------------------- */
!
import os
Index: fxdimdb.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/util/fxdimdb.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** fxdimdb.py 20 Jun 2004 13:06:20 -0000 1.6
--- fxdimdb.py 10 Jul 2004 12:33:42 -0000 1.7
***************
*** 1,3 ****
! #if 0 /*
# -----------------------------------------------------------------------
# helpers/fxdimdb.py - class and helpers for fxd/imdb generation
--- 1,3 ----
! # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# helpers/fxdimdb.py - class and helpers for fxd/imdb generation
***************
*** 12,56 ****
# -----------------------------------------------------------------------
# $Log$
# Revision 1.6 2004/06/20 13:06:20 dischi
# move freevo-rebuild-database to cache dir
#
- # Revision 1.5 2004/02/28 21:11:20 dischi
- # more unicode fixes
- #
- # Revision 1.4 2004/01/24 19:53:41 dischi
- # better search
- #
- # Revision 1.3 2004/01/09 19:49:04 dischi
- # looks like imdb changed the interface again
- #
- # Revision 1.2 2004/01/09 06:30:49 outlyer
- # Two fixes:
- #
- # o the 'str2XML' function is a method of the FxdImdb() class, so call it as
- # part of the object
- # o Don't say "Image downloading failed" since an image url isn't always
- # provided. If it actually is provided and fails, show the message.
- #
- # Revision 1.1 2004/01/08 17:33:15 outlyer
- # Moved fxdimdb.py to util; it doesn't use the OSD, and having in video
- # makes it import video/__init__...
- #
- # There is a reason for this to follow shortly :)
- #
- # Revision 1.23 2004/01/03 17:43:15 dischi
- # OVERLAY_DIR is always used
- #
- # Revision 1.22 2003/11/24 19:24:59 dischi
- # move the handler for fxd from xml_parser to fxdhandler
- #
- # Revision 1.21 2003/11/22 20:35:50 dischi
- # use new vfs
- #
- # Revision 1.20 2003/11/09 12:51:21 dischi
- # fix poster download
- #
- # Revision 1.19 2003/10/03 16:46:13 dischi
- # moved the encoding type (latin-1) to the config file config.LOCALE
- #
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
--- 12,21 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.7 2004/07/10 12:33:42 dischi
+ # header cleanup
+ #
# Revision 1.6 2004/06/20 13:06:20 dischi
# move freevo-rebuild-database to cache dir
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
***************
*** 73,77 ****
#
# ----------------------------------------------------------------------- */
- #endif
--- 38,41 ----
-------------------------------------------------------
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