View | Details | Raw Unified | Return to bug 130592 | Differences between
and this patch

Collapse All | Expand All

(-)multimedia/freevo/Makefile (-103 / +33 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	freevo
8
PORTNAME=	freevo
9
PORTVERSION=	1.5.4
9
PORTVERSION=	1.8.3
10
PORTREVISION=	5
11
CATEGORIES=	multimedia
10
CATEGORIES=	multimedia
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	freevo
12
MASTER_SITE_SUBDIR=	freevo
Lines 15-138 Link Here
15
MAINTAINER=	fbsd@opal.com
14
MAINTAINER=	fbsd@opal.com
16
COMMENT=	Open source digital jukebox
15
COMMENT=	Open source digital jukebox
17
16
18
.ifdef NOPORTDOCS
17
RUN_DEPENDS=	mplayer:${PORTSDIR}/multimedia/mplayer \
19
BROKEN=		bad plist
18
		mencoder:${PORTSDIR}/multimedia/mencoder \
20
.endif
19
		aumix:${PORTSDIR}/audio/aumix \
21
20
		tv_cat:${PORTSDIR}/textproc/p5-xmltv \
22
RUN_DEPENDS=	aumix:${PORTSDIR}/audio/aumix \
21
		${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml \
23
		${PYTHON_SITELIBDIR}/pyosd/__init__.py:${PORTSDIR}/misc/py-osd \
22
		${PYTHON_SITELIBDIR}/kaa/__init__.py:${PORTSDIR}/multimedia/py-kaa-base \
23
		${PYTHON_SITELIBDIR}/kaa/imlib2/__init__.py:${PORTSDIR}/multimedia/py-kaa-imlib2 \
24
		${PYTHON_SITELIBDIR}/kaa/metadata/__init__.py:${PORTSDIR}/multimedia/py-kaa-metadata \
25
		${PYTHON_SITELIBDIR}/BeautifulSoup.py:${PORTSDIR}/www/py-beautifulsoup \
24
		${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game \
26
		${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game \
25
		${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging \
27
		${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging \
26
		${PYTHON_SITELIBDIR}/twisted/__init__.py:${PORTSDIR}/devel/py-twisted \
28
		${PYTHON_SITELIBDIR}/twisted/__init__.py:${PORTSDIR}/devel/py-twisted \
27
		${PYTHON_SITELIBDIR}/mmpython/__init__.py:${PORTSDIR}/multimedia/mmpython \
29
		${PYTHON_SITELIBDIR}/numeric/__init__.py:${PORTSDIR}/math/py-numeric
28
		${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml \
30
31
FREEVO_USER=	freevo
32
FREEVO_GROUP=	${FREEVO_USER}
33
FREEVO_UID=	523
34
FREEVO_GID=	${FREEVO_UID}
35
FREEVO_HOME=	/var/db/${FREEVO_USER}
29
36
30
NO_BUILD=	yes
37
NO_BUILD=	yes
31
SUB_LIST+=	PORTVERSION=${PORTVERSION}
38
SUB_LIST+=	PORTVERSION=${PORTVERSION} \
32
SUB_FILES=	pkg-message
39
		FREEVO_USER=${FREEVO_USER} \
40
		FREEVO_GROUP=${FREEVO_GROUP} \
41
		FREEVO_UID=${FREEVO_UID} \
42
		FREEVO_GID=${FREEVO_GID} \
43
		FREEVO_HOME=${FREEVO_HOME}
44
SUB_FILES=	pkg-message pkg-install pkg-deinstall
33
45
34
USE_GETTEXT=	yes
35
USE_PYTHON=	yes
46
USE_PYTHON=	yes
36
USE_PYDISTUTILS=	yes
47
USE_PYDISTUTILS=	yes
37
PKGINSTALL=	pkg-install
38
48
39
DOCSDIR=	${PREFIX}/share/doc/${DISTNAME}
49
USE_RC_SUBR=	${PORTNAME}
40
CONF=		${PREFIX}/etc/${PORTNAME}
50
RC_SCRIPT=	${PREFIX}/etc/rc.d/${PORTNAME}
41
51
42
OPTIONS=	MPLAYER	"Enable mplayer video playback support" On \
52
DOCSDIR=	${PREFIX}/share/doc/${DISTNAME}
43
		XINE "Enable xine video playback support" On \
53
CONFDIR=	${PREFIX}/etc/${PORTNAME}
44
		MAME "Enable xmame game support" Off \
45
		SNES9X "Enable snes9x game support" Off \
46
		ZSNES "Enable zsnes game support" Off \
47
		XMLTV "Enable TV guide listings support" On \
48
		CDPARANOIA "Enable cdparanoia audio extraction support" On \
49
		LAME "Enable lame MP3 encoding support" On \
50
		OGG "Enable Ogg Vorbis encoding support" On \
51
		FLAC "Enable FLAC encoding support" Off \
52
		LIRC "Enable lirc remote control support" On
53
54
54
.include <bsd.port.pre.mk>
55
.include <bsd.port.pre.mk>
55
56
56
###
57
# AUTODETECTION
58
###
59
60
.if exists(${LOCALBASE}/bin/xmame) && !defined(WITHOUT_MAME)
61
WITH_MAME=	YES
62
.endif
63
64
.if exists(${LOCALBASE}/bin/snes9x) && !defined(WITHOUT_SNES9X)
65
WITH_SNES9X=	YES
66
.endif
67
68
.if exists(${LOCALBASE}/bin/zsnes) && !defined(WITHOUT_ZSNES)
69
WITH_ZSNES=	YES
70
.endif
71
72
.if exists(${LOCALBASE}/bin/flac) && !defined(WITHOUT_FLAC)
73
WITH_FLAC=	YES
74
.endif
75
76
###
77
# CONFIGURE RUN_DEPENDS
78
###
79
80
.if !defined(WITHOUT_MPLAYER)
81
RUN_DEPENDS+=	mplayer:${PORTSDIR}/multimedia/mplayer
82
.endif
83
84
.if !defined(WITHOUT_XINE)
85
RUN_DEPENDS+=	xine:${PORTSDIR}/multimedia/xine
86
.endif
87
88
.if defined(WITH_MAME)
89
RUN_DEPENDS+=	xmame:${PORTSDIR}/emulators/xmame
90
.endif
91
92
.if defined(WITH_SNES9X)
93
RUN_DEPENDS+=	snes9x:${PORTSDIR}/emulators/snes9x
94
.endif
95
96
.if defined(WITH_ZSNES)
97
RUN_DEPENDS+=	zsnes:${PORTSDIR}/emulators/zsnes
98
.endif
99
100
.if !defined(WITHOUT_XMLTV)
101
RUN_DEPENDS+=	tv_cat:${PORTSDIR}/textproc/p5-xmltv
102
.endif
103
104
.if !defined(WITHOUT_CDPARANOIA)
105
RUN_DEPENDS+=	cdparanoia:${PORTSDIR}/audio/cdparanoia
106
.endif
107
108
.if !defined(WITHOUT_LAME)
109
RUN_DEPENDS+=	lame:${PORTSDIR}/audio/lame
110
.endif
111
112
.if !defined(WITHOUT_OGG)
113
RUN_DEPENDS+=	oggenc:${PORTSDIR}/audio/vorbis-tools
114
.endif
115
116
.if defined(WITH_FLAC)
117
RUN_DEPENDS+=	flac:${PORTSDIR}/audio/flac
118
.endif
119
120
.if !defined(WITHOUT_LIRC)
121
RUN_DEPENDS+=	${PYTHON_SITELIBDIR}/pylircmodule.so:${PORTSDIR}/comms/py-lirc
122
.endif
123
124
post-patch:
57
post-patch:
125
	@${REINPLACE_CMD} -e 's|/etc/freevo|${PREFIX}/etc/freevo|' ${WRKSRC}/freevo_config.py
58
	@${REINPLACE_CMD} -e 's|/etc/freevo|${PREFIX}/etc/freevo|' ${WRKSRC}/freevo_config.py
126
	@${REINPLACE_CMD} -e 's|/etc/freevo|${PREFIX}/etc/freevo|' ${WRKSRC}/local_conf.py.example
59
	@${REINPLACE_CMD} -e 's|/etc/freevo|${PREFIX}/etc/freevo|' ${WRKSRC}/local_conf.py.example
127
60
128
pre-install:
129
	@BATCH="${BATCH}" ${SH} ${PKGINSTALL} PRE-INSTALL
130
131
post-install:
61
post-install:
132
	@${MKDIR} ${CONF} && ${CHMOD} a+rx ${CONF}
62
	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
133
	${INSTALL_DATA} ${WRKSRC}/local_conf.py.example ${CONF}
63
	${MKDIR} ${CONFDIR}
134
	@${SED} 's|%%PREFIX%%|${PREFIX}|' ${FILESDIR}/freevo.sh.sample > ${WRKDIR}/freevo.sh.sample
64
	${CHMOD} a+rx ${CONFDIR}
135
	${INSTALL_SCRIPT} ${WRKDIR}/freevo.sh.sample ${PREFIX}/etc/rc.d/
65
	${INSTALL_DATA} ${WRKSRC}/local_conf.py.example ${CONFDIR}
136
	@${SED} 's|%%PREFIX%%|${PREFIX}|' ${PKGMESSAGE}
66
	@${CAT} ${PKGMESSAGE}
137
67
138
.include <bsd.port.post.mk>
68
.include <bsd.port.post.mk>
(-)multimedia/freevo/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (freevo-1.5.4.tar.gz) = 22ada48e84e5e3d7f80110c842ed18ca
1
MD5 (freevo-1.8.3.tar.gz) = 817ae34cca78b57970ce1bbb58e19ce3
2
SHA256 (freevo-1.5.4.tar.gz) = d9a7c9455a94c281acb8c5e3f0fc68e4289af7a557af413db2244a254dd48090
2
SHA256 (freevo-1.8.3.tar.gz) = ef9491f0d6c40ba4027266ef577f05cb77be49e68e307b67d1f917e9430eefa4
3
SIZE (freevo-1.5.4.tar.gz) = 4425484
3
SIZE (freevo-1.8.3.tar.gz) = 26713301
(-)multimedia/freevo/files/freevo-rcsubr.in (+61 lines)
Line 0 Link Here
1
#!/bin/sh
2
3
# PROVIDE: freevo
4
# REQUIRE: DAEMON
5
# KEYWORD: shutdown
6
#
7
# Uses the following /etc/rc.conf variables:
8
#	freevo_enable="YES"			master on/off
9
#	freevo_recordserver_enable="YES"	start freevo record server
10
#	freevo_webserver_enable="YES"		start freevo web server
11
#	freevo_gui_enable="YES"			start freevo GUI
12
#
13
14
. /etc/rc.subr
15
16
name=freevo
17
rcvar=`set_rcvar`
18
19
load_rc_config $name
20
: ${freevo_enable="NO"}
21
: ${freevo_recordserver_enable="NO"}
22
: ${freevo_webserver_enable="NO"}
23
: ${freevo_gui_enable="NO"}
24
25
freevo_user=${freevo_user:-"freevo"}
26
freevo_group=${freevo_group:-"freevo"}
27
freevo_uid=`pw usershow ${freevo_user} | awk -F: '{print $3}'`
28
29
command=%%PREFIX%%/bin/freevo
30
command_interpreter=%%PREFIX%%/bin/python2.5
31
_interpbn=python
32
33
case "$1" in
34
fast*)	freevo_cmd=`expr "$1" : 'fast\(.*\)'` ;;
35
*)	freevo_cmd="$1" ;;
36
esac
37
38
name=freevo_recordserver
39
rcvar=${name}_enable
40
eval ${name}_user=${freevo_user}
41
eval ${name}_group=${freevo_group}
42
pidfile=/var/run/freevo/recordserver-${freevo_uid}.pid
43
command_args="recordserver ${freevo_cmd}"
44
run_rc_command "$1"
45
46
name=freevo_webserver
47
rcvar=${name}_enable
48
eval ${name}_user=${freevo_user}
49
eval ${name}_group=${freevo_group}
50
pidfile=/var/run/freevo/webserver-${freevo_uid}.pid
51
command_args="webserver ${freevo_cmd}"
52
run_rc_command "$1"
53
54
name=freevo_gui
55
rcvar=${name}_enable
56
eval ${name}_user=${freevo_user}
57
eval ${name}_group=${freevo_group}
58
pidfile=/var/run/freevo/freevo-${freevo_uid}.pid
59
command_args="${freevo_cmd}"
60
run_rc_command "$1"
61
(-)multimedia/freevo/files/freevo.in (+55 lines)
Line 0 Link Here
1
#!/bin/sh
2
3
# PROVIDE: freevo
4
# REQUIRE: DAEMON lircd
5
# KEYWORD: shutdown
6
#
7
# Uses the following /etc/rc.conf variables:
8
#	freevo_enable="YES"			master on/off
9
#	freevo_recordserver_enable="YES"	start freevo record server
10
#	freevo_webserver_enable="YES"		start freevo web server
11
#	freevo_gui_enable="YES"			start freevo GUI
12
#
13
14
. /etc/rc.subr
15
16
name=freevo
17
rcvar=`set_rcvar`
18
19
load_rc_config $name
20
: ${freevo_enable="NO"}
21
: ${freevo_recordserver_enable="NO"}
22
: ${freevo_webserver_enable="NO"}
23
: ${freevo_gui_enable="NO"}
24
25
freevo_user=${freevo_user:-"freevo"}
26
freevo_group=${freevo_group:-"freevo"}
27
freevo_uid=`pw usershow ${freevo_user} | awk -F: '{print $3}'`
28
freevo_dir=`pw usershow ${freevo_user} | awk -F: '{print $9}'`
29
30
command=%%PREFIX%%/bin/freevo
31
command_interpreter="%%PREFIX%%/bin/python2.5"
32
33
cd ${freevo_dir}
34
35
case "$1" in
36
start)
37
	[ ${freevo_recordserver_enable} = "YES" ] && su ${freevo_user} -c "${command} recordserver start"
38
	[ ${freevo_webserver_enable} = "YES" ] && su ${freevo_user} -c "${command} webserver start"
39
	[ ${freevo_gui_enable} = "YES" ] && su ${freevo_user} -c "${command}  start"
40
	;;
41
stop)
42
	[ ${freevo_recordserver_enable} = "YES" ] && su ${freevo_user} -c "${command} recordserver stop"
43
	[ ${freevo_webserver_enable} = "YES" ] && su ${freevo_user} -c "${command} webserver stop"
44
	[ ${freevo_gui_enable} = "YES" ] && su ${freevo_user} -c "${command}  stop"
45
	;;
46
restart)
47
	[ ${freevo_recordserver_enable} = "YES" ] && su ${freevo_user} -c "${command} recordserver stop"
48
	[ ${freevo_webserver_enable} = "YES" ] && su ${freevo_user} -c "${command} webserver stop"
49
	[ ${freevo_gui_enable} = "YES" ] && su ${freevo_user} -c "${command}  stop"
50
	[ ${freevo_recordserver_enable} = "YES" ] && su ${freevo_user} -c "${command} recordserver start"
51
	[ ${freevo_webserver_enable} = "YES" ] && su ${freevo_user} -c "${command} webserver start"
52
	[ ${freevo_gui_enable} = "YES" ] && su ${freevo_user} -c "${command}  start"
53
	;;
54
esac
55
(-)multimedia/freevo/files/freevo.sh.sample (-26 lines)
Lines 1-26 Link Here
1
#!/bin/sh
2
3
PREFIX=%%PREFIX%%
4
RUN="/usr/bin/su freevo -c"
5
PATH=${PATH}:%%PREFIX%%/bin
6
7
case "$1" in
8
start)
9
	${RUN} "${PREFIX}/bin/freevo recordserver start" \
10
		&& echo -n " freevo-recordserver"
11
	${RUN} "${PREFIX}/bin/freevo webserver start" \
12
		&& echo -n " freevo-webserver"
13
	${RUN} "${PREFIX}/bin/freevo -fs start" > /dev/null 2>&1 &
14
		   echo -n " freevo"
15
	;;
16
stop)
17
	${RUN} "${PREFIX}/bin/freevo stop"
18
	${RUN} "${PREFIX}/bin/freevo webserver stop"
19
	${RUN} "${PREFIX}/bin/freevo recordserver stop"
20
	;;
21
*)
22
	echo "Usage: `basename $0` {start|stop}" >&2
23
	;;
24
esac
25
26
exit 0
(-)multimedia/freevo/files/patch-freevo (+20 lines)
Line 0 Link Here
1
--- freevo.orig	2009-01-11 15:50:59.000000000 -0500
2
+++ freevo	2009-01-13 21:39:10.000000000 -0500
3
@@ -156,7 +156,7 @@
4
     get pid of running 'name'
5
     """
6
     _debug_('getpid(name=%r, arg=%r)' % (name, arg))
7
-    for fname in ('/var/run/' + name  + '-%s.pid' % os.getuid(),
8
+    for fname in ('/var/run/freevo/' + name  + '-%s.pid' % os.getuid(),
9
                   '/tmp/' + name + '-%s.pid' % os.getuid()):
10
         if os.path.isfile(fname):
11
             f = open(fname)
12
@@ -259,7 +259,7 @@
13
     if pid:
14
         if store:
15
             try:
16
-                f = open('/var/run/' + name + '-%s.pid' % os.getuid(), 'w')
17
+                f = open('/var/run/freevo/' + name + '-%s.pid' % os.getuid(), 'w')
18
             except (OSError, IOError):
19
                 f = open('/tmp/' + name + '-%s.pid' % os.getuid(), 'w')
20
 
(-)multimedia/freevo/files/patch-local_conf.py.example (-61 lines)
Lines 1-61 Link Here
1
--- local_conf.py.example	Mon Jan 24 00:04:02 2005
2
+++ local_conf.py.example	Tue Sep 20 20:24:12 2005
3
@@ -92,6 +92,15 @@
4
 # ENABLE_SHUTDOWN_SYS = 0
5
 
6
 #
7
+# FreeBSD shutdown-specific options.
8
+#
9
+# SHUTDOWN_SYS_CMD = '/sbin/shutdown -p now'
10
+# RESTART_SYS_CMD  = '/sbin/shutdown -r now'
11
+#
12
+# You might consider installing sudo and having:
13
+# SHUTDOWN_SYS_CMD = '/usr/local/bin/sudo /sbin/...'
14
+
15
+#
16
 # You can add more keybindings by adding them to the correct hash. 
17
 # e.g. If you want to send 'contrast -100' to mplayer by pressing the '1' key, 
18
 # just add the following line: 
19
@@ -126,6 +135,7 @@
20
 # Freevo can write to.
21
 #
22
 # OVERLAY_DIR = os.path.join(FREEVO_CACHEDIR, 'vfs')
23
+OVERLAY_DIR = os.path.join(FREEVO_CACHEDIR, 'vfs')
24
 
25
 #
26
 # Umask setting for all files.
27
@@ -133,6 +143,7 @@
28
 # installation with different users, set this to 002
29
 #
30
 # UMASK = 022
31
+UMASK = 002
32
 
33
 #
34
 # Suffix for playlist files
35
@@ -195,6 +206,18 @@
36
 # Enable this for joystick support:
37
 # plugin.activate('joy')
38
 
39
+#
40
+# Extra FreeBSD default plugins (all detailed on the Freevo Wiki's
41
+# PluginInfo page):
42
+plugin.activate('idlebar')
43
+#plugin.activate('idlebar.mail')
44
+plugin.activate('idlebar.tv')
45
+#plugin.activate('idlebar.weather', level=30, args=('CODE'))
46
+plugin.activate('idlebar.clock')
47
+plugin.activate('idlebar.cdstatus')
48
+plugin.activate('idlebar.holidays')
49
+plugin.activate('idlebar.sensors')
50
+
51
 # ======================================================================
52
 # Freevo directory settings:
53
 # ======================================================================
54
@@ -231,6 +254,7 @@
55
 # Smart sorting ignores the word "The" in item names.
56
 #
57
 # DIRECTORY_SMART_SORT = 0
58
+DIRECTORY_SMART_SORT = 1
59
 
60
 #
61
 # Should Freevo autoplay an item if only one item is in the directory?
(-)multimedia/freevo/files/patch-src-plugins-autoshutdown.py (+11 lines)
Line 0 Link Here
1
--- src/plugins/autoshutdown.py.orig	2008-03-22 07:42:02.000000000 -0400
2
+++ src/plugins/autoshutdown.py	2009-01-13 21:39:21.000000000 -0500
3
@@ -632,7 +632,7 @@
4
     @returns: True/False
5
     """
6
     _debug_('__is_recordserver_remote()', 2)
7
-    if len(glob.glob('/var/run/recordserver*.pid')) > 0:
8
+    if len(glob.glob('/var/run/freevo/recordserver*.pid')) > 0:
9
         return False
10
     elif len(glob.glob('/tmp/recordserver*.pid')) > 0:
11
         return False
(-)multimedia/freevo/files/patch-src-plugins-rom_drives.py (-11 lines)
Lines 1-11 Link Here
1
--- src/plugins/rom_drives.py.orig	Sun Oct 16 18:18:49 2005
2
+++ src/plugins/rom_drives.py	Sun Feb 26 17:59:30 2006
3
@@ -70,7 +70,7 @@
4
         # FreeBSD ioctls - there is no CDROM.py...
5
         CDIOCEJECT = 0x20006318
6
         CDIOCCLOSE = 0x2000631c
7
-        CDIOREADTOCENTRYS = 0xc0086305
8
+        CDIOREADTOCENTRYS = -1073192187
9
         CD_LBA_FORMAT = 1
10
         CD_MSF_FORMAT = 2
11
         CDS_NO_DISC = 1
(-)multimedia/freevo/files/patch-src-www-configlib.py (+11 lines)
Line 0 Link Here
1
--- src/www/configlib.py.orig	2008-02-21 15:49:20.000000000 -0500
2
+++ src/www/configlib.py	2009-01-13 21:39:28.000000000 -0500
3
@@ -53,7 +53,7 @@
4
     """
5
     get pid of running 'name'
6
     """
7
-    for fname in ('/var/run/' + name  + '-%s.pid' % os.getuid(),
8
+    for fname in ('/var/run/freevo/' + name  + '-%s.pid' % os.getuid(),
9
                   '/tmp/' + name + '-%s.pid' % os.getuid()):
10
         if os.path.isfile(fname):
11
             f = open(fname)
(-)multimedia/freevo/files/pkg-deinstall.in (+25 lines)
Line 0 Link Here
1
#!/bin/sh
2
# warn about manually removing user/group/homedir and log/rundirs
3
4
user=%%FREEVO_USER%%
5
group=%%FREEVO_GROUP%%
6
home=%%FREEVO_HOME%%
7
8
if [ "$2" = "POST-DEINSTALL" ]; then
9
	if pw usershow "$user" >/dev/null 2>&1; then
10
		echo "Warning: if this is a final deinstall, remove user \"$user\" manually"
11
	fi
12
	if pw groupshow "$group" >/dev/null 2>&1; then
13
		echo "Warning: if this is a final deinstall, remove group \"$group\" manually"
14
	fi
15
	if [ -d "$home" ]; then
16
		echo "Warning: if this is a final deinstall, remove directory \"$home\" manually"
17
	fi
18
	if [ -d "/var/log/freevo" ]; then
19
		echo "Warning: if this is a final deinstall, remove directory \"/var/log/freevo\" manually"
20
	fi 
21
	if [ -d "/var/run/freevo" ]; then
22
		echo "Warning: if this is a final deinstall, remove directory \"/var/run/freevo\" manually"
23
	fi 
24
fi
25
(-)multimedia/freevo/files/pkg-install.in (+52 lines)
Line 0 Link Here
1
#!/bin/sh
2
# create freevo user/group/homedir and log/rundirs
3
4
user=%%FREEVO_USER%%
5
group=%%FREEVO_GROUP%%
6
uid=%%FREEVO_UID%%
7
gid=%%FREEVO_GID%%
8
home=%%FREEVO_HOME%%
9
10
export PATH=/bin:/usr/bin:/sbin:/usr/sbin
11
12
if [ "$1" = "PRE-INSTALL" ]; then
13
	if pw groupshow "$group" 2>/dev/null; then
14
		echo "You already have a group \"$group\", so I will use it."
15
	else
16
		echo "Creating group \"$group\"..."
17
		pw groupadd $group -g $gid || exit 1
18
	fi
19
20
	if pw usershow "$user" 2>/dev/null; then
21
		echo "You already have a user \"$user\", so I will use it."
22
	else
23
		echo "Creating user \"$user\"..."
24
		pw useradd $user -u $uid -g $group -d $home -s /bin/sh \
25
		    -c "Freevo Owner" || exit 1
26
	fi
27
28
	if [ -d "$home" ]; then
29
		echo "You already have a freevo home directory \"$home\", so I will use it."
30
	else
31
		echo "Creating freevo home directory \"$home\"..."
32
		mkdir -p $home
33
		chown $user:$group $home
34
	fi
35
36
	if [ -d "/var/log/freevo" ]; then
37
		echo "You already have a freevo log directory \"/var/log/freevo\", so I will use it."
38
	else
39
		echo "Creating freevo log directory \"/var/log/freevo\"..."
40
		mkdir -p /var/log/freevo
41
		chown $user:$group /var/log/freevo
42
	fi
43
44
	if [ -d "/var/run/freevo" ]; then
45
		echo "You already have a freevo log directory \"/var/run/freevo\", so I will use it."
46
	else
47
		echo "Creating freevo run directory \"/var/run/freevo\"..."
48
		mkdir -p /var/run/freevo
49
		chown $user:$group /var/run/freevo
50
	fi
51
fi
52
(-)multimedia/freevo/files/pkg-message.in (-10 / +28 lines)
Lines 3-23 Link Here
3
  Freevo is now installed.  It might be a good idea to read the docs
3
  Freevo is now installed.  It might be a good idea to read the docs
4
  in %%PREFIX%%/share/doc/freevo-%%PORTVERSION%%
4
  in %%PREFIX%%/share/doc/freevo-%%PORTVERSION%%
5
5
6
  By default Freevo is configured with a single VFS in /var/db/cache.
6
***********************************************************************
7
  You can use this by adding users to the freevo group.
8
9
  To get up and running quickly try: freevo setup && freevo --help
10
7
11
  Freevo can be configured to start on boot by using the sample
8
  You will need to ensure that the directory %%FREEVO_HOME%%/tv is on
12
  startup script in %%PREFIX%%/etc/rc.d/freevo.sh.sample
9
  a filesystem with lots of space.  The default location may not be
10
  adequate.  One possibility is to create a freevo TV directory on a
11
  suitable filesystem, then create a symlink to it from %%FREEVO_HOME%%/tv.
13
12
14
***********************************************************************
13
***********************************************************************
15
14
16
  IMPORTANT: Freevo requires procfs to be mounted on /proc. You can
15
  Freevo requires procfs to be mounted on /proc. You can do this by
17
  do this by adding the following entry to your /etc/fstab:
16
  adding the following entry to your /etc/fstab:
17
18
    proc	/proc	procfs	rw	0 0
18
19
19
    proc	/proc	procfs	rw	1 1
20
  Without this freevo will not shut down correctly.
21
22
***********************************************************************
20
23
21
  WITHOUT THIS FREEVO WILL NOT SHUT DOWN CORRECTLY!
24
  To get freevo up and running copy and edit:
25
	%%PREFIX%%/etc/freevo/local_conf.py.example
26
  then:
27
	su freevo
28
	freevo setup
29
	freevo start recordserver
30
	freevo start
31
  and also:
32
	freevo --help
33
34
  Freevo can be configured to start on boot by setting the following
35
  variables in /etc/rc.conf:
36
	freevo_enable="YES"			enables Freevo subsystem
37
	freevo_recordserver_enable="YES"	starts record server
38
	freevo_webserver_enable="YES"		starts record server
39
	freevo_gui_enable="YES"			starts Freevo GUI
22
40
23
***********************************************************************
41
***********************************************************************
(-)multimedia/freevo/pkg-deinstall (-64 lines)
Lines 1-64 Link Here
1
#!/bin/sh
2
# Stolen from mail/nullmailer
3
4
user=freevo
5
group=freevo
6
home=/var/db/freevo
7
8
ask() {
9
    local question default answer
10
11
    question=$1
12
    default=$2
13
    if [ -z "${PACKAGE_BUILDING}" ]; then
14
        read -p "${question} [${default}]? " answer
15
    fi
16
    if [ x${answer} = x ]; then
17
        answer=${default}
18
    fi
19
    echo ${answer}
20
}
21
22
yesno() {
23
    local dflt question answer
24
25
    question=$1
26
    dflt=$2
27
    while :; do
28
	answer=$(ask "${question}" "${dflt}")
29
	case "${answer}" in
30
	[Yy]*)		return 0;;
31
	[Nn]*)		return 1;;
32
	esac
33
	echo "Please answer yes or no."
34
    done
35
}
36
37
delete_account() {
38
    local u g home
39
40
    u=$1
41
    g=$2
42
    if yesno "Do you want me to remove group \"${g}\"" y; then
43
	pw groupdel -n ${g}
44
	echo "Done."
45
    fi
46
    if yesno "Do you want me to remove user \"${u}\"" y; then
47
	pw userdel -n ${u}
48
	echo "Done."
49
    fi
50
}
51
52
delete_home() {
53
    if [ -d ${home} ]; then
54
	if yesno "Do you want me to remove your Freevo cache \"${home}\"" n; then
55
	    rm -rf ${home}
56
	    echo "Done."
57
	fi
58
    fi
59
}
60
61
if [ x"$2" = xPOST-DEINSTALL ]; then
62
    delete_account ${user} ${group};
63
    delete_home;
64
fi
(-)multimedia/freevo/pkg-descr (+1 lines)
Lines 13-15 Link Here
13
control applications like Freevo.
13
control applications like Freevo.
14
14
15
WWW: http://freevo.sourceforge.net/
15
WWW: http://freevo.sourceforge.net/
16
WWW: http://opal.com/jr/freebsd/ports/multimedia/freevo/
(-)multimedia/freevo/pkg-install (-95 lines)
Lines 1-95 Link Here
1
#!/bin/sh
2
# Stolen by lewiz from mail/nullmailer
3
4
user=freevo
5
group=freevo
6
uid=523
7
gid=523
8
home=/var/db/freevo
9
perm=775
10
11
ask() {
12
    local question default answer
13
14
    question=$1
15
    default=$2
16
    if [ -z "${PACKAGE_BUILDING}" ]; then
17
      read -p "${question} [${default}]? " answer
18
    fi
19
    if [ x${answer} = x ]; then
20
      answer=${default}
21
    fi
22
    echo ${answer}
23
}
24
25
yesno() {
26
    local dflt question answer
27
28
    question=$1
29
    dflt=$2
30
    while :; do
31
	answer=$(ask "${question}" "${dflt}")
32
	case "${answer}" in
33
	[Yy]*)          return 0;;
34
	[Nn]*)          return 1;;
35
	esac
36
	echo "Please answer yes or no."
37
    done
38
}
39
40
creategroup() {
41
    if /usr/sbin/pw groupshow "${group}" 2>/dev/null; then
42
	echo "You already have a group \"${group}\", so I will use it."
43
    else
44
	echo "You need a group \"${group}\"."
45
	if ([ -n "$BATCH" ] || yesno "Would you like me to create it" y); then
46
	    /usr/sbin/pw groupadd ${group} -g ${gid} || exit
47
	    echo "Done."
48
	else
49
	    echo "Please create it, and try again."
50
	    exit 1
51
	fi
52
    fi
53
}
54
55
createuser() {
56
    if /usr/sbin/pw user show "${user}" 2>/dev/null; then
57
	echo "You already have a user \"${user}\", so I will use it."
58
	pw usermod "${user}" -d ${home}
59
    else
60
	echo "You need a user \"${user}\"."
61
	if ([ -n "$BATCH" ] || yesno "Would you like me to create it" y); then
62
	    /usr/sbin/pw useradd ${user} -u ${uid} -g ${group} -d ${home} \
63
		-s /bin/sh -c "Freevo Owner" || exit
64
	    echo "Done."
65
	else
66
	    echo "Please create it, and try again."
67
	    exit 1
68
	fi
69
    fi
70
}
71
72
createhome() {
73
    if [ -d ${home} ]; then
74
	echo "You already have a cache directory \"${home}\", so I will use it."
75
	chown ${user}:${group} ${home} # Should we recurse?
76
	chmod ${perm} ${home} # Should we recurse?
77
    else
78
	echo "You need a cache directory \"${home}\"."
79
	if ([ -n "$BATCH" ] || yesno "Would you like me to create it" y); then
80
	    mkdir ${home}
81
	    chown ${user}:${group} ${home}
82
	    chmod ${perm} ${home}
83
	    echo "Done."
84
	else
85
	    echo "Please create it, and try again."
86
	    exit 1
87
	fi
88
    fi
89
}
90
91
if [ x"$1" = xPRE-INSTALL ]; then
92
    creategroup;
93
    createuser;
94
    createhome;
95
fi
(-)multimedia/freevo/pkg-plist (-441 / +1797 lines)
Lines 1-6 Link Here
1
bin/freevo
1
bin/freevo
2
etc/freevo/local_conf.py.example
2
etc/freevo/local_conf.py.example
3
etc/rc.d/freevo.sh.sample
4
%%PYTHON_SITELIBDIR%%/freevo/__init__.py
3
%%PYTHON_SITELIBDIR%%/freevo/__init__.py
5
%%PYTHON_SITELIBDIR%%/freevo/__init__.pyc
4
%%PYTHON_SITELIBDIR%%/freevo/__init__.pyc
6
%%PYTHON_SITELIBDIR%%/freevo/__init__.pyo
5
%%PYTHON_SITELIBDIR%%/freevo/__init__.pyo
Lines 37-42 Link Here
37
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/__init__.py
36
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/__init__.py
38
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/__init__.pyc
37
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/__init__.pyc
39
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/__init__.pyo
38
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/__init__.pyo
39
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/album_tree.py
40
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/album_tree.pyc
41
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/album_tree.pyo
42
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/apodcast.py
43
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/apodcast.pyc
44
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/apodcast.pyo
45
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/audioscrobbler.py
46
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/audioscrobbler.pyc
47
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/audioscrobbler.pyo
40
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/cdbackup.py
48
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/cdbackup.py
41
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/cdbackup.pyc
49
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/cdbackup.pyc
42
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/cdbackup.pyo
50
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/cdbackup.pyo
Lines 49-72 Link Here
49
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/detachbar.py
57
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/detachbar.py
50
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/detachbar.pyc
58
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/detachbar.pyc
51
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/detachbar.pyo
59
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/detachbar.pyo
60
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/freevo_scrobbler.py
61
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/freevo_scrobbler.pyc
62
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/freevo_scrobbler.pyo
52
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/fxmms.py
63
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/fxmms.py
53
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/fxmms.pyc
64
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/fxmms.pyc
54
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/fxmms.pyo
65
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/fxmms.pyo
66
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm.py
67
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm.pyc
68
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm.pyo
69
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm2.py
70
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm2.pyc
71
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm2.pyo
55
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/logger.py
72
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/logger.py
56
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/logger.pyc
73
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/logger.pyc
57
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/logger.pyo
74
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/logger.pyo
75
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lyrics.py
76
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lyrics.pyc
77
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lyrics.pyo
78
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_playlist.py
79
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_playlist.pyc
80
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_playlist.pyo
81
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_status.py
82
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_status.pyc
83
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_status.pyo
84
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpdclient2.py
85
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpdclient2.pyc
86
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpdclient2.pyo
58
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayer.py
87
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayer.py
59
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayer.pyc
88
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayer.pyc
60
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayer.pyo
89
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayer.pyo
61
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervbr.py
90
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis1.py
62
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervbr.pyc
91
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis1.pyc
63
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervbr.pyo
92
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis1.pyo
64
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis.py
93
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis2.py
65
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis.pyc
94
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis2.pyc
66
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis.pyo
95
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis2.pyo
67
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlist.py
96
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/musicip.py
68
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlist.pyc
97
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/musicip.pyc
69
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlist.pyo
98
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/musicip.pyo
99
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlists.py
100
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlists.pyc
101
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlists.pyo
70
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/radio.py
102
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/radio.py
71
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/radio.pyc
103
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/radio.pyc
72
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/radio.pyo
104
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/radio.pyo
Lines 79-96 Link Here
79
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xine.py
111
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xine.py
80
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xine.pyc
112
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xine.pyc
81
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xine.pyo
113
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xine.pyo
114
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xmradio.py
115
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xmradio.pyc
116
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xmradio.pyo
82
%%PYTHON_SITELIBDIR%%/freevo/childapp.py
117
%%PYTHON_SITELIBDIR%%/freevo/childapp.py
83
%%PYTHON_SITELIBDIR%%/freevo/childapp.pyc
118
%%PYTHON_SITELIBDIR%%/freevo/childapp.pyc
84
%%PYTHON_SITELIBDIR%%/freevo/childapp.pyo
119
%%PYTHON_SITELIBDIR%%/freevo/childapp.pyo
120
%%PYTHON_SITELIBDIR%%/freevo/commdetectcore.py
121
%%PYTHON_SITELIBDIR%%/freevo/commdetectcore.pyc
122
%%PYTHON_SITELIBDIR%%/freevo/commdetectcore.pyo
85
%%PYTHON_SITELIBDIR%%/freevo/config.py
123
%%PYTHON_SITELIBDIR%%/freevo/config.py
86
%%PYTHON_SITELIBDIR%%/freevo/config.pyc
124
%%PYTHON_SITELIBDIR%%/freevo/config.pyc
87
%%PYTHON_SITELIBDIR%%/freevo/config.pyo
125
%%PYTHON_SITELIBDIR%%/freevo/config.pyo
126
%%PYTHON_SITELIBDIR%%/freevo/dialog/__init__.py
127
%%PYTHON_SITELIBDIR%%/freevo/dialog/__init__.pyc
128
%%PYTHON_SITELIBDIR%%/freevo/dialog/__init__.pyo
129
%%PYTHON_SITELIBDIR%%/freevo/dialog/dialogs.py
130
%%PYTHON_SITELIBDIR%%/freevo/dialog/dialogs.pyc
131
%%PYTHON_SITELIBDIR%%/freevo/dialog/dialogs.pyo
132
%%PYTHON_SITELIBDIR%%/freevo/dialog/display.py
133
%%PYTHON_SITELIBDIR%%/freevo/dialog/display.pyc
134
%%PYTHON_SITELIBDIR%%/freevo/dialog/display.pyo
135
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/__init__.py
136
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/__init__.pyc
137
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/__init__.pyo
138
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/osd_display.py
139
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/osd_display.pyc
140
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/osd_display.pyo
141
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/tiny_xosd_display.py
142
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/tiny_xosd_display.pyc
143
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/tiny_xosd_display.pyo
144
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/x11_overlay_display.py
145
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/x11_overlay_display.pyc
146
%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/x11_overlay_display.pyo
147
%%PYTHON_SITELIBDIR%%/freevo/dialog/widgets.py
148
%%PYTHON_SITELIBDIR%%/freevo/dialog/widgets.pyc
149
%%PYTHON_SITELIBDIR%%/freevo/dialog/widgets.pyo
88
%%PYTHON_SITELIBDIR%%/freevo/directory.py
150
%%PYTHON_SITELIBDIR%%/freevo/directory.py
89
%%PYTHON_SITELIBDIR%%/freevo/directory.pyc
151
%%PYTHON_SITELIBDIR%%/freevo/directory.pyc
90
%%PYTHON_SITELIBDIR%%/freevo/directory.pyo
152
%%PYTHON_SITELIBDIR%%/freevo/directory.pyo
153
%%PYTHON_SITELIBDIR%%/freevo/encodingcore.py
154
%%PYTHON_SITELIBDIR%%/freevo/encodingcore.pyc
155
%%PYTHON_SITELIBDIR%%/freevo/encodingcore.pyo
156
%%PYTHON_SITELIBDIR%%/freevo/evdev.py
157
%%PYTHON_SITELIBDIR%%/freevo/evdev.pyc
158
%%PYTHON_SITELIBDIR%%/freevo/evdev.pyo
91
%%PYTHON_SITELIBDIR%%/freevo/event.py
159
%%PYTHON_SITELIBDIR%%/freevo/event.py
92
%%PYTHON_SITELIBDIR%%/freevo/event.pyc
160
%%PYTHON_SITELIBDIR%%/freevo/event.pyc
93
%%PYTHON_SITELIBDIR%%/freevo/event.pyo
161
%%PYTHON_SITELIBDIR%%/freevo/event.pyo
162
%%PYTHON_SITELIBDIR%%/freevo/evfallback.py
163
%%PYTHON_SITELIBDIR%%/freevo/evfallback.pyc
164
%%PYTHON_SITELIBDIR%%/freevo/evfallback.pyo
94
%%PYTHON_SITELIBDIR%%/freevo/fxditem.py
165
%%PYTHON_SITELIBDIR%%/freevo/fxditem.py
95
%%PYTHON_SITELIBDIR%%/freevo/fxditem.pyc
166
%%PYTHON_SITELIBDIR%%/freevo/fxditem.pyc
96
%%PYTHON_SITELIBDIR%%/freevo/fxditem.pyo
167
%%PYTHON_SITELIBDIR%%/freevo/fxditem.pyo
Lines 190-213 Link Here
190
%%PYTHON_SITELIBDIR%%/freevo/gui/exceptions.py
261
%%PYTHON_SITELIBDIR%%/freevo/gui/exceptions.py
191
%%PYTHON_SITELIBDIR%%/freevo/gui/exceptions.pyc
262
%%PYTHON_SITELIBDIR%%/freevo/gui/exceptions.pyc
192
%%PYTHON_SITELIBDIR%%/freevo/gui/exceptions.pyo
263
%%PYTHON_SITELIBDIR%%/freevo/gui/exceptions.pyo
264
%%PYTHON_SITELIBDIR%%/freevo/gui/sounds.py
265
%%PYTHON_SITELIBDIR%%/freevo/gui/sounds.pyc
266
%%PYTHON_SITELIBDIR%%/freevo/gui/sounds.pyo
193
%%PYTHON_SITELIBDIR%%/freevo/helpers/__init__.py
267
%%PYTHON_SITELIBDIR%%/freevo/helpers/__init__.py
194
%%PYTHON_SITELIBDIR%%/freevo/helpers/__init__.pyc
268
%%PYTHON_SITELIBDIR%%/freevo/helpers/__init__.pyc
195
%%PYTHON_SITELIBDIR%%/freevo/helpers/__init__.pyo
269
%%PYTHON_SITELIBDIR%%/freevo/helpers/__init__.pyo
270
%%PYTHON_SITELIBDIR%%/freevo/helpers/audioscrobbler-errors.py
271
%%PYTHON_SITELIBDIR%%/freevo/helpers/audioscrobbler-errors.pyc
272
%%PYTHON_SITELIBDIR%%/freevo/helpers/audioscrobbler-errors.pyo
196
%%PYTHON_SITELIBDIR%%/freevo/helpers/cache.py
273
%%PYTHON_SITELIBDIR%%/freevo/helpers/cache.py
197
%%PYTHON_SITELIBDIR%%/freevo/helpers/cache.pyc
274
%%PYTHON_SITELIBDIR%%/freevo/helpers/cache.pyc
198
%%PYTHON_SITELIBDIR%%/freevo/helpers/cache.pyo
275
%%PYTHON_SITELIBDIR%%/freevo/helpers/cache.pyo
276
%%PYTHON_SITELIBDIR%%/freevo/helpers/commdetectserver.py
277
%%PYTHON_SITELIBDIR%%/freevo/helpers/commdetectserver.pyc
278
%%PYTHON_SITELIBDIR%%/freevo/helpers/commdetectserver.pyo
199
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_config.py
279
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_config.py
200
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_config.pyc
280
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_config.pyc
201
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_config.pyo
281
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_config.pyo
282
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_favorites.py
283
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_favorites.pyc
284
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_favorites.pyo
202
%%PYTHON_SITELIBDIR%%/freevo/helpers/daemon.py
285
%%PYTHON_SITELIBDIR%%/freevo/helpers/daemon.py
203
%%PYTHON_SITELIBDIR%%/freevo/helpers/daemon.pyc
286
%%PYTHON_SITELIBDIR%%/freevo/helpers/daemon.pyc
204
%%PYTHON_SITELIBDIR%%/freevo/helpers/daemon.pyo
287
%%PYTHON_SITELIBDIR%%/freevo/helpers/daemon.pyo
288
%%PYTHON_SITELIBDIR%%/freevo/helpers/encodingserver.py
289
%%PYTHON_SITELIBDIR%%/freevo/helpers/encodingserver.pyc
290
%%PYTHON_SITELIBDIR%%/freevo/helpers/encodingserver.pyo
205
%%PYTHON_SITELIBDIR%%/freevo/helpers/imdb.py
291
%%PYTHON_SITELIBDIR%%/freevo/helpers/imdb.py
206
%%PYTHON_SITELIBDIR%%/freevo/helpers/imdb.pyc
292
%%PYTHON_SITELIBDIR%%/freevo/helpers/imdb.pyc
207
%%PYTHON_SITELIBDIR%%/freevo/helpers/imdb.pyo
293
%%PYTHON_SITELIBDIR%%/freevo/helpers/imdb.pyo
208
%%PYTHON_SITELIBDIR%%/freevo/helpers/install.py
294
%%PYTHON_SITELIBDIR%%/freevo/helpers/install.py
209
%%PYTHON_SITELIBDIR%%/freevo/helpers/install.pyc
295
%%PYTHON_SITELIBDIR%%/freevo/helpers/install.pyc
210
%%PYTHON_SITELIBDIR%%/freevo/helpers/install.pyo
296
%%PYTHON_SITELIBDIR%%/freevo/helpers/install.pyo
297
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelinuxevent.py
298
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelinuxevent.pyc
299
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelinuxevent.pyo
211
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelircrc.py
300
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelircrc.py
212
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelircrc.pyc
301
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelircrc.pyc
213
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelircrc.pyo
302
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelircrc.pyo
Lines 217-222 Link Here
217
%%PYTHON_SITELIBDIR%%/freevo/helpers/makestationlist.py
306
%%PYTHON_SITELIBDIR%%/freevo/helpers/makestationlist.py
218
%%PYTHON_SITELIBDIR%%/freevo/helpers/makestationlist.pyc
307
%%PYTHON_SITELIBDIR%%/freevo/helpers/makestationlist.pyc
219
%%PYTHON_SITELIBDIR%%/freevo/helpers/makestationlist.pyo
308
%%PYTHON_SITELIBDIR%%/freevo/helpers/makestationlist.pyo
309
%%PYTHON_SITELIBDIR%%/freevo/helpers/mkimagemrss.py
310
%%PYTHON_SITELIBDIR%%/freevo/helpers/mkimagemrss.pyc
311
%%PYTHON_SITELIBDIR%%/freevo/helpers/mkimagemrss.pyo
312
%%PYTHON_SITELIBDIR%%/freevo/helpers/passwd.py
313
%%PYTHON_SITELIBDIR%%/freevo/helpers/passwd.pyc
314
%%PYTHON_SITELIBDIR%%/freevo/helpers/passwd.pyo
220
%%PYTHON_SITELIBDIR%%/freevo/helpers/plugins.py
315
%%PYTHON_SITELIBDIR%%/freevo/helpers/plugins.py
221
%%PYTHON_SITELIBDIR%%/freevo/helpers/plugins.pyc
316
%%PYTHON_SITELIBDIR%%/freevo/helpers/plugins.pyc
222
%%PYTHON_SITELIBDIR%%/freevo/helpers/plugins.pyo
317
%%PYTHON_SITELIBDIR%%/freevo/helpers/plugins.pyo
Lines 226-237 Link Here
226
%%PYTHON_SITELIBDIR%%/freevo/helpers/remote.py
321
%%PYTHON_SITELIBDIR%%/freevo/helpers/remote.py
227
%%PYTHON_SITELIBDIR%%/freevo/helpers/remote.pyc
322
%%PYTHON_SITELIBDIR%%/freevo/helpers/remote.pyc
228
%%PYTHON_SITELIBDIR%%/freevo/helpers/remote.pyo
323
%%PYTHON_SITELIBDIR%%/freevo/helpers/remote.pyo
324
%%PYTHON_SITELIBDIR%%/freevo/helpers/rssserver.py
325
%%PYTHON_SITELIBDIR%%/freevo/helpers/rssserver.pyc
326
%%PYTHON_SITELIBDIR%%/freevo/helpers/rssserver.pyo
229
%%PYTHON_SITELIBDIR%%/freevo/helpers/schedulefavorites.py
327
%%PYTHON_SITELIBDIR%%/freevo/helpers/schedulefavorites.py
230
%%PYTHON_SITELIBDIR%%/freevo/helpers/schedulefavorites.pyc
328
%%PYTHON_SITELIBDIR%%/freevo/helpers/schedulefavorites.pyc
231
%%PYTHON_SITELIBDIR%%/freevo/helpers/schedulefavorites.pyo
329
%%PYTHON_SITELIBDIR%%/freevo/helpers/schedulefavorites.pyo
330
%%PYTHON_SITELIBDIR%%/freevo/helpers/svgtodialog.py
331
%%PYTHON_SITELIBDIR%%/freevo/helpers/svgtodialog.pyc
332
%%PYTHON_SITELIBDIR%%/freevo/helpers/svgtodialog.pyo
232
%%PYTHON_SITELIBDIR%%/freevo/helpers/tv_grab.py
333
%%PYTHON_SITELIBDIR%%/freevo/helpers/tv_grab.py
233
%%PYTHON_SITELIBDIR%%/freevo/helpers/tv_grab.pyc
334
%%PYTHON_SITELIBDIR%%/freevo/helpers/tv_grab.pyc
234
%%PYTHON_SITELIBDIR%%/freevo/helpers/tv_grab.pyo
335
%%PYTHON_SITELIBDIR%%/freevo/helpers/tv_grab.pyo
336
%%PYTHON_SITELIBDIR%%/freevo/helpers/vg.py
337
%%PYTHON_SITELIBDIR%%/freevo/helpers/vg.pyc
338
%%PYTHON_SITELIBDIR%%/freevo/helpers/vg.pyo
235
%%PYTHON_SITELIBDIR%%/freevo/helpers/vtrelease.py
339
%%PYTHON_SITELIBDIR%%/freevo/helpers/vtrelease.py
236
%%PYTHON_SITELIBDIR%%/freevo/helpers/vtrelease.pyc
340
%%PYTHON_SITELIBDIR%%/freevo/helpers/vtrelease.pyc
237
%%PYTHON_SITELIBDIR%%/freevo/helpers/vtrelease.pyo
341
%%PYTHON_SITELIBDIR%%/freevo/helpers/vtrelease.pyo
Lines 250-255 Link Here
250
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/apod.py
354
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/apod.py
251
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/apod.pyc
355
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/apod.pyc
252
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/apod.pyo
356
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/apod.pyo
357
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/flickr.py
358
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/flickr.pyc
359
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/flickr.pyo
253
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/gphoto.py
360
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/gphoto.py
254
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/gphoto.pyc
361
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/gphoto.pyc
255
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/gphoto.pyo
362
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/gphoto.pyo
Lines 259-264 Link Here
259
%%PYTHON_SITELIBDIR%%/freevo/item.py
366
%%PYTHON_SITELIBDIR%%/freevo/item.py
260
%%PYTHON_SITELIBDIR%%/freevo/item.pyc
367
%%PYTHON_SITELIBDIR%%/freevo/item.pyc
261
%%PYTHON_SITELIBDIR%%/freevo/item.pyo
368
%%PYTHON_SITELIBDIR%%/freevo/item.pyo
369
%%PYTHON_SITELIBDIR%%/freevo/linuxevent.py
370
%%PYTHON_SITELIBDIR%%/freevo/linuxevent.pyc
371
%%PYTHON_SITELIBDIR%%/freevo/linuxevent.pyo
262
%%PYTHON_SITELIBDIR%%/freevo/main.py
372
%%PYTHON_SITELIBDIR%%/freevo/main.py
263
%%PYTHON_SITELIBDIR%%/freevo/main.pyc
373
%%PYTHON_SITELIBDIR%%/freevo/main.pyc
264
%%PYTHON_SITELIBDIR%%/freevo/main.pyo
374
%%PYTHON_SITELIBDIR%%/freevo/main.pyo
Lines 277-291 Link Here
277
%%PYTHON_SITELIBDIR%%/freevo/plugins/__init__.py
387
%%PYTHON_SITELIBDIR%%/freevo/plugins/__init__.py
278
%%PYTHON_SITELIBDIR%%/freevo/plugins/__init__.pyc
388
%%PYTHON_SITELIBDIR%%/freevo/plugins/__init__.pyc
279
%%PYTHON_SITELIBDIR%%/freevo/plugins/__init__.pyo
389
%%PYTHON_SITELIBDIR%%/freevo/plugins/__init__.pyo
390
%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer.py
391
%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer.pyc
392
%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer.pyo
393
%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer2.py
394
%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer2.pyc
395
%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer2.pyo
280
%%PYTHON_SITELIBDIR%%/freevo/plugins/autocolor.py
396
%%PYTHON_SITELIBDIR%%/freevo/plugins/autocolor.py
281
%%PYTHON_SITELIBDIR%%/freevo/plugins/autocolor.pyc
397
%%PYTHON_SITELIBDIR%%/freevo/plugins/autocolor.pyc
282
%%PYTHON_SITELIBDIR%%/freevo/plugins/autocolor.pyo
398
%%PYTHON_SITELIBDIR%%/freevo/plugins/autocolor.pyo
399
%%PYTHON_SITELIBDIR%%/freevo/plugins/autoshutdown.py
400
%%PYTHON_SITELIBDIR%%/freevo/plugins/autoshutdown.pyc
401
%%PYTHON_SITELIBDIR%%/freevo/plugins/autoshutdown.pyo
402
%%PYTHON_SITELIBDIR%%/freevo/plugins/autostart.py
403
%%PYTHON_SITELIBDIR%%/freevo/plugins/autostart.pyc
404
%%PYTHON_SITELIBDIR%%/freevo/plugins/autostart.pyo
405
%%PYTHON_SITELIBDIR%%/freevo/plugins/buttonbar.py
406
%%PYTHON_SITELIBDIR%%/freevo/plugins/buttonbar.pyc
407
%%PYTHON_SITELIBDIR%%/freevo/plugins/buttonbar.pyo
408
%%PYTHON_SITELIBDIR%%/freevo/plugins/cd_burn.py
409
%%PYTHON_SITELIBDIR%%/freevo/plugins/cd_burn.pyc
410
%%PYTHON_SITELIBDIR%%/freevo/plugins/cd_burn.pyo
283
%%PYTHON_SITELIBDIR%%/freevo/plugins/command.py
411
%%PYTHON_SITELIBDIR%%/freevo/plugins/command.py
284
%%PYTHON_SITELIBDIR%%/freevo/plugins/command.pyc
412
%%PYTHON_SITELIBDIR%%/freevo/plugins/command.pyc
285
%%PYTHON_SITELIBDIR%%/freevo/plugins/command.pyo
413
%%PYTHON_SITELIBDIR%%/freevo/plugins/command.pyo
286
%%PYTHON_SITELIBDIR%%/freevo/plugins/df.py
414
%%PYTHON_SITELIBDIR%%/freevo/plugins/df.py
287
%%PYTHON_SITELIBDIR%%/freevo/plugins/df.pyc
415
%%PYTHON_SITELIBDIR%%/freevo/plugins/df.pyc
288
%%PYTHON_SITELIBDIR%%/freevo/plugins/df.pyo
416
%%PYTHON_SITELIBDIR%%/freevo/plugins/df.pyo
417
%%PYTHON_SITELIBDIR%%/freevo/plugins/ejectromdrives.py
418
%%PYTHON_SITELIBDIR%%/freevo/plugins/ejectromdrives.pyc
419
%%PYTHON_SITELIBDIR%%/freevo/plugins/ejectromdrives.pyo
289
%%PYTHON_SITELIBDIR%%/freevo/plugins/file_ops.py
420
%%PYTHON_SITELIBDIR%%/freevo/plugins/file_ops.py
290
%%PYTHON_SITELIBDIR%%/freevo/plugins/file_ops.pyc
421
%%PYTHON_SITELIBDIR%%/freevo/plugins/file_ops.pyc
291
%%PYTHON_SITELIBDIR%%/freevo/plugins/file_ops.pyo
422
%%PYTHON_SITELIBDIR%%/freevo/plugins/file_ops.pyo
Lines 295-303 Link Here
295
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevoscreensaver.py
426
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevoscreensaver.py
296
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevoscreensaver.pyc
427
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevoscreensaver.pyc
297
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevoscreensaver.pyo
428
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevoscreensaver.pyo
429
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevused.py
430
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevused.pyc
431
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevused.pyo
298
%%PYTHON_SITELIBDIR%%/freevo/plugins/headlines.py
432
%%PYTHON_SITELIBDIR%%/freevo/plugins/headlines.py
299
%%PYTHON_SITELIBDIR%%/freevo/plugins/headlines.pyc
433
%%PYTHON_SITELIBDIR%%/freevo/plugins/headlines.pyc
300
%%PYTHON_SITELIBDIR%%/freevo/plugins/headlines.pyo
434
%%PYTHON_SITELIBDIR%%/freevo/plugins/headlines.pyo
435
%%PYTHON_SITELIBDIR%%/freevo/plugins/home_automation.py
436
%%PYTHON_SITELIBDIR%%/freevo/plugins/home_automation.pyc
437
%%PYTHON_SITELIBDIR%%/freevo/plugins/home_automation.pyo
301
%%PYTHON_SITELIBDIR%%/freevo/plugins/icecast.py
438
%%PYTHON_SITELIBDIR%%/freevo/plugins/icecast.py
302
%%PYTHON_SITELIBDIR%%/freevo/plugins/icecast.pyc
439
%%PYTHON_SITELIBDIR%%/freevo/plugins/icecast.pyc
303
%%PYTHON_SITELIBDIR%%/freevo/plugins/icecast.pyo
440
%%PYTHON_SITELIBDIR%%/freevo/plugins/icecast.pyo
Lines 307-366 Link Here
307
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/__init__.py
444
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/__init__.py
308
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/__init__.pyc
445
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/__init__.pyc
309
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/__init__.pyo
446
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/__init__.pyo
447
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/cdstatus.py
448
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/cdstatus.pyc
449
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/cdstatus.pyo
450
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/diskfree.py
451
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/diskfree.pyc
452
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/diskfree.pyo
453
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/encoding.py
454
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/encoding.pyc
455
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/encoding.pyo
456
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/holidays.py
457
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/holidays.pyc
458
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/holidays.pyo
459
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/mail.py
460
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/mail.pyc
461
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/mail.pyo
462
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/progactive.py
463
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/progactive.pyc
464
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/progactive.pyo
465
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/remindicon.py
466
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/remindicon.pyc
467
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/remindicon.pyo
468
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/sixvolume.py
469
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/sixvolume.pyc
470
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/sixvolume.pyo
310
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/system.py
471
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/system.py
311
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/system.pyc
472
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/system.pyc
312
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/system.pyo
473
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/system.pyo
474
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/transcode.py
475
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/transcode.pyc
476
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/transcode.pyo
477
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/tv.py
478
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/tv.pyc
479
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/tv.pyo
313
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/volume.py
480
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/volume.py
314
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/volume.pyc
481
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/volume.pyc
315
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/volume.pyo
482
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/volume.pyo
483
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/weather.py
484
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/weather.pyc
485
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/weather.pyo
486
%%PYTHON_SITELIBDIR%%/freevo/plugins/itv.py
487
%%PYTHON_SITELIBDIR%%/freevo/plugins/itv.pyc
488
%%PYTHON_SITELIBDIR%%/freevo/plugins/itv.pyo
316
%%PYTHON_SITELIBDIR%%/freevo/plugins/joy.py
489
%%PYTHON_SITELIBDIR%%/freevo/plugins/joy.py
317
%%PYTHON_SITELIBDIR%%/freevo/plugins/joy.pyc
490
%%PYTHON_SITELIBDIR%%/freevo/plugins/joy.pyc
318
%%PYTHON_SITELIBDIR%%/freevo/plugins/joy.pyo
491
%%PYTHON_SITELIBDIR%%/freevo/plugins/joy.pyo
319
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd.py
492
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd.py
320
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd.pyc
493
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd.pyc
321
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd.pyo
494
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd.pyo
495
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd2.py
496
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd2.pyc
497
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd2.pyo
322
%%PYTHON_SITELIBDIR%%/freevo/plugins/mediamenu.py
498
%%PYTHON_SITELIBDIR%%/freevo/plugins/mediamenu.py
323
%%PYTHON_SITELIBDIR%%/freevo/plugins/mediamenu.pyc
499
%%PYTHON_SITELIBDIR%%/freevo/plugins/mediamenu.pyc
324
%%PYTHON_SITELIBDIR%%/freevo/plugins/mediamenu.pyo
500
%%PYTHON_SITELIBDIR%%/freevo/plugins/mediamenu.pyo
325
%%PYTHON_SITELIBDIR%%/freevo/plugins/mixer.py
501
%%PYTHON_SITELIBDIR%%/freevo/plugins/mixer.py
326
%%PYTHON_SITELIBDIR%%/freevo/plugins/mixer.pyc
502
%%PYTHON_SITELIBDIR%%/freevo/plugins/mixer.pyc
327
%%PYTHON_SITELIBDIR%%/freevo/plugins/mixer.pyo
503
%%PYTHON_SITELIBDIR%%/freevo/plugins/mixer.pyo
504
%%PYTHON_SITELIBDIR%%/freevo/plugins/mpd.py
505
%%PYTHON_SITELIBDIR%%/freevo/plugins/mpd.pyc
506
%%PYTHON_SITELIBDIR%%/freevo/plugins/mpd.pyo
507
%%PYTHON_SITELIBDIR%%/freevo/plugins/newevents.py
508
%%PYTHON_SITELIBDIR%%/freevo/plugins/newevents.pyc
509
%%PYTHON_SITELIBDIR%%/freevo/plugins/newevents.pyo
510
%%PYTHON_SITELIBDIR%%/freevo/plugins/oneclick.py
511
%%PYTHON_SITELIBDIR%%/freevo/plugins/oneclick.pyc
512
%%PYTHON_SITELIBDIR%%/freevo/plugins/oneclick.pyo
328
%%PYTHON_SITELIBDIR%%/freevo/plugins/ossmixer.py
513
%%PYTHON_SITELIBDIR%%/freevo/plugins/ossmixer.py
329
%%PYTHON_SITELIBDIR%%/freevo/plugins/ossmixer.pyc
514
%%PYTHON_SITELIBDIR%%/freevo/plugins/ossmixer.pyc
330
%%PYTHON_SITELIBDIR%%/freevo/plugins/ossmixer.pyo
515
%%PYTHON_SITELIBDIR%%/freevo/plugins/ossmixer.pyo
516
%%PYTHON_SITELIBDIR%%/freevo/plugins/processevent.py
517
%%PYTHON_SITELIBDIR%%/freevo/plugins/processevent.pyc
518
%%PYTHON_SITELIBDIR%%/freevo/plugins/processevent.pyo
519
%%PYTHON_SITELIBDIR%%/freevo/plugins/remind.py
520
%%PYTHON_SITELIBDIR%%/freevo/plugins/remind.pyc
521
%%PYTHON_SITELIBDIR%%/freevo/plugins/remind.pyo
331
%%PYTHON_SITELIBDIR%%/freevo/plugins/rom_drives.py
522
%%PYTHON_SITELIBDIR%%/freevo/plugins/rom_drives.py
332
%%PYTHON_SITELIBDIR%%/freevo/plugins/rom_drives.pyc
523
%%PYTHON_SITELIBDIR%%/freevo/plugins/rom_drives.pyc
333
%%PYTHON_SITELIBDIR%%/freevo/plugins/rom_drives.pyo
524
%%PYTHON_SITELIBDIR%%/freevo/plugins/rom_drives.pyo
525
%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/__init__.py
526
%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/__init__.pyc
527
%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/__init__.pyo
528
%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/balls.py
529
%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/balls.pyc
530
%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/balls.pyo
531
%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/bouncing_freevo.py
532
%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/bouncing_freevo.pyc
533
%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/bouncing_freevo.pyo
334
%%PYTHON_SITELIBDIR%%/freevo/plugins/shoppingcart.py
534
%%PYTHON_SITELIBDIR%%/freevo/plugins/shoppingcart.py
335
%%PYTHON_SITELIBDIR%%/freevo/plugins/shoppingcart.pyc
535
%%PYTHON_SITELIBDIR%%/freevo/plugins/shoppingcart.pyc
336
%%PYTHON_SITELIBDIR%%/freevo/plugins/shoppingcart.pyo
536
%%PYTHON_SITELIBDIR%%/freevo/plugins/shoppingcart.pyo
337
%%PYTHON_SITELIBDIR%%/freevo/plugins/shutdown.py
537
%%PYTHON_SITELIBDIR%%/freevo/plugins/shutdown.py
338
%%PYTHON_SITELIBDIR%%/freevo/plugins/shutdown.pyc
538
%%PYTHON_SITELIBDIR%%/freevo/plugins/shutdown.pyc
339
%%PYTHON_SITELIBDIR%%/freevo/plugins/shutdown.pyo
539
%%PYTHON_SITELIBDIR%%/freevo/plugins/shutdown.pyo
540
%%PYTHON_SITELIBDIR%%/freevo/plugins/sixmixer.py
541
%%PYTHON_SITELIBDIR%%/freevo/plugins/sixmixer.pyc
542
%%PYTHON_SITELIBDIR%%/freevo/plugins/sixmixer.pyo
543
%%PYTHON_SITELIBDIR%%/freevo/plugins/speak.py
544
%%PYTHON_SITELIBDIR%%/freevo/plugins/speak.pyc
545
%%PYTHON_SITELIBDIR%%/freevo/plugins/speak.pyo
340
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_osd.py
546
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_osd.py
341
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_osd.pyc
547
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_osd.pyc
342
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_osd.pyo
548
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_osd.pyo
343
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_xosd.py
549
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_xosd.py
344
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_xosd.pyc
550
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_xosd.pyc
345
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_xosd.pyo
551
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_xosd.pyo
552
%%PYTHON_SITELIBDIR%%/freevo/plugins/udpremote.py
553
%%PYTHON_SITELIBDIR%%/freevo/plugins/udpremote.pyc
554
%%PYTHON_SITELIBDIR%%/freevo/plugins/udpremote.pyo
346
%%PYTHON_SITELIBDIR%%/freevo/plugins/usb.py
555
%%PYTHON_SITELIBDIR%%/freevo/plugins/usb.py
347
%%PYTHON_SITELIBDIR%%/freevo/plugins/usb.pyc
556
%%PYTHON_SITELIBDIR%%/freevo/plugins/usb.pyc
348
%%PYTHON_SITELIBDIR%%/freevo/plugins/usb.pyo
557
%%PYTHON_SITELIBDIR%%/freevo/plugins/usb.pyo
349
%%PYTHON_SITELIBDIR%%/freevo/plugins/usbstorage.py
558
%%PYTHON_SITELIBDIR%%/freevo/plugins/usbstorage.py
350
%%PYTHON_SITELIBDIR%%/freevo/plugins/usbstorage.pyc
559
%%PYTHON_SITELIBDIR%%/freevo/plugins/usbstorage.pyc
351
%%PYTHON_SITELIBDIR%%/freevo/plugins/usbstorage.pyo
560
%%PYTHON_SITELIBDIR%%/freevo/plugins/usbstorage.pyo
561
%%PYTHON_SITELIBDIR%%/freevo/plugins/vfd.py
562
%%PYTHON_SITELIBDIR%%/freevo/plugins/vfd.pyc
563
%%PYTHON_SITELIBDIR%%/freevo/plugins/vfd.pyo
564
%%PYTHON_SITELIBDIR%%/freevo/plugins/weatherdata.py
565
%%PYTHON_SITELIBDIR%%/freevo/plugins/weatherdata.pyc
566
%%PYTHON_SITELIBDIR%%/freevo/plugins/weatherdata.pyo
567
%%PYTHON_SITELIBDIR%%/freevo/plugins/wiimote.py
568
%%PYTHON_SITELIBDIR%%/freevo/plugins/wiimote.pyc
569
%%PYTHON_SITELIBDIR%%/freevo/plugins/wiimote.pyo
352
%%PYTHON_SITELIBDIR%%/freevo/plugins/yac.py
570
%%PYTHON_SITELIBDIR%%/freevo/plugins/yac.py
353
%%PYTHON_SITELIBDIR%%/freevo/plugins/yac.pyc
571
%%PYTHON_SITELIBDIR%%/freevo/plugins/yac.pyc
354
%%PYTHON_SITELIBDIR%%/freevo/plugins/yac.pyo
572
%%PYTHON_SITELIBDIR%%/freevo/plugins/yac.pyo
573
%%PYTHON_SITELIBDIR%%/freevo/pylcd.py
574
%%PYTHON_SITELIBDIR%%/freevo/pylcd.pyc
575
%%PYTHON_SITELIBDIR%%/freevo/pylcd.pyo
355
%%PYTHON_SITELIBDIR%%/freevo/rc.py
576
%%PYTHON_SITELIBDIR%%/freevo/rc.py
356
%%PYTHON_SITELIBDIR%%/freevo/rc.pyc
577
%%PYTHON_SITELIBDIR%%/freevo/rc.pyc
357
%%PYTHON_SITELIBDIR%%/freevo/rc.pyo
578
%%PYTHON_SITELIBDIR%%/freevo/rc.pyo
579
%%PYTHON_SITELIBDIR%%/freevo/revision.py
580
%%PYTHON_SITELIBDIR%%/freevo/revision.pyc
581
%%PYTHON_SITELIBDIR%%/freevo/revision.pyo
582
%%PYTHON_SITELIBDIR%%/freevo/rssfeed.py
583
%%PYTHON_SITELIBDIR%%/freevo/rssfeed.pyc
584
%%PYTHON_SITELIBDIR%%/freevo/rssfeed.pyo
585
%%PYTHON_SITELIBDIR%%/freevo/rssperiodic.py
586
%%PYTHON_SITELIBDIR%%/freevo/rssperiodic.pyc
587
%%PYTHON_SITELIBDIR%%/freevo/rssperiodic.pyo
358
%%PYTHON_SITELIBDIR%%/freevo/setup_freevo.py
588
%%PYTHON_SITELIBDIR%%/freevo/setup_freevo.py
359
%%PYTHON_SITELIBDIR%%/freevo/setup_freevo.pyc
589
%%PYTHON_SITELIBDIR%%/freevo/setup_freevo.pyc
360
%%PYTHON_SITELIBDIR%%/freevo/setup_freevo.pyo
590
%%PYTHON_SITELIBDIR%%/freevo/setup_freevo.pyo
361
%%PYTHON_SITELIBDIR%%/freevo/skin.py
591
%%PYTHON_SITELIBDIR%%/freevo/sitecustomize.py
362
%%PYTHON_SITELIBDIR%%/freevo/skin.pyc
592
%%PYTHON_SITELIBDIR%%/freevo/sitecustomize.pyc
363
%%PYTHON_SITELIBDIR%%/freevo/skin.pyo
593
%%PYTHON_SITELIBDIR%%/freevo/sitecustomize.pyo
594
%%PYTHON_SITELIBDIR%%/freevo/skin/__init__.py
595
%%PYTHON_SITELIBDIR%%/freevo/skin/__init__.pyc
596
%%PYTHON_SITELIBDIR%%/freevo/skin/__init__.pyo
597
%%PYTHON_SITELIBDIR%%/freevo/skin/models.py
598
%%PYTHON_SITELIBDIR%%/freevo/skin/models.pyc
599
%%PYTHON_SITELIBDIR%%/freevo/skin/models.pyo
600
%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/__init__.py
601
%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/__init__.pyc
602
%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/__init__.pyo
603
%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/scrollabletext_screen.py
604
%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/scrollabletext_screen.pyc
605
%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/scrollabletext_screen.pyo
606
%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/textentry_screen.py
607
%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/textentry_screen.pyc
608
%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/textentry_screen.pyo
364
%%PYTHON_SITELIBDIR%%/freevo/skins/__init__.py
609
%%PYTHON_SITELIBDIR%%/freevo/skins/__init__.py
365
%%PYTHON_SITELIBDIR%%/freevo/skins/__init__.pyc
610
%%PYTHON_SITELIBDIR%%/freevo/skins/__init__.pyc
366
%%PYTHON_SITELIBDIR%%/freevo/skins/__init__.pyo
611
%%PYTHON_SITELIBDIR%%/freevo/skins/__init__.pyo
Lines 370-375 Link Here
370
%%PYTHON_SITELIBDIR%%/freevo/skins/main/area.py
615
%%PYTHON_SITELIBDIR%%/freevo/skins/main/area.py
371
%%PYTHON_SITELIBDIR%%/freevo/skins/main/area.pyc
616
%%PYTHON_SITELIBDIR%%/freevo/skins/main/area.pyc
372
%%PYTHON_SITELIBDIR%%/freevo/skins/main/area.pyo
617
%%PYTHON_SITELIBDIR%%/freevo/skins/main/area.pyo
618
%%PYTHON_SITELIBDIR%%/freevo/skins/main/buttongroup_area.py
619
%%PYTHON_SITELIBDIR%%/freevo/skins/main/buttongroup_area.pyc
620
%%PYTHON_SITELIBDIR%%/freevo/skins/main/buttongroup_area.pyo
373
%%PYTHON_SITELIBDIR%%/freevo/skins/main/default_areas.py
621
%%PYTHON_SITELIBDIR%%/freevo/skins/main/default_areas.py
374
%%PYTHON_SITELIBDIR%%/freevo/skins/main/default_areas.pyc
622
%%PYTHON_SITELIBDIR%%/freevo/skins/main/default_areas.pyc
375
%%PYTHON_SITELIBDIR%%/freevo/skins/main/default_areas.pyo
623
%%PYTHON_SITELIBDIR%%/freevo/skins/main/default_areas.pyo
Lines 385-393 Link Here
385
%%PYTHON_SITELIBDIR%%/freevo/skins/main/screen.py
633
%%PYTHON_SITELIBDIR%%/freevo/skins/main/screen.py
386
%%PYTHON_SITELIBDIR%%/freevo/skins/main/screen.pyc
634
%%PYTHON_SITELIBDIR%%/freevo/skins/main/screen.pyc
387
%%PYTHON_SITELIBDIR%%/freevo/skins/main/screen.pyo
635
%%PYTHON_SITELIBDIR%%/freevo/skins/main/screen.pyo
636
%%PYTHON_SITELIBDIR%%/freevo/skins/main/scrollabletext_area.py
637
%%PYTHON_SITELIBDIR%%/freevo/skins/main/scrollabletext_area.pyc
638
%%PYTHON_SITELIBDIR%%/freevo/skins/main/scrollabletext_area.pyo
388
%%PYTHON_SITELIBDIR%%/freevo/skins/main/skin_utils.py
639
%%PYTHON_SITELIBDIR%%/freevo/skins/main/skin_utils.py
389
%%PYTHON_SITELIBDIR%%/freevo/skins/main/skin_utils.pyc
640
%%PYTHON_SITELIBDIR%%/freevo/skins/main/skin_utils.pyc
390
%%PYTHON_SITELIBDIR%%/freevo/skins/main/skin_utils.pyo
641
%%PYTHON_SITELIBDIR%%/freevo/skins/main/skin_utils.pyo
642
%%PYTHON_SITELIBDIR%%/freevo/skins/main/textentry_area.py
643
%%PYTHON_SITELIBDIR%%/freevo/skins/main/textentry_area.pyc
644
%%PYTHON_SITELIBDIR%%/freevo/skins/main/textentry_area.pyo
391
%%PYTHON_SITELIBDIR%%/freevo/skins/main/tvlisting_area.py
645
%%PYTHON_SITELIBDIR%%/freevo/skins/main/tvlisting_area.py
392
%%PYTHON_SITELIBDIR%%/freevo/skins/main/tvlisting_area.pyc
646
%%PYTHON_SITELIBDIR%%/freevo/skins/main/tvlisting_area.pyc
393
%%PYTHON_SITELIBDIR%%/freevo/skins/main/tvlisting_area.pyo
647
%%PYTHON_SITELIBDIR%%/freevo/skins/main/tvlisting_area.pyo
Lines 397-402 Link Here
397
%%PYTHON_SITELIBDIR%%/freevo/skins/main/xml_skin.py
651
%%PYTHON_SITELIBDIR%%/freevo/skins/main/xml_skin.py
398
%%PYTHON_SITELIBDIR%%/freevo/skins/main/xml_skin.pyc
652
%%PYTHON_SITELIBDIR%%/freevo/skins/main/xml_skin.pyc
399
%%PYTHON_SITELIBDIR%%/freevo/skins/main/xml_skin.pyo
653
%%PYTHON_SITELIBDIR%%/freevo/skins/main/xml_skin.pyo
654
%%PYTHON_SITELIBDIR%%/freevo/skins/osd/__init__.py
655
%%PYTHON_SITELIBDIR%%/freevo/skins/osd/__init__.pyc
656
%%PYTHON_SITELIBDIR%%/freevo/skins/osd/__init__.pyo
657
%%PYTHON_SITELIBDIR%%/freevo/skins/osd/skin.py
658
%%PYTHON_SITELIBDIR%%/freevo/skins/osd/skin.pyc
659
%%PYTHON_SITELIBDIR%%/freevo/skins/osd/skin.pyo
660
%%PYTHON_SITELIBDIR%%/freevo/skins/osd/xml.py
661
%%PYTHON_SITELIBDIR%%/freevo/skins/osd/xml.pyc
662
%%PYTHON_SITELIBDIR%%/freevo/skins/osd/xml.pyo
400
%%PYTHON_SITELIBDIR%%/freevo/skins/plugins/__init__.py
663
%%PYTHON_SITELIBDIR%%/freevo/skins/plugins/__init__.py
401
%%PYTHON_SITELIBDIR%%/freevo/skins/plugins/__init__.pyc
664
%%PYTHON_SITELIBDIR%%/freevo/skins/plugins/__init__.pyc
402
%%PYTHON_SITELIBDIR%%/freevo/skins/plugins/__init__.pyo
665
%%PYTHON_SITELIBDIR%%/freevo/skins/plugins/__init__.pyo
Lines 415-420 Link Here
415
%%PYTHON_SITELIBDIR%%/freevo/tv/epg_xmltv.py
678
%%PYTHON_SITELIBDIR%%/freevo/tv/epg_xmltv.py
416
%%PYTHON_SITELIBDIR%%/freevo/tv/epg_xmltv.pyc
679
%%PYTHON_SITELIBDIR%%/freevo/tv/epg_xmltv.pyc
417
%%PYTHON_SITELIBDIR%%/freevo/tv/epg_xmltv.pyo
680
%%PYTHON_SITELIBDIR%%/freevo/tv/epg_xmltv.pyo
681
%%PYTHON_SITELIBDIR%%/freevo/tv/favoriteitem.py
682
%%PYTHON_SITELIBDIR%%/freevo/tv/favoriteitem.pyc
683
%%PYTHON_SITELIBDIR%%/freevo/tv/favoriteitem.pyo
418
%%PYTHON_SITELIBDIR%%/freevo/tv/freq.py
684
%%PYTHON_SITELIBDIR%%/freevo/tv/freq.py
419
%%PYTHON_SITELIBDIR%%/freevo/tv/freq.pyc
685
%%PYTHON_SITELIBDIR%%/freevo/tv/freq.pyc
420
%%PYTHON_SITELIBDIR%%/freevo/tv/freq.pyo
686
%%PYTHON_SITELIBDIR%%/freevo/tv/freq.pyo
Lines 424-432 Link Here
424
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/__init__.py
690
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/__init__.py
425
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/__init__.pyc
691
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/__init__.pyc
426
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/__init__.pyo
692
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/__init__.pyo
693
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/__init__.py
694
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/__init__.pyc
695
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/__init__.pyo
696
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/comms.py
697
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/comms.pyc
698
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/comms.pyo
699
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/live_pause.py
700
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/live_pause.pyc
701
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/live_pause.pyo
702
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/manager.py
703
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/manager.pyc
704
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/manager.pyo
705
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/record.py
706
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/record.pyc
707
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/record.pyo
708
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/ring_buffer.py
709
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/ring_buffer.pyc
710
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/ring_buffer.pyo
711
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/rwlock.py
712
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/rwlock.pyc
713
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/rwlock.pyo
714
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/vlc_live_pause.py
715
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/vlc_live_pause.pyc
716
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/vlc_live_pause.pyo
717
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/freeboxtv.py
718
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/freeboxtv.pyc
719
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/freeboxtv.pyo
427
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/generic_record.py
720
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/generic_record.py
428
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/generic_record.pyc
721
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/generic_record.pyc
429
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/generic_record.pyo
722
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/generic_record.pyo
723
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/genre.py
724
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/genre.pyc
725
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/genre.pyo
726
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_directv.py
727
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_directv.pyc
728
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_directv.pyo
430
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_echostar.py
729
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_echostar.py
431
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_echostar.pyc
730
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_echostar.pyc
432
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_echostar.pyo
731
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_echostar.pyo
Lines 436-471 Link Here
436
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_record.py
735
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_record.py
437
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_record.pyc
736
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_record.pyc
438
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_record.pyo
737
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_record.pyo
738
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_xine_tv.py
739
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_xine_tv.pyc
740
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_xine_tv.pyo
741
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/__init__.py
742
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/__init__.pyc
743
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/__init__.pyo
744
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/chunk_buffer.py
745
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/chunk_buffer.pyc
746
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/chunk_buffer.pyo
747
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/controllers.py
748
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/controllers.pyc
749
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/controllers.pyo
750
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/__init__.py
751
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/__init__.pyc
752
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/__init__.pyo
753
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/base.py
754
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/base.pyc
755
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/base.pyo
756
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/dialogs.py
757
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/dialogs.pyc
758
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/dialogs.pyo
759
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/graphics.py
760
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/graphics.pyc
761
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/graphics.pyo
762
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/text.py
763
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/text.pyc
764
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/text.pyo
765
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/events.py
766
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/events.pyc
767
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/events.pyo
768
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/fillers.py
769
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/fillers.pyc
770
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/fillers.pyo
771
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/players.py
772
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/players.pyc
773
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/players.pyo
774
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/record.py
775
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/record.pyc
776
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/record.pyo
777
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/ring_buffer.py
778
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/ring_buffer.pyc
779
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/ring_buffer.pyo
780
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/rwlock.py
781
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/rwlock.pyc
782
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/rwlock.pyo
783
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/test.py
784
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/test.pyc
785
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/test.pyo
786
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/testosd.py
787
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/testosd.pyc
788
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/testosd.pyo
439
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/manual_record.py
789
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/manual_record.py
440
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/manual_record.pyc
790
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/manual_record.pyc
441
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/manual_record.pyo
791
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/manual_record.pyo
442
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/mplayer.py
792
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/mplayer.py
443
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/mplayer.pyc
793
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/mplayer.pyc
444
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/mplayer.pyo
794
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/mplayer.pyo
795
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/recordings_manager.py
796
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/recordings_manager.pyc
797
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/recordings_manager.pyo
445
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/scheduled_recordings.py
798
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/scheduled_recordings.py
446
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/scheduled_recordings.pyc
799
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/scheduled_recordings.pyc
447
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/scheduled_recordings.pyo
800
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/scheduled_recordings.pyo
801
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/search_programs.py
802
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/search_programs.pyc
803
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/search_programs.pyo
448
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/tvtime.py
804
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/tvtime.py
449
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/tvtime.pyc
805
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/tvtime.pyc
450
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/tvtime.pyo
806
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/tvtime.pyo
807
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/upsoon.py
808
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/upsoon.pyc
809
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/upsoon.pyo
810
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/vbi2srt_record.py
811
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/vbi2srt_record.pyc
812
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/vbi2srt_record.pyo
451
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_favorites.py
813
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_favorites.py
452
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_favorites.pyc
814
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_favorites.pyc
453
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_favorites.pyo
815
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_favorites.pyo
454
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_line_in.py
816
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_line_in.py
455
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_line_in.pyc
817
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_line_in.pyc
456
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_line_in.pyo
818
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_line_in.pyo
819
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_recordings.py
820
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_recordings.pyc
821
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_recordings.pyo
457
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xawtv.py
822
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xawtv.py
458
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xawtv.pyc
823
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xawtv.pyc
459
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xawtv.pyo
824
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xawtv.pyo
460
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xine.py
825
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xine.py
461
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xine.pyc
826
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xine.pyc
462
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xine.pyo
827
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xine.pyo
463
%%PYTHON_SITELIBDIR%%/freevo/tv/program_display.py
828
%%PYTHON_SITELIBDIR%%/freevo/tv/programitem.py
464
%%PYTHON_SITELIBDIR%%/freevo/tv/program_display.pyc
829
%%PYTHON_SITELIBDIR%%/freevo/tv/programitem.pyc
465
%%PYTHON_SITELIBDIR%%/freevo/tv/program_display.pyo
830
%%PYTHON_SITELIBDIR%%/freevo/tv/programitem.pyo
466
%%PYTHON_SITELIBDIR%%/freevo/tv/program_search.py
467
%%PYTHON_SITELIBDIR%%/freevo/tv/program_search.pyc
468
%%PYTHON_SITELIBDIR%%/freevo/tv/program_search.pyo
469
%%PYTHON_SITELIBDIR%%/freevo/tv/record_client.py
831
%%PYTHON_SITELIBDIR%%/freevo/tv/record_client.py
470
%%PYTHON_SITELIBDIR%%/freevo/tv/record_client.pyc
832
%%PYTHON_SITELIBDIR%%/freevo/tv/record_client.pyc
471
%%PYTHON_SITELIBDIR%%/freevo/tv/record_client.pyo
833
%%PYTHON_SITELIBDIR%%/freevo/tv/record_client.pyo
Lines 496-501 Link Here
496
%%PYTHON_SITELIBDIR%%/freevo/util/amazon.py
858
%%PYTHON_SITELIBDIR%%/freevo/util/amazon.py
497
%%PYTHON_SITELIBDIR%%/freevo/util/amazon.pyc
859
%%PYTHON_SITELIBDIR%%/freevo/util/amazon.pyc
498
%%PYTHON_SITELIBDIR%%/freevo/util/amazon.pyo
860
%%PYTHON_SITELIBDIR%%/freevo/util/amazon.pyo
861
%%PYTHON_SITELIBDIR%%/freevo/util/audioscrobbler.py
862
%%PYTHON_SITELIBDIR%%/freevo/util/audioscrobbler.pyc
863
%%PYTHON_SITELIBDIR%%/freevo/util/audioscrobbler.pyo
864
%%PYTHON_SITELIBDIR%%/freevo/util/benchmark.py
865
%%PYTHON_SITELIBDIR%%/freevo/util/benchmark.pyc
866
%%PYTHON_SITELIBDIR%%/freevo/util/benchmark.pyo
499
%%PYTHON_SITELIBDIR%%/freevo/util/dbutil.py
867
%%PYTHON_SITELIBDIR%%/freevo/util/dbutil.py
500
%%PYTHON_SITELIBDIR%%/freevo/util/dbutil.pyc
868
%%PYTHON_SITELIBDIR%%/freevo/util/dbutil.pyc
501
%%PYTHON_SITELIBDIR%%/freevo/util/dbutil.pyo
869
%%PYTHON_SITELIBDIR%%/freevo/util/dbutil.pyo
Lines 508-513 Link Here
508
%%PYTHON_SITELIBDIR%%/freevo/util/extendedmeta.py
876
%%PYTHON_SITELIBDIR%%/freevo/util/extendedmeta.py
509
%%PYTHON_SITELIBDIR%%/freevo/util/extendedmeta.pyc
877
%%PYTHON_SITELIBDIR%%/freevo/util/extendedmeta.pyc
510
%%PYTHON_SITELIBDIR%%/freevo/util/extendedmeta.pyo
878
%%PYTHON_SITELIBDIR%%/freevo/util/extendedmeta.pyo
879
%%PYTHON_SITELIBDIR%%/freevo/util/feedparser.py
880
%%PYTHON_SITELIBDIR%%/freevo/util/feedparser.pyc
881
%%PYTHON_SITELIBDIR%%/freevo/util/feedparser.pyo
511
%%PYTHON_SITELIBDIR%%/freevo/util/fileops.py
882
%%PYTHON_SITELIBDIR%%/freevo/util/fileops.py
512
%%PYTHON_SITELIBDIR%%/freevo/util/fileops.pyc
883
%%PYTHON_SITELIBDIR%%/freevo/util/fileops.pyc
513
%%PYTHON_SITELIBDIR%%/freevo/util/fileops.pyo
884
%%PYTHON_SITELIBDIR%%/freevo/util/fileops.pyo
Lines 550-579 Link Here
550
%%PYTHON_SITELIBDIR%%/freevo/util/videothumb.py
921
%%PYTHON_SITELIBDIR%%/freevo/util/videothumb.py
551
%%PYTHON_SITELIBDIR%%/freevo/util/videothumb.pyc
922
%%PYTHON_SITELIBDIR%%/freevo/util/videothumb.pyc
552
%%PYTHON_SITELIBDIR%%/freevo/util/videothumb.pyo
923
%%PYTHON_SITELIBDIR%%/freevo/util/videothumb.pyo
924
%%PYTHON_SITELIBDIR%%/freevo/util/youtube_dl.py
925
%%PYTHON_SITELIBDIR%%/freevo/util/youtube_dl.pyc
926
%%PYTHON_SITELIBDIR%%/freevo/util/youtube_dl.pyo
553
%%PYTHON_SITELIBDIR%%/freevo/version.py
927
%%PYTHON_SITELIBDIR%%/freevo/version.py
554
%%PYTHON_SITELIBDIR%%/freevo/version.pyc
928
%%PYTHON_SITELIBDIR%%/freevo/version.pyc
555
%%PYTHON_SITELIBDIR%%/freevo/version.pyo
929
%%PYTHON_SITELIBDIR%%/freevo/version.pyo
556
%%PYTHON_SITELIBDIR%%/freevo/video/__init__.py
930
%%PYTHON_SITELIBDIR%%/freevo/video/__init__.py
557
%%PYTHON_SITELIBDIR%%/freevo/video/__init__.pyc
931
%%PYTHON_SITELIBDIR%%/freevo/video/__init__.pyc
558
%%PYTHON_SITELIBDIR%%/freevo/video/__init__.pyo
932
%%PYTHON_SITELIBDIR%%/freevo/video/__init__.pyo
933
%%PYTHON_SITELIBDIR%%/freevo/video/commdetectclient.py
934
%%PYTHON_SITELIBDIR%%/freevo/video/commdetectclient.pyc
935
%%PYTHON_SITELIBDIR%%/freevo/video/commdetectclient.pyo
559
%%PYTHON_SITELIBDIR%%/freevo/video/configure.py
936
%%PYTHON_SITELIBDIR%%/freevo/video/configure.py
560
%%PYTHON_SITELIBDIR%%/freevo/video/configure.pyc
937
%%PYTHON_SITELIBDIR%%/freevo/video/configure.pyc
561
%%PYTHON_SITELIBDIR%%/freevo/video/configure.pyo
938
%%PYTHON_SITELIBDIR%%/freevo/video/configure.pyo
939
%%PYTHON_SITELIBDIR%%/freevo/video/encodingclient.py
940
%%PYTHON_SITELIBDIR%%/freevo/video/encodingclient.pyc
941
%%PYTHON_SITELIBDIR%%/freevo/video/encodingclient.pyo
562
%%PYTHON_SITELIBDIR%%/freevo/video/fxdhandler.py
942
%%PYTHON_SITELIBDIR%%/freevo/video/fxdhandler.py
563
%%PYTHON_SITELIBDIR%%/freevo/video/fxdhandler.pyc
943
%%PYTHON_SITELIBDIR%%/freevo/video/fxdhandler.pyc
564
%%PYTHON_SITELIBDIR%%/freevo/video/fxdhandler.pyo
944
%%PYTHON_SITELIBDIR%%/freevo/video/fxdhandler.pyo
565
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/__init__.py
945
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/__init__.py
566
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/__init__.pyc
946
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/__init__.pyc
567
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/__init__.pyo
947
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/__init__.pyo
948
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/applelib.py
949
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/applelib.pyc
950
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/applelib.pyo
951
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/appletrailers.py
952
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/appletrailers.pyc
953
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/appletrailers.pyo
954
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bilingual.py
955
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bilingual.pyc
956
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bilingual.pyo
568
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bmovl.py
957
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bmovl.py
569
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bmovl.pyc
958
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bmovl.pyc
570
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bmovl.pyo
959
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bmovl.pyo
571
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bookmarker.py
960
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bookmarker.py
572
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bookmarker.pyc
961
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bookmarker.pyc
573
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bookmarker.pyo
962
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bookmarker.pyo
963
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/cinemovies_trailers.py
964
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/cinemovies_trailers.pyc
965
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/cinemovies_trailers.pyo
574
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/details.py
966
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/details.py
575
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/details.pyc
967
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/details.pyc
576
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/details.pyo
968
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/details.pyo
969
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdbackup.py
970
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdbackup.pyc
971
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdbackup.pyo
972
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdcopy.py
973
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdcopy.pyc
974
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdcopy.pyo
975
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdimage.py
976
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdimage.pyc
977
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdimage.pyo
978
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fillscreen.py
979
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fillscreen.pyc
980
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fillscreen.pyo
981
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/filmaffinity.py
982
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/filmaffinity.pyc
983
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/filmaffinity.pyo
984
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fxdarchive.py
985
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fxdarchive.pyc
986
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fxdarchive.pyo
577
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/imdb.py
987
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/imdb.py
578
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/imdb.pyc
988
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/imdb.pyc
579
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/imdb.pyo
989
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/imdb.pyo
Lines 583-1028 Link Here
583
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mover.py
993
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mover.py
584
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mover.pyc
994
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mover.pyc
585
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mover.pyo
995
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mover.pyo
996
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/moviecovers.py
997
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/moviecovers.pyc
998
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/moviecovers.pyo
586
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer.py
999
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer.py
587
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer.pyc
1000
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer.pyc
588
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer.pyo
1001
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer.pyo
1002
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer_autoaspect.py
1003
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer_autoaspect.pyc
1004
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer_autoaspect.pyo
1005
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode-old.py
1006
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode-old.pyc
1007
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode-old.pyo
1008
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode.py
1009
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode.pyc
1010
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode.pyo
1011
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/removecommercials.py
1012
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/removecommercials.pyc
1013
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/removecommercials.pyo
1014
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtve.py
1015
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtve.pyc
1016
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtve.pyo
1017
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtvelib.py
1018
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtvelib.pyc
1019
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtvelib.pyo
1020
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vlc.py
1021
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vlc.pyc
1022
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vlc.pyo
1023
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vpodcast.py
1024
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vpodcast.pyc
1025
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vpodcast.pyo
1026
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wikisubtitles.py
1027
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wikisubtitles.pyc
1028
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wikisubtitles.pyo
1029
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wwitv.py
1030
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wwitv.pyc
1031
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wwitv.pyo
589
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine.py
1032
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine.py
590
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine.pyc
1033
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine.pyc
591
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine.pyo
1034
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine.pyo
1035
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine_info.py
1036
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine_info.pyc
1037
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine_info.pyo
1038
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/youtube.py
1039
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/youtube.pyc
1040
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/youtube.pyo
592
%%PYTHON_SITELIBDIR%%/freevo/video/videoitem.py
1041
%%PYTHON_SITELIBDIR%%/freevo/video/videoitem.py
593
%%PYTHON_SITELIBDIR%%/freevo/video/videoitem.pyc
1042
%%PYTHON_SITELIBDIR%%/freevo/video/videoitem.pyc
594
%%PYTHON_SITELIBDIR%%/freevo/video/videoitem.pyo
1043
%%PYTHON_SITELIBDIR%%/freevo/video/videoitem.pyo
595
%%PYTHON_SITELIBDIR%%/freevo/www/__init__.py
1044
%%PYTHON_SITELIBDIR%%/freevo/www/__init__.py
596
%%PYTHON_SITELIBDIR%%/freevo/www/__init__.pyc
1045
%%PYTHON_SITELIBDIR%%/freevo/www/__init__.pyc
597
%%PYTHON_SITELIBDIR%%/freevo/www/__init__.pyo
1046
%%PYTHON_SITELIBDIR%%/freevo/www/__init__.pyo
1047
%%PYTHON_SITELIBDIR%%/freevo/www/configlib.py
1048
%%PYTHON_SITELIBDIR%%/freevo/www/configlib.pyc
1049
%%PYTHON_SITELIBDIR%%/freevo/www/configlib.pyo
598
%%PYTHON_SITELIBDIR%%/freevo/www/wap_types.py
1050
%%PYTHON_SITELIBDIR%%/freevo/www/wap_types.py
599
%%PYTHON_SITELIBDIR%%/freevo/www/wap_types.pyc
1051
%%PYTHON_SITELIBDIR%%/freevo/www/wap_types.pyc
600
%%PYTHON_SITELIBDIR%%/freevo/www/wap_types.pyo
1052
%%PYTHON_SITELIBDIR%%/freevo/www/wap_types.pyo
601
%%PYTHON_SITELIBDIR%%/freevo/www/web_types.py
1053
%%PYTHON_SITELIBDIR%%/freevo/www/web_types.py
602
%%PYTHON_SITELIBDIR%%/freevo/www/web_types.pyc
1054
%%PYTHON_SITELIBDIR%%/freevo/www/web_types.pyc
603
%%PYTHON_SITELIBDIR%%/freevo/www/web_types.pyo
1055
%%PYTHON_SITELIBDIR%%/freevo/www/web_types.pyo
604
%%PORTDOCS%%%%DOCSDIR%%/COPYING
1056
%%DOCSDIR%%/COPYING
605
%%PORTDOCS%%%%DOCSDIR%%/CREDITS
1057
%%DOCSDIR%%/CREDITS
606
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
1058
%%DOCSDIR%%/ChangeLog
607
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
1059
%%DOCSDIR%%/INSTALL
608
%%PORTDOCS%%%%DOCSDIR%%/README
1060
%%DOCSDIR%%/README
609
%%PORTDOCS%%%%DOCSDIR%%/installation/a354.html
1061
%%DOCSDIR%%/RELEASE_NOTES
610
%%PORTDOCS%%%%DOCSDIR%%/installation/c170.html
1062
%%DOCSDIR%%/installation/a353.html
611
%%PORTDOCS%%%%DOCSDIR%%/installation/c19.html
1063
%%DOCSDIR%%/installation/c169.html
612
%%PORTDOCS%%%%DOCSDIR%%/installation/c206.html
1064
%%DOCSDIR%%/installation/c19.html
613
%%PORTDOCS%%%%DOCSDIR%%/installation/c223.html
1065
%%DOCSDIR%%/installation/c205.html
614
%%PORTDOCS%%%%DOCSDIR%%/installation/c249.html
1066
%%DOCSDIR%%/installation/c222.html
615
%%PORTDOCS%%%%DOCSDIR%%/installation/c303.html
1067
%%DOCSDIR%%/installation/c248.html
616
%%PORTDOCS%%%%DOCSDIR%%/installation/c323.html
1068
%%DOCSDIR%%/installation/c302.html
617
%%PORTDOCS%%%%DOCSDIR%%/installation/c63.html
1069
%%DOCSDIR%%/installation/c322.html
618
%%PORTDOCS%%%%DOCSDIR%%/installation/index.html
1070
%%DOCSDIR%%/installation/c63.html
619
%%PORTDOCS%%%%DOCSDIR%%/installation/x184.html
1071
%%DOCSDIR%%/installation/index.html
620
%%PORTDOCS%%%%DOCSDIR%%/installation/x217.html
1072
%%DOCSDIR%%/installation/x183.html
621
%%PORTDOCS%%%%DOCSDIR%%/installation/x229.html
1073
%%DOCSDIR%%/installation/x216.html
622
%%PORTDOCS%%%%DOCSDIR%%/installation/x234.html
1074
%%DOCSDIR%%/installation/x228.html
623
%%PORTDOCS%%%%DOCSDIR%%/installation/x245.html
1075
%%DOCSDIR%%/installation/x233.html
624
%%PORTDOCS%%%%DOCSDIR%%/installation/x25.html
1076
%%DOCSDIR%%/installation/x244.html
625
%%PORTDOCS%%%%DOCSDIR%%/installation/x256.html
1077
%%DOCSDIR%%/installation/x25.html
626
%%PORTDOCS%%%%DOCSDIR%%/installation/x263.html
1078
%%DOCSDIR%%/installation/x255.html
627
%%PORTDOCS%%%%DOCSDIR%%/installation/x274.html
1079
%%DOCSDIR%%/installation/x262.html
628
%%PORTDOCS%%%%DOCSDIR%%/installation/x28.html
1080
%%DOCSDIR%%/installation/x273.html
629
%%PORTDOCS%%%%DOCSDIR%%/installation/x289.html
1081
%%DOCSDIR%%/installation/x28.html
630
%%PORTDOCS%%%%DOCSDIR%%/installation/x32.html
1082
%%DOCSDIR%%/installation/x288.html
631
%%PORTDOCS%%%%DOCSDIR%%/installation/x334.html
1083
%%DOCSDIR%%/installation/x32.html
632
%%PORTDOCS%%%%DOCSDIR%%/installation/x344.html
1084
%%DOCSDIR%%/installation/x333.html
633
%%PORTDOCS%%%%DOCSDIR%%/installation/x349.html
1085
%%DOCSDIR%%/installation/x343.html
634
%%PORTDOCS%%%%DOCSDIR%%/installation/x364.html
1086
%%DOCSDIR%%/installation/x348.html
635
%%PORTDOCS%%%%DOCSDIR%%/installation/x376.html
1087
%%DOCSDIR%%/installation/x363.html
636
%%PORTDOCS%%%%DOCSDIR%%/installation/x38.html
1088
%%DOCSDIR%%/installation/x375.html
637
%%PORTDOCS%%%%DOCSDIR%%/installation/x380.html
1089
%%DOCSDIR%%/installation/x379.html
638
%%PORTDOCS%%%%DOCSDIR%%/installation/x386.html
1090
%%DOCSDIR%%/installation/x38.html
639
%%PORTDOCS%%%%DOCSDIR%%/installation/x425.html
1091
%%DOCSDIR%%/installation/x385.html
640
%%PORTDOCS%%%%DOCSDIR%%/installation/x431.html
1092
%%DOCSDIR%%/installation/x424.html
641
%%PORTDOCS%%%%DOCSDIR%%/installation/x435.html
1093
%%DOCSDIR%%/installation/x430.html
642
%%PORTDOCS%%%%DOCSDIR%%/installation/x439.html
1094
%%DOCSDIR%%/installation/x434.html
643
%%PORTDOCS%%%%DOCSDIR%%/installation/x443.html
1095
%%DOCSDIR%%/installation/x438.html
644
%%PORTDOCS%%%%DOCSDIR%%/installation/x446.html
1096
%%DOCSDIR%%/installation/x442.html
645
%%PORTDOCS%%%%DOCSDIR%%/installation/x450.html
1097
%%DOCSDIR%%/installation/x445.html
646
%%PORTDOCS%%%%DOCSDIR%%/installation/x59.html
1098
%%DOCSDIR%%/installation/x449.html
647
%%PORTDOCS%%%%DOCSDIR%%/installation/x71.html
1099
%%DOCSDIR%%/installation/x59.html
648
%%PORTDOCS%%%%DOCSDIR%%/installation/x90.html
1100
%%DOCSDIR%%/installation/x71.html
649
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/c145.html
1101
%%DOCSDIR%%/installation/x90.html
650
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/c223.html
1102
%%DOCSDIR%%/plugin_writing/c145.html
651
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/c27.html
1103
%%DOCSDIR%%/plugin_writing/c223.html
652
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/c314.html
1104
%%DOCSDIR%%/plugin_writing/c27.html
653
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/c50.html
1105
%%DOCSDIR%%/plugin_writing/c314.html
654
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/index.html
1106
%%DOCSDIR%%/plugin_writing/c50.html
655
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x105.html
1107
%%DOCSDIR%%/plugin_writing/index.html
656
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x109.html
1108
%%DOCSDIR%%/plugin_writing/x105.html
657
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x153.html
1109
%%DOCSDIR%%/plugin_writing/x109.html
658
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x187.html
1110
%%DOCSDIR%%/plugin_writing/x153.html
659
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x200.html
1111
%%DOCSDIR%%/plugin_writing/x187.html
660
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x211.html
1112
%%DOCSDIR%%/plugin_writing/x200.html
661
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x219.html
1113
%%DOCSDIR%%/plugin_writing/x211.html
662
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x232.html
1114
%%DOCSDIR%%/plugin_writing/x219.html
663
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x245.html
1115
%%DOCSDIR%%/plugin_writing/x232.html
664
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x276.html
1116
%%DOCSDIR%%/plugin_writing/x245.html
665
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x301.html
1117
%%DOCSDIR%%/plugin_writing/x276.html
666
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x33.html
1118
%%DOCSDIR%%/plugin_writing/x301.html
667
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x36.html
1119
%%DOCSDIR%%/plugin_writing/x33.html
668
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x41.html
1120
%%DOCSDIR%%/plugin_writing/x36.html
669
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x55.html
1121
%%DOCSDIR%%/plugin_writing/x41.html
670
%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x69.html
1122
%%DOCSDIR%%/plugin_writing/x55.html
671
%%DATADIR%%/contrib/fbcon/fbset.db
1123
%%DOCSDIR%%/plugin_writing/x69.html
672
%%DATADIR%%/contrib/fbcon/mgafb
1124
share/freevo/contrib/fbcon/fbset.db
673
%%DATADIR%%/fonts/Vera.ttf
1125
share/freevo/contrib/fbcon/mgafb
674
%%DATADIR%%/fonts/VeraBI.ttf
1126
share/freevo/fonts/DejaVuSans-Oblique.ttf
675
%%DATADIR%%/fonts/VeraBd.ttf
1127
share/freevo/fonts/DejaVuSansCondensed-Oblique.ttf
676
%%DATADIR%%/fonts/VeraIt.ttf
1128
share/freevo/fonts/DejaVuSansCondensed.ttf
677
%%DATADIR%%/fonts/VeraMoBI.ttf
1129
share/freevo/fonts/DejaVuSansMono.ttf
678
%%DATADIR%%/fonts/VeraMoBd.ttf
1130
share/freevo/fonts/Sansumi-DemiBold.ttf
679
%%DATADIR%%/fonts/VeraMoIt.ttf
1131
share/freevo/fonts/Vera.ttf
680
%%DATADIR%%/fonts/VeraMono.ttf
1132
share/freevo/fonts/VeraBI.ttf
681
%%DATADIR%%/fonts/VeraSe.ttf
1133
share/freevo/fonts/VeraBd.ttf
682
%%DATADIR%%/fonts/VeraSeBd.ttf
1134
share/freevo/fonts/VeraIt.ttf
683
%%DATADIR%%/freevo_config.py
1135
share/freevo/fonts/VeraMoBI.ttf
684
%%DATADIR%%/fxd/examples/german-news.fxd
1136
share/freevo/fonts/VeraMoBd.ttf
685
%%DATADIR%%/fxd/examples/playlist.fxd
1137
share/freevo/fonts/VeraMoIt.ttf
686
%%DATADIR%%/fxd/examples/slideshow.fxd
1138
share/freevo/fonts/VeraMono.ttf
687
%%DATADIR%%/fxd/webradio.fxd
1139
share/freevo/fonts/VeraSe.ttf
688
%%DATADIR%%/htdocs/edit_favorite.rpy
1140
share/freevo/fonts/VeraSeBd.ttf
689
%%DATADIR%%/htdocs/favorites.rpy
1141
share/freevo/fonts/ethopool.ttf
690
%%DATADIR%%/htdocs/genre.rpy
1142
share/freevo/freevo_config.py
691
%%DATADIR%%/htdocs/guide.rpy
1143
share/freevo/fxd/examples/german-news.fxd
692
%%DATADIR%%/htdocs/help/doc.rpy
1144
share/freevo/fxd/examples/playlist.fxd
693
%%DATADIR%%/htdocs/help/howto.rpy
1145
share/freevo/fxd/examples/slideshow.fxd
694
%%DATADIR%%/htdocs/help/index.rpy
1146
share/freevo/fxd/somafm.fxd
695
%%DATADIR%%/htdocs/help/plugins.rpy
1147
share/freevo/fxd/webradio.fxd
696
%%DATADIR%%/htdocs/help/wiki/FxdFiles.html
1148
share/freevo/htdocs/config.rpy
697
%%DATADIR%%/htdocs/help/wiki/SkinInfo.html
1149
share/freevo/htdocs/configedit.rpy
698
%%DATADIR%%/htdocs/help/wiki/faq.html
1150
share/freevo/htdocs/downloadurl
699
%%DATADIR%%/htdocs/help/wiki/recording.html
1151
share/freevo/htdocs/edit_favorite.rpy
700
%%DATADIR%%/htdocs/iceslistchanger.rpy
1152
share/freevo/htdocs/encoding_web.rpy
701
%%DATADIR%%/htdocs/images/attention.gif
1153
share/freevo/htdocs/favicon.ico
702
%%DATADIR%%/htdocs/images/bg.gif
1154
share/freevo/htdocs/favorites.rpy
703
%%DATADIR%%/htdocs/images/freevoheader2.jpg
1155
share/freevo/htdocs/fileinfo.rpy
704
%%DATADIR%%/htdocs/images/headerfreevo.jpg
1156
share/freevo/htdocs/genre.rpy
705
%%DATADIR%%/htdocs/images/headertxtbg.png
1157
share/freevo/htdocs/guide.rpy
706
%%DATADIR%%/htdocs/images/icon-info.gif
1158
share/freevo/htdocs/guidechannel.rpy
707
%%DATADIR%%/htdocs/images/library/library-images.jpg
1159
share/freevo/htdocs/help/doc.rpy
708
%%DATADIR%%/htdocs/images/library/library-movies.jpg
1160
share/freevo/htdocs/help/howto.rpy
709
%%DATADIR%%/htdocs/images/library/library-music.jpg
1161
share/freevo/htdocs/help/index.rpy
710
%%DATADIR%%/htdocs/images/library/library-tv.jpg
1162
share/freevo/htdocs/help/plugins.rpy
711
%%DATADIR%%/htdocs/images/logo_200x100.png
1163
share/freevo/htdocs/help/wiki/FxdFiles.html
712
%%DATADIR%%/htdocs/images/moin-www.gif
1164
share/freevo/htdocs/help/wiki/SkinInfo.html
713
%%DATADIR%%/htdocs/images/pix.gif
1165
share/freevo/htdocs/help/wiki/faq.html
714
%%DATADIR%%/htdocs/images/smile.gif
1166
share/freevo/htdocs/help/wiki/recording.html
715
%%DATADIR%%/htdocs/images/tab/left.gif
1167
share/freevo/htdocs/iceslistchanger.rpy
716
%%DATADIR%%/htdocs/images/tab/left_on.gif
1168
share/freevo/htdocs/icons/back.png
717
%%DATADIR%%/htdocs/images/tab/right.gif
1169
share/freevo/htdocs/icons/button_ok.png
718
%%DATADIR%%/htdocs/images/tab/right_on.gif
1170
share/freevo/htdocs/icons/down.png
719
%%DATADIR%%/htdocs/index.rpy
1171
share/freevo/htdocs/icons/forward.png
720
%%DATADIR%%/htdocs/library.rpy
1172
share/freevo/htdocs/icons/gohome.png
721
%%DATADIR%%/htdocs/manualrecord.rpy
1173
share/freevo/htdocs/icons/help.png
722
%%DATADIR%%/htdocs/proginfo.rpy
1174
share/freevo/htdocs/icons/player_eject.png
723
%%DATADIR%%/htdocs/record.rpy
1175
share/freevo/htdocs/icons/player_end.png
724
%%DATADIR%%/htdocs/scripts/display_prog-head.js
1176
share/freevo/htdocs/icons/player_fwd.png
725
%%DATADIR%%/htdocs/search.rpy
1177
share/freevo/htdocs/icons/player_pause.png
726
%%DATADIR%%/htdocs/styles/main.css
1178
share/freevo/htdocs/icons/player_play.png
727
%%DATADIR%%/htdocs/wap_login.rpy
1179
share/freevo/htdocs/icons/player_playlist.png
728
%%DATADIR%%/htdocs/wap_rec.rpy
1180
share/freevo/htdocs/icons/player_rew.png
729
%%DATADIR%%/icons/holidays/christmas.png
1181
share/freevo/htdocs/icons/player_start.png
730
%%DATADIR%%/icons/holidays/freevo_bday.png
1182
share/freevo/htdocs/icons/player_stop.png
731
%%DATADIR%%/icons/holidays/ghost.png
1183
share/freevo/htdocs/icons/previous.png
732
%%DATADIR%%/icons/holidays/pumpkin.png
1184
share/freevo/htdocs/icons/redo.png
733
%%DATADIR%%/icons/holidays/snowman.png
1185
share/freevo/htdocs/icons/reload.png
734
%%DATADIR%%/icons/holidays/usa_flag.png
1186
share/freevo/htdocs/icons/reload3.png
735
%%DATADIR%%/icons/holidays/valentine.png
1187
share/freevo/htdocs/icons/reload_all_tabs.png
736
%%DATADIR%%/icons/misc/case.png
1188
share/freevo/htdocs/icons/reload_page.png
737
%%DATADIR%%/icons/misc/cdrom_mount.png
1189
share/freevo/htdocs/icons/rotate.png
738
%%DATADIR%%/icons/misc/clock.png
1190
share/freevo/htdocs/icons/rotate_ccw.png
739
%%DATADIR%%/icons/misc/cpu.png
1191
share/freevo/htdocs/icons/rotate_cw.png
740
%%DATADIR%%/icons/misc/freevo_app.png
1192
share/freevo/htdocs/icons/start.png
741
%%DATADIR%%/icons/misc/memory.png
1193
share/freevo/htdocs/icons/up.png
742
%%DATADIR%%/icons/misc/osd_busy.png
1194
share/freevo/htdocs/images/attention.gif
743
%%DATADIR%%/icons/popup/popup_alert.png
1195
share/freevo/htdocs/images/bg.gif
744
%%DATADIR%%/icons/popup/popup_wait.png
1196
share/freevo/htdocs/images/config/auto.png
745
%%DATADIR%%/icons/popup/popup_warn.png
1197
share/freevo/htdocs/images/config/down-16px.png
746
%%DATADIR%%/icons/status/cd_audio.png
1198
share/freevo/htdocs/images/config/down.png
747
%%DATADIR%%/icons/status/cd_burn.png
1199
share/freevo/htdocs/images/config/error-16px.png
748
%%DATADIR%%/icons/status/cd_inactive.png
1200
share/freevo/htdocs/images/config/folder-16px.png
749
%%DATADIR%%/icons/status/cd_mixed.png
1201
share/freevo/htdocs/images/config/folder-new.png
750
%%DATADIR%%/icons/status/cd_photo.png
1202
share/freevo/htdocs/images/config/folder.png
751
%%DATADIR%%/icons/status/cd_rip.png
1203
share/freevo/htdocs/images/config/left-16px.png
752
%%DATADIR%%/icons/status/cd_video.png
1204
share/freevo/htdocs/images/config/left.png
753
%%DATADIR%%/icons/status/newmail_active.png
1205
share/freevo/htdocs/images/config/menu_toplevel_hover.png
754
%%DATADIR%%/icons/status/newmail_active_small.png
1206
share/freevo/htdocs/images/config/off-16px.png
755
%%DATADIR%%/icons/status/newmail_dimmed.png
1207
share/freevo/htdocs/images/config/on-16px.png
756
%%DATADIR%%/icons/status/television_active.png
1208
share/freevo/htdocs/images/config/right-16px.png
757
%%DATADIR%%/icons/status/television_expired.png
1209
share/freevo/htdocs/images/config/right.png
758
%%DATADIR%%/icons/status/television_inactive.png
1210
share/freevo/htdocs/images/config/up-16px.png
759
%%DATADIR%%/icons/status/television_near_expired.png
1211
share/freevo/htdocs/images/config/up.png
760
%%DATADIR%%/icons/status/volume_bar.png
1212
share/freevo/htdocs/images/config/warning-16px.png
761
%%DATADIR%%/icons/status/volume_mute.png
1213
share/freevo/htdocs/images/freevoheader2.jpg
762
%%DATADIR%%/icons/status/volume_out.png
1214
share/freevo/htdocs/images/freevoheader2.png
763
%%DATADIR%%/icons/themes/AquaFusion/AquaFusion_Icons.txt
1215
share/freevo/htdocs/images/headerfreevo.jpg
764
%%DATADIR%%/icons/themes/AquaFusion/AquaFusion_Icons_LICENSE
1216
share/freevo/htdocs/images/headertxtbg.png
765
%%DATADIR%%/icons/themes/AquaFusion/auto.png
1217
share/freevo/htdocs/images/icon-info.gif
766
%%DATADIR%%/icons/themes/AquaFusion/bla.png
1218
share/freevo/htdocs/images/library/folder.png
767
%%DATADIR%%/icons/themes/AquaFusion/down.png
1219
share/freevo/htdocs/images/library/images.png
768
%%DATADIR%%/icons/themes/AquaFusion/images.png
1220
share/freevo/htdocs/images/library/images_small.png
769
%%DATADIR%%/icons/themes/AquaFusion/left.png
1221
share/freevo/htdocs/images/library/library-images.jpg
770
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/audio.png
1222
share/freevo/htdocs/images/library/library-movies.jpg
771
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/audiocd.png
1223
share/freevo/htdocs/images/library/library-music.jpg
772
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/cdrom.png
1224
share/freevo/htdocs/images/library/library-tv.jpg
773
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/dvd.png
1225
share/freevo/htdocs/images/library/movies.png
774
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/empty_cdrom.png
1226
share/freevo/htdocs/images/library/movies_small.png
775
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/folder.png
1227
share/freevo/htdocs/images/library/music.png
776
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/folder_audio.png
1228
share/freevo/htdocs/images/library/music_small.png
777
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/folder_image.png
1229
share/freevo/htdocs/images/library/recorded.png
778
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/folder_video.png
1230
share/freevo/htdocs/images/library/recorded_small.png
779
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/playlist.png
1231
share/freevo/htdocs/images/library/television_keep.png
780
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/unknown.png
1232
share/freevo/htdocs/images/library/television_unwatched.png
781
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/vcd.png
1233
share/freevo/htdocs/images/library/television_watched.png
782
%%DATADIR%%/icons/themes/AquaFusion/mimetypes/video.png
1234
share/freevo/htdocs/images/library/www-mp-movies.png
783
%%DATADIR%%/icons/themes/AquaFusion/movies.png
1235
share/freevo/htdocs/images/library/www-mp-music.png
784
%%DATADIR%%/icons/themes/AquaFusion/mp3.png
1236
share/freevo/htdocs/images/library/www-mp-pictures.png
785
%%DATADIR%%/icons/themes/AquaFusion/off.png
1237
share/freevo/htdocs/images/library/www-mp-tv.png
786
%%DATADIR%%/icons/themes/AquaFusion/on.png
1238
share/freevo/htdocs/images/logo_200x100.png
787
%%DATADIR%%/icons/themes/AquaFusion/package_games.png
1239
share/freevo/htdocs/images/moin-www.gif
788
%%DATADIR%%/icons/themes/AquaFusion/right.png
1240
share/freevo/htdocs/images/pix.gif
789
%%DATADIR%%/icons/themes/AquaFusion/shutdown.png
1241
share/freevo/htdocs/images/sb_anchor_spacer.gif
790
%%DATADIR%%/icons/themes/AquaFusion/tv.png
1242
share/freevo/htdocs/images/sb_closelabel.gif
791
%%DATADIR%%/icons/themes/AquaFusion/up.png
1243
share/freevo/htdocs/images/sb_loading.gif
792
%%DATADIR%%/icons/themes/AquaFusion/videogame.png
1244
share/freevo/htdocs/images/sb_nextlabel.gif
793
%%DATADIR%%/icons/themes/Noia/README
1245
share/freevo/htdocs/images/sb_prevlabel.gif
794
%%DATADIR%%/icons/themes/Noia/auto.png
1246
share/freevo/htdocs/images/smile.gif
795
%%DATADIR%%/icons/themes/Noia/down.png
1247
share/freevo/htdocs/images/tab/left.gif
796
%%DATADIR%%/icons/themes/Noia/left.png
1248
share/freevo/htdocs/images/tab/left_on.gif
797
%%DATADIR%%/icons/themes/Noia/mimetypes/audio.png
1249
share/freevo/htdocs/images/tab/right.gif
798
%%DATADIR%%/icons/themes/Noia/mimetypes/audiocd.png
1250
share/freevo/htdocs/images/tab/right_on.gif
799
%%DATADIR%%/icons/themes/Noia/mimetypes/cdrom.png
1251
share/freevo/htdocs/index.rpy
800
%%DATADIR%%/icons/themes/Noia/mimetypes/detached_player.png
1252
share/freevo/htdocs/library.rpy
801
%%DATADIR%%/icons/themes/Noia/mimetypes/dvd.png
1253
share/freevo/htdocs/library1.rpy
802
%%DATADIR%%/icons/themes/Noia/mimetypes/empty_cdrom.png
1254
share/freevo/htdocs/manualrecord.rpy
803
%%DATADIR%%/icons/themes/Noia/mimetypes/folder.png
1255
share/freevo/htdocs/pluginconfig.rpy
804
%%DATADIR%%/icons/themes/Noia/mimetypes/news.png
1256
share/freevo/htdocs/proginfo.rpy
805
%%DATADIR%%/icons/themes/Noia/mimetypes/playlist.png
1257
share/freevo/htdocs/record.rpy
806
%%DATADIR%%/icons/themes/Noia/mimetypes/unknown.png
1258
share/freevo/htdocs/scripts/browsefile.js
807
%%DATADIR%%/icons/themes/Noia/mimetypes/vcd.png
1259
share/freevo/htdocs/scripts/config.js
808
%%DATADIR%%/icons/themes/Noia/mimetypes/video.png
1260
share/freevo/htdocs/scripts/display_info-head.js
809
%%DATADIR%%/icons/themes/Noia/mimetypes/video_quicktime.png
1261
share/freevo/htdocs/scripts/display_prog-head.js
810
%%DATADIR%%/icons/themes/Noia/mimetypes/video_real.png
1262
share/freevo/htdocs/scripts/encoding_web.js
811
%%DATADIR%%/icons/themes/Noia/mimetypes/webradio.png
1263
share/freevo/htdocs/scripts/guidechannel.js
812
%%DATADIR%%/icons/themes/Noia/misc/osd_busy.png
1264
share/freevo/htdocs/scripts/pluginconfig.js
813
%%DATADIR%%/icons/themes/Noia/off.png
1265
share/freevo/htdocs/scripts/viewlogfile.js
814
%%DATADIR%%/icons/themes/Noia/on.png
1266
share/freevo/htdocs/scripts/youtube.js
815
%%DATADIR%%/icons/themes/Noia/right.png
1267
share/freevo/htdocs/search.rpy
816
%%DATADIR%%/icons/themes/Noia/up.png
1268
share/freevo/htdocs/styles/config.css
817
%%DATADIR%%/icons/themes/blurr/down.png
1269
share/freevo/htdocs/styles/guidechannel.css
818
%%DATADIR%%/icons/themes/blurr/left.png
1270
share/freevo/htdocs/styles/main.css
819
%%DATADIR%%/icons/themes/blurr/mimetypes/audiocd.png
1271
share/freevo/htdocs/styles/pluginconfig.css
820
%%DATADIR%%/icons/themes/blurr/mimetypes/cdrom.png
1272
share/freevo/htdocs/styles/slimbox_ex.css
821
%%DATADIR%%/icons/themes/blurr/mimetypes/empty_cdrom.png
1273
share/freevo/htdocs/styles/viewlogfile.css
822
%%DATADIR%%/icons/themes/blurr/mimetypes/folder_image.png
1274
share/freevo/htdocs/styles/youtube.css
823
%%DATADIR%%/icons/themes/blurr/mimetypes/playlist.png
1275
share/freevo/htdocs/videolan/Bs_FormUtil.lib.js
824
%%DATADIR%%/icons/themes/blurr/mimetypes/playlist_image.png
1276
share/freevo/htdocs/videolan/Bs_Slider.class.js
825
%%DATADIR%%/icons/themes/blurr/mimetypes/unknown.png
1277
share/freevo/htdocs/videolan/EventHandler.js
826
%%DATADIR%%/icons/themes/blurr/recordinglater.png
1278
share/freevo/htdocs/videolan/LibCrossBrowser.js
827
%%DATADIR%%/icons/themes/blurr/recordingnow.png
1279
share/freevo/htdocs/videolan/img/horizontal_background.gif
828
%%DATADIR%%/icons/themes/blurr/right.png
1280
share/freevo/htdocs/videolan/img/horizontal_backgroundLeft.gif
829
%%DATADIR%%/icons/themes/blurr/status/cd_audio.png
1281
share/freevo/htdocs/videolan/img/horizontal_backgroundRight.gif
830
%%DATADIR%%/icons/themes/blurr/status/cd_inactive.png
1282
share/freevo/htdocs/videolan/img/horizontal_knob.gif
831
%%DATADIR%%/icons/themes/blurr/status/cd_mixed.png
1283
share/freevo/htdocs/videolan/vlc_funcs.js
832
%%DATADIR%%/icons/themes/blurr/status/cd_video.png
1284
share/freevo/htdocs/videolan/vlc_init.js
833
%%DATADIR%%/icons/themes/blurr/status/newmail_active.png
1285
share/freevo/htdocs/viewlogfile.rpy
834
%%DATADIR%%/icons/themes/blurr/status/newmail_dimmed.png
1286
share/freevo/htdocs/vlcwin.rpy
835
%%DATADIR%%/icons/themes/blurr/status/television_active.png
1287
share/freevo/htdocs/wap_login.rpy
836
%%DATADIR%%/icons/themes/blurr/status/television_inactive.png
1288
share/freevo/htdocs/wap_rec.rpy
837
%%DATADIR%%/icons/themes/blurr/up.png
1289
share/freevo/htdocs/webremote.rpy
838
%%DATADIR%%/icons/themes/tuxntosh/down.png
1290
share/freevo/htdocs/youtube.rpy
839
%%DATADIR%%/icons/themes/tuxntosh/left.png
1291
share/freevo/icons/holidays/christmas.png
840
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/images.png
1292
share/freevo/icons/holidays/freevo_bday.png
841
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/movies.png
1293
share/freevo/icons/holidays/ghost.png
842
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/music.png
1294
share/freevo/icons/holidays/pumpkin.png
843
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/out_images.png
1295
share/freevo/icons/holidays/snowman.png
844
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/out_movies.png
1296
share/freevo/icons/holidays/usa_flag.png
845
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/out_music.png
1297
share/freevo/icons/holidays/valentine.png
846
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/out_shutdown.png
1298
share/freevo/icons/misc/bluebutton.png
847
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/out_tv.png
1299
share/freevo/icons/misc/case.png
848
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/shutdown.png
1300
share/freevo/icons/misc/cdrom_mount.png
849
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/tv.png
1301
share/freevo/icons/misc/chartpie.png
850
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/audio.png
1302
share/freevo/icons/misc/clock.png
851
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/audiocd.png
1303
share/freevo/icons/misc/cpu.png
852
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/cdrom.png
1304
share/freevo/icons/misc/freevo_app.png
853
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/dvd.png
1305
share/freevo/icons/misc/greenbutton.png
854
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/empty_cdrom.png
1306
share/freevo/icons/misc/memory.png
855
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/file.png
1307
share/freevo/icons/misc/osd_busy.png
856
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/folder.png
1308
share/freevo/icons/misc/radio.png
857
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/folder_audio.png
1309
share/freevo/icons/misc/redbutton.png
858
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/folder_image.png
1310
share/freevo/icons/misc/reminder_off.png
859
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/folder_video.png
1311
share/freevo/icons/misc/reminder_on.png
860
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/image.png
1312
share/freevo/icons/misc/yellowbutton.png
861
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_audio.png
1313
share/freevo/icons/popup/popup_alert.png
862
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_audiocd.png
1314
share/freevo/icons/popup/popup_wait.png
863
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_cdrom.png
1315
share/freevo/icons/popup/popup_warn.png
864
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_dvd.png
1316
share/freevo/icons/status/cd_audio.png
865
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_empty_cdrom.png
1317
share/freevo/icons/status/cd_burn.png
866
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_file.png
1318
share/freevo/icons/status/cd_inactive.png
867
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_folder.png
1319
share/freevo/icons/status/cd_mixed.png
868
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_folder_audio.png
1320
share/freevo/icons/status/cd_photo.png
869
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_folder_image.png
1321
share/freevo/icons/status/cd_rip.png
870
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_folder_video.png
1322
share/freevo/icons/status/cd_video.png
871
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_image.png
1323
share/freevo/icons/status/check.png
872
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_playlist.png
1324
share/freevo/icons/status/copy_to_hdd.png
873
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_playlist_audio.png
1325
share/freevo/icons/status/cross.png
874
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_playlist_image.png
1326
share/freevo/icons/status/diskfree-bad.png
875
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_playlist_video.png
1327
share/freevo/icons/status/diskfree-good.png
876
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_unknown.png
1328
share/freevo/icons/status/diskfree-poor.png
877
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_vcd.png
1329
share/freevo/icons/status/diskfree.png
878
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/out_video.png
1330
share/freevo/icons/status/enc_audio.png
879
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/playlist.png
1331
share/freevo/icons/status/enc_background.png
880
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/playlist_audio.png
1332
share/freevo/icons/status/enc_leftclamp.png
881
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/playlist_image.png
1333
share/freevo/icons/status/enc_multiplex.png
882
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/playlist_video.png
1334
share/freevo/icons/status/enc_nojobs.png
883
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/unknown.png
1335
share/freevo/icons/status/enc_notrunning.png
884
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/video.png
1336
share/freevo/icons/status/enc_rightclamp.png
885
%%DATADIR%%/icons/themes/tuxntosh/right.png
1337
share/freevo/icons/status/enc_video.png
886
%%DATADIR%%/icons/themes/tuxntosh/up.png
1338
share/freevo/icons/status/enc_video1.png
887
%%DATADIR%%/icons/weather/cloud.png
1339
share/freevo/icons/status/enc_video2.png
888
%%DATADIR%%/icons/weather/fog.png
1340
share/freevo/icons/status/enc_video3.png
889
%%DATADIR%%/icons/weather/moon-mc.png
1341
share/freevo/icons/status/encode_1.png
890
%%DATADIR%%/icons/weather/moon-pc.png
1342
share/freevo/icons/status/encode_2.png
891
%%DATADIR%%/icons/weather/moon.png
1343
share/freevo/icons/status/encode_3.png
892
%%DATADIR%%/icons/weather/rain.png
1344
share/freevo/icons/status/encode_audio.png
893
%%DATADIR%%/icons/weather/snow.png
1345
share/freevo/icons/status/encode_clamp.png
894
%%DATADIR%%/icons/weather/storm.png
1346
share/freevo/icons/status/encode_video.png
895
%%DATADIR%%/icons/weather/sun-mc.png
1347
share/freevo/icons/status/encoding_bar.png
896
%%DATADIR%%/icons/weather/sun-pc.png
1348
share/freevo/icons/status/encoding_box.png
897
%%DATADIR%%/icons/weather/sun.png
1349
share/freevo/icons/status/newmail_active.png
898
%%DATADIR%%/icons/weather/suncloud.png
1350
share/freevo/icons/status/newmail_active_small.png
899
%%DATADIR%%/icons/weather/tstorms.png
1351
share/freevo/icons/status/newmail_dimmed.png
900
%%DATADIR%%/icons/weather/wind.png
1352
share/freevo/icons/status/series_keep.png
901
%%DATADIR%%/images/aubin_bg2.jpg
1353
share/freevo/icons/status/series_keep_watched.png
902
%%DATADIR%%/images/barbieri/bg.jpg
1354
share/freevo/icons/status/series_unwatched.png
903
%%DATADIR%%/images/blurr_naxos.jpg
1355
share/freevo/icons/status/series_watched.png
904
%%DATADIR%%/images/blurrback.jpg
1356
share/freevo/icons/status/television_active.png
905
%%DATADIR%%/images/blurrsplash.jpg
1357
share/freevo/icons/status/television_expired.png
906
%%DATADIR%%/images/frame.png
1358
share/freevo/icons/status/television_inactive.png
907
%%DATADIR%%/images/gant/chat.png
1359
share/freevo/icons/status/television_keep.png
908
%%DATADIR%%/images/gant/commands.png
1360
share/freevo/icons/status/television_keep_watched.png
909
%%DATADIR%%/images/gant/games.png
1361
share/freevo/icons/status/television_near_expired.png
910
%%DATADIR%%/images/gant/headlines.png
1362
share/freevo/icons/status/television_unwatched.png
911
%%DATADIR%%/images/gant/image.png
1363
share/freevo/icons/status/television_watched.png
912
%%DATADIR%%/images/gant/logo.png
1364
share/freevo/icons/status/volbar1.png
913
%%DATADIR%%/images/gant/movie.png
1365
share/freevo/icons/status/volbar2.png
914
%%DATADIR%%/images/gant/music.png
1366
share/freevo/icons/status/volbar3.png
915
%%DATADIR%%/images/gant/scheduledtv.png
1367
share/freevo/icons/status/volbar4.png
916
%%DATADIR%%/images/gant/shutdown.png
1368
share/freevo/icons/status/volbar5.png
917
%%DATADIR%%/images/gant/tv.png
1369
share/freevo/icons/status/volume_bar.png
918
%%DATADIR%%/images/gant/weather.png
1370
share/freevo/icons/status/volume_mute.png
919
%%DATADIR%%/images/idlebar.png
1371
share/freevo/icons/status/volume_mute_multi.png
920
%%DATADIR%%/images/logo.png
1372
share/freevo/icons/status/volume_out.png
921
%%DATADIR%%/images/logo_david.png
1373
share/freevo/icons/status/volume_out_multi.png
922
%%DATADIR%%/images/splashscreen-bsd.png
1374
share/freevo/icons/themes/AquaFusion/AquaFusion_Icons.txt
923
%%DATADIR%%/images/splashscreen.png
1375
share/freevo/icons/themes/AquaFusion/AquaFusion_Icons_LICENSE
924
%%DATADIR%%/images/watermarks/image.png
1376
share/freevo/icons/themes/AquaFusion/auto.png
925
%%DATADIR%%/images/watermarks/movie.png
1377
share/freevo/icons/themes/AquaFusion/bla.png
926
%%DATADIR%%/images/watermarks/music.png
1378
share/freevo/icons/themes/AquaFusion/down.png
927
%%DATADIR%%/images/watermarks/shutdown.png
1379
share/freevo/icons/themes/AquaFusion/images.png
928
%%DATADIR%%/images/watermarks/tv.png
1380
share/freevo/icons/themes/AquaFusion/left.png
929
%%DATADIR%%/skins/main/README
1381
share/freevo/icons/themes/AquaFusion/mimetypes/audio.png
930
%%DATADIR%%/skins/main/basic.fxd
1382
share/freevo/icons/themes/AquaFusion/mimetypes/audiocd.png
931
%%DATADIR%%/skins/main/blurr.fxd
1383
share/freevo/icons/themes/AquaFusion/mimetypes/cdrom.png
932
%%DATADIR%%/skins/main/blurr.jpg
1384
share/freevo/icons/themes/AquaFusion/mimetypes/dvd.png
933
%%DATADIR%%/skins/main/image.fxd
1385
share/freevo/icons/themes/AquaFusion/mimetypes/empty_cdrom.png
934
%%DATADIR%%/skins/main/info.fxd
1386
share/freevo/icons/themes/AquaFusion/mimetypes/folder.png
935
%%DATADIR%%/skins/main/info.jpg
1387
share/freevo/icons/themes/AquaFusion/mimetypes/folder_audio.png
936
%%DATADIR%%/skins/main/noia.fxd
1388
share/freevo/icons/themes/AquaFusion/mimetypes/folder_image.png
937
%%DATADIR%%/skins/main/noia.jpg
1389
share/freevo/icons/themes/AquaFusion/mimetypes/folder_video.png
938
%%DATADIR%%/skins/plugins/video_details.fxd
1390
share/freevo/icons/themes/AquaFusion/mimetypes/playlist.png
939
share/fxd/webradio.fxd
1391
share/freevo/icons/themes/AquaFusion/mimetypes/unknown.png
940
share/locale/cs/LC_MESSAGES/freevo.mo
1392
share/freevo/icons/themes/AquaFusion/mimetypes/vcd.png
941
share/locale/cs/LC_MESSAGES/freevo.po
1393
share/freevo/icons/themes/AquaFusion/mimetypes/video.png
942
share/locale/da/LC_MESSAGES/freevo.mo
1394
share/freevo/icons/themes/AquaFusion/movies.png
943
share/locale/da/LC_MESSAGES/freevo.po
1395
share/freevo/icons/themes/AquaFusion/mp3.png
944
share/locale/de/LC_MESSAGES/freevo.mo
1396
share/freevo/icons/themes/AquaFusion/off.png
945
share/locale/de/LC_MESSAGES/freevo.po
1397
share/freevo/icons/themes/AquaFusion/on.png
946
share/locale/es/LC_MESSAGES/freevo.mo
1398
share/freevo/icons/themes/AquaFusion/package_games.png
947
share/locale/es/LC_MESSAGES/freevo.po
1399
share/freevo/icons/themes/AquaFusion/right.png
948
share/locale/fi/LC_MESSAGES/freevo.mo
1400
share/freevo/icons/themes/AquaFusion/shutdown.png
949
share/locale/fi/LC_MESSAGES/freevo.po
1401
share/freevo/icons/themes/AquaFusion/tv.png
950
share/locale/fr/LC_MESSAGES/freevo.mo
1402
share/freevo/icons/themes/AquaFusion/up.png
951
share/locale/fr/LC_MESSAGES/freevo.po
1403
share/freevo/icons/themes/AquaFusion/videogame.png
952
share/locale/it/LC_MESSAGES/freevo.mo
1404
share/freevo/icons/themes/Crystal/auto.png
953
share/locale/it/LC_MESSAGES/freevo.po
1405
share/freevo/icons/themes/Crystal/commands_off.png
954
share/locale/nl/LC_MESSAGES/freevo.mo
1406
share/freevo/icons/themes/Crystal/commands_on.png
955
share/locale/nl/LC_MESSAGES/freevo.po
1407
share/freevo/icons/themes/Crystal/down.png
956
share/locale/no/LC_MESSAGES/freevo.mo
1408
share/freevo/icons/themes/Crystal/email_off.png
957
share/locale/no/LC_MESSAGES/freevo.po
1409
share/freevo/icons/themes/Crystal/email_on.png
958
share/locale/pt/LC_MESSAGES/freevo.mo
1410
share/freevo/icons/themes/Crystal/games_off.png
959
share/locale/pt/LC_MESSAGES/freevo.po
1411
share/freevo/icons/themes/Crystal/games_on.png
960
share/locale/pt_BR/LC_MESSAGES/freevo.mo
1412
share/freevo/icons/themes/Crystal/headlines_off.png
961
share/locale/pt_BR/LC_MESSAGES/freevo.po
1413
share/freevo/icons/themes/Crystal/headlines_on.png
962
share/locale/sv/LC_MESSAGES/freevo.mo
1414
share/freevo/icons/themes/Crystal/image_off.png
963
share/locale/sv/LC_MESSAGES/freevo.po
1415
share/freevo/icons/themes/Crystal/image_on.png
964
@dirrm share/fxd
1416
share/freevo/icons/themes/Crystal/left.png
965
@dirrm %%DATADIR%%/skins/plugins
1417
share/freevo/icons/themes/Crystal/mimetypes/RadioNetscape.png
966
@dirrm %%DATADIR%%/skins/main
1418
share/freevo/icons/themes/Crystal/mimetypes/audio.png
967
@dirrm %%DATADIR%%/skins
1419
share/freevo/icons/themes/Crystal/mimetypes/audiocd.png
968
@dirrm %%DATADIR%%/images/watermarks
1420
share/freevo/icons/themes/Crystal/mimetypes/cdrom.png
969
@dirrm %%DATADIR%%/images/gant
1421
share/freevo/icons/themes/Crystal/mimetypes/detached_player.png
970
@dirrm %%DATADIR%%/images/barbieri
1422
share/freevo/icons/themes/Crystal/mimetypes/dvd.png
971
@dirrm %%DATADIR%%/images
1423
share/freevo/icons/themes/Crystal/mimetypes/empty_cdrom.png
972
@dirrm %%DATADIR%%/icons/weather
1424
share/freevo/icons/themes/Crystal/mimetypes/folder.png
973
@dirrm %%DATADIR%%/icons/themes/tuxntosh/mimetypes
1425
share/freevo/icons/themes/Crystal/mimetypes/linkbrowser.png
974
@dirrm %%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54
1426
share/freevo/icons/themes/Crystal/mimetypes/playlist.png
975
@dirrm %%DATADIR%%/icons/themes/tuxntosh/mainmenu
1427
share/freevo/icons/themes/Crystal/mimetypes/trailers.png
976
@dirrm %%DATADIR%%/icons/themes/tuxntosh
1428
share/freevo/icons/themes/Crystal/mimetypes/unknown.png
977
@dirrm %%DATADIR%%/icons/themes/blurr/status
1429
share/freevo/icons/themes/Crystal/mimetypes/vcd.png
978
@dirrm %%DATADIR%%/icons/themes/blurr/mimetypes
1430
share/freevo/icons/themes/Crystal/mimetypes/video.png
979
@dirrm %%DATADIR%%/icons/themes/blurr
1431
share/freevo/icons/themes/Crystal/mimetypes/video_quicktime.png
980
@dirrm %%DATADIR%%/icons/themes/Noia/misc
1432
share/freevo/icons/themes/Crystal/mimetypes/video_real.png
981
@dirrm %%DATADIR%%/icons/themes/Noia/mimetypes
1433
share/freevo/icons/themes/Crystal/mimetypes/webradio.png
982
@dirrm %%DATADIR%%/icons/themes/Noia
1434
share/freevo/icons/themes/Crystal/misc/case.png
983
@dirrm %%DATADIR%%/icons/themes/AquaFusion/mimetypes
1435
share/freevo/icons/themes/Crystal/misc/cdrom_mount.png
984
@dirrm %%DATADIR%%/icons/themes/AquaFusion
1436
share/freevo/icons/themes/Crystal/misc/clock.png
985
@dirrm %%DATADIR%%/icons/themes
1437
share/freevo/icons/themes/Crystal/misc/cpu.png
986
@dirrm %%DATADIR%%/icons/status
1438
share/freevo/icons/themes/Crystal/misc/freevo_app.png
987
@dirrm %%DATADIR%%/icons/popup
1439
share/freevo/icons/themes/Crystal/misc/hddtemp-cool.png
988
@dirrm %%DATADIR%%/icons/misc
1440
share/freevo/icons/themes/Crystal/misc/hddtemp-norm.png
989
@dirrm %%DATADIR%%/icons/holidays
1441
share/freevo/icons/themes/Crystal/misc/hddtemp-warm.png
990
@dirrm %%DATADIR%%/icons
1442
share/freevo/icons/themes/Crystal/misc/memory.png
991
@dirrm %%DATADIR%%/htdocs/styles
1443
share/freevo/icons/themes/Crystal/movie_off.png
992
@dirrm %%DATADIR%%/htdocs/scripts
1444
share/freevo/icons/themes/Crystal/movie_on.png
993
@dirrm %%DATADIR%%/htdocs/images/tab
1445
share/freevo/icons/themes/Crystal/music_off.png
994
@dirrm %%DATADIR%%/htdocs/images/library
1446
share/freevo/icons/themes/Crystal/music_on.png
995
@dirrm %%DATADIR%%/htdocs/images
1447
share/freevo/icons/themes/Crystal/off.png
996
@dirrm %%DATADIR%%/htdocs/help/wiki
1448
share/freevo/icons/themes/Crystal/on.png
997
@dirrm %%DATADIR%%/htdocs/help
1449
share/freevo/icons/themes/Crystal/popup/popup_wait.png
998
@dirrm %%DATADIR%%/htdocs
1450
share/freevo/icons/themes/Crystal/right.png
999
@dirrm %%DATADIR%%/fxd/examples
1451
share/freevo/icons/themes/Crystal/shutdown_off.png
1000
@dirrm %%DATADIR%%/fxd
1452
share/freevo/icons/themes/Crystal/shutdown_on.png
1001
@dirrm %%DATADIR%%/fonts
1453
share/freevo/icons/themes/Crystal/status/cd_audio.png
1002
@dirrm %%DATADIR%%/contrib/fbcon
1454
share/freevo/icons/themes/Crystal/status/cd_burn.png
1003
@dirrm %%DATADIR%%/contrib
1455
share/freevo/icons/themes/Crystal/status/cd_inactive.png
1004
@dirrm %%DATADIR%%
1456
share/freevo/icons/themes/Crystal/status/cd_mixed.png
1005
@dirrm %%PORTDOCS%%%%DOCSDIR%%/plugin_writing
1457
share/freevo/icons/themes/Crystal/status/cd_photo.png
1006
@dirrm %%PORTDOCS%%%%DOCSDIR%%/installation
1458
share/freevo/icons/themes/Crystal/status/cd_rip.png
1007
@dirrm %%PORTDOCS%%%%DOCSDIR%%
1459
share/freevo/icons/themes/Crystal/status/cd_video.png
1008
@dirrm %%PYTHON_SITELIBDIR%%/freevo/www
1460
share/freevo/icons/themes/Crystal/status/mail_dimmed.png
1009
@dirrm %%PYTHON_SITELIBDIR%%/freevo/video/plugins
1461
share/freevo/icons/themes/Crystal/status/mail_new.png
1010
@dirrm %%PYTHON_SITELIBDIR%%/freevo/video
1462
share/freevo/icons/themes/Crystal/status/newmail_active.png
1011
@dirrm %%PYTHON_SITELIBDIR%%/freevo/util
1463
share/freevo/icons/themes/Crystal/status/newmail_active_small.png
1012
@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv/plugins
1464
share/freevo/icons/themes/Crystal/status/newmail_dimmed.png
1013
@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv
1465
share/freevo/icons/themes/Crystal/status/television_active.png
1014
@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins/plugins
1466
share/freevo/icons/themes/Crystal/status/television_expired.png
1015
@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins/main
1467
share/freevo/icons/themes/Crystal/status/television_inactive.png
1016
@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins
1468
share/freevo/icons/themes/Crystal/status/television_near_expired.png
1017
@dirrm %%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar
1469
share/freevo/icons/themes/Crystal/status/volume_bar.png
1018
@dirrm %%PYTHON_SITELIBDIR%%/freevo/plugins
1470
share/freevo/icons/themes/Crystal/status/volume_mute.png
1019
@dirrm %%PYTHON_SITELIBDIR%%/freevo/image/plugins
1471
share/freevo/icons/themes/Crystal/status/volume_out.png
1020
@dirrm %%PYTHON_SITELIBDIR%%/freevo/image
1472
share/freevo/icons/themes/Crystal/tv_off.png
1021
@dirrm %%PYTHON_SITELIBDIR%%/freevo/helpers
1473
share/freevo/icons/themes/Crystal/tv_on.png
1022
@dirrm %%PYTHON_SITELIBDIR%%/freevo/gui
1474
share/freevo/icons/themes/Crystal/up.png
1023
@dirrm %%PYTHON_SITELIBDIR%%/freevo/games
1475
share/freevo/icons/themes/Crystal/weather_off.png
1476
share/freevo/icons/themes/Crystal/weather_on.png
1477
share/freevo/icons/themes/Noia/README
1478
share/freevo/icons/themes/Noia/auto.png
1479
share/freevo/icons/themes/Noia/down.png
1480
share/freevo/icons/themes/Noia/left.png
1481
share/freevo/icons/themes/Noia/mimetypes/audio.png
1482
share/freevo/icons/themes/Noia/mimetypes/audiocd.png
1483
share/freevo/icons/themes/Noia/mimetypes/cdrom.png
1484
share/freevo/icons/themes/Noia/mimetypes/detached_player.png
1485
share/freevo/icons/themes/Noia/mimetypes/dvd.png
1486
share/freevo/icons/themes/Noia/mimetypes/empty_cdrom.png
1487
share/freevo/icons/themes/Noia/mimetypes/folder.png
1488
share/freevo/icons/themes/Noia/mimetypes/news.png
1489
share/freevo/icons/themes/Noia/mimetypes/playlist.png
1490
share/freevo/icons/themes/Noia/mimetypes/unknown.png
1491
share/freevo/icons/themes/Noia/mimetypes/vcd.png
1492
share/freevo/icons/themes/Noia/mimetypes/video.png
1493
share/freevo/icons/themes/Noia/mimetypes/video_quicktime.png
1494
share/freevo/icons/themes/Noia/mimetypes/video_real.png
1495
share/freevo/icons/themes/Noia/mimetypes/webradio.png
1496
share/freevo/icons/themes/Noia/misc/osd_busy.png
1497
share/freevo/icons/themes/Noia/off.png
1498
share/freevo/icons/themes/Noia/on.png
1499
share/freevo/icons/themes/Noia/right.png
1500
share/freevo/icons/themes/Noia/up.png
1501
share/freevo/icons/themes/Panorama/down.png
1502
share/freevo/icons/themes/Panorama/left.png
1503
share/freevo/icons/themes/Panorama/mimetypes/audiocd.png
1504
share/freevo/icons/themes/Panorama/mimetypes/cdrom.png
1505
share/freevo/icons/themes/Panorama/mimetypes/empty_cdrom.png
1506
share/freevo/icons/themes/Panorama/mimetypes/folder.png
1507
share/freevo/icons/themes/Panorama/mimetypes/folder_image.png
1508
share/freevo/icons/themes/Panorama/mimetypes/playlist.png
1509
share/freevo/icons/themes/Panorama/mimetypes/playlist_image.png
1510
share/freevo/icons/themes/Panorama/mimetypes/unknown.png
1511
share/freevo/icons/themes/Panorama/recordinglater.png
1512
share/freevo/icons/themes/Panorama/recordingnow.png
1513
share/freevo/icons/themes/Panorama/right.png
1514
share/freevo/icons/themes/Panorama/status/cd_audio.png
1515
share/freevo/icons/themes/Panorama/status/cd_burn.png
1516
share/freevo/icons/themes/Panorama/status/cd_inactive.png
1517
share/freevo/icons/themes/Panorama/status/cd_mixed.png
1518
share/freevo/icons/themes/Panorama/status/cd_photo.png
1519
share/freevo/icons/themes/Panorama/status/cd_rip.png
1520
share/freevo/icons/themes/Panorama/status/cd_video.png
1521
share/freevo/icons/themes/Panorama/status/mail_dimmed.png
1522
share/freevo/icons/themes/Panorama/status/mail_new.png
1523
share/freevo/icons/themes/Panorama/status/newmail_active.png
1524
share/freevo/icons/themes/Panorama/status/newmail_active_small.png
1525
share/freevo/icons/themes/Panorama/status/newmail_dimmed.png
1526
share/freevo/icons/themes/Panorama/status/television_active.png
1527
share/freevo/icons/themes/Panorama/status/television_expired.png
1528
share/freevo/icons/themes/Panorama/status/television_inactive.png
1529
share/freevo/icons/themes/Panorama/status/television_near_expired.png
1530
share/freevo/icons/themes/Panorama/status/volume_bar.png
1531
share/freevo/icons/themes/Panorama/status/volume_mute.png
1532
share/freevo/icons/themes/Panorama/status/volume_out.png
1533
share/freevo/icons/themes/Panorama/up.png
1534
share/freevo/icons/themes/Rain/auto.png
1535
share/freevo/icons/themes/Rain/commands_off.png
1536
share/freevo/icons/themes/Rain/commands_on.png
1537
share/freevo/icons/themes/Rain/down.png
1538
share/freevo/icons/themes/Rain/email_off.png
1539
share/freevo/icons/themes/Rain/email_on.png
1540
share/freevo/icons/themes/Rain/games_off.png
1541
share/freevo/icons/themes/Rain/games_on.png
1542
share/freevo/icons/themes/Rain/headlines_off.png
1543
share/freevo/icons/themes/Rain/headlines_on.png
1544
share/freevo/icons/themes/Rain/image_off.png
1545
share/freevo/icons/themes/Rain/image_on.png
1546
share/freevo/icons/themes/Rain/left.png
1547
share/freevo/icons/themes/Rain/mimetypes/audio.png
1548
share/freevo/icons/themes/Rain/mimetypes/audiocd.png
1549
share/freevo/icons/themes/Rain/mimetypes/cdrom.png
1550
share/freevo/icons/themes/Rain/mimetypes/detached_player.png
1551
share/freevo/icons/themes/Rain/mimetypes/dvd.png
1552
share/freevo/icons/themes/Rain/mimetypes/empty_cdrom.png
1553
share/freevo/icons/themes/Rain/mimetypes/folder.png
1554
share/freevo/icons/themes/Rain/mimetypes/linkbrowser.png
1555
share/freevo/icons/themes/Rain/mimetypes/playlist.png
1556
share/freevo/icons/themes/Rain/mimetypes/trailers.png
1557
share/freevo/icons/themes/Rain/mimetypes/unknown.png
1558
share/freevo/icons/themes/Rain/mimetypes/vcd.png
1559
share/freevo/icons/themes/Rain/mimetypes/video.png
1560
share/freevo/icons/themes/Rain/mimetypes/video_quicktime.png
1561
share/freevo/icons/themes/Rain/mimetypes/video_real.png
1562
share/freevo/icons/themes/Rain/mimetypes/webradio.png
1563
share/freevo/icons/themes/Rain/misc/case.png
1564
share/freevo/icons/themes/Rain/misc/cdrom_mount.png
1565
share/freevo/icons/themes/Rain/misc/clock.png
1566
share/freevo/icons/themes/Rain/misc/cpu.png
1567
share/freevo/icons/themes/Rain/misc/freevo_app.png
1568
share/freevo/icons/themes/Rain/misc/hddtemp-cool.png
1569
share/freevo/icons/themes/Rain/misc/hddtemp-norm.png
1570
share/freevo/icons/themes/Rain/misc/hddtemp-warm.png
1571
share/freevo/icons/themes/Rain/misc/memory.png
1572
share/freevo/icons/themes/Rain/movie_off.png
1573
share/freevo/icons/themes/Rain/movie_on.png
1574
share/freevo/icons/themes/Rain/music_off.png
1575
share/freevo/icons/themes/Rain/music_on.png
1576
share/freevo/icons/themes/Rain/off.png
1577
share/freevo/icons/themes/Rain/on.png
1578
share/freevo/icons/themes/Rain/popup/popup_wait.png
1579
share/freevo/icons/themes/Rain/right.png
1580
share/freevo/icons/themes/Rain/shutdown_off.png
1581
share/freevo/icons/themes/Rain/shutdown_on.png
1582
share/freevo/icons/themes/Rain/status/cd_audio.png
1583
share/freevo/icons/themes/Rain/status/cd_burn.png
1584
share/freevo/icons/themes/Rain/status/cd_inactive.png
1585
share/freevo/icons/themes/Rain/status/cd_mixed.png
1586
share/freevo/icons/themes/Rain/status/cd_photo.png
1587
share/freevo/icons/themes/Rain/status/cd_rip.png
1588
share/freevo/icons/themes/Rain/status/cd_video.png
1589
share/freevo/icons/themes/Rain/status/mail_dimmed.png
1590
share/freevo/icons/themes/Rain/status/mail_new.png
1591
share/freevo/icons/themes/Rain/status/newmail_active.png
1592
share/freevo/icons/themes/Rain/status/newmail_active_small.png
1593
share/freevo/icons/themes/Rain/status/newmail_dimmed.png
1594
share/freevo/icons/themes/Rain/status/television_active.png
1595
share/freevo/icons/themes/Rain/status/television_expired.png
1596
share/freevo/icons/themes/Rain/status/television_inactive.png
1597
share/freevo/icons/themes/Rain/status/television_near_expired.png
1598
share/freevo/icons/themes/Rain/status/volume_bar.png
1599
share/freevo/icons/themes/Rain/status/volume_mute.png
1600
share/freevo/icons/themes/Rain/status/volume_out.png
1601
share/freevo/icons/themes/Rain/tv_off.png
1602
share/freevo/icons/themes/Rain/tv_on.png
1603
share/freevo/icons/themes/Rain/up.png
1604
share/freevo/icons/themes/Rain/weather_off.png
1605
share/freevo/icons/themes/Rain/weather_on.png
1606
share/freevo/icons/themes/atlantice/down.png
1607
share/freevo/icons/themes/atlantice/left.png
1608
share/freevo/icons/themes/atlantice/mimetypes/audio.png
1609
share/freevo/icons/themes/atlantice/mimetypes/audiocd.png
1610
share/freevo/icons/themes/atlantice/mimetypes/cdrom.png
1611
share/freevo/icons/themes/atlantice/mimetypes/empty_cdrom.png
1612
share/freevo/icons/themes/atlantice/mimetypes/folder.png
1613
share/freevo/icons/themes/atlantice/mimetypes/folder_audio.png
1614
share/freevo/icons/themes/atlantice/mimetypes/folder_html.png
1615
share/freevo/icons/themes/atlantice/mimetypes/folder_image.png
1616
share/freevo/icons/themes/atlantice/mimetypes/folder_image2.png
1617
share/freevo/icons/themes/atlantice/mimetypes/folder_video.png
1618
share/freevo/icons/themes/atlantice/mimetypes/image.png
1619
share/freevo/icons/themes/atlantice/mimetypes/news.png
1620
share/freevo/icons/themes/atlantice/mimetypes/playlist.png
1621
share/freevo/icons/themes/atlantice/mimetypes/playlist_video.png
1622
share/freevo/icons/themes/atlantice/mimetypes/unknown.png
1623
share/freevo/icons/themes/atlantice/mimetypes/unknown2.png
1624
share/freevo/icons/themes/atlantice/mimetypes/video.png
1625
share/freevo/icons/themes/atlantice/right.png
1626
share/freevo/icons/themes/atlantice/status/cd_active.png
1627
share/freevo/icons/themes/atlantice/status/cd_audio.png
1628
share/freevo/icons/themes/atlantice/status/cd_inactive.png
1629
share/freevo/icons/themes/atlantice/status/cd_mixed.png
1630
share/freevo/icons/themes/atlantice/status/cd_video.png
1631
share/freevo/icons/themes/atlantice/status/newmail_active.png
1632
share/freevo/icons/themes/atlantice/status/newmail_dimmed.png
1633
share/freevo/icons/themes/atlantice/status/television_active.png
1634
share/freevo/icons/themes/atlantice/status/television_inactive.png
1635
share/freevo/icons/themes/atlantice/up.png
1636
share/freevo/icons/themes/bluestar/auto.png
1637
share/freevo/icons/themes/bluestar/down.png
1638
share/freevo/icons/themes/bluestar/email_off.png
1639
share/freevo/icons/themes/bluestar/email_on.png
1640
share/freevo/icons/themes/bluestar/games_off.png
1641
share/freevo/icons/themes/bluestar/games_on.png
1642
share/freevo/icons/themes/bluestar/headlines_off.png
1643
share/freevo/icons/themes/bluestar/headlines_on.png
1644
share/freevo/icons/themes/bluestar/image_off.png
1645
share/freevo/icons/themes/bluestar/image_on.png
1646
share/freevo/icons/themes/bluestar/left.png
1647
share/freevo/icons/themes/bluestar/mimetypes/audio.png
1648
share/freevo/icons/themes/bluestar/mimetypes/audiocd.png
1649
share/freevo/icons/themes/bluestar/mimetypes/cdrom.png
1650
share/freevo/icons/themes/bluestar/mimetypes/detached_player.png
1651
share/freevo/icons/themes/bluestar/mimetypes/dvd.png
1652
share/freevo/icons/themes/bluestar/mimetypes/empty_cdrom.png
1653
share/freevo/icons/themes/bluestar/mimetypes/folder.png
1654
share/freevo/icons/themes/bluestar/mimetypes/folder_audio.png
1655
share/freevo/icons/themes/bluestar/mimetypes/folder_image.png
1656
share/freevo/icons/themes/bluestar/mimetypes/folder_video.png
1657
share/freevo/icons/themes/bluestar/mimetypes/image.png
1658
share/freevo/icons/themes/bluestar/mimetypes/linkbrowser.png
1659
share/freevo/icons/themes/bluestar/mimetypes/playlist.png
1660
share/freevo/icons/themes/bluestar/mimetypes/playlist_image.png
1661
share/freevo/icons/themes/bluestar/mimetypes/unknown.png
1662
share/freevo/icons/themes/bluestar/mimetypes/vcd.png
1663
share/freevo/icons/themes/bluestar/mimetypes/video.png
1664
share/freevo/icons/themes/bluestar/mimetypes/webradio.png
1665
share/freevo/icons/themes/bluestar/movie_off.png
1666
share/freevo/icons/themes/bluestar/movie_on.png
1667
share/freevo/icons/themes/bluestar/music_off.png
1668
share/freevo/icons/themes/bluestar/music_on.png
1669
share/freevo/icons/themes/bluestar/off.png
1670
share/freevo/icons/themes/bluestar/on.png
1671
share/freevo/icons/themes/bluestar/popup/osd_busy.png
1672
share/freevo/icons/themes/bluestar/popup/popup_wait.png
1673
share/freevo/icons/themes/bluestar/recordinglater.png
1674
share/freevo/icons/themes/bluestar/recordingnow.png
1675
share/freevo/icons/themes/bluestar/right.png
1676
share/freevo/icons/themes/bluestar/shutdown_off.png
1677
share/freevo/icons/themes/bluestar/shutdown_on.png
1678
share/freevo/icons/themes/bluestar/status/cd_audio.png
1679
share/freevo/icons/themes/bluestar/status/cd_burn.png
1680
share/freevo/icons/themes/bluestar/status/cd_inactive.png
1681
share/freevo/icons/themes/bluestar/status/cd_mixed.png
1682
share/freevo/icons/themes/bluestar/status/cd_photo.png
1683
share/freevo/icons/themes/bluestar/status/cd_rip.png
1684
share/freevo/icons/themes/bluestar/status/cd_video.png
1685
share/freevo/icons/themes/bluestar/status/mail_dimmed.png
1686
share/freevo/icons/themes/bluestar/status/mail_new.png
1687
share/freevo/icons/themes/bluestar/status/mail_offline.png
1688
share/freevo/icons/themes/bluestar/status/newmail_active.png
1689
share/freevo/icons/themes/bluestar/status/newmail_dimmed.png
1690
share/freevo/icons/themes/bluestar/status/television_active.png
1691
share/freevo/icons/themes/bluestar/status/television_expired.png
1692
share/freevo/icons/themes/bluestar/status/television_inactive.png
1693
share/freevo/icons/themes/bluestar/status/television_near_expired.png
1694
share/freevo/icons/themes/bluestar/status/volume_bar.png
1695
share/freevo/icons/themes/bluestar/status/volume_mute.png
1696
share/freevo/icons/themes/bluestar/status/volume_out.png
1697
share/freevo/icons/themes/bluestar/tv_off.png
1698
share/freevo/icons/themes/bluestar/tv_on.png
1699
share/freevo/icons/themes/bluestar/up.png
1700
share/freevo/icons/themes/bluestar/weather_off.png
1701
share/freevo/icons/themes/bluestar/weather_on.png
1702
share/freevo/icons/themes/blurr/down.png
1703
share/freevo/icons/themes/blurr/left.png
1704
share/freevo/icons/themes/blurr/mimetypes/audiocd.png
1705
share/freevo/icons/themes/blurr/mimetypes/cdrom.png
1706
share/freevo/icons/themes/blurr/mimetypes/empty_cdrom.png
1707
share/freevo/icons/themes/blurr/mimetypes/folder_image.png
1708
share/freevo/icons/themes/blurr/mimetypes/playlist.png
1709
share/freevo/icons/themes/blurr/mimetypes/playlist_image.png
1710
share/freevo/icons/themes/blurr/mimetypes/unknown.png
1711
share/freevo/icons/themes/blurr/misc/bluebutton.png
1712
share/freevo/icons/themes/blurr/misc/greenbutton.png
1713
share/freevo/icons/themes/blurr/misc/radio.png
1714
share/freevo/icons/themes/blurr/misc/redbutton.png
1715
share/freevo/icons/themes/blurr/misc/yellowbutton.png
1716
share/freevo/icons/themes/blurr/recordinglater.png
1717
share/freevo/icons/themes/blurr/recordingnow.png
1718
share/freevo/icons/themes/blurr/right.png
1719
share/freevo/icons/themes/blurr/status/cd_audio.png
1720
share/freevo/icons/themes/blurr/status/cd_inactive.png
1721
share/freevo/icons/themes/blurr/status/cd_mixed.png
1722
share/freevo/icons/themes/blurr/status/cd_video.png
1723
share/freevo/icons/themes/blurr/status/diskfree-bad.png
1724
share/freevo/icons/themes/blurr/status/diskfree-good.png
1725
share/freevo/icons/themes/blurr/status/diskfree-poor.png
1726
share/freevo/icons/themes/blurr/status/diskfree.png
1727
share/freevo/icons/themes/blurr/status/newmail_active.png
1728
share/freevo/icons/themes/blurr/status/newmail_dimmed.png
1729
share/freevo/icons/themes/blurr/status/series_keep.png
1730
share/freevo/icons/themes/blurr/status/series_keep_watched.png
1731
share/freevo/icons/themes/blurr/status/series_unwatched.png
1732
share/freevo/icons/themes/blurr/status/series_watched.png
1733
share/freevo/icons/themes/blurr/status/television_active.png
1734
share/freevo/icons/themes/blurr/status/television_inactive.png
1735
share/freevo/icons/themes/blurr/status/television_keep.png
1736
share/freevo/icons/themes/blurr/status/television_keep_watched.png
1737
share/freevo/icons/themes/blurr/status/television_unwatched.png
1738
share/freevo/icons/themes/blurr/status/television_watched.png
1739
share/freevo/icons/themes/blurr/up.png
1740
share/freevo/icons/themes/geexbox/down.png
1741
share/freevo/icons/themes/geexbox/left.png
1742
share/freevo/icons/themes/geexbox/mimetypes/audiocd.png
1743
share/freevo/icons/themes/geexbox/mimetypes/cdrom.png
1744
share/freevo/icons/themes/geexbox/mimetypes/empty_cdrom.png
1745
share/freevo/icons/themes/geexbox/mimetypes/folder_image.png
1746
share/freevo/icons/themes/geexbox/mimetypes/playlist.png
1747
share/freevo/icons/themes/geexbox/mimetypes/playlist_image.png
1748
share/freevo/icons/themes/geexbox/mimetypes/unknown.png
1749
share/freevo/icons/themes/geexbox/right.png
1750
share/freevo/icons/themes/geexbox/status/cd_audio.png
1751
share/freevo/icons/themes/geexbox/status/cd_inactive.png
1752
share/freevo/icons/themes/geexbox/status/cd_mixed.png
1753
share/freevo/icons/themes/geexbox/status/cd_video.png
1754
share/freevo/icons/themes/geexbox/status/newmail_active.png
1755
share/freevo/icons/themes/geexbox/status/newmail_dimmed.png
1756
share/freevo/icons/themes/geexbox/status/television_active.png
1757
share/freevo/icons/themes/geexbox/status/television_inactive.png
1758
share/freevo/icons/themes/geexbox/up.png
1759
share/freevo/icons/themes/mediaportal/auto.png
1760
share/freevo/icons/themes/mediaportal/down.png
1761
share/freevo/icons/themes/mediaportal/left.png
1762
share/freevo/icons/themes/mediaportal/mimetypes/RadioNetscape.png
1763
share/freevo/icons/themes/mediaportal/mimetypes/audio.png
1764
share/freevo/icons/themes/mediaportal/mimetypes/audiocd.png
1765
share/freevo/icons/themes/mediaportal/mimetypes/cdrom.png
1766
share/freevo/icons/themes/mediaportal/mimetypes/detached_player.png
1767
share/freevo/icons/themes/mediaportal/mimetypes/dvd.png
1768
share/freevo/icons/themes/mediaportal/mimetypes/empty_cdrom.png
1769
share/freevo/icons/themes/mediaportal/mimetypes/folder.png
1770
share/freevo/icons/themes/mediaportal/mimetypes/linkbrowser.png
1771
share/freevo/icons/themes/mediaportal/mimetypes/playlist.png
1772
share/freevo/icons/themes/mediaportal/mimetypes/trailers.png
1773
share/freevo/icons/themes/mediaportal/mimetypes/unknown.png
1774
share/freevo/icons/themes/mediaportal/mimetypes/vcd.png
1775
share/freevo/icons/themes/mediaportal/mimetypes/video.png
1776
share/freevo/icons/themes/mediaportal/mimetypes/video_quicktime.png
1777
share/freevo/icons/themes/mediaportal/mimetypes/video_real.png
1778
share/freevo/icons/themes/mediaportal/mimetypes/webradio.png
1779
share/freevo/icons/themes/mediaportal/misc/case.png
1780
share/freevo/icons/themes/mediaportal/misc/cdrom_mount.png
1781
share/freevo/icons/themes/mediaportal/misc/clock.png
1782
share/freevo/icons/themes/mediaportal/misc/freevo_app.png
1783
share/freevo/icons/themes/mediaportal/misc/hddtemp-cool.png
1784
share/freevo/icons/themes/mediaportal/misc/hddtemp-norm.png
1785
share/freevo/icons/themes/mediaportal/misc/hddtemp-warm.png
1786
share/freevo/icons/themes/mediaportal/misc/memory.png
1787
share/freevo/icons/themes/mediaportal/off.png
1788
share/freevo/icons/themes/mediaportal/on.png
1789
share/freevo/icons/themes/mediaportal/popup/popup_wait.png
1790
share/freevo/icons/themes/mediaportal/right.png
1791
share/freevo/icons/themes/mediaportal/status/cd_audio.png
1792
share/freevo/icons/themes/mediaportal/status/cd_burn.png
1793
share/freevo/icons/themes/mediaportal/status/cd_inactive.png
1794
share/freevo/icons/themes/mediaportal/status/cd_mixed.png
1795
share/freevo/icons/themes/mediaportal/status/cd_photo.png
1796
share/freevo/icons/themes/mediaportal/status/cd_rip.png
1797
share/freevo/icons/themes/mediaportal/status/cd_video.png
1798
share/freevo/icons/themes/mediaportal/status/mail_dimmed.png
1799
share/freevo/icons/themes/mediaportal/status/mail_new.png
1800
share/freevo/icons/themes/mediaportal/status/newmail_active.png
1801
share/freevo/icons/themes/mediaportal/status/newmail_active_small.png
1802
share/freevo/icons/themes/mediaportal/status/newmail_dimmed.png
1803
share/freevo/icons/themes/mediaportal/status/television_active.png
1804
share/freevo/icons/themes/mediaportal/status/television_expired.png
1805
share/freevo/icons/themes/mediaportal/status/television_inactive.png
1806
share/freevo/icons/themes/mediaportal/status/television_near_expired.png
1807
share/freevo/icons/themes/mediaportal/status/volume_bar.png
1808
share/freevo/icons/themes/mediaportal/status/volume_mute.png
1809
share/freevo/icons/themes/mediaportal/status/volume_out.png
1810
share/freevo/icons/themes/mediaportal/tv_down.png
1811
share/freevo/icons/themes/mediaportal/tv_up.png
1812
share/freevo/icons/themes/mediaportal/tvguide_arrow_left.png
1813
share/freevo/icons/themes/mediaportal/tvguide_arrow_right.png
1814
share/freevo/icons/themes/mediaportal/up.png
1815
share/freevo/icons/themes/tuxntosh/down.png
1816
share/freevo/icons/themes/tuxntosh/left.png
1817
share/freevo/icons/themes/tuxntosh/mainmenu/54x54/images.png
1818
share/freevo/icons/themes/tuxntosh/mainmenu/54x54/movies.png
1819
share/freevo/icons/themes/tuxntosh/mainmenu/54x54/music.png
1820
share/freevo/icons/themes/tuxntosh/mainmenu/54x54/out_images.png
1821
share/freevo/icons/themes/tuxntosh/mainmenu/54x54/out_movies.png
1822
share/freevo/icons/themes/tuxntosh/mainmenu/54x54/out_music.png
1823
share/freevo/icons/themes/tuxntosh/mainmenu/54x54/out_shutdown.png
1824
share/freevo/icons/themes/tuxntosh/mainmenu/54x54/out_tv.png
1825
share/freevo/icons/themes/tuxntosh/mainmenu/54x54/shutdown.png
1826
share/freevo/icons/themes/tuxntosh/mainmenu/54x54/tv.png
1827
share/freevo/icons/themes/tuxntosh/mimetypes/audio.png
1828
share/freevo/icons/themes/tuxntosh/mimetypes/audiocd.png
1829
share/freevo/icons/themes/tuxntosh/mimetypes/cdrom.png
1830
share/freevo/icons/themes/tuxntosh/mimetypes/dvd.png
1831
share/freevo/icons/themes/tuxntosh/mimetypes/empty_cdrom.png
1832
share/freevo/icons/themes/tuxntosh/mimetypes/file.png
1833
share/freevo/icons/themes/tuxntosh/mimetypes/folder.png
1834
share/freevo/icons/themes/tuxntosh/mimetypes/folder_audio.png
1835
share/freevo/icons/themes/tuxntosh/mimetypes/folder_image.png
1836
share/freevo/icons/themes/tuxntosh/mimetypes/folder_video.png
1837
share/freevo/icons/themes/tuxntosh/mimetypes/image.png
1838
share/freevo/icons/themes/tuxntosh/mimetypes/out_audio.png
1839
share/freevo/icons/themes/tuxntosh/mimetypes/out_audiocd.png
1840
share/freevo/icons/themes/tuxntosh/mimetypes/out_cdrom.png
1841
share/freevo/icons/themes/tuxntosh/mimetypes/out_dvd.png
1842
share/freevo/icons/themes/tuxntosh/mimetypes/out_empty_cdrom.png
1843
share/freevo/icons/themes/tuxntosh/mimetypes/out_file.png
1844
share/freevo/icons/themes/tuxntosh/mimetypes/out_folder.png
1845
share/freevo/icons/themes/tuxntosh/mimetypes/out_folder_audio.png
1846
share/freevo/icons/themes/tuxntosh/mimetypes/out_folder_image.png
1847
share/freevo/icons/themes/tuxntosh/mimetypes/out_folder_video.png
1848
share/freevo/icons/themes/tuxntosh/mimetypes/out_image.png
1849
share/freevo/icons/themes/tuxntosh/mimetypes/out_playlist.png
1850
share/freevo/icons/themes/tuxntosh/mimetypes/out_playlist_audio.png
1851
share/freevo/icons/themes/tuxntosh/mimetypes/out_playlist_image.png
1852
share/freevo/icons/themes/tuxntosh/mimetypes/out_playlist_video.png
1853
share/freevo/icons/themes/tuxntosh/mimetypes/out_unknown.png
1854
share/freevo/icons/themes/tuxntosh/mimetypes/out_vcd.png
1855
share/freevo/icons/themes/tuxntosh/mimetypes/out_video.png
1856
share/freevo/icons/themes/tuxntosh/mimetypes/playlist.png
1857
share/freevo/icons/themes/tuxntosh/mimetypes/playlist_audio.png
1858
share/freevo/icons/themes/tuxntosh/mimetypes/playlist_image.png
1859
share/freevo/icons/themes/tuxntosh/mimetypes/playlist_video.png
1860
share/freevo/icons/themes/tuxntosh/mimetypes/unknown.png
1861
share/freevo/icons/themes/tuxntosh/mimetypes/video.png
1862
share/freevo/icons/themes/tuxntosh/right.png
1863
share/freevo/icons/themes/tuxntosh/up.png
1864
share/freevo/icons/themes/tuxntosh2/appletux.jpeg
1865
share/freevo/icons/themes/tuxntosh2/down.png
1866
share/freevo/icons/themes/tuxntosh2/iconblank.png
1867
share/freevo/icons/themes/tuxntosh2/left.png
1868
share/freevo/icons/themes/tuxntosh2/mainmenu/54x54/images.png
1869
share/freevo/icons/themes/tuxntosh2/mainmenu/54x54/movies.png
1870
share/freevo/icons/themes/tuxntosh2/mainmenu/54x54/music.png
1871
share/freevo/icons/themes/tuxntosh2/mainmenu/54x54/out_images.png
1872
share/freevo/icons/themes/tuxntosh2/mainmenu/54x54/out_movies.png
1873
share/freevo/icons/themes/tuxntosh2/mainmenu/54x54/out_music.png
1874
share/freevo/icons/themes/tuxntosh2/mainmenu/54x54/out_shutdown.png
1875
share/freevo/icons/themes/tuxntosh2/mainmenu/54x54/out_tv.png
1876
share/freevo/icons/themes/tuxntosh2/mainmenu/54x54/shutdown.png
1877
share/freevo/icons/themes/tuxntosh2/mainmenu/54x54/tv.png
1878
share/freevo/icons/themes/tuxntosh2/mimetypes/audio.png
1879
share/freevo/icons/themes/tuxntosh2/mimetypes/audiocd.png
1880
share/freevo/icons/themes/tuxntosh2/mimetypes/cdrom.png
1881
share/freevo/icons/themes/tuxntosh2/mimetypes/dvd.png
1882
share/freevo/icons/themes/tuxntosh2/mimetypes/empty_cdrom.png
1883
share/freevo/icons/themes/tuxntosh2/mimetypes/file.png
1884
share/freevo/icons/themes/tuxntosh2/mimetypes/folder.png
1885
share/freevo/icons/themes/tuxntosh2/mimetypes/folder_audio.png
1886
share/freevo/icons/themes/tuxntosh2/mimetypes/folder_image.png
1887
share/freevo/icons/themes/tuxntosh2/mimetypes/folder_video.png
1888
share/freevo/icons/themes/tuxntosh2/mimetypes/image.png
1889
share/freevo/icons/themes/tuxntosh2/mimetypes/out_audio.png
1890
share/freevo/icons/themes/tuxntosh2/mimetypes/out_audiocd.png
1891
share/freevo/icons/themes/tuxntosh2/mimetypes/out_cdrom.png
1892
share/freevo/icons/themes/tuxntosh2/mimetypes/out_dvd.png
1893
share/freevo/icons/themes/tuxntosh2/mimetypes/out_empty_cdrom.png
1894
share/freevo/icons/themes/tuxntosh2/mimetypes/out_file.png
1895
share/freevo/icons/themes/tuxntosh2/mimetypes/out_folder.png
1896
share/freevo/icons/themes/tuxntosh2/mimetypes/out_folder_audio.png
1897
share/freevo/icons/themes/tuxntosh2/mimetypes/out_folder_image.png
1898
share/freevo/icons/themes/tuxntosh2/mimetypes/out_folder_video.png
1899
share/freevo/icons/themes/tuxntosh2/mimetypes/out_image.png
1900
share/freevo/icons/themes/tuxntosh2/mimetypes/out_playlist.png
1901
share/freevo/icons/themes/tuxntosh2/mimetypes/out_playlist_audio.png
1902
share/freevo/icons/themes/tuxntosh2/mimetypes/out_playlist_image.png
1903
share/freevo/icons/themes/tuxntosh2/mimetypes/out_playlist_video.png
1904
share/freevo/icons/themes/tuxntosh2/mimetypes/out_unknown.png
1905
share/freevo/icons/themes/tuxntosh2/mimetypes/out_vcd.png
1906
share/freevo/icons/themes/tuxntosh2/mimetypes/out_video.png
1907
share/freevo/icons/themes/tuxntosh2/mimetypes/playlist.png
1908
share/freevo/icons/themes/tuxntosh2/mimetypes/playlist_audio.png
1909
share/freevo/icons/themes/tuxntosh2/mimetypes/playlist_image.png
1910
share/freevo/icons/themes/tuxntosh2/mimetypes/playlist_video.png
1911
share/freevo/icons/themes/tuxntosh2/mimetypes/unknown.png
1912
share/freevo/icons/themes/tuxntosh2/mimetypes/video.png
1913
share/freevo/icons/themes/tuxntosh2/mright.png
1914
share/freevo/icons/themes/tuxntosh2/mright_out.png
1915
share/freevo/icons/themes/tuxntosh2/right.png
1916
share/freevo/icons/themes/tuxntosh2/up.png
1917
share/freevo/icons/weather/cloud.png
1918
share/freevo/icons/weather/fog.png
1919
share/freevo/icons/weather/moon-mc.png
1920
share/freevo/icons/weather/moon-pc.png
1921
share/freevo/icons/weather/moon.png
1922
share/freevo/icons/weather/na.png
1923
share/freevo/icons/weather/rain.png
1924
share/freevo/icons/weather/snow.png
1925
share/freevo/icons/weather/storm.png
1926
share/freevo/icons/weather/sun-mc.png
1927
share/freevo/icons/weather/sun-pc.png
1928
share/freevo/icons/weather/sun.png
1929
share/freevo/icons/weather/suncloud.png
1930
share/freevo/icons/weather/tstorms.png
1931
share/freevo/icons/weather/wind.png
1932
share/freevo/images/TuxnTosh/button.psd
1933
share/freevo/images/TuxnTosh/buttondir.png
1934
share/freevo/images/TuxnTosh/buttonnodir.png
1935
share/freevo/images/TuxnTosh/buttonplaylist.png
1936
share/freevo/images/TuxnTosh/notselecteddir.png
1937
share/freevo/images/TuxnTosh/tuxntosh_audio.png
1938
share/freevo/images/TuxnTosh/tuxntosh_movies.png
1939
share/freevo/images/TuxnTosh/tuxntosh_photo.png
1940
share/freevo/images/atlantice/Coverback.png
1941
share/freevo/images/atlantice/back.png
1942
share/freevo/images/atlantice/back_black.jpg
1943
share/freevo/images/atlantice/commands.png
1944
share/freevo/images/atlantice/coverart_logo.png
1945
share/freevo/images/atlantice/games.png
1946
share/freevo/images/atlantice/image.png
1947
share/freevo/images/atlantice/logo.png
1948
share/freevo/images/atlantice/mail.png
1949
share/freevo/images/atlantice/movie.png
1950
share/freevo/images/atlantice/movie_cover.png
1951
share/freevo/images/atlantice/music.png
1952
share/freevo/images/atlantice/music_cover.png
1953
share/freevo/images/atlantice/music_cover2.png
1954
share/freevo/images/atlantice/news.png
1955
share/freevo/images/atlantice/panel.png
1956
share/freevo/images/atlantice/rain_movie.png
1957
share/freevo/images/atlantice/shutdown.png
1958
share/freevo/images/atlantice/tv.png
1959
share/freevo/images/atlantice/weather.png
1960
share/freevo/images/aubin_bg2.jpg
1961
share/freevo/images/barbieri/bg.jpg
1962
share/freevo/images/blackground.png
1963
share/freevo/images/bluestar_back.jpg
1964
share/freevo/images/bluestar_logo.png
1965
share/freevo/images/bluestar_scheduledtv.png
1966
share/freevo/images/bluestar_splash.jpg
1967
share/freevo/images/blurr_naxos.jpg
1968
share/freevo/images/blurrback.jpg
1969
share/freevo/images/blurrsplash.jpg
1970
share/freevo/images/crystal_back.jpg
1971
share/freevo/images/dark.png
1972
share/freevo/images/frame.png
1973
share/freevo/images/fxd/webradio/somafm/250x250sfm.jpg
1974
share/freevo/images/fxd/webradio/somafm/DroneZoneBox.jpg
1975
share/freevo/images/fxd/webradio/somafm/GrooveSaladBox.jpg
1976
share/freevo/images/fxd/webradio/somafm/SecretAgentBox.jpg
1977
share/freevo/images/fxd/webradio/somafm/blender.jpg
1978
share/freevo/images/fxd/webradio/somafm/bootliquor.jpg
1979
share/freevo/images/fxd/webradio/somafm/cliqhop.jpg
1980
share/freevo/images/fxd/webradio/somafm/digitalis.jpg
1981
share/freevo/images/fxd/webradio/somafm/doomed.jpg
1982
share/freevo/images/fxd/webradio/somafm/illstreet.jpg
1983
share/freevo/images/fxd/webradio/somafm/indychick.jpg
1984
share/freevo/images/fxd/webradio/somafm/lush.jpg
1985
share/freevo/images/fxd/webradio/somafm/sonicuniverse.jpg
1986
share/freevo/images/fxd/webradio/somafm/sss.jpg
1987
share/freevo/images/fxd/webradio/somafm/tagstrancefract.jpg
1988
share/freevo/images/gant/chat.png
1989
share/freevo/images/gant/commands.png
1990
share/freevo/images/gant/games.png
1991
share/freevo/images/gant/headlines.png
1992
share/freevo/images/gant/image.png
1993
share/freevo/images/gant/logo.png
1994
share/freevo/images/gant/movie.png
1995
share/freevo/images/gant/music.png
1996
share/freevo/images/gant/scheduledtv.png
1997
share/freevo/images/gant/shutdown.png
1998
share/freevo/images/gant/tv.png
1999
share/freevo/images/gant/weather.png
2000
share/freevo/images/geexbox/back.png
2001
share/freevo/images/geexbox/back_image.png
2002
share/freevo/images/geexbox/back_main.png
2003
share/freevo/images/geexbox/back_movie.png
2004
share/freevo/images/geexbox/back_music.png
2005
share/freevo/images/geexbox/back_tv.png
2006
share/freevo/images/geexbox/back_weather.png
2007
share/freevo/images/geexbox/headlines.jpg
2008
share/freevo/images/geexbox/image.png
2009
share/freevo/images/geexbox/logo.png
2010
share/freevo/images/geexbox/movie.png
2011
share/freevo/images/geexbox/music.png
2012
share/freevo/images/geexbox/newspaper.jpg
2013
share/freevo/images/geexbox/panel.png
2014
share/freevo/images/geexbox/panel2.png
2015
share/freevo/images/geexbox/shutdown.jpg
2016
share/freevo/images/geexbox/tv.png
2017
share/freevo/images/geexbox/weather.png
2018
share/freevo/images/idlebar.png
2019
share/freevo/images/logo.png
2020
share/freevo/images/logo_david.png
2021
share/freevo/images/mactvsplash.png
2022
share/freevo/images/mediaportal/background-xbmc.png
2023
share/freevo/images/mediaportal/background_my_recipies.png
2024
share/freevo/images/mediaportal/background_myalarm.png
2025
share/freevo/images/mediaportal/background_myburn.png
2026
share/freevo/images/mediaportal/background_myexplorer.png
2027
share/freevo/images/mediaportal/background_mymessenger.png
2028
share/freevo/images/mediaportal/background_mymusic.png
2029
share/freevo/images/mediaportal/background_mynews.png
2030
share/freevo/images/mediaportal/background_mypictures.png
2031
share/freevo/images/mediaportal/background_myprograms.png
2032
share/freevo/images/mediaportal/background_myradio.png
2033
share/freevo/images/mediaportal/background_mystatus.png
2034
share/freevo/images/mediaportal/background_mytv.png
2035
share/freevo/images/mediaportal/background_myvideos.png
2036
share/freevo/images/mediaportal/background_myweather.png
2037
share/freevo/images/mediaportal/background_scheduletv.png
2038
share/freevo/images/mediaportal/commands.png
2039
share/freevo/images/mediaportal/mail.png
2040
share/freevo/images/mediaportalsplash.png
2041
share/freevo/images/mpd_frame.png
2042
share/freevo/images/mpd_watermark.png
2043
share/freevo/images/mplayervis/freevo-medium-16x9.avi
2044
share/freevo/images/mplayervis/freevo-medium-4x3.avi
2045
share/freevo/images/mplayervis/freevo-small-16x9.avi
2046
share/freevo/images/mplayervis/freevo-small-4x3.avi
2047
share/freevo/images/newmarks/README
2048
share/freevo/images/newmarks/game.png
2049
share/freevo/images/newmarks/headlines.png
2050
share/freevo/images/newmarks/image.png
2051
share/freevo/images/newmarks/mail.png
2052
share/freevo/images/newmarks/movie.png
2053
share/freevo/images/newmarks/music.png
2054
share/freevo/images/newmarks/shutdown.png
2055
share/freevo/images/newmarks/term.png
2056
share/freevo/images/newmarks/tv.png
2057
share/freevo/images/osd/base/bar.png
2058
share/freevo/images/osd/base/bboptionsmenubg.png
2059
share/freevo/images/osd/base/button_active_bg.png
2060
share/freevo/images/osd/base/button_normal_bg.png
2061
share/freevo/images/osd/base/button_pressed_bg.png
2062
share/freevo/images/osd/base/details_bg.png
2063
share/freevo/images/osd/base/dialog_bg.png
2064
share/freevo/images/osd/base/fastforward.png
2065
share/freevo/images/osd/base/menu_active.png
2066
share/freevo/images/osd/base/menu_bg.png
2067
share/freevo/images/osd/base/menu_down.png
2068
share/freevo/images/osd/base/menu_normal.png
2069
share/freevo/images/osd/base/menu_pressed.png
2070
share/freevo/images/osd/base/menu_up.png
2071
share/freevo/images/osd/base/muted.png
2072
share/freevo/images/osd/base/pause.png
2073
share/freevo/images/osd/base/percent_bar.png
2074
share/freevo/images/osd/base/play.png
2075
share/freevo/images/osd/base/radio_active_bg.png
2076
share/freevo/images/osd/base/radio_selected.png
2077
share/freevo/images/osd/base/radio_unselected.png
2078
share/freevo/images/osd/base/rewind.png
2079
share/freevo/images/osd/base/seekback.png
2080
share/freevo/images/osd/base/seekforward.png
2081
share/freevo/images/osd/base/stop.png
2082
share/freevo/images/osd/base/volume_bar.png
2083
share/freevo/images/panorama/background.jpg
2084
share/freevo/images/panorama/gant_chat.png
2085
share/freevo/images/panorama/gant_commands.png
2086
share/freevo/images/panorama/gant_games.png
2087
share/freevo/images/panorama/gant_headlines.png
2088
share/freevo/images/panorama/gant_image.png
2089
share/freevo/images/panorama/gant_movie.png
2090
share/freevo/images/panorama/gant_music.png
2091
share/freevo/images/panorama/gant_scheduledtv.png
2092
share/freevo/images/panorama/gant_shutdown.png
2093
share/freevo/images/panorama/gant_tv.png
2094
share/freevo/images/panorama/gant_weather.png
2095
share/freevo/images/panorama/logo.png
2096
share/freevo/images/panorama/myth_cd.png
2097
share/freevo/images/panorama/myth_gallery.png
2098
share/freevo/images/panorama/myth_joystick.png
2099
share/freevo/images/panorama/myth_music.png
2100
share/freevo/images/panorama/myth_news.png
2101
share/freevo/images/panorama/myth_shutdown.png
2102
share/freevo/images/panorama/myth_tv.png
2103
share/freevo/images/panorama/myth_video.png
2104
share/freevo/images/panorama/myth_weather.png
2105
share/freevo/images/panorama/splashlogo.png
2106
share/freevo/images/panorama/watermark_cd.png
2107
share/freevo/images/panorama/watermark_gallery.png
2108
share/freevo/images/panorama/watermark_joystick.png
2109
share/freevo/images/panorama/watermark_logo.png
2110
share/freevo/images/panorama/watermark_music.png
2111
share/freevo/images/panorama/watermark_news.png
2112
share/freevo/images/panorama/watermark_shutdown.png
2113
share/freevo/images/panorama/watermark_tv.png
2114
share/freevo/images/panorama/watermark_video.png
2115
share/freevo/images/panorama/watermark_weather.png
2116
share/freevo/images/rain_back.jpg
2117
share/freevo/images/recording.png
2118
share/freevo/images/reminder_frame.png
2119
share/freevo/images/reminder_watermark.png
2120
share/freevo/images/splashscreen-bsd.png
2121
share/freevo/images/splashscreen.png
2122
share/freevo/images/star.png
2123
share/freevo/images/watermarks/bluestar_email.png
2124
share/freevo/images/watermarks/bluestar_games.png
2125
share/freevo/images/watermarks/bluestar_headlines.png
2126
share/freevo/images/watermarks/bluestar_image.png
2127
share/freevo/images/watermarks/bluestar_movie.png
2128
share/freevo/images/watermarks/bluestar_music.png
2129
share/freevo/images/watermarks/bluestar_shutdown.png
2130
share/freevo/images/watermarks/bluestar_tv.png
2131
share/freevo/images/watermarks/bluestar_weather.png
2132
share/freevo/images/watermarks/crystal_commands.png
2133
share/freevo/images/watermarks/crystal_email.png
2134
share/freevo/images/watermarks/crystal_games.png
2135
share/freevo/images/watermarks/crystal_headlines.png
2136
share/freevo/images/watermarks/crystal_image.png
2137
share/freevo/images/watermarks/crystal_movie.png
2138
share/freevo/images/watermarks/crystal_music.png
2139
share/freevo/images/watermarks/crystal_shutdown.png
2140
share/freevo/images/watermarks/crystal_tv.png
2141
share/freevo/images/watermarks/crystal_weather.png
2142
share/freevo/images/watermarks/image.png
2143
share/freevo/images/watermarks/mail.png
2144
share/freevo/images/watermarks/movie.png
2145
share/freevo/images/watermarks/music.png
2146
share/freevo/images/watermarks/rain_commands.png
2147
share/freevo/images/watermarks/rain_email.png
2148
share/freevo/images/watermarks/rain_games.png
2149
share/freevo/images/watermarks/rain_headlines.png
2150
share/freevo/images/watermarks/rain_image.png
2151
share/freevo/images/watermarks/rain_movie.png
2152
share/freevo/images/watermarks/rain_music.png
2153
share/freevo/images/watermarks/rain_shutdown.png
2154
share/freevo/images/watermarks/rain_tv.png
2155
share/freevo/images/watermarks/rain_weather.png
2156
share/freevo/images/watermarks/shutdown.png
2157
share/freevo/images/watermarks/tv.png
2158
share/freevo/images/weather/cloudy.png
2159
share/freevo/images/weather/fair.png
2160
share/freevo/images/weather/flurries.png
2161
share/freevo/images/weather/fog.png
2162
share/freevo/images/weather/lshowers.png
2163
share/freevo/images/weather/mcloudy.png
2164
share/freevo/images/weather/mediaportal/cloudy.png
2165
share/freevo/images/weather/mediaportal/drizzle.png
2166
share/freevo/images/weather/mediaportal/fair.png
2167
share/freevo/images/weather/mediaportal/flurries.png
2168
share/freevo/images/weather/mediaportal/fog.png
2169
share/freevo/images/weather/mediaportal/ice.png
2170
share/freevo/images/weather/mediaportal/lrain.png
2171
share/freevo/images/weather/mediaportal/lshowers.png
2172
share/freevo/images/weather/mediaportal/mcloudy.png
2173
share/freevo/images/weather/mediaportal/msunny.png
2174
share/freevo/images/weather/mediaportal/pcloudy.png
2175
share/freevo/images/weather/mediaportal/permission.txt
2176
share/freevo/images/weather/mediaportal/rain.png
2177
share/freevo/images/weather/mediaportal/rainsnow.png
2178
share/freevo/images/weather/mediaportal/scthunder.png
2179
share/freevo/images/weather/mediaportal/showers.png
2180
share/freevo/images/weather/mediaportal/snow.png
2181
share/freevo/images/weather/mediaportal/snowshow.png
2182
share/freevo/images/weather/mediaportal/sunny.png
2183
share/freevo/images/weather/mediaportal/thunder.png
2184
share/freevo/images/weather/mediaportal/thunshowers.png
2185
share/freevo/images/weather/mediaportal/unknown.png
2186
share/freevo/images/weather/mediaportal/weather_frame.png
2187
share/freevo/images/weather/mediaportal/weathertypes.dat
2188
share/freevo/images/weather/mediaportal/wshowers.png
2189
share/freevo/images/weather/oneclick_frame.png
2190
share/freevo/images/weather/pcloudy.png
2191
share/freevo/images/weather/rainsnow.png
2192
share/freevo/images/weather/showers.png
2193
share/freevo/images/weather/snowshow.png
2194
share/freevo/images/weather/sunny.png
2195
share/freevo/images/weather/thunshowers.png
2196
share/freevo/images/weather/unknown.png
2197
share/freevo/images/weather/weather_frame.png
2198
share/freevo/images/weather/weather_watermark.png
2199
share/freevo/images/weather/weathertypes.dat
2200
share/freevo/skins/freevo-osd.dtd
2201
share/freevo/skins/freevo-skin.dtd
2202
share/freevo/skins/main/Panorama.fxd
2203
share/freevo/skins/main/Panorama.jpg
2204
share/freevo/skins/main/Panorama.txt
2205
share/freevo/skins/main/README
2206
share/freevo/skins/main/Tux'n Tosh TV.fxd
2207
share/freevo/skins/main/Tux'n Tosh TV.png
2208
share/freevo/skins/main/atlantice.fxd
2209
share/freevo/skins/main/atlantice.png
2210
share/freevo/skins/main/basic.fxd
2211
share/freevo/skins/main/bluestar.fxd
2212
share/freevo/skins/main/bluestar.jpg
2213
share/freevo/skins/main/blurr.fxd
2214
share/freevo/skins/main/blurr.jpg
2215
share/freevo/skins/main/crystal.fxd
2216
share/freevo/skins/main/crystal.png
2217
share/freevo/skins/main/dark.fxd
2218
share/freevo/skins/main/dark.jpg
2219
share/freevo/skins/main/geexbox.fxd
2220
share/freevo/skins/main/geexbox.png
2221
share/freevo/skins/main/image.fxd
2222
share/freevo/skins/main/info.fxd
2223
share/freevo/skins/main/info.jpg
2224
share/freevo/skins/main/mediaportal.fxd
2225
share/freevo/skins/main/mediaportal.png
2226
share/freevo/skins/main/noia.fxd
2227
share/freevo/skins/main/noia.jpg
2228
share/freevo/skins/main/rain.fxd
2229
share/freevo/skins/main/rain.jpg
2230
share/freevo/skins/osd/base.fxd
2231
share/freevo/skins/plugins/mpd.fxd
2232
share/freevo/skins/plugins/oneclick.fxd
2233
share/freevo/skins/plugins/osd/livepause.fxd
2234
share/freevo/skins/plugins/reminder.fxd
2235
share/freevo/skins/plugins/video_details.fxd
2236
share/freevo/skins/plugins/weather.fxd
2237
@dirrmtry etc/freevo
2238
@dirrm %%PYTHON_SITELIBDIR%%/freevo/animation
1024
@dirrm %%PYTHON_SITELIBDIR%%/freevo/audio/plugins
2239
@dirrm %%PYTHON_SITELIBDIR%%/freevo/audio/plugins
1025
@dirrm %%PYTHON_SITELIBDIR%%/freevo/audio
2240
@dirrm %%PYTHON_SITELIBDIR%%/freevo/audio
1026
@dirrm %%PYTHON_SITELIBDIR%%/freevo/animation
2241
@dirrm %%PYTHON_SITELIBDIR%%/freevo/dialog/plugins
2242
@dirrm %%PYTHON_SITELIBDIR%%/freevo/dialog
2243
@dirrm %%PYTHON_SITELIBDIR%%/freevo/games
2244
@dirrm %%PYTHON_SITELIBDIR%%/freevo/gui
2245
@dirrm %%PYTHON_SITELIBDIR%%/freevo/helpers
2246
@dirrm %%PYTHON_SITELIBDIR%%/freevo/image/plugins
2247
@dirrm %%PYTHON_SITELIBDIR%%/freevo/image
2248
@dirrm %%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar
2249
@dirrm %%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver
2250
@dirrm %%PYTHON_SITELIBDIR%%/freevo/plugins
2251
@dirrm %%PYTHON_SITELIBDIR%%/freevo/skin/widgets
2252
@dirrm %%PYTHON_SITELIBDIR%%/freevo/skin
2253
@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins/main
2254
@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins/osd
2255
@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins/plugins
2256
@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins
2257
@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer
2258
@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display
2259
@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause
2260
@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv/plugins
2261
@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv
2262
@dirrm %%PYTHON_SITELIBDIR%%/freevo/util
2263
@dirrm %%PYTHON_SITELIBDIR%%/freevo/video/plugins
2264
@dirrm %%PYTHON_SITELIBDIR%%/freevo/video
2265
@dirrm %%PYTHON_SITELIBDIR%%/freevo/www
1027
@dirrm %%PYTHON_SITELIBDIR%%/freevo
2266
@dirrm %%PYTHON_SITELIBDIR%%/freevo
1028
@dirrm etc/freevo
2267
@dirrmtry %%PYTHON_SITELIBDIR%%
2268
@dirrm %%DOCSDIR%%/installation
2269
@dirrm %%DOCSDIR%%/plugin_writing
2270
@dirrm %%DOCSDIR%%
2271
@dirrm share/freevo/contrib/fbcon
2272
@dirrm share/freevo/contrib
2273
@dirrm share/freevo/fonts
2274
@dirrm share/freevo/fxd/examples
2275
@dirrm share/freevo/fxd
2276
@dirrm share/freevo/htdocs/help/wiki
2277
@dirrm share/freevo/htdocs/help
2278
@dirrm share/freevo/htdocs/icons
2279
@dirrm share/freevo/htdocs/images/config
2280
@dirrm share/freevo/htdocs/images/library
2281
@dirrm share/freevo/htdocs/images/tab
2282
@dirrm share/freevo/htdocs/images
2283
@dirrm share/freevo/htdocs/scripts
2284
@dirrm share/freevo/htdocs/styles
2285
@dirrm share/freevo/htdocs/videolan/img
2286
@dirrm share/freevo/htdocs/videolan
2287
@dirrm share/freevo/htdocs
2288
@dirrm share/freevo/icons/holidays
2289
@dirrm share/freevo/icons/misc
2290
@dirrm share/freevo/icons/popup
2291
@dirrm share/freevo/icons/status
2292
@dirrm share/freevo/icons/themes/AquaFusion/mimetypes
2293
@dirrm share/freevo/icons/themes/AquaFusion
2294
@dirrm share/freevo/icons/themes/Crystal/mimetypes
2295
@dirrm share/freevo/icons/themes/Crystal/misc
2296
@dirrm share/freevo/icons/themes/Crystal/popup
2297
@dirrm share/freevo/icons/themes/Crystal/status
2298
@dirrm share/freevo/icons/themes/Crystal
2299
@dirrm share/freevo/icons/themes/Noia/mimetypes
2300
@dirrm share/freevo/icons/themes/Noia/misc
2301
@dirrm share/freevo/icons/themes/Noia
2302
@dirrm share/freevo/icons/themes/Panorama/mimetypes
2303
@dirrm share/freevo/icons/themes/Panorama/status
2304
@dirrm share/freevo/icons/themes/Panorama
2305
@dirrm share/freevo/icons/themes/Rain/mimetypes
2306
@dirrm share/freevo/icons/themes/Rain/misc
2307
@dirrm share/freevo/icons/themes/Rain/popup
2308
@dirrm share/freevo/icons/themes/Rain/status
2309
@dirrm share/freevo/icons/themes/Rain
2310
@dirrm share/freevo/icons/themes/atlantice/mimetypes
2311
@dirrm share/freevo/icons/themes/atlantice/status
2312
@dirrm share/freevo/icons/themes/atlantice
2313
@dirrm share/freevo/icons/themes/bluestar/mimetypes
2314
@dirrm share/freevo/icons/themes/bluestar/popup
2315
@dirrm share/freevo/icons/themes/bluestar/status
2316
@dirrm share/freevo/icons/themes/bluestar
2317
@dirrm share/freevo/icons/themes/blurr/mimetypes
2318
@dirrm share/freevo/icons/themes/blurr/misc
2319
@dirrm share/freevo/icons/themes/blurr/status
2320
@dirrm share/freevo/icons/themes/blurr
2321
@dirrm share/freevo/icons/themes/geexbox/mimetypes
2322
@dirrm share/freevo/icons/themes/geexbox/status
2323
@dirrm share/freevo/icons/themes/geexbox
2324
@dirrm share/freevo/icons/themes/mediaportal/mimetypes
2325
@dirrm share/freevo/icons/themes/mediaportal/misc
2326
@dirrm share/freevo/icons/themes/mediaportal/popup
2327
@dirrm share/freevo/icons/themes/mediaportal/status
2328
@dirrm share/freevo/icons/themes/mediaportal
2329
@dirrm share/freevo/icons/themes/tuxntosh/mainmenu/54x54
2330
@dirrm share/freevo/icons/themes/tuxntosh/mainmenu
2331
@dirrm share/freevo/icons/themes/tuxntosh/mimetypes
2332
@dirrm share/freevo/icons/themes/tuxntosh
2333
@dirrm share/freevo/icons/themes/tuxntosh2/mainmenu/54x54
2334
@dirrm share/freevo/icons/themes/tuxntosh2/mainmenu
2335
@dirrm share/freevo/icons/themes/tuxntosh2/mimetypes
2336
@dirrm share/freevo/icons/themes/tuxntosh2
2337
@dirrm share/freevo/icons/themes
2338
@dirrm share/freevo/icons/weather
2339
@dirrm share/freevo/icons
2340
@dirrm share/freevo/images/TuxnTosh
2341
@dirrm share/freevo/images/atlantice
2342
@dirrm share/freevo/images/barbieri
2343
@dirrm share/freevo/images/fxd/webradio/somafm
2344
@dirrm share/freevo/images/fxd/webradio
2345
@dirrm share/freevo/images/fxd
2346
@dirrm share/freevo/images/gant
2347
@dirrm share/freevo/images/geexbox
2348
@dirrm share/freevo/images/mediaportal
2349
@dirrm share/freevo/images/mplayervis
2350
@dirrm share/freevo/images/newmarks
2351
@dirrm share/freevo/images/osd/base
2352
@dirrm share/freevo/images/osd
2353
@dirrm share/freevo/images/panorama
2354
@dirrm share/freevo/images/watermarks
2355
@dirrm share/freevo/images/weather/mediaportal
2356
@dirrm share/freevo/images/weather
2357
@dirrm share/freevo/images
2358
@dirrm share/freevo/skins/main
2359
@dirrm share/freevo/skins/osd
2360
@dirrm share/freevo/skins/plugins/osd
2361
@dirrm share/freevo/skins/plugins
2362
@dirrm share/freevo/skins
2363
@dirrm share/freevo
2364
@dirrmtry share/locale/af/LC_MESSAGES
2365
@dirrmtry share/locale/ca/LC_MESSAGES
2366
@dirrmtry share/locale/cs/LC_MESSAGES
2367
@dirrmtry share/locale/da/LC_MESSAGES
2368
@dirrmtry share/locale/de/LC_MESSAGES
2369
@dirrmtry share/locale/el/LC_MESSAGES
2370
@dirrmtry share/locale/en_GB/LC_MESSAGES
2371
@dirrmtry share/locale/es/LC_MESSAGES
2372
@dirrmtry share/locale/fi/LC_MESSAGES
2373
@dirrmtry share/locale/fr/LC_MESSAGES
2374
@dirrmtry share/locale/hu/LC_MESSAGES
2375
@dirrmtry share/locale/it/LC_MESSAGES
2376
@dirrmtry share/locale/nl/LC_MESSAGES
2377
@dirrmtry share/locale/no/LC_MESSAGES
2378
@dirrmtry share/locale/pl/LC_MESSAGES
2379
@dirrmtry share/locale/pt/LC_MESSAGES
2380
@dirrmtry share/locale/pt_BR/LC_MESSAGES
2381
@dirrmtry share/locale/ro/LC_MESSAGES
2382
@dirrmtry share/locale/ru/LC_MESSAGES
2383
@dirrmtry share/locale/sv/LC_MESSAGES
2384
@dirrmtry share/locale/zh_CN/LC_MESSAGES

Return to bug 130592