View | Details | Raw Unified | Return to bug 131832
Collapse All | Expand All

(-)multimedia/miro/Makefile (-45 / +45 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	Miro
8
PORTNAME=	Miro
9
PORTVERSION=	1.2.8
9
PORTVERSION=	2.0.1
10
CATEGORIES=	multimedia
10
CATEGORIES=	multimedia
11
MASTER_SITES=	ftp://ftp.osuosl.org/pub/pculture.org/miro/src/	\
11
MASTER_SITES=	ftp://ftp.osuosl.org/pub/pculture.org/miro/src/	\
12
		http://ftp.osuosl.org/pub/pculture.org/miro/src/
12
		http://ftp.osuosl.org/pub/pculture.org/miro/src/
Lines 16-82 Link Here
16
16
17
BUILD_DEPENDS=	pyrexc:${PORTSDIR}/devel/pyrex				\
17
BUILD_DEPENDS=	pyrexc:${PORTSDIR}/devel/pyrex				\
18
		update-mime-database:${PORTSDIR}/misc/shared-mime-info
18
		update-mime-database:${PORTSDIR}/misc/shared-mime-info
19
LIB_DEPENDS=	xine.1:${PORTSDIR}/multimedia/libxine			\
19
LIB_DEPENDS=	boost_python.4:${PORTSDIR}/devel/boost-python		\
20
		fame-0.9:${PORTSDIR}/multimedia/libfame			\
20
		xine.1:${PORTSDIR}/multimedia/libxine
21
		boost_python.4:${PORTSDIR}/devel/boost-python
21
RUN_DEPENDS=	${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb	\
22
RUN_DEPENDS=	convert:${PORTSDIR}/graphics/ImageMagick			\
22
		${PYTHON_SITELIBDIR}/pysqlite2/_sqlite.so:${PORTSDIR}/databases/py-pysqlite23	\
23
		${PYTHON_SITELIBDIR}/dbus/glib.py:${PORTSDIR}/devel/py-dbus	\
23
		${PYTHON_SITELIBDIR}/dbus/glib.py:${PORTSDIR}/devel/py-dbus	\
24
		${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb	\
24
		convert:${PORTSDIR}/graphics/ImageMagick
25
		${PYTHON_SITELIBDIR}/pysqlite2/_sqlite.so:${PORTSDIR}/databases/py-pysqlite23
26
25
26
BUILD_WRKSRC=	${WRKSRC}/platform/gtk-x11
27
INSTALL_WRKSRC=	${WRKSRC}/platform/gtk-x11
28
29
USE_GNOME=	gtk20 pygnomeextras
30
USE_GECKO=	firefox seamonkey xulrunner mozilla
31
USE_OPENSSL=	yes
27
USE_PYTHON=	yes
32
USE_PYTHON=	yes
33
WANT_GSTREAMER=	yes
28
USE_GETTEXT=	yes
34
USE_GETTEXT=	yes
29
USE_GNOME=	glib20 gtk20 pygnomeextras
35
USE_PYDISTUTILS=	yes
30
USE_GECKO=	firefox seamonkey mozilla
36
PYDISTUTILS_PKGNAME=	${PORTNAME:L}
31
USE_GSTREAMER=	python
37
MAKE_ENV=	CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}"
32
INSTALLS_EGGINFO=	yes
38
INSTALLS_EGGINFO=	yes
33
39
34
BUILD_WRKSRC=	${WRKSRC}/platform/gtk-x11
40
MANCOMPRESSED=	yes
35
MAKE_ENV=	CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}"
41
MAN1=		miro.1 miro.real.1
36
42
37
DATADIR=	${PREFIX}/share/${PORTNAME:L}
43
DATADIR=	${PREFIX}/share/${PORTNAME:L}
38
PLIST_SUB=	VER=${PORTVERSION} PYTHON_VER=${_PYTHON_VERSION}	\
39
		DESKTOPDIR=share/applications
40
PYDISTUTILS_PKGNAME=	${PORTNAME:L}
41
42
MAN1=		miro.1
43
MANCOMPRESSED=	yes
44
44
45
.include <bsd.port.pre.mk>
45
.include <bsd.port.pre.mk>
46
.include "${PORTSDIR}/www/mozilla/bsd.gecko.mk"
47
48
.if defined(WITH_GSTREAMER)
49
USE_GSTREAMER+=	python
50
.endif
46
51
47
pre-configure:
52
.SILENT:
48
.for pyscr in setup.py platform/resources.py
53
49
	${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|'		\
54
post-patch:
50
		-e 's|/usr/X11R6|${LOCALBASE}|g'				\
55
.for file in setup.py plat/resources.py
51
		-e 's|/usr/share|${PREFIX}/share|g'			\
56
	${REINPLACE_CMD} -e 's|%%GECKO%%|${GECKO}|g ; \
52
		-e 's|/usr/libexec|${PREFIX}/libexec|g'			\
57
		 s|%%LOCALBASE%%|${LOCALBASE}|g ; \
53
		-e 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|'		\
58
		 s|%%CC%%|${CC}|g ; \
54
		-e 's|${LOCALBASE}/man|${MANPREFIX}/man|'		\
59
		 s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g ; \
55
		${BUILD_WRKSRC}/${pyscr}
60
		 s|%%PREFIX%%|${PREFIX}|g ; \
61
		 s|%%MANPREFIX%%|${MANPREFIX}|g' \
62
		${BUILD_WRKSRC}/${file}
63
.endfor
64
.for file in miro.real
65
	${REINPLACE_CMD} -e 's|python2.4|${PYTHON_VERSION}|g' \
66
		${BUILD_WRKSRC}/${file}
67
.endfor
68
.for file in run.sh
69
	${REINPLACE_CMD} -e 's|^PREFIX=.*|PREFIX=${PREFIX}|g' \
70
		${BUILD_WRKSRC}/${file}
56
.endfor
71
.endfor
57
.for pyscr in miro.real timetemplates.py
72
.for file in plat/renderers/xinerenderer.py
58
	${REINPLACE_CMD} -e 's|python2.4|${PYTHON_VERSION}|'		\
73
	${REINPLACE_CMD} -e 's|lib/miro|libexec/miro|g' \
59
		-e '/^PREFIX/s|/usr|${PREFIX}|' ${BUILD_WRKSRC}/${pyscr}
74
		${BUILD_WRKSRC}/${file}
60
.endfor
75
.endfor
61
	${REINPLACE_CMD} -e 's|BOOST_LIB_PATH|${LOCALBASE}/lib|'	\
62
		${WRKSRC}/portable/setup_portable.py
63
	${REINPLACE_CMD} -e 's|return "Linux"|return "${OPSYS}"|'	\
64
		${BUILD_WRKSRC}/platform/__init__.py
65
66
do-build:
67
	(cd ${BUILD_WRKSRC} &&	\
68
	${SETENV} ${MAKE_ENV} ${PYTHON_CMD} setup.py build)
69
70
do-install:
71
	(cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV}		\
72
	${PYTHON_CMD} setup.py install --prefix=${PREFIX})
73
	@${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py	\
74
	${PYTHON_SITELIBDIR}/miro
75
76
76
.if defined(MAINTAINER_MODE)
77
.if defined(MAINTAINER_MODE)
77
regression-test:	install
78
regression-test:	install
78
	LANG=C LC_ALL=C ${PREFIX}/bin/miro --unittest
79
	LANG=C LC_ALL=C ${PREFIX}/bin/miro --unittest
79
.endif
80
.endif
80
81
81
.include "${.CURDIR}/../../www/mozilla/bsd.gecko.mk"
82
.include <bsd.port.post.mk>
82
.include <bsd.port.post.mk>
(-)multimedia/miro/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (Miro-1.2.8.tar.gz) = b468a953014272095171303ba3f0745d
1
MD5 (Miro-2.0.1.tar.gz) = 9f180474f97f179e78d919e92b66e3e4
2
SHA256 (Miro-1.2.8.tar.gz) = 05472bc02e50512983618802bfec3c6acd8734090cb0f4d5dd6d49f4c4c347ef
2
SHA256 (Miro-2.0.1.tar.gz) = 395d3fceb1e42e5da20e29857b3562cfa065401bb7b6ae9a56351f9a59ef70ce
3
SIZE (Miro-1.2.8.tar.gz) = 14498464
3
SIZE (Miro-2.0.1.tar.gz) = 7349695
(-)multimedia/miro/files/patch-platform__gtk-x11__plat__options.py (+20 lines)
Line 0 Link Here
1
--- platform/gtk-x11/plat/options.py.orig	2009-02-12 06:37:07.000000000 +0900
2
+++ platform/gtk-x11/plat/options.py	2009-02-12 18:24:15.000000000 +0900
3
@@ -39,7 +39,7 @@
4
 from miro.prefs import Pref
5
 
6
 USE_RENDERER = Pref(key="useRenderer",
7
-                    default=u"gstreamer",
8
+                    default=u"xine",
9
                     platformSpecific=False,
10
                     alias="renderer",
11
                     help="Which renderer to use.  (gstreamer, xine)" )
12
@@ -51,7 +51,7 @@
13
                   help="Which visualization plugin to use for audio files.  (goom or none)" )
14
 
15
 USE_XINE_XV_HACK = Pref(key="UseXineXVHack",
16
-                        default=True,
17
+                        default=False,
18
                         platformSpecific=False,
19
                         alias="xine-xvhack",
20
                         help="Whether or not to use the Xine xv hack.  (true, false)" )
(-)multimedia/miro/files/patch-platform__gtk-x11__plat__resources.py (+24 lines)
Line 0 Link Here
1
--- platform/gtk-x11/plat/resources.py.orig	2009-02-12 06:37:07.000000000 +0900
2
+++ platform/gtk-x11/plat/resources.py	2009-02-13 01:56:28.000000000 +0900
3
@@ -29,10 +29,10 @@
4
 import os
5
 import urllib
6
 
7
-resource_root = os.environ.get('MIRO_RESOURCE_ROOT', '/usr/share/miro/resources/')
8
+resource_root = os.environ.get('MIRO_RESOURCE_ROOT', '%%PREFIX%%/share/miro/resources/')
9
 resource_root = os.path.abspath(resource_root)
10
 
11
-share_root = os.environ.get('MIRO_SHARE_ROOT', '/usr/share/')
12
+share_root = os.environ.get('MIRO_SHARE_ROOT', '%%PREFIX%%/share/')
13
 share_root = os.path.abspath(share_root)
14
 
15
 # Note: some of these functions are probably not absolutely correct in
16
@@ -63,7 +63,7 @@
17
     return u"file://%s" % urllib.quote(absolute_path)
18
 
19
 def theme_path(theme, relative_path):
20
-    return os.path.join('/usr/share/miro/themes', theme, relative_path)
21
+    return os.path.join('%%PREFIX%%/share/miro/themes', theme, relative_path)
22
 
23
 def check_kde():
24
     return os.environ.get("KDE_FULL_SESSION", None) != None
(-)multimedia/miro/files/patch-platform__gtk-x11__setup.py (+164 lines)
Line 0 Link Here
1
--- platform/gtk-x11/setup.py.orig	2009-02-12 06:37:07.000000000 +0900
2
+++ platform/gtk-x11/setup.py	2009-02-15 05:49:26.000000000 +0900
3
@@ -111,12 +111,13 @@
4
 # XPCOM_LIB = "firefox-xpcom"
5
 # GTKMOZEMBED_LIB = "firefox-gtkmozembed"
6
 # XULRUNNER_19 = False
7
-XPCOM_LIB = None
8
-GTKMOZEMBED_LIB = None
9
-XULRUNNER_19 = None
10
+XPCOM_LIB = "%%GECKO%%-xpcom"
11
+GTKMOZEMBED_LIB = "%%GECKO%%-gtkmozembed"
12
+XULRUNNER_19 = False
13
 
14
 # The name of the boost library.  Used for building extensions.
15
 BOOST_LIB = 'boost_python'
16
+BOOST_LIB_PATH = '%%LOCALBASE%%/lib'
17
 
18
 
19
 ###############################################################################
20
@@ -282,6 +283,9 @@
21
             options_dict['library_dirs'].append(rest)
22
         elif prefix == '-l':
23
             options_dict['libraries'].append(rest)
24
+        elif prefix == '-W':
25
+            # throw away, it breaks cc1
26
+            continue
27
         else:
28
             options_dict['extra_compile_args'].append(comp)
29
 
30
@@ -292,7 +296,7 @@
31
     return options_dict
32
 
33
 def compile_xine_extractor():
34
-    rv = os.system("gcc %s -o %s `pkg-config --libs --cflags gdk-pixbuf-2.0 glib-2.0 libxine`" %
35
+    rv = os.system("%%CC%% %s -o %s `pkg-config --libs --cflags gdk-pixbuf-2.0 glib-2.0 libxine` %%PTHREAD_LIBS%%" %
36
                    (os.path.join(platform_dir, "xine/xine_extractor.c"), os.path.join(platform_dir, "xine/xine_extractor")))
37
     if rv != 0:
38
         raise RuntimeError("xine_extractor compilation failed.  Possibly missing libxine, gdk-pixbuf-2.0, or glib-2.0.")
39
@@ -330,7 +334,7 @@
40
         exit;
41
     fi
42
 
43
-    %(runtimelib)s$GDB -ex 'set breakpoint pending on' -ex 'break gdk_x_error' -ex 'run' --args $PYTHON ./miro.real --sync "$@"
44
+    %(runtimelib)s$GDB -ex 'set breakpoint pending on' -ex 'break gdk_x_error' -ex 'run' --args $PYTHON %%PREFIX%%/bin/miro.real --sync "$@"
45
 else
46
     %(runtimelib)smiro.real "$@"
47
 fi
48
@@ -343,6 +347,7 @@
49
     Extension("miro.fasttypes",
50
         sources = [os.path.join(portable_dir, 'fasttypes.cpp')],
51
         libraries = [BOOST_LIB],
52
+        library_dirs = [BOOST_LIB_PATH],
53
     )
54
 
55
 
56
@@ -381,14 +386,14 @@
57
                           "-DHAVE___INCLUDE_LIBTORRENT_ASIO_HPP=1",
58
                           "-DHAVE___INCLUDE_LIBTORRENT_ASIO_SSL_STREAM_HPP=1",
59
                           "-DHAVE___INCLUDE_LIBTORRENT_ASIO_IP_TCP_HPP=1",
60
-                          "-DHAVE_PTHREAD=1", "-DTORRENT_USE_OPENSSL=1", "-DHAVE_SSL=1",
61
-                          "-DNDEBUG=1", "-O2"]
62
+                          "-DHAVE_PTHREAD=1", "-DTORRENT_USE_OPENSSL=1",
63
+                          "-DHAVE_SSL=1"]
64
 
65
     if is_x64():
66
         extra_compile_args.append("-DAMD64")
67
 
68
     # check for mt
69
-    libraries = ['z', 'pthread', 'ssl']
70
+    libraries = ['z', 'ssl']
71
     all_libs = []
72
     if os.path.exists(os.path.join(sysconfig.PREFIX, "lib")):
73
         all_libs.extend(os.listdir(os.path.join(sysconfig.PREFIX, "lib")))
74
@@ -430,6 +435,7 @@
75
     return Extension("miro.libtorrent",
76
                      include_dirs=include_dirs,
77
                      libraries=libraries,
78
+                     library_dirs=[BOOST_LIB_PATH],
79
                      extra_compile_args=extra_compile_args,
80
                      sources=sources)
81
 
82
@@ -552,7 +558,7 @@
83
 xlib_ext = \
84
     Extension("miro.plat.xlibhelper",
85
         [ os.path.join(platform_package_dir,'xlibhelper.pyx') ],
86
-        library_dirs = ['/usr/X11R6/lib'],
87
+        library_dirs = ['%%LOCALBASE%%/lib'],
88
         libraries = ['X11'],
89
     )
90
 
91
@@ -638,29 +644,29 @@
92
 # filter out app.config.template (which is handled specially)
93
 files = [f for f in listfiles(resource_dir) \
94
         if os.path.basename(f) != 'app.config.template']
95
-data_files.append(('/usr/share/miro/resources/', files))
96
+data_files.append(('%%PREFIX%%/share/miro/resources/', files))
97
 # handle the sub directories.
98
 for dir in ('searchengines', 'images', 'testdata',
99
         os.path.join('testdata', 'stripperdata'),
100
         os.path.join('testdata', 'locale', 'fr', 'LC_MESSAGES')):
101
     source_dir = os.path.join(resource_dir, dir)
102
-    dest_dir = os.path.join('/usr/share/miro/resources/', dir)
103
+    dest_dir = os.path.join('%%PREFIX%%/share/miro/resources/', dir)
104
     data_files.append((dest_dir, listfiles(source_dir)))
105
 
106
 
107
 # add the desktop file, icons, mime data, and man page.
108
 data_files += [
109
-    ('/usr/share/pixmaps',
110
+    ('%%PREFIX%%/share/pixmaps',
111
      glob(os.path.join(platform_dir, 'miro-*.png'))),
112
-    ('/usr/share/applications',
113
+    ('%%PREFIX%%/share/applications',
114
      [os.path.join(platform_dir, 'miro.desktop')]),
115
-    ('/usr/share/mime/packages',
116
+    ('%%PREFIX%%/share/mime/packages',
117
      [os.path.join(platform_dir, 'miro.xml')]),
118
-    ('/usr/share/man/man1',
119
+    ('%%MANPREFIX%%/man/man1',
120
      [os.path.join(platform_dir, 'miro.1.gz')]),
121
-    ('/usr/share/man/man1',
122
+    ('%%MANPREFIX%%/man/man1',
123
      [os.path.join(platform_dir, 'miro.real.1.gz')]),
124
-    ('/usr/lib/miro/',
125
+    ('%%PREFIX%%/libexec/miro',
126
      [os.path.join(platform_dir, 'xine/xine_extractor')]),
127
 ]
128
 
129
@@ -684,7 +690,7 @@
130
 
131
     def install_app_config(self):
132
         source = os.path.join(resource_dir, 'app.config.template')
133
-        dest = '/usr/share/miro/resources/app.config'
134
+        dest = '%%PREFIX%%/share/miro/resources/app.config'
135
 
136
         config_file = util.read_simple_config_file(source)
137
         print "Trying to figure out the svn revision...."
138
@@ -724,7 +730,7 @@
139
 
140
         for source in glob (os.path.join (locale_dir, "*.mo")):
141
             lang = os.path.basename(source)[:-3]
142
-            dest = '/usr/share/locale/%s/LC_MESSAGES/miro.mo' % lang
143
+            dest = '%%PREFIX%%/share/locale/%s/LC_MESSAGES/miro.mo' % lang
144
             if self.root:
145
                 dest = change_root(self.root, dest)
146
             self.mkpath(os.path.dirname(dest))
147
@@ -753,7 +759,7 @@
148
 
149
 #### install_theme installs a specifified theme .zip
150
 class install_theme(Command):
151
-    description = 'Install a provided theme to /usr/share/miro/themes'
152
+    description = 'Install a provided theme to %%PREFIX%%/share/miro/themes'
153
     user_options = [("theme=", None, 'ZIP file containing the theme')]
154
 
155
     def initialize_options(self):
156
@@ -781,7 +787,7 @@
157
             raise DistutilsOptionError, "invalid theme file"
158
         self.zipfile = zf
159
         self.theme_name = themeName
160
-        self.theme_dir = '/usr/share/miro/themes/%s' % themeName
161
+        self.theme_dir = '%%PREFIX%%/share/miro/themes/%s' % themeName
162
 
163
     def run(self):
164
         if os.path.exists(self.theme_dir):
(-)multimedia/miro/files/patch-platform__gtk-x11__xine__xine_impl.c (+23 lines)
Line 0 Link Here
1
--- platform/gtk-x11/xine/xine_impl.c.orig	2009-02-12 06:37:07.000000000 +0900
2
+++ platform/gtk-x11/xine/xine_impl.c	2009-02-12 18:22:22.000000000 +0900
3
@@ -251,14 +251,18 @@
4
     vis.user_data = xine;
5
   
6
     /* opening xine output ports */
7
+    /* Try to use char *driver for video, default to "auto" if NULL */
8
+    if (!driver)
9
+            driver = "auto";
10
+
11
 #ifdef INCLUDE_XINE_DRIVER_HACK
12
     miro_using_xv_driver_hack = 0;    /* by default, don't use the hack */
13
-    xine->videoPort = xine_open_video_driver(xine->xine, "xv",
14
+    xine->videoPort = xine_open_video_driver(xine->xine, driver,
15
             XINE_VISUAL_TYPE_X11, (void *)&vis);
16
     if (!xine->videoPort) {
17
 #endif
18
 
19
-      xine->videoPort = xine_open_video_driver(xine->xine, "auto",
20
+      xine->videoPort = xine_open_video_driver(xine->xine, driver,
21
            XINE_VISUAL_TYPE_X11, (void *)&vis);
22
 
23
 
(-)multimedia/miro/files/patch-platform_gtk-x11_setup.py (-81 lines)
Lines 1-81 Link Here
1
--- platform/gtk-x11/setup.py.orig	2008-05-28 16:05:13.000000000 +0200
2
+++ platform/gtk-x11/setup.py	2008-06-14 15:40:32.000000000 +0200
3
@@ -61,6 +61,7 @@
4
 ###############################################################################
5
 
6
 BOOST_LIB = 'boost_python'
7
+BOOST_LIB_PATH = '/usr/local/lib'
8
 
9
 USE_XINE_HACK = True #use_xine_hack_default()
10
 
11
@@ -222,6 +223,9 @@
12
             options_dict['library_dirs'].append(rest)
13
         elif prefix == '-l':
14
             options_dict['libraries'].append(rest)
15
+        elif prefix == '-W':
16
+            # throw away, it breaks cc1
17
+            continue
18
         else:
19
             options_dict['extra_compile_args'].append(comp)
20
     return options_dict
21
@@ -231,6 +235,7 @@
22
     Extension("miro.fasttypes", 
23
         sources = [os.path.join(portable_dir, 'fasttypes.cpp')],
24
         libraries = [BOOST_LIB],
25
+        library_dirs = [BOOST_LIB_PATH],
26
     )
27
 
28
 ##### The libtorrent extension ####
29
@@ -243,21 +248,17 @@
30
     sys.exit("Package config error:\n%s" % (error,))
31
 
32
 xulrunner19 = False
33
-if re.search("^libxul", packages, re.MULTILINE):
34
-    xulrunner19 = True
35
-    xpcom = 'libxul'
36
-    gtkmozembed = 'libxul'
37
-elif re.search("^xulrunner-xpcom", packages, re.MULTILINE):
38
-    xpcom = 'xulrunner-xpcom'
39
-    gtkmozembed = 'xulrunner-gtkmozembed'
40
+if re.search("^firefox-xpcom", packages, re.MULTILINE):
41
+    xpcom = 'firefox-xpcom'
42
+    gtkmozembed = 'firefox-gtkmozembed'
43
+elif re.search("^seamonkey-xpcom", packages, re.MULTILINE):
44
+    xpcom = 'seamonkey-xpcom'
45
+    gtkmozembed = 'seamonkey-gtkmozembed'
46
 elif re.search("^mozilla-xpcom", packages, re.MULTILINE):
47
     xpcom = 'mozilla-xpcom'
48
     gtkmozembed = 'mozilla-gtkmozembed'
49
-elif re.search("^firefox-xpcom", packages, re.MULTILINE):
50
-    xpcom = 'firefox-xpcom'
51
-    gtkmozembed = 'firefox-gtkmozembed'
52
 else:
53
-    sys.exit("Can't find libxul, xulrunner-xpcom, mozilla-xpcom or firefox-xpcom")
54
+    sys.exit("Can't find seamonkey-xpcom, mozilla-xpcom or firefox-xpcom")
55
 
56
 if not "clean" in sys.argv:
57
     # build a miro script that wraps the miro.real script with an LD_LIBRARY_PATH
58
@@ -383,7 +384,7 @@
59
 # add the desktop file, icons, mime data, and man page.
60
 
61
 if not "clean" in sys.argv:
62
-    rv = os.system ("gcc %s -o %s `pkg-config --libs --cflags gdk-pixbuf-2.0 glib-2.0 libxine`" % (os.path.join(platform_dir, "xine/xine_extractor.c"), os.path.join(platform_dir, "xine/xine_extractor")))
63
+    rv = os.system ("gcc %s -o %s `pkg-config --libs --cflags gdk-pixbuf-2.0 glib-2.0 libxine` %%PTHREAD_LIBS%%" % (os.path.join(platform_dir, "xine/xine_extractor.c"), os.path.join(platform_dir, "xine/xine_extractor")))
64
 
65
     if rv != 0:
66
         raise RuntimeError("xine_extractor compilation failed.  Possibly missing libxine, gdk-pixbuf-2.0, or glib-2.0.")
67
@@ -391,11 +392,11 @@
68
 data_files += [
69
     ('/usr/share/pixmaps', 
70
      glob(os.path.join(platform_dir, 'miro-*.png'))),
71
-    ('/usr/share/applications', 
72
+    ('/usr/local/share/applications', 
73
      [os.path.join(platform_dir, 'miro.desktop')]),
74
-    ('/usr/share/mime/packages', 
75
+    ('/usr/local/share/mime/packages', 
76
      [os.path.join(platform_dir, 'miro.xml')]),
77
-    ('/usr/share/man/man1',
78
+    ('/usr/local/man/man1',
79
      [os.path.join(platform_dir, 'miro.1.gz')]),
80
     ('/usr/libexec/',
81
      [os.path.join(platform_dir, 'xine/xine_extractor')]),
(-)multimedia/miro/files/patch-portable__startup.py (+11 lines)
Line 0 Link Here
1
--- portable/startup.py.orig	2009-02-12 06:37:23.000000000 +0900
2
+++ portable/startup.py	2009-02-12 18:25:40.000000000 +0900
3
@@ -250,7 +250,7 @@
4
     yield None
5
     parse_command_line_args()
6
     yield None
7
-    autoupdate.check_for_updates()
8
+    # autoupdate.check_for_updates()
9
     yield None
10
     # Wait a bit before starting the downloader daemon.  It can cause a bunch
11
     # of disk/CPU load, so try to avoid it slowing other stuff down.
(-)multimedia/miro/files/patch-portable_libtorrent_bindings_python_src_peer_plugin.cpp (-12 lines)
Lines 1-12 Link Here
1
--- portable/libtorrent/bindings/python/src/peer_plugin.cpp.orig	2008-01-10 20:55:51.000000000 +0100
2
+++ portable/libtorrent/bindings/python/src/peer_plugin.cpp	2008-01-11 21:47:50.000000000 +0100
3
@@ -2,6 +2,9 @@
4
 // subject to the Boost Software License, Version 1.0. (See accompanying
5
 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
 
7
+#include <cctype>
8
+#include <iostream>
9
+
10
 #include <libtorrent/extensions.hpp>
11
 #include <libtorrent/entry.hpp>
12
 #include <libtorrent/peer_request.hpp>
(-)multimedia/miro/files/patch-portable_setup_portable.py (-10 lines)
Lines 1-10 Link Here
1
--- ./portable/setup_portable.py.orig	2008-01-10 20:55:52.000000000 +0100
2
+++ ./portable/setup_portable.py	2008-01-11 22:35:18.000000000 +0100
3
@@ -182,6 +182,7 @@
4
         return Extension("miro.libtorrent", 
5
                          include_dirs = include_dirs,
6
                          libraries = librariestype,
7
+                         library_dirs = ['BOOST_LIB_PATH'],
8
                          extra_compile_args = EXTRA_COMPILE_ARGS,
9
                          sources = sources)
10
     else:
(-)multimedia/miro/pkg-plist (-584 / +514 lines)
Lines 1-6 Link Here
1
bin/miro
1
bin/miro
2
bin/miro.real
2
bin/miro.real
3
libexec/xine_extractor
4
%%PYTHON_SITELIBDIR%%/miro/__init__.py
3
%%PYTHON_SITELIBDIR%%/miro/__init__.py
5
%%PYTHON_SITELIBDIR%%/miro/__init__.pyc
4
%%PYTHON_SITELIBDIR%%/miro/__init__.pyc
6
%%PYTHON_SITELIBDIR%%/miro/__init__.pyo
5
%%PYTHON_SITELIBDIR%%/miro/__init__.pyo
Lines 41-46 Link Here
41
%%PYTHON_SITELIBDIR%%/miro/dialogs.py
40
%%PYTHON_SITELIBDIR%%/miro/dialogs.py
42
%%PYTHON_SITELIBDIR%%/miro/dialogs.pyc
41
%%PYTHON_SITELIBDIR%%/miro/dialogs.pyc
43
%%PYTHON_SITELIBDIR%%/miro/dialogs.pyo
42
%%PYTHON_SITELIBDIR%%/miro/dialogs.pyo
43
%%PYTHON_SITELIBDIR%%/miro/displaytext.py
44
%%PYTHON_SITELIBDIR%%/miro/displaytext.pyc
45
%%PYTHON_SITELIBDIR%%/miro/displaytext.pyo
44
%%PYTHON_SITELIBDIR%%/miro/dl_daemon/Democracy_Downloader.py
46
%%PYTHON_SITELIBDIR%%/miro/dl_daemon/Democracy_Downloader.py
45
%%PYTHON_SITELIBDIR%%/miro/dl_daemon/Democracy_Downloader.pyc
47
%%PYTHON_SITELIBDIR%%/miro/dl_daemon/Democracy_Downloader.pyc
46
%%PYTHON_SITELIBDIR%%/miro/dl_daemon/Democracy_Downloader.pyo
48
%%PYTHON_SITELIBDIR%%/miro/dl_daemon/Democracy_Downloader.pyo
Lines 77-85 Link Here
77
%%PYTHON_SITELIBDIR%%/miro/eventloop.py
79
%%PYTHON_SITELIBDIR%%/miro/eventloop.py
78
%%PYTHON_SITELIBDIR%%/miro/eventloop.pyc
80
%%PYTHON_SITELIBDIR%%/miro/eventloop.pyc
79
%%PYTHON_SITELIBDIR%%/miro/eventloop.pyo
81
%%PYTHON_SITELIBDIR%%/miro/eventloop.pyo
80
%%PYTHON_SITELIBDIR%%/miro/extrastrings.py
81
%%PYTHON_SITELIBDIR%%/miro/extrastrings.pyc
82
%%PYTHON_SITELIBDIR%%/miro/extrastrings.pyo
83
%%PYTHON_SITELIBDIR%%/miro/fasttypes.so
82
%%PYTHON_SITELIBDIR%%/miro/fasttypes.so
84
%%PYTHON_SITELIBDIR%%/miro/feed.py
83
%%PYTHON_SITELIBDIR%%/miro/feed.py
85
%%PYTHON_SITELIBDIR%%/miro/feed.pyc
84
%%PYTHON_SITELIBDIR%%/miro/feed.pyc
Lines 87-92 Link Here
87
%%PYTHON_SITELIBDIR%%/miro/feedparser.py
86
%%PYTHON_SITELIBDIR%%/miro/feedparser.py
88
%%PYTHON_SITELIBDIR%%/miro/feedparser.pyc
87
%%PYTHON_SITELIBDIR%%/miro/feedparser.pyc
89
%%PYTHON_SITELIBDIR%%/miro/feedparser.pyo
88
%%PYTHON_SITELIBDIR%%/miro/feedparser.pyo
89
%%PYTHON_SITELIBDIR%%/miro/feedupdate.py
90
%%PYTHON_SITELIBDIR%%/miro/feedupdate.pyc
91
%%PYTHON_SITELIBDIR%%/miro/feedupdate.pyo
90
%%PYTHON_SITELIBDIR%%/miro/filetypes.py
92
%%PYTHON_SITELIBDIR%%/miro/filetypes.py
91
%%PYTHON_SITELIBDIR%%/miro/filetypes.pyc
93
%%PYTHON_SITELIBDIR%%/miro/filetypes.pyc
92
%%PYTHON_SITELIBDIR%%/miro/filetypes.pyo
94
%%PYTHON_SITELIBDIR%%/miro/filetypes.pyo
Lines 120-296 Link Here
120
%%PYTHON_SITELIBDIR%%/miro/frontends/cli/util.py
122
%%PYTHON_SITELIBDIR%%/miro/frontends/cli/util.py
121
%%PYTHON_SITELIBDIR%%/miro/frontends/cli/util.pyc
123
%%PYTHON_SITELIBDIR%%/miro/frontends/cli/util.pyc
122
%%PYTHON_SITELIBDIR%%/miro/frontends/cli/util.pyo
124
%%PYTHON_SITELIBDIR%%/miro/frontends/cli/util.pyo
123
%%PYTHON_SITELIBDIR%%/miro/frontends/html/__init__.py
125
%%PYTHON_SITELIBDIR%%/miro/frontends/shell.py
124
%%PYTHON_SITELIBDIR%%/miro/frontends/html/__init__.pyc
126
%%PYTHON_SITELIBDIR%%/miro/frontends/shell.pyc
125
%%PYTHON_SITELIBDIR%%/miro/frontends/html/__init__.pyo
127
%%PYTHON_SITELIBDIR%%/miro/frontends/shell.pyo
126
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/__init__.py
128
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/__init__.py
127
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/__init__.pyc
129
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/__init__.pyc
128
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/__init__.pyo
130
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/__init__.pyo
129
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channel.py
131
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/addtoplaylistdialog.py
130
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channel.pyc
132
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/addtoplaylistdialog.pyc
131
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channel.pyo
133
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/addtoplaylistdialog.pyo
132
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channel_content.py
134
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/application.py
133
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channel_content.pyc
135
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/application.pyc
134
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channel_content.pyo
136
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/application.pyo
135
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channel_folder.py
137
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/browser.py
136
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channel_folder.pyc
138
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/browser.pyc
137
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channel_folder.pyo
139
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/browser.pyo
138
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channelfoldertab.py
140
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/cellpack.py
139
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channelfoldertab.pyc
141
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/cellpack.pyc
140
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/channelfoldertab.pyo
142
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/cellpack.pyo
141
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download.py
143
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/crashdialog.py
142
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download.pyc
144
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/crashdialog.pyc
143
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download.pyo
145
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/crashdialog.pyo
144
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item.py
146
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/diagnostics.py
145
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item.pyc
147
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/diagnostics.pyc
146
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item.pyo
148
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/diagnostics.pyo
147
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_description.py
149
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/dialogs.py
148
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_description.pyc
150
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/dialogs.pyc
149
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_description.pyo
151
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/dialogs.pyo
150
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_details.py
152
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/dialogwidgets.py
151
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_details.pyc
153
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/dialogwidgets.pyc
152
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_details.pyo
154
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/dialogwidgets.pyo
153
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_inner.py
155
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/displays.py
154
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_inner.pyc
156
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/displays.pyc
155
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_inner.pyo
157
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/displays.pyo
156
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_thumbnail.py
158
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/downloadscontroller.py
157
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_thumbnail.pyc
159
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/downloadscontroller.pyc
158
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/download_item_thumbnail.pyo
160
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/downloadscontroller.pyo
159
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/external_playback.py
161
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/feedcontroller.py
160
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/external_playback.pyc
162
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/feedcontroller.pyc
161
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/external_playback.pyo
163
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/feedcontroller.pyo
162
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/external_playback_continue.py
164
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/feedsettingspanel.py
163
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/external_playback_continue.pyc
165
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/feedsettingspanel.pyc
164
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/external_playback_continue.pyo
166
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/feedsettingspanel.pyo
165
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/feed_settings.py
167
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/firsttimedialog.py
166
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/feed_settings.pyc
168
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/firsttimedialog.pyc
167
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/feed_settings.pyo
169
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/firsttimedialog.pyo
168
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/feedtab.py
170
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/__init__.py
169
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/feedtab.pyc
171
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/__init__.pyc
170
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/feedtab.pyo
172
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/__init__.pyo
171
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/guide_loading.py
173
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/base.py
172
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/guide_loading.pyc
174
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/base.pyc
173
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/guide_loading.pyo
175
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/base.pyo
174
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/guidetab.py
176
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/const.py
175
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/guidetab.pyc
177
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/const.pyc
176
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/guidetab.pyo
178
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/const.pyo
177
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/library.py
179
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/controls.py
178
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/library.pyc
180
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/controls.pyc
179
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/library.pyo
181
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/controls.pyo
180
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/multi_channel.py
182
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/customcontrols.py
181
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/multi_channel.pyc
183
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/customcontrols.pyc
182
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/multi_channel.pyo
184
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/customcontrols.pyo
183
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/multi_playlist.py
185
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/drawing.py
184
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/multi_playlist.pyc
186
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/drawing.pyc
185
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/multi_playlist.pyo
187
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/drawing.pyo
186
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/new.py
188
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/fontsize.py
187
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/new.pyc
189
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/fontsize.pyc
188
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/new.pyo
190
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/fontsize.pyo
189
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlist.py
191
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/keymap.py
190
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlist.pyc
192
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/keymap.pyc
191
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlist.pyo
193
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/keymap.pyo
192
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlist_folder.py
194
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/layout.py
193
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlist_folder.pyc
195
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/layout.pyc
194
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlist_folder.pyo
196
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/layout.pyo
195
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlistfoldertab.py
197
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/layoutmanager.py
196
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlistfoldertab.pyc
198
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/layoutmanager.pyc
197
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlistfoldertab.pyo
199
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/layoutmanager.pyo
198
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlisttab.py
200
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/persistentwindow.py
199
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlisttab.pyc
201
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/persistentwindow.pyc
200
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/playlisttab.pyo
202
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/persistentwindow.pyo
201
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/search.py
203
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/preferenceswindow.py
202
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/search.pyc
204
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/preferenceswindow.pyc
203
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/search.pyo
205
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/preferenceswindow.pyo
204
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/sort_bar.py
206
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/pygtkhacks.so
205
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/sort_bar.pyc
207
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/searchentry.py
206
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/sort_bar.pyo
208
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/searchentry.pyc
207
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/static_tab_sort_bar.py
209
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/searchentry.pyo
208
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/static_tab_sort_bar.pyc
210
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/simple.py
209
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/static_tab_sort_bar.pyo
211
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/simple.pyc
210
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/statictab.py
212
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/simple.pyo
211
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/statictab.pyc
213
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/tableview.py
212
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/statictab.pyo
214
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/tableview.pyc
213
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/tablist.py
215
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/tableview.pyo
214
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/tablist.pyc
216
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/textlayout.py
215
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/tablist.pyo
217
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/textlayout.pyc
216
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/__init__.py
218
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/textlayout.pyo
217
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/__init__.pyc
219
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/threads.py
218
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/__init__.pyo
220
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/threads.pyc
219
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/execute_template.py
221
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/threads.pyo
220
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/execute_template.pyc
222
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/timer.py
221
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/execute_template.pyo
223
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/timer.pyc
222
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/hide.py
224
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/timer.pyo
223
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/hide.pyc
225
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/trayicon.py
224
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/hide.pyo
226
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/trayicon.pyc
225
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/include.py
227
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/trayicon.pyo
226
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/include.pyc
228
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/video.py
227
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/include.pyo
229
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/video.pyc
228
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/include_template.py
230
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/video.pyo
229
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/include_template.pyc
231
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/weakconnect.py
230
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/include_template.pyo
232
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/weakconnect.pyc
231
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/replace.py
233
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/weakconnect.pyo
232
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/replace.pyc
234
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/widgets.py
233
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/replace.pyo
235
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/widgets.pyc
234
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/replace_with_variable.py
236
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/widgets.pyo
235
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/replace_with_variable.pyc
237
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/widgetset.py
236
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/replace_with_variable.pyo
238
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/widgetset.pyc
237
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/simple.py
239
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/widgetset.pyo
238
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/simple.pyc
240
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/window.py
239
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/simple.pyo
241
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/window.pyc
240
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/simpleunicode.py
242
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/window.pyo
241
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/simpleunicode.pyc
243
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/wrappermap.py
242
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/simpleunicode.pyo
244
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/wrappermap.pyc
243
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/translationtest.py
245
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/wrappermap.pyo
244
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/translationtest.pyc
246
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/imagebutton.py
245
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/translationtest.pyo
247
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/imagebutton.pyc
246
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/update.py
248
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/imagebutton.pyo
247
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/update.pyc
249
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/imagepool.py
248
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/update.pyo
250
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/imagepool.pyc
249
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/update_hide.py
251
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/imagepool.pyo
250
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/update_hide.pyc
252
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemcontextmenu.py
251
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/update_hide.pyo
253
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemcontextmenu.pyc
252
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/view.py
254
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemcontextmenu.pyo
253
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/view.pyc
255
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemlist.py
254
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/view.pyo
256
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemlist.pyc
255
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/view_container_div.py
257
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemlist.pyo
256
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/view_container_div.pyc
258
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemlistcontroller.py
257
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/view_container_div.pyo
259
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemlistcontroller.pyc
258
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/view_double.py
260
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemlistcontroller.pyo
259
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/view_double.pyc
261
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemlistwidgets.py
260
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/view_double.pyo
262
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemlistwidgets.pyc
261
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/video_info.py
263
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemlistwidgets.pyo
262
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/video_info.pyc
264
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/linkhandler.py
263
%%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/video_info.pyo
265
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/linkhandler.pyc
264
%%PYTHON_SITELIBDIR%%/miro/frontends/html/contextmenu.py
266
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/linkhandler.pyo
265
%%PYTHON_SITELIBDIR%%/miro/frontends/html/contextmenu.pyc
267
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/menus.py
266
%%PYTHON_SITELIBDIR%%/miro/frontends/html/contextmenu.pyo
268
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/menus.pyc
267
%%PYTHON_SITELIBDIR%%/miro/frontends/html/displaybase.py
269
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/menus.pyo
268
%%PYTHON_SITELIBDIR%%/miro/frontends/html/displaybase.pyc
270
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newfeed.py
269
%%PYTHON_SITELIBDIR%%/miro/frontends/html/displaybase.pyo
271
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newfeed.pyc
270
%%PYTHON_SITELIBDIR%%/miro/frontends/html/keyboard.py
272
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newfeed.pyo
271
%%PYTHON_SITELIBDIR%%/miro/frontends/html/keyboard.pyc
273
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newfolder.py
272
%%PYTHON_SITELIBDIR%%/miro/frontends/html/keyboard.pyo
274
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newfolder.pyc
273
%%PYTHON_SITELIBDIR%%/miro/frontends/html/main.py
275
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newfolder.pyo
274
%%PYTHON_SITELIBDIR%%/miro/frontends/html/main.pyc
276
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newsearchfeed.py
275
%%PYTHON_SITELIBDIR%%/miro/frontends/html/main.pyo
277
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newsearchfeed.pyc
276
%%PYTHON_SITELIBDIR%%/miro/frontends/html/playbackcontroller.py
278
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newsearchfeed.pyo
277
%%PYTHON_SITELIBDIR%%/miro/frontends/html/playbackcontroller.pyc
279
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/playback.py
278
%%PYTHON_SITELIBDIR%%/miro/frontends/html/playbackcontroller.pyo
280
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/playback.pyc
279
%%PYTHON_SITELIBDIR%%/miro/frontends/html/template.py
281
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/playback.pyo
280
%%PYTHON_SITELIBDIR%%/miro/frontends/html/template.pyc
282
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/playlist.py
281
%%PYTHON_SITELIBDIR%%/miro/frontends/html/template.pyo
283
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/playlist.pyc
282
%%PYTHON_SITELIBDIR%%/miro/frontends/html/template_compiler.py
284
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/playlist.pyo
283
%%PYTHON_SITELIBDIR%%/miro/frontends/html/template_compiler.pyc
285
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/prefpanel.py
284
%%PYTHON_SITELIBDIR%%/miro/frontends/html/template_compiler.pyo
286
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/prefpanel.pyc
285
%%PYTHON_SITELIBDIR%%/miro/frontends/html/templatedisplay.py
287
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/prefpanel.pyo
286
%%PYTHON_SITELIBDIR%%/miro/frontends/html/templatedisplay.pyc
288
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/quitwhiledownloading.py
287
%%PYTHON_SITELIBDIR%%/miro/frontends/html/templatedisplay.pyo
289
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/quitwhiledownloading.pyc
288
%%PYTHON_SITELIBDIR%%/miro/frontends/html/templatehelper.py
290
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/quitwhiledownloading.pyo
289
%%PYTHON_SITELIBDIR%%/miro/frontends/html/templatehelper.pyc
291
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/removefeeds.py
290
%%PYTHON_SITELIBDIR%%/miro/frontends/html/templatehelper.pyo
292
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/removefeeds.pyc
291
%%PYTHON_SITELIBDIR%%/miro/frontends/html/templateoptimize.py
293
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/removefeeds.pyo
292
%%PYTHON_SITELIBDIR%%/miro/frontends/html/templateoptimize.pyc
294
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/rundialog.py
293
%%PYTHON_SITELIBDIR%%/miro/frontends/html/templateoptimize.pyo
295
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/rundialog.pyc
296
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/rundialog.pyo
297
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/search.py
298
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/search.pyc
299
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/search.pyo
300
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/searchbox.py
301
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/searchbox.pyc
302
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/searchbox.pyo
303
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/separator.py
304
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/separator.pyc
305
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/separator.pyo
306
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/statictabs.py
307
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/statictabs.pyc
308
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/statictabs.pyo
309
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/style.py
310
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/style.pyc
311
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/style.pyo
312
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablist.py
313
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablist.pyc
314
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablist.pyo
315
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablistmanager.py
316
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablistmanager.pyc
317
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablistmanager.pyo
318
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/util.py
319
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/util.pyc
320
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/util.pyo
321
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videobox.py
322
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videobox.pyc
323
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videobox.pyo
324
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/watchedfolders.py
325
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/watchedfolders.pyc
326
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/watchedfolders.pyo
327
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/widgetconst.py
328
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/widgetconst.pyc
329
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/widgetconst.pyo
330
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/widgetutil.py
331
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/widgetutil.pyc
332
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/widgetutil.pyo
333
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/window.py
334
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/window.pyc
335
%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/window.pyo
336
%%PYTHON_SITELIBDIR%%/miro/frontendstate.py
337
%%PYTHON_SITELIBDIR%%/miro/frontendstate.pyc
338
%%PYTHON_SITELIBDIR%%/miro/frontendstate.pyo
294
%%PYTHON_SITELIBDIR%%/miro/gtcache.py
339
%%PYTHON_SITELIBDIR%%/miro/gtcache.py
295
%%PYTHON_SITELIBDIR%%/miro/gtcache.pyc
340
%%PYTHON_SITELIBDIR%%/miro/gtcache.pyc
296
%%PYTHON_SITELIBDIR%%/miro/gtcache.pyo
341
%%PYTHON_SITELIBDIR%%/miro/gtcache.pyo
Lines 306-317 Link Here
306
%%PYTHON_SITELIBDIR%%/miro/iconcache.py
351
%%PYTHON_SITELIBDIR%%/miro/iconcache.py
307
%%PYTHON_SITELIBDIR%%/miro/iconcache.pyc
352
%%PYTHON_SITELIBDIR%%/miro/iconcache.pyc
308
%%PYTHON_SITELIBDIR%%/miro/iconcache.pyo
353
%%PYTHON_SITELIBDIR%%/miro/iconcache.pyo
309
%%PYTHON_SITELIBDIR%%/miro/iheartmiro.py
310
%%PYTHON_SITELIBDIR%%/miro/iheartmiro.pyc
311
%%PYTHON_SITELIBDIR%%/miro/iheartmiro.pyo
312
%%PYTHON_SITELIBDIR%%/miro/imageresize.py
313
%%PYTHON_SITELIBDIR%%/miro/imageresize.pyc
314
%%PYTHON_SITELIBDIR%%/miro/imageresize.pyo
315
%%PYTHON_SITELIBDIR%%/miro/indexes.py
354
%%PYTHON_SITELIBDIR%%/miro/indexes.py
316
%%PYTHON_SITELIBDIR%%/miro/indexes.pyc
355
%%PYTHON_SITELIBDIR%%/miro/indexes.pyc
317
%%PYTHON_SITELIBDIR%%/miro/indexes.pyo
356
%%PYTHON_SITELIBDIR%%/miro/indexes.pyo
Lines 319-333 Link Here
319
%%PYTHON_SITELIBDIR%%/miro/item.pyc
358
%%PYTHON_SITELIBDIR%%/miro/item.pyc
320
%%PYTHON_SITELIBDIR%%/miro/item.pyo
359
%%PYTHON_SITELIBDIR%%/miro/item.pyo
321
%%PYTHON_SITELIBDIR%%/miro/libtorrent.so
360
%%PYTHON_SITELIBDIR%%/miro/libtorrent.so
322
%%PYTHON_SITELIBDIR%%/miro/license.py
323
%%PYTHON_SITELIBDIR%%/miro/license.pyc
324
%%PYTHON_SITELIBDIR%%/miro/license.pyo
325
%%PYTHON_SITELIBDIR%%/miro/maps.py
361
%%PYTHON_SITELIBDIR%%/miro/maps.py
326
%%PYTHON_SITELIBDIR%%/miro/maps.pyc
362
%%PYTHON_SITELIBDIR%%/miro/maps.pyc
327
%%PYTHON_SITELIBDIR%%/miro/maps.pyo
363
%%PYTHON_SITELIBDIR%%/miro/maps.pyo
328
%%PYTHON_SITELIBDIR%%/miro/menubar.py
364
%%PYTHON_SITELIBDIR%%/miro/menubar.py
329
%%PYTHON_SITELIBDIR%%/miro/menubar.pyc
365
%%PYTHON_SITELIBDIR%%/miro/menubar.pyc
330
%%PYTHON_SITELIBDIR%%/miro/menubar.pyo
366
%%PYTHON_SITELIBDIR%%/miro/menubar.pyo
367
%%PYTHON_SITELIBDIR%%/miro/messagehandler.py
368
%%PYTHON_SITELIBDIR%%/miro/messagehandler.pyc
369
%%PYTHON_SITELIBDIR%%/miro/messagehandler.pyo
370
%%PYTHON_SITELIBDIR%%/miro/messages.py
371
%%PYTHON_SITELIBDIR%%/miro/messages.pyc
372
%%PYTHON_SITELIBDIR%%/miro/messages.pyo
331
%%PYTHON_SITELIBDIR%%/miro/moviedata.py
373
%%PYTHON_SITELIBDIR%%/miro/moviedata.py
332
%%PYTHON_SITELIBDIR%%/miro/moviedata.pyc
374
%%PYTHON_SITELIBDIR%%/miro/moviedata.pyc
333
%%PYTHON_SITELIBDIR%%/miro/moviedata.pyo
375
%%PYTHON_SITELIBDIR%%/miro/moviedata.pyo
Lines 337-431 Link Here
337
%%PYTHON_SITELIBDIR%%/miro/opml.py
379
%%PYTHON_SITELIBDIR%%/miro/opml.py
338
%%PYTHON_SITELIBDIR%%/miro/opml.pyc
380
%%PYTHON_SITELIBDIR%%/miro/opml.pyc
339
%%PYTHON_SITELIBDIR%%/miro/opml.pyo
381
%%PYTHON_SITELIBDIR%%/miro/opml.pyo
340
%%PYTHON_SITELIBDIR%%/miro/platform/MozillaBrowser.so
382
%%PYTHON_SITELIBDIR%%/miro/plat/__init__.py
341
%%PYTHON_SITELIBDIR%%/miro/platform/__init__.py
383
%%PYTHON_SITELIBDIR%%/miro/plat/__init__.pyc
342
%%PYTHON_SITELIBDIR%%/miro/platform/__init__.pyc
384
%%PYTHON_SITELIBDIR%%/miro/plat/__init__.pyo
343
%%PYTHON_SITELIBDIR%%/miro/platform/__init__.pyo
385
%%PYTHON_SITELIBDIR%%/miro/plat/config.py
344
%%PYTHON_SITELIBDIR%%/miro/platform/config.py
386
%%PYTHON_SITELIBDIR%%/miro/plat/config.pyc
345
%%PYTHON_SITELIBDIR%%/miro/platform/config.pyc
387
%%PYTHON_SITELIBDIR%%/miro/plat/config.pyo
346
%%PYTHON_SITELIBDIR%%/miro/platform/config.pyo
388
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/__init__.py
347
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/__init__.py
389
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/__init__.pyc
348
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/__init__.pyc
390
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/__init__.pyo
349
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/__init__.pyo
391
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/__init__.py
350
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/Application.py
392
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/__init__.pyc
351
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/Application.pyc
393
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/__init__.pyo
352
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/Application.pyo
394
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/application.py
353
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/HTMLDisplay.py
395
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/application.pyc
354
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/HTMLDisplay.pyc
396
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/application.pyo
355
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/HTMLDisplay.pyo
397
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/httpobserver.so
356
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/MainFrame.py
398
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/mozprompt.so
357
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/MainFrame.pyc
399
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/pluginsdir.so
358
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/MainFrame.pyo
400
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/prefpanelset.py
359
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/UIBackendDelegate.py
401
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/prefpanelset.pyc
360
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/UIBackendDelegate.pyc
402
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/prefpanelset.pyo
361
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/UIBackendDelegate.pyo
403
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/threads.py
362
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/VideoDisplay.py
404
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/threads.pyc
363
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/VideoDisplay.pyc
405
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/threads.pyo
364
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/VideoDisplay.pyo
406
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/timer.py
365
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/__init__.py
407
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/timer.pyc
366
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/__init__.pyc
408
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/timer.pyo
367
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/__init__.pyo
409
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/widgetset.py
368
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/callbackhandler.py
410
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/widgetset.pyc
369
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/callbackhandler.pyc
411
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/widgetset.pyo
370
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/callbackhandler.pyo
412
%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/windowcreator.so
371
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/gtk_queue.py
413
%%PYTHON_SITELIBDIR%%/miro/plat/idletime.py
372
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/gtk_queue.pyc
414
%%PYTHON_SITELIBDIR%%/miro/plat/idletime.pyc
373
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/gtk_queue.pyo
415
%%PYTHON_SITELIBDIR%%/miro/plat/idletime.pyo
374
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/mainwindowchanger.py
416
%%PYTHON_SITELIBDIR%%/miro/plat/mozsetup.py
375
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/mainwindowchanger.pyc
417
%%PYTHON_SITELIBDIR%%/miro/plat/mozsetup.pyc
376
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/mainwindowchanger.pyo
418
%%PYTHON_SITELIBDIR%%/miro/plat/mozsetup.pyo
377
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/startup.py
419
%%PYTHON_SITELIBDIR%%/miro/plat/onetime.py
378
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/startup.pyc
420
%%PYTHON_SITELIBDIR%%/miro/plat/onetime.pyc
379
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/startup.pyo
421
%%PYTHON_SITELIBDIR%%/miro/plat/onetime.pyo
380
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/threads.py
422
%%PYTHON_SITELIBDIR%%/miro/plat/options.py
381
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/threads.pyc
423
%%PYTHON_SITELIBDIR%%/miro/plat/options.pyc
382
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/threads.pyo
424
%%PYTHON_SITELIBDIR%%/miro/plat/options.pyo
383
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/trayicon.py
425
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/__init__.py
384
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/trayicon.pyc
426
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/__init__.pyc
385
%%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/trayicon.pyo
427
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/__init__.pyo
386
%%PYTHON_SITELIBDIR%%/miro/platform/idletime.py
428
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/gst_extractor.py
387
%%PYTHON_SITELIBDIR%%/miro/platform/idletime.pyc
429
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/gst_extractor.pyc
388
%%PYTHON_SITELIBDIR%%/miro/platform/idletime.pyo
430
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/gst_extractor.pyo
389
%%PYTHON_SITELIBDIR%%/miro/platform/mozsetup.py
431
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/gstreamerrenderer.py
390
%%PYTHON_SITELIBDIR%%/miro/platform/mozsetup.pyc
432
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/gstreamerrenderer.pyc
391
%%PYTHON_SITELIBDIR%%/miro/platform/mozsetup.pyo
433
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/gstreamerrenderer.pyo
392
%%PYTHON_SITELIBDIR%%/miro/platform/onetime.py
434
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/xinerenderer.py
393
%%PYTHON_SITELIBDIR%%/miro/platform/onetime.pyc
435
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/xinerenderer.pyc
394
%%PYTHON_SITELIBDIR%%/miro/platform/onetime.pyo
436
%%PYTHON_SITELIBDIR%%/miro/plat/renderers/xinerenderer.pyo
395
%%PYTHON_SITELIBDIR%%/miro/platform/options.py
437
%%PYTHON_SITELIBDIR%%/miro/plat/resources.py
396
%%PYTHON_SITELIBDIR%%/miro/platform/options.pyc
438
%%PYTHON_SITELIBDIR%%/miro/plat/resources.pyc
397
%%PYTHON_SITELIBDIR%%/miro/platform/options.pyo
439
%%PYTHON_SITELIBDIR%%/miro/plat/resources.pyo
398
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/__init__.py
440
%%PYTHON_SITELIBDIR%%/miro/plat/screensaver.py
399
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/__init__.pyc
441
%%PYTHON_SITELIBDIR%%/miro/plat/screensaver.pyc
400
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/__init__.pyo
442
%%PYTHON_SITELIBDIR%%/miro/plat/screensaver.pyo
401
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/gst_extractor.py
443
%%PYTHON_SITELIBDIR%%/miro/plat/upgrade.py
402
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/gst_extractor.pyc
444
%%PYTHON_SITELIBDIR%%/miro/plat/upgrade.pyc
403
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/gst_extractor.pyo
445
%%PYTHON_SITELIBDIR%%/miro/plat/upgrade.pyo
404
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/gstreamerrenderer.py
446
%%PYTHON_SITELIBDIR%%/miro/plat/utils.py
405
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/gstreamerrenderer.pyc
447
%%PYTHON_SITELIBDIR%%/miro/plat/utils.pyc
406
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/gstreamerrenderer.pyo
448
%%PYTHON_SITELIBDIR%%/miro/plat/utils.pyo
407
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/xinerenderer.py
449
%%PYTHON_SITELIBDIR%%/miro/plat/xlibhelper.so
408
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/xinerenderer.pyc
409
%%PYTHON_SITELIBDIR%%/miro/platform/renderers/xinerenderer.pyo
410
%%PYTHON_SITELIBDIR%%/miro/platform/resources.py
411
%%PYTHON_SITELIBDIR%%/miro/platform/resources.pyc
412
%%PYTHON_SITELIBDIR%%/miro/platform/resources.pyo
413
%%PYTHON_SITELIBDIR%%/miro/platform/upgrade.py
414
%%PYTHON_SITELIBDIR%%/miro/platform/upgrade.pyc
415
%%PYTHON_SITELIBDIR%%/miro/platform/upgrade.pyo
416
%%PYTHON_SITELIBDIR%%/miro/platform/utils.py
417
%%PYTHON_SITELIBDIR%%/miro/platform/utils.pyc
418
%%PYTHON_SITELIBDIR%%/miro/platform/utils.pyo
419
%%PYTHON_SITELIBDIR%%/miro/platform/xlibhelper.so
420
%%PYTHON_SITELIBDIR%%/miro/playlist.py
450
%%PYTHON_SITELIBDIR%%/miro/playlist.py
421
%%PYTHON_SITELIBDIR%%/miro/playlist.pyc
451
%%PYTHON_SITELIBDIR%%/miro/playlist.pyc
422
%%PYTHON_SITELIBDIR%%/miro/playlist.pyo
452
%%PYTHON_SITELIBDIR%%/miro/playlist.pyo
423
%%PYTHON_SITELIBDIR%%/miro/prefs.py
453
%%PYTHON_SITELIBDIR%%/miro/prefs.py
424
%%PYTHON_SITELIBDIR%%/miro/prefs.pyc
454
%%PYTHON_SITELIBDIR%%/miro/prefs.pyc
425
%%PYTHON_SITELIBDIR%%/miro/prefs.pyo
455
%%PYTHON_SITELIBDIR%%/miro/prefs.pyo
426
%%PYTHON_SITELIBDIR%%/miro/rdfa.py
427
%%PYTHON_SITELIBDIR%%/miro/rdfa.pyc
428
%%PYTHON_SITELIBDIR%%/miro/rdfa.pyo
429
%%PYTHON_SITELIBDIR%%/miro/schema.py
456
%%PYTHON_SITELIBDIR%%/miro/schema.py
430
%%PYTHON_SITELIBDIR%%/miro/schema.pyc
457
%%PYTHON_SITELIBDIR%%/miro/schema.pyc
431
%%PYTHON_SITELIBDIR%%/miro/schema.pyo
458
%%PYTHON_SITELIBDIR%%/miro/schema.pyo
Lines 435-446 Link Here
435
%%PYTHON_SITELIBDIR%%/miro/searchengines.py
462
%%PYTHON_SITELIBDIR%%/miro/searchengines.py
436
%%PYTHON_SITELIBDIR%%/miro/searchengines.pyc
463
%%PYTHON_SITELIBDIR%%/miro/searchengines.pyc
437
%%PYTHON_SITELIBDIR%%/miro/searchengines.pyo
464
%%PYTHON_SITELIBDIR%%/miro/searchengines.pyo
438
%%PYTHON_SITELIBDIR%%/miro/selection.py
439
%%PYTHON_SITELIBDIR%%/miro/selection.pyc
440
%%PYTHON_SITELIBDIR%%/miro/selection.pyo
441
%%PYTHON_SITELIBDIR%%/miro/setup_portable.py
442
%%PYTHON_SITELIBDIR%%/miro/setup_portable.pyc
443
%%PYTHON_SITELIBDIR%%/miro/setup_portable.pyo
444
%%PYTHON_SITELIBDIR%%/miro/signals.py
465
%%PYTHON_SITELIBDIR%%/miro/signals.py
445
%%PYTHON_SITELIBDIR%%/miro/signals.pyc
466
%%PYTHON_SITELIBDIR%%/miro/signals.pyc
446
%%PYTHON_SITELIBDIR%%/miro/signals.pyo
467
%%PYTHON_SITELIBDIR%%/miro/signals.pyo
Lines 484-498 Link Here
484
%%PYTHON_SITELIBDIR%%/miro/test/feedtest.py
505
%%PYTHON_SITELIBDIR%%/miro/test/feedtest.py
485
%%PYTHON_SITELIBDIR%%/miro/test/feedtest.pyc
506
%%PYTHON_SITELIBDIR%%/miro/test/feedtest.pyc
486
%%PYTHON_SITELIBDIR%%/miro/test/feedtest.pyo
507
%%PYTHON_SITELIBDIR%%/miro/test/feedtest.pyo
508
%%PYTHON_SITELIBDIR%%/miro/test/filetypestest.py
509
%%PYTHON_SITELIBDIR%%/miro/test/filetypestest.pyc
510
%%PYTHON_SITELIBDIR%%/miro/test/filetypestest.pyo
487
%%PYTHON_SITELIBDIR%%/miro/test/framework.py
511
%%PYTHON_SITELIBDIR%%/miro/test/framework.py
488
%%PYTHON_SITELIBDIR%%/miro/test/framework.pyc
512
%%PYTHON_SITELIBDIR%%/miro/test/framework.pyc
489
%%PYTHON_SITELIBDIR%%/miro/test/framework.pyo
513
%%PYTHON_SITELIBDIR%%/miro/test/framework.pyo
514
%%PYTHON_SITELIBDIR%%/miro/test/gtcachetest.py
515
%%PYTHON_SITELIBDIR%%/miro/test/gtcachetest.pyc
516
%%PYTHON_SITELIBDIR%%/miro/test/gtcachetest.pyo
490
%%PYTHON_SITELIBDIR%%/miro/test/httpclienttest.py
517
%%PYTHON_SITELIBDIR%%/miro/test/httpclienttest.py
491
%%PYTHON_SITELIBDIR%%/miro/test/httpclienttest.pyc
518
%%PYTHON_SITELIBDIR%%/miro/test/httpclienttest.pyc
492
%%PYTHON_SITELIBDIR%%/miro/test/httpclienttest.pyo
519
%%PYTHON_SITELIBDIR%%/miro/test/httpclienttest.pyo
493
%%PYTHON_SITELIBDIR%%/miro/test/httpdownloadertest.py
520
%%PYTHON_SITELIBDIR%%/miro/test/httpdownloadertest.py
494
%%PYTHON_SITELIBDIR%%/miro/test/httpdownloadertest.pyc
521
%%PYTHON_SITELIBDIR%%/miro/test/httpdownloadertest.pyc
495
%%PYTHON_SITELIBDIR%%/miro/test/httpdownloadertest.pyo
522
%%PYTHON_SITELIBDIR%%/miro/test/httpdownloadertest.pyo
523
%%PYTHON_SITELIBDIR%%/miro/test/messagetest.py
524
%%PYTHON_SITELIBDIR%%/miro/test/messagetest.pyc
525
%%PYTHON_SITELIBDIR%%/miro/test/messagetest.pyo
496
%%PYTHON_SITELIBDIR%%/miro/test/olddatabaseupgradetest.py
526
%%PYTHON_SITELIBDIR%%/miro/test/olddatabaseupgradetest.py
497
%%PYTHON_SITELIBDIR%%/miro/test/olddatabaseupgradetest.pyc
527
%%PYTHON_SITELIBDIR%%/miro/test/olddatabaseupgradetest.pyc
498
%%PYTHON_SITELIBDIR%%/miro/test/olddatabaseupgradetest.pyo
528
%%PYTHON_SITELIBDIR%%/miro/test/olddatabaseupgradetest.pyo
Lines 514-537 Link Here
514
%%PYTHON_SITELIBDIR%%/miro/test/storedatabasetest.py
544
%%PYTHON_SITELIBDIR%%/miro/test/storedatabasetest.py
515
%%PYTHON_SITELIBDIR%%/miro/test/storedatabasetest.pyc
545
%%PYTHON_SITELIBDIR%%/miro/test/storedatabasetest.pyc
516
%%PYTHON_SITELIBDIR%%/miro/test/storedatabasetest.pyo
546
%%PYTHON_SITELIBDIR%%/miro/test/storedatabasetest.pyo
547
%%PYTHON_SITELIBDIR%%/miro/test/strippertest.py
548
%%PYTHON_SITELIBDIR%%/miro/test/strippertest.pyc
549
%%PYTHON_SITELIBDIR%%/miro/test/strippertest.pyo
517
%%PYTHON_SITELIBDIR%%/miro/test/subscriptiontest.py
550
%%PYTHON_SITELIBDIR%%/miro/test/subscriptiontest.py
518
%%PYTHON_SITELIBDIR%%/miro/test/subscriptiontest.pyc
551
%%PYTHON_SITELIBDIR%%/miro/test/subscriptiontest.pyc
519
%%PYTHON_SITELIBDIR%%/miro/test/subscriptiontest.pyo
552
%%PYTHON_SITELIBDIR%%/miro/test/subscriptiontest.pyo
520
%%PYTHON_SITELIBDIR%%/miro/test/templatetest.py
521
%%PYTHON_SITELIBDIR%%/miro/test/templatetest.pyc
522
%%PYTHON_SITELIBDIR%%/miro/test/templatetest.pyo
523
%%PYTHON_SITELIBDIR%%/miro/test/unicodetest.py
553
%%PYTHON_SITELIBDIR%%/miro/test/unicodetest.py
524
%%PYTHON_SITELIBDIR%%/miro/test/unicodetest.pyc
554
%%PYTHON_SITELIBDIR%%/miro/test/unicodetest.pyc
525
%%PYTHON_SITELIBDIR%%/miro/test/unicodetest.pyo
555
%%PYTHON_SITELIBDIR%%/miro/test/unicodetest.pyo
526
%%PYTHON_SITELIBDIR%%/miro/test/utiltest.py
556
%%PYTHON_SITELIBDIR%%/miro/test/utiltest.py
527
%%PYTHON_SITELIBDIR%%/miro/test/utiltest.pyc
557
%%PYTHON_SITELIBDIR%%/miro/test/utiltest.pyc
528
%%PYTHON_SITELIBDIR%%/miro/test/utiltest.pyo
558
%%PYTHON_SITELIBDIR%%/miro/test/utiltest.pyo
559
%%PYTHON_SITELIBDIR%%/miro/test/xhtmltest.py
560
%%PYTHON_SITELIBDIR%%/miro/test/xhtmltest.pyc
561
%%PYTHON_SITELIBDIR%%/miro/test/xhtmltest.pyo
529
%%PYTHON_SITELIBDIR%%/miro/theme.py
562
%%PYTHON_SITELIBDIR%%/miro/theme.py
530
%%PYTHON_SITELIBDIR%%/miro/theme.pyc
563
%%PYTHON_SITELIBDIR%%/miro/theme.pyc
531
%%PYTHON_SITELIBDIR%%/miro/theme.pyo
564
%%PYTHON_SITELIBDIR%%/miro/theme.pyo
532
%%PYTHON_SITELIBDIR%%/miro/trapcall.py
565
%%PYTHON_SITELIBDIR%%/miro/trapcall.py
533
%%PYTHON_SITELIBDIR%%/miro/trapcall.pyc
566
%%PYTHON_SITELIBDIR%%/miro/trapcall.pyc
534
%%PYTHON_SITELIBDIR%%/miro/trapcall.pyo
567
%%PYTHON_SITELIBDIR%%/miro/trapcall.pyo
568
%%PYTHON_SITELIBDIR%%/miro/u3info.py
569
%%PYTHON_SITELIBDIR%%/miro/u3info.pyc
570
%%PYTHON_SITELIBDIR%%/miro/u3info.pyo
535
%%PYTHON_SITELIBDIR%%/miro/util.py
571
%%PYTHON_SITELIBDIR%%/miro/util.py
536
%%PYTHON_SITELIBDIR%%/miro/util.pyc
572
%%PYTHON_SITELIBDIR%%/miro/util.pyc
537
%%PYTHON_SITELIBDIR%%/miro/util.pyo
573
%%PYTHON_SITELIBDIR%%/miro/util.pyo
Lines 542-838 Link Here
542
%%PYTHON_SITELIBDIR%%/miro/xhtmltools.pyc
578
%%PYTHON_SITELIBDIR%%/miro/xhtmltools.pyc
543
%%PYTHON_SITELIBDIR%%/miro/xhtmltools.pyo
579
%%PYTHON_SITELIBDIR%%/miro/xhtmltools.pyo
544
%%PYTHON_SITELIBDIR%%/miro/xine.so
580
%%PYTHON_SITELIBDIR%%/miro/xine.so
545
%%DESKTOPDIR%%/miro.desktop
581
libexec/miro/xine_extractor
546
%%DATADIR%%/resources/app.config
582
share/applications/miro.desktop
547
%%DATADIR%%/resources/channels.png
548
%%DATADIR%%/resources/css/download.css
549
%%DATADIR%%/resources/css/external.css
550
%%DATADIR%%/resources/css/intro.css
551
%%DATADIR%%/resources/css/main.css
552
%%DATADIR%%/resources/css/nav-bar.css
553
%%DATADIR%%/resources/css/style.css
554
%%DATADIR%%/resources/css/video-info.css
555
%%DATADIR%%/resources/disk-space.png
556
%%DATADIR%%/resources/downloads.png
557
%%DATADIR%%/resources/dtvapi.js
558
%%DATADIR%%/resources/folders.png
559
%%DATADIR%%/resources/general.png
560
%%DATADIR%%/resources/html/guide-navigation.html
561
%%DATADIR%%/resources/images/active_channel_bg.png
562
%%DATADIR%%/resources/images/auto-select-box-left.png
563
%%DATADIR%%/resources/images/auto-select-box-mid.png
564
%%DATADIR%%/resources/images/auto-select-box-right.png
565
%%DATADIR%%/resources/images/available-bar-bg.png
566
%%DATADIR%%/resources/images/badge-blue-left.png
567
%%DATADIR%%/resources/images/badge-blue-mid.png
568
%%DATADIR%%/resources/images/badge-blue-right.png
569
%%DATADIR%%/resources/images/badge-green-left.png
570
%%DATADIR%%/resources/images/badge-green-mid.png
571
%%DATADIR%%/resources/images/badge-green-right.png
572
%%DATADIR%%/resources/images/bgr_unwatched.png
573
%%DATADIR%%/resources/images/black-button-left.png
574
%%DATADIR%%/resources/images/black-button-mid.png
575
%%DATADIR%%/resources/images/black-button-right.png
576
%%DATADIR%%/resources/images/blue.gif
577
%%DATADIR%%/resources/images/channel_bg.png
578
%%DATADIR%%/resources/images/channel_gradient.gif
579
%%DATADIR%%/resources/images/channel_guide.png
580
%%DATADIR%%/resources/images/channelguide-icon-tablist.png
581
%%DATADIR%%/resources/images/channelguide-icon.png
582
%%DATADIR%%/resources/images/circle-blue-left.png
583
%%DATADIR%%/resources/images/circle-blue-mid.png
584
%%DATADIR%%/resources/images/circle-blue-right.png
585
%%DATADIR%%/resources/images/circle-green-left.png
586
%%DATADIR%%/resources/images/circle-green-mid.png
587
%%DATADIR%%/resources/images/circle-green-right.png
588
%%DATADIR%%/resources/images/circle-orange-left.png
589
%%DATADIR%%/resources/images/circle-orange-mid.png
590
%%DATADIR%%/resources/images/circle-orange-right.png
591
%%DATADIR%%/resources/images/circle-white-left.png
592
%%DATADIR%%/resources/images/circle-white-mid.png
593
%%DATADIR%%/resources/images/circle-white-right.png
594
%%DATADIR%%/resources/images/clear.png
595
%%DATADIR%%/resources/images/collection-icon-tablist.png
596
%%DATADIR%%/resources/images/collection-icon.png
597
%%DATADIR%%/resources/images/container-icon.png
598
%%DATADIR%%/resources/images/delicious.gif
599
%%DATADIR%%/resources/images/digg.gif
600
%%DATADIR%%/resources/images/dividerback.gif
601
%%DATADIR%%/resources/images/dnd-highlight-left.png
602
%%DATADIR%%/resources/images/dnd-highlight-mid.png
603
%%DATADIR%%/resources/images/dnd-highlight-right.png
604
%%DATADIR%%/resources/images/dnd-reorder-circle.png
605
%%DATADIR%%/resources/images/dnd-reorder-line.png
606
%%DATADIR%%/resources/images/download-channelbar-bg.png
607
%%DATADIR%%/resources/images/download-icon-tab.png
608
%%DATADIR%%/resources/images/download-icon.png
609
%%DATADIR%%/resources/images/download-pending-dot.png
610
%%DATADIR%%/resources/images/downloaded-bar-bg.png
611
%%DATADIR%%/resources/images/downloading-bar-bg.png
612
%%DATADIR%%/resources/images/dqueue_back.png
613
%%DATADIR%%/resources/images/email-a-friend.gif
614
%%DATADIR%%/resources/images/everything_icon.png
615
%%DATADIR%%/resources/images/ext-button-left-edge.gif
616
%%DATADIR%%/resources/images/ext-button-left.gif
617
%%DATADIR%%/resources/images/feed-loading-bg.png
618
%%DATADIR%%/resources/images/feed-loading-normal.gif
619
%%DATADIR%%/resources/images/feed-loading-selected-inactive.gif
620
%%DATADIR%%/resources/images/feed-loading-selected.gif
621
%%DATADIR%%/resources/images/feed-settings-close.png
622
%%DATADIR%%/resources/images/feedicon-tablist.png
623
%%DATADIR%%/resources/images/feedicon.gif
624
%%DATADIR%%/resources/images/feedicon.png
625
%%DATADIR%%/resources/images/folder-icon-tablist.png
626
%%DATADIR%%/resources/images/folder-icon.png
627
%%DATADIR%%/resources/images/graybutton-left.png
628
%%DATADIR%%/resources/images/graybutton-mid.png
629
%%DATADIR%%/resources/images/graybutton-right.png
630
%%DATADIR%%/resources/images/home-button-left.png
631
%%DATADIR%%/resources/images/home-button-middle.png
632
%%DATADIR%%/resources/images/home-button-right.png
633
%%DATADIR%%/resources/images/inactive_channel_bg.png
634
%%DATADIR%%/resources/images/intro-circles.png
635
%%DATADIR%%/resources/images/intro-expiration.png
636
%%DATADIR%%/resources/images/intro-fullscreen_button.png
637
%%DATADIR%%/resources/images/intro-go_to_channel_guide.png
638
%%DATADIR%%/resources/images/load-indicator.gif
639
%%DATADIR%%/resources/images/loader.gif
640
%%DATADIR%%/resources/images/loader_small.gif
641
%%DATADIR%%/resources/images/loading.gif
642
%%DATADIR%%/resources/images/magnifying_glass.png
643
%%DATADIR%%/resources/images/main-bar-bg-download.png
644
%%DATADIR%%/resources/images/main-bar-bg.png
645
%%DATADIR%%/resources/images/main-cancel.png
646
%%DATADIR%%/resources/images/main-icon-bomb.png
647
%%DATADIR%%/resources/images/main-icon-mail-titlebar.png
648
%%DATADIR%%/resources/images/main-icon-mail.png
649
%%DATADIR%%/resources/images/main-icon-settings.png
650
%%DATADIR%%/resources/images/main-icon-trash.png
651
%%DATADIR%%/resources/images/main-new-bg.png
652
%%DATADIR%%/resources/images/main-new-right.png
653
%%DATADIR%%/resources/images/main-notification-bg.png
654
%%DATADIR%%/resources/images/main-notification-right.png
655
%%DATADIR%%/resources/images/main-titlebar-bg.png
656
%%DATADIR%%/resources/images/main-unwatched-bg.png
657
%%DATADIR%%/resources/images/main-video-bg-hover-green.png
658
%%DATADIR%%/resources/images/main-video-bg-hover.png
659
%%DATADIR%%/resources/images/main-video-bg-selected.png
660
%%DATADIR%%/resources/images/main-video-bg-unwatched.png
661
%%DATADIR%%/resources/images/main-video-bg.png
662
%%DATADIR%%/resources/images/main-video-download.png
663
%%DATADIR%%/resources/images/main-video-inprogress-arrows.gif
664
%%DATADIR%%/resources/images/main-video-inprogress.png
665
%%DATADIR%%/resources/images/main-video-paused.png
666
%%DATADIR%%/resources/images/main-video-play.png
667
%%DATADIR%%/resources/images/main-video-share.png
668
%%DATADIR%%/resources/images/main-video-tnailhover.png
669
%%DATADIR%%/resources/images/main-watched-bg.png
670
%%DATADIR%%/resources/images/mini-mail.png
671
%%DATADIR%%/resources/images/mini-star.png
672
%%DATADIR%%/resources/images/more-info-button-close.png
673
%%DATADIR%%/resources/images/more-info-button.png
674
%%DATADIR%%/resources/images/nav-bar.png
675
%%DATADIR%%/resources/images/navigation_back.png
676
%%DATADIR%%/resources/images/new.png
677
%%DATADIR%%/resources/images/newstar.png
678
%%DATADIR%%/resources/images/newvideos-icon-tablist.png
679
%%DATADIR%%/resources/images/newvideos-icon.png
680
%%DATADIR%%/resources/images/next.png
681
%%DATADIR%%/resources/images/orange_filler.png
682
%%DATADIR%%/resources/images/pause-all-downloads.png
683
%%DATADIR%%/resources/images/play.png
684
%%DATADIR%%/resources/images/playlist-icon-tablist.png
685
%%DATADIR%%/resources/images/playlist-icon.png
686
%%DATADIR%%/resources/images/previous.png
687
%%DATADIR%%/resources/images/progress-bar-bg.png
688
%%DATADIR%%/resources/images/progress-bar.png
689
%%DATADIR%%/resources/images/progress-throbber-bg.png
690
%%DATADIR%%/resources/images/progress-throbber-gray.png
691
%%DATADIR%%/resources/images/progress-throbber.gif
692
%%DATADIR%%/resources/images/reddit.gif
693
%%DATADIR%%/resources/images/resume-all-downloads.png
694
%%DATADIR%%/resources/images/round-button-left.png
695
%%DATADIR%%/resources/images/round-button-mid.png
696
%%DATADIR%%/resources/images/round-button-right.png
697
%%DATADIR%%/resources/images/scraping-indicator-left.gif
698
%%DATADIR%%/resources/images/scraping-indicator-right.gif
699
%%DATADIR%%/resources/images/search-icon-tablist.png
700
%%DATADIR%%/resources/images/search-icon.png
701
%%DATADIR%%/resources/images/search_icon_all.png
702
%%DATADIR%%/resources/images/search_icon_bliptv.png
703
%%DATADIR%%/resources/images/search_icon_blogdigger.png
704
%%DATADIR%%/resources/images/search_icon_dailymotion.png
705
%%DATADIR%%/resources/images/search_icon_google.png
706
%%DATADIR%%/resources/images/search_icon_mefeedia.png
707
%%DATADIR%%/resources/images/search_icon_revver.png
708
%%DATADIR%%/resources/images/search_icon_veoh.png
709
%%DATADIR%%/resources/images/search_icon_yahoosearch.png
710
%%DATADIR%%/resources/images/search_icon_yahoovideo.png
711
%%DATADIR%%/resources/images/search_icon_youtube.png
712
%%DATADIR%%/resources/images/selected_dqueue_back.gif
713
%%DATADIR%%/resources/images/selected_dqueue_back.png
714
%%DATADIR%%/resources/images/selectedback.png
715
%%DATADIR%%/resources/images/selectedbackgrey.png
716
%%DATADIR%%/resources/images/separator.png
717
%%DATADIR%%/resources/images/settings-shadow.png
718
%%DATADIR%%/resources/images/share-right.png
719
%%DATADIR%%/resources/images/sidebar-downloadtab-fade.png
720
%%DATADIR%%/resources/images/sidebar-tab-bg-selected.png
721
%%DATADIR%%/resources/images/sidebar_tab_back.png
722
%%DATADIR%%/resources/images/sidebartab_active.png
723
%%DATADIR%%/resources/images/small-button-left.png
724
%%DATADIR%%/resources/images/small-button-middle.png
725
%%DATADIR%%/resources/images/small-button-right.png
726
%%DATADIR%%/resources/images/sort-active-back-left.png
727
%%DATADIR%%/resources/images/sort-active-back-mid.png
728
%%DATADIR%%/resources/images/sort-active-back-right.png
729
%%DATADIR%%/resources/images/sort-bar-back.png
730
%%DATADIR%%/resources/images/sort-down.png
731
%%DATADIR%%/resources/images/sort-up.png
732
%%DATADIR%%/resources/images/status.png
733
%%DATADIR%%/resources/images/status_background.png
734
%%DATADIR%%/resources/images/subscribe_example.png
735
%%DATADIR%%/resources/images/tab-arrow-down.png
736
%%DATADIR%%/resources/images/tab-arrow-up.png
737
%%DATADIR%%/resources/images/tab_active.png
738
%%DATADIR%%/resources/images/tab_divider.png
739
%%DATADIR%%/resources/images/tab_hover.gif
740
%%DATADIR%%/resources/images/tab_hover.png
741
%%DATADIR%%/resources/images/tabback.png
742
%%DATADIR%%/resources/images/thumb-more-info.png
743
%%DATADIR%%/resources/images/thumb.png
744
%%DATADIR%%/resources/images/triangle-down.png
745
%%DATADIR%%/resources/images/triangle-right.png
746
%%DATADIR%%/resources/images/video-details-tasks-small.png
747
%%DATADIR%%/resources/images/video-download-cancel.png
748
%%DATADIR%%/resources/images/video-download-pause.png
749
%%DATADIR%%/resources/images/video-download-resume.png
750
%%DATADIR%%/resources/images/video_back.png
751
%%DATADIR%%/resources/images/videobomb.gif
752
%%DATADIR%%/resources/images/white-button-left.png
753
%%DATADIR%%/resources/images/white-button-middle.png
754
%%DATADIR%%/resources/images/white-button-right.png
755
%%DATADIR%%/resources/miro.glade
756
%%DATADIR%%/resources/playback.png
757
%%DATADIR%%/resources/searchengines/bliptv.xml
758
%%DATADIR%%/resources/searchengines/blogdigger.xml
759
%%DATADIR%%/resources/searchengines/dailymotion.xml
760
%%DATADIR%%/resources/searchengines/google.xml
761
%%DATADIR%%/resources/searchengines/revver.xml
762
%%DATADIR%%/resources/searchengines/veoh.xml
763
%%DATADIR%%/resources/searchengines/yahoosearch.xml
764
%%DATADIR%%/resources/searchengines/yahoovideo.xml
765
%%DATADIR%%/resources/searchengines/youtube.xml
766
%%DATADIR%%/resources/statictabs.xml
767
%%DATADIR%%/resources/templates/channel
768
%%DATADIR%%/resources/templates/channel-content
769
%%DATADIR%%/resources/templates/channel-folder
770
%%DATADIR%%/resources/templates/channelfoldertab
771
%%DATADIR%%/resources/templates/download
772
%%DATADIR%%/resources/templates/download-item
773
%%DATADIR%%/resources/templates/download-item-description
774
%%DATADIR%%/resources/templates/download-item-details
775
%%DATADIR%%/resources/templates/download-item-inner
776
%%DATADIR%%/resources/templates/download-item-thumbnail
777
%%DATADIR%%/resources/templates/dynamic.js
778
%%DATADIR%%/resources/templates/external-playback
779
%%DATADIR%%/resources/templates/external-playback-continue
780
%%DATADIR%%/resources/templates/external.js
781
%%DATADIR%%/resources/templates/feed-settings
782
%%DATADIR%%/resources/templates/feedtab
783
%%DATADIR%%/resources/templates/guide-loading
784
%%DATADIR%%/resources/templates/guide-loading.js
785
%%DATADIR%%/resources/templates/guidetab
786
%%DATADIR%%/resources/templates/library
787
%%DATADIR%%/resources/templates/multi-channel
788
%%DATADIR%%/resources/templates/multi-playlist
789
%%DATADIR%%/resources/templates/new
790
%%DATADIR%%/resources/templates/osxdnd.js
791
%%DATADIR%%/resources/templates/playlist
792
%%DATADIR%%/resources/templates/playlist-folder
793
%%DATADIR%%/resources/templates/playlistfoldertab
794
%%DATADIR%%/resources/templates/playlisttab
795
%%DATADIR%%/resources/templates/search
796
%%DATADIR%%/resources/templates/search.js
797
%%DATADIR%%/resources/templates/settings.js
798
%%DATADIR%%/resources/templates/sort-bar
799
%%DATADIR%%/resources/templates/static-tab-sort-bar
800
%%DATADIR%%/resources/templates/statictab
801
%%DATADIR%%/resources/templates/tablist
802
%%DATADIR%%/resources/templates/unittest/execute-template
803
%%DATADIR%%/resources/templates/unittest/hide
804
%%DATADIR%%/resources/templates/unittest/include
805
%%DATADIR%%/resources/templates/unittest/include-template
806
%%DATADIR%%/resources/templates/unittest/replace
807
%%DATADIR%%/resources/templates/unittest/replace-with-variable
808
%%DATADIR%%/resources/templates/unittest/simple
809
%%DATADIR%%/resources/templates/unittest/simpleunicode
810
%%DATADIR%%/resources/templates/unittest/translationtest
811
%%DATADIR%%/resources/templates/unittest/update
812
%%DATADIR%%/resources/templates/unittest/update-hide
813
%%DATADIR%%/resources/templates/unittest/view
814
%%DATADIR%%/resources/templates/unittest/view-container-div
815
%%DATADIR%%/resources/templates/unittest/view-double
816
%%DATADIR%%/resources/templates/video-info
817
%%DATADIR%%/resources/testdata/democracy-now-unicode-bug.xml
818
%%DATADIR%%/resources/testdata/hide-result
819
%%DATADIR%%/resources/testdata/olddatabase-0.8.1
820
%%DATADIR%%/resources/testdata/olddatabase-0.8.2
821
%%DATADIR%%/resources/testdata/olddatabase-0.8.2-2
822
%%DATADIR%%/resources/testdata/olddatabase.bug.2003
823
%%DATADIR%%/resources/testdata/olddatabase.bug.2515
824
%%DATADIR%%/resources/testdata/olddatabase.bug.2685
825
%%DATADIR%%/resources/testdata/olddatabase.bug.3163
826
%%DATADIR%%/resources/testdata/olddatabase.bug.4039
827
%%DATADIR%%/resources/testdata/olddatabase.bug.4039.part2
828
%%DATADIR%%/resources/testdata/ooze.rss
829
%%DATADIR%%/resources/testdata/replace-result
830
%%DATADIR%%/resources/testdata/translation-result
831
share/locale/ar/LC_MESSAGES/miro.mo
583
share/locale/ar/LC_MESSAGES/miro.mo
832
share/locale/bg/LC_MESSAGES/miro.mo
584
share/locale/bg/LC_MESSAGES/miro.mo
585
share/locale/bn/LC_MESSAGES/miro.mo
833
share/locale/br/LC_MESSAGES/miro.mo
586
share/locale/br/LC_MESSAGES/miro.mo
834
share/locale/bs/LC_MESSAGES/miro.mo
587
share/locale/bs/LC_MESSAGES/miro.mo
835
share/locale/ca/LC_MESSAGES/miro.mo
588
share/locale/ca/LC_MESSAGES/miro.mo
589
share/locale/ckb/LC_MESSAGES/miro.mo
836
share/locale/cs/LC_MESSAGES/miro.mo
590
share/locale/cs/LC_MESSAGES/miro.mo
837
share/locale/csb/LC_MESSAGES/miro.mo
591
share/locale/csb/LC_MESSAGES/miro.mo
838
share/locale/cy/LC_MESSAGES/miro.mo
592
share/locale/cy/LC_MESSAGES/miro.mo
Lines 840-845 Link Here
840
share/locale/de/LC_MESSAGES/miro.mo
594
share/locale/de/LC_MESSAGES/miro.mo
841
share/locale/el/LC_MESSAGES/miro.mo
595
share/locale/el/LC_MESSAGES/miro.mo
842
share/locale/en_AU/LC_MESSAGES/miro.mo
596
share/locale/en_AU/LC_MESSAGES/miro.mo
597
share/locale/en_CA/LC_MESSAGES/miro.mo
843
share/locale/en_GB/LC_MESSAGES/miro.mo
598
share/locale/en_GB/LC_MESSAGES/miro.mo
844
share/locale/eo/LC_MESSAGES/miro.mo
599
share/locale/eo/LC_MESSAGES/miro.mo
845
share/locale/es/LC_MESSAGES/miro.mo
600
share/locale/es/LC_MESSAGES/miro.mo
Lines 851-856 Link Here
851
share/locale/fo/LC_MESSAGES/miro.mo
606
share/locale/fo/LC_MESSAGES/miro.mo
852
share/locale/fr/LC_MESSAGES/miro.mo
607
share/locale/fr/LC_MESSAGES/miro.mo
853
share/locale/fy/LC_MESSAGES/miro.mo
608
share/locale/fy/LC_MESSAGES/miro.mo
609
share/locale/ga/LC_MESSAGES/miro.mo
854
share/locale/gl/LC_MESSAGES/miro.mo
610
share/locale/gl/LC_MESSAGES/miro.mo
855
share/locale/gu/LC_MESSAGES/miro.mo
611
share/locale/gu/LC_MESSAGES/miro.mo
856
share/locale/he/LC_MESSAGES/miro.mo
612
share/locale/he/LC_MESSAGES/miro.mo
Lines 862-867 Link Here
862
share/locale/it/LC_MESSAGES/miro.mo
618
share/locale/it/LC_MESSAGES/miro.mo
863
share/locale/ja/LC_MESSAGES/miro.mo
619
share/locale/ja/LC_MESSAGES/miro.mo
864
share/locale/ka/LC_MESSAGES/miro.mo
620
share/locale/ka/LC_MESSAGES/miro.mo
621
share/locale/kk/LC_MESSAGES/miro.mo
865
share/locale/ko/LC_MESSAGES/miro.mo
622
share/locale/ko/LC_MESSAGES/miro.mo
866
share/locale/ku/LC_MESSAGES/miro.mo
623
share/locale/ku/LC_MESSAGES/miro.mo
867
share/locale/lt/LC_MESSAGES/miro.mo
624
share/locale/lt/LC_MESSAGES/miro.mo
Lines 875-880 Link Here
875
share/locale/ne/LC_MESSAGES/miro.mo
632
share/locale/ne/LC_MESSAGES/miro.mo
876
share/locale/nl/LC_MESSAGES/miro.mo
633
share/locale/nl/LC_MESSAGES/miro.mo
877
share/locale/nn/LC_MESSAGES/miro.mo
634
share/locale/nn/LC_MESSAGES/miro.mo
635
share/locale/oc/LC_MESSAGES/miro.mo
878
share/locale/pa/LC_MESSAGES/miro.mo
636
share/locale/pa/LC_MESSAGES/miro.mo
879
share/locale/pl/LC_MESSAGES/miro.mo
637
share/locale/pl/LC_MESSAGES/miro.mo
880
share/locale/pt/LC_MESSAGES/miro.mo
638
share/locale/pt/LC_MESSAGES/miro.mo
Lines 893-938 Link Here
893
share/locale/tl/LC_MESSAGES/miro.mo
651
share/locale/tl/LC_MESSAGES/miro.mo
894
share/locale/tr/LC_MESSAGES/miro.mo
652
share/locale/tr/LC_MESSAGES/miro.mo
895
share/locale/uk/LC_MESSAGES/miro.mo
653
share/locale/uk/LC_MESSAGES/miro.mo
654
share/locale/ur/LC_MESSAGES/miro.mo
896
share/locale/vi/LC_MESSAGES/miro.mo
655
share/locale/vi/LC_MESSAGES/miro.mo
897
share/locale/zh_CN/LC_MESSAGES/miro.mo
656
share/locale/zh_CN/LC_MESSAGES/miro.mo
898
share/locale/zh_HK/LC_MESSAGES/miro.mo
657
share/locale/zh_HK/LC_MESSAGES/miro.mo
899
share/locale/zh_TW/LC_MESSAGES/miro.mo
658
share/locale/zh_TW/LC_MESSAGES/miro.mo
659
share/locale/zu/LC_MESSAGES/miro.mo
900
share/mime/packages/miro.xml
660
share/mime/packages/miro.xml
661
%%DATADIR%%/resources/app.config
662
%%DATADIR%%/resources/images/broken-image.gif
663
%%DATADIR%%/resources/images/cancel-button.png
664
%%DATADIR%%/resources/images/channelguide-icon-tablist.png
665
%%DATADIR%%/resources/images/display_center.png
666
%%DATADIR%%/resources/images/display_left.png
667
%%DATADIR%%/resources/images/display_right.png
668
%%DATADIR%%/resources/images/download-arrow.png
669
%%DATADIR%%/resources/images/feedicon.png
670
%%DATADIR%%/resources/images/folder-icon-tablist.png
671
%%DATADIR%%/resources/images/folder-icon.png
672
%%DATADIR%%/resources/images/icon-channel-title.png
673
%%DATADIR%%/resources/images/icon-downloading.png
674
%%DATADIR%%/resources/images/icon-downloading_large.png
675
%%DATADIR%%/resources/images/icon-folder.png
676
%%DATADIR%%/resources/images/icon-guide.png
677
%%DATADIR%%/resources/images/icon-guide_large.png
678
%%DATADIR%%/resources/images/icon-individual.png
679
%%DATADIR%%/resources/images/icon-individual_large.png
680
%%DATADIR%%/resources/images/icon-library.png
681
%%DATADIR%%/resources/images/icon-library_large.png
682
%%DATADIR%%/resources/images/icon-new.png
683
%%DATADIR%%/resources/images/icon-new_large.png
684
%%DATADIR%%/resources/images/icon-playlist.png
685
%%DATADIR%%/resources/images/icon-rss.png
686
%%DATADIR%%/resources/images/icon-search.png
687
%%DATADIR%%/resources/images/icon-search_large.png
688
%%DATADIR%%/resources/images/icon-site.png
689
%%DATADIR%%/resources/images/icon-streaming.png
690
%%DATADIR%%/resources/images/icon-streaming_large.png
691
%%DATADIR%%/resources/images/icon-updating.png
692
%%DATADIR%%/resources/images/list-view-button.png
693
%%DATADIR%%/resources/images/list-view-button_active.png
694
%%DATADIR%%/resources/images/load-indicator.gif
695
%%DATADIR%%/resources/images/navback.png
696
%%DATADIR%%/resources/images/navback_active.png
697
%%DATADIR%%/resources/images/navback_disabled.png
698
%%DATADIR%%/resources/images/navforward.png
699
%%DATADIR%%/resources/images/navforward_active.png
700
%%DATADIR%%/resources/images/navforward_disabled.png
701
%%DATADIR%%/resources/images/navhome.png
702
%%DATADIR%%/resources/images/navhome_active.png
703
%%DATADIR%%/resources/images/navhome_disabled.png
704
%%DATADIR%%/resources/images/navreload.png
705
%%DATADIR%%/resources/images/navreload_active.png
706
%%DATADIR%%/resources/images/navreload_disabled.png
707
%%DATADIR%%/resources/images/navstop.png
708
%%DATADIR%%/resources/images/navstop_active.png
709
%%DATADIR%%/resources/images/navstop_disabled.png
710
%%DATADIR%%/resources/images/normal-view-button.png
711
%%DATADIR%%/resources/images/normal-view-button_active.png
712
%%DATADIR%%/resources/images/pause-button.png
713
%%DATADIR%%/resources/images/pause.png
714
%%DATADIR%%/resources/images/pause_active.png
715
%%DATADIR%%/resources/images/play-button.png
716
%%DATADIR%%/resources/images/play.png
717
%%DATADIR%%/resources/images/play_active.png
718
%%DATADIR%%/resources/images/play_fullscreen.png
719
%%DATADIR%%/resources/images/play_fullscreen_active.png
720
%%DATADIR%%/resources/images/playback_cursor.png
721
%%DATADIR%%/resources/images/playback_track_center.png
722
%%DATADIR%%/resources/images/playback_track_left.png
723
%%DATADIR%%/resources/images/playback_track_progress_center.png
724
%%DATADIR%%/resources/images/playback_track_progress_left.png
725
%%DATADIR%%/resources/images/playback_track_progress_right.png
726
%%DATADIR%%/resources/images/playback_track_right.png
727
%%DATADIR%%/resources/images/playlist-icon.png
728
%%DATADIR%%/resources/images/popin.png
729
%%DATADIR%%/resources/images/popout.png
730
%%DATADIR%%/resources/images/pref-tab-disk-space.png
731
%%DATADIR%%/resources/images/pref-tab-downloads.png
732
%%DATADIR%%/resources/images/pref-tab-feeds.png
733
%%DATADIR%%/resources/images/pref-tab-folders.png
734
%%DATADIR%%/resources/images/pref-tab-general.png
735
%%DATADIR%%/resources/images/pref-tab-playback.png
736
%%DATADIR%%/resources/images/resume-button.png
737
%%DATADIR%%/resources/images/search_icon_all.png
738
%%DATADIR%%/resources/images/search_icon_bliptv.png
739
%%DATADIR%%/resources/images/search_icon_blogdigger.png
740
%%DATADIR%%/resources/images/search_icon_dailymotion.png
741
%%DATADIR%%/resources/images/search_icon_google.png
742
%%DATADIR%%/resources/images/search_icon_mefeedia.png
743
%%DATADIR%%/resources/images/search_icon_revver.png
744
%%DATADIR%%/resources/images/search_icon_veoh.png
745
%%DATADIR%%/resources/images/search_icon_yahoosearch.png
746
%%DATADIR%%/resources/images/search_icon_yahoovideo.png
747
%%DATADIR%%/resources/images/search_icon_youtube.png
748
%%DATADIR%%/resources/images/search_icon_youtubeuser.png
749
%%DATADIR%%/resources/images/separator.png
750
%%DATADIR%%/resources/images/share-delicious.png
751
%%DATADIR%%/resources/images/share-digg.png
752
%%DATADIR%%/resources/images/share-email.png
753
%%DATADIR%%/resources/images/share-reddit.png
754
%%DATADIR%%/resources/images/share-videobomb.png
755
%%DATADIR%%/resources/images/show-less-info.png
756
%%DATADIR%%/resources/images/show-more-info.png
757
%%DATADIR%%/resources/images/skip_forward.png
758
%%DATADIR%%/resources/images/skip_forward_active.png
759
%%DATADIR%%/resources/images/skip_previous.png
760
%%DATADIR%%/resources/images/skip_previous_active.png
761
%%DATADIR%%/resources/images/status-icon-alert.png
762
%%DATADIR%%/resources/images/status-icon-downloading.png
763
%%DATADIR%%/resources/images/status-icon-new.png
764
%%DATADIR%%/resources/images/status-icon-newly-downloaded.png
765
%%DATADIR%%/resources/images/stop.png
766
%%DATADIR%%/resources/images/stop_active.png
767
%%DATADIR%%/resources/images/thumb-default-audio.png
768
%%DATADIR%%/resources/images/thumb-default-video.png
769
%%DATADIR%%/resources/images/thumb-overlay.png
770
%%DATADIR%%/resources/images/video-download-cancel.png
771
%%DATADIR%%/resources/images/video-download-pause.png
772
%%DATADIR%%/resources/images/video-download-resume.png
773
%%DATADIR%%/resources/images/volume.png
774
%%DATADIR%%/resources/images/volume_active.png
775
%%DATADIR%%/resources/images/volume_knob.png
776
%%DATADIR%%/resources/images/volume_track.png
777
%%DATADIR%%/resources/images/wtexture.png
778
%%DATADIR%%/resources/images/wtexture_inactive.png
779
%%DATADIR%%/resources/searchengines/bliptv.xml
780
%%DATADIR%%/resources/searchengines/blogdigger.xml
781
%%DATADIR%%/resources/searchengines/dailymotion.xml
782
%%DATADIR%%/resources/searchengines/google.xml
783
%%DATADIR%%/resources/searchengines/revver.xml
784
%%DATADIR%%/resources/searchengines/veoh.xml
785
%%DATADIR%%/resources/searchengines/yahoosearch.xml
786
%%DATADIR%%/resources/searchengines/yahoovideo.xml
787
%%DATADIR%%/resources/searchengines/youtube.xml
788
%%DATADIR%%/resources/searchengines/youtubeuser.xml
789
%%DATADIR%%/resources/testdata/democracy-now-unicode-bug.xml
790
%%DATADIR%%/resources/testdata/hide-result
791
%%DATADIR%%/resources/testdata/locale/fr/LC_MESSAGES/messages.pot
792
%%DATADIR%%/resources/testdata/locale/fr/LC_MESSAGES/miro.mo
793
%%DATADIR%%/resources/testdata/locale/fr/LC_MESSAGES/miro.po
794
%%DATADIR%%/resources/testdata/locale/fr/LC_MESSAGES/teststring.py
795
%%DATADIR%%/resources/testdata/olddatabase-0.8.1
796
%%DATADIR%%/resources/testdata/olddatabase-0.8.2
797
%%DATADIR%%/resources/testdata/olddatabase-0.8.2-2
798
%%DATADIR%%/resources/testdata/olddatabase.bug.2003
799
%%DATADIR%%/resources/testdata/olddatabase.bug.2515
800
%%DATADIR%%/resources/testdata/olddatabase.bug.2685
801
%%DATADIR%%/resources/testdata/olddatabase.bug.3163
802
%%DATADIR%%/resources/testdata/olddatabase.bug.4039
803
%%DATADIR%%/resources/testdata/olddatabase.bug.4039.part2
804
%%DATADIR%%/resources/testdata/replace-result
805
%%DATADIR%%/resources/testdata/stripperdata/README
806
%%DATADIR%%/resources/testdata/stripperdata/test1.expected
807
%%DATADIR%%/resources/testdata/stripperdata/test1.in
808
%%DATADIR%%/resources/testdata/stripperdata/test160.expected
809
%%DATADIR%%/resources/testdata/stripperdata/test160.in
810
%%DATADIR%%/resources/testdata/stripperdata/test2.expected
811
%%DATADIR%%/resources/testdata/stripperdata/test2.in
812
%%DATADIR%%/resources/testdata/stripperdata/test3.expected
813
%%DATADIR%%/resources/testdata/stripperdata/test3.in
814
%%DATADIR%%/resources/testdata/stripperdata/test4.expected
815
%%DATADIR%%/resources/testdata/stripperdata/test4.in
816
%%DATADIR%%/resources/testdata/stripperdata/test5.expected
817
%%DATADIR%%/resources/testdata/stripperdata/test5.in
818
%%DATADIR%%/resources/testdata/stripperdata/test6.expected
819
%%DATADIR%%/resources/testdata/stripperdata/test6.in
820
%%DATADIR%%/resources/testdata/stripperdata/test7.expected
821
%%DATADIR%%/resources/testdata/stripperdata/test7.in
822
%%DATADIR%%/resources/testdata/stripperdata/test8.expected
823
%%DATADIR%%/resources/testdata/stripperdata/test8.in
824
%%DATADIR%%/resources/testdata/stripperdata/testburma.expected
825
%%DATADIR%%/resources/testdata/stripperdata/testburma.in
826
%%DATADIR%%/resources/testdata/translation-result
901
share/pixmaps/miro-128x128.png
827
share/pixmaps/miro-128x128.png
902
share/pixmaps/miro-24x24.png
828
share/pixmaps/miro-24x24.png
903
share/pixmaps/miro-72x72.png
829
share/pixmaps/miro-72x72.png
830
@dirrm %%DATADIR%%/resources/testdata/stripperdata
831
@dirrm %%DATADIR%%/resources/testdata/locale/fr/LC_MESSAGES
832
@dirrm %%DATADIR%%/resources/testdata/locale/fr
833
@dirrm %%DATADIR%%/resources/testdata/locale
834
@dirrm %%DATADIR%%/resources/testdata
835
@dirrm %%DATADIR%%/resources/searchengines
836
@dirrm %%DATADIR%%/resources/images
837
@dirrm %%DATADIR%%/resources
838
@dirrm %%DATADIR%%
904
@dirrmtry share/locale/nds/LC_MESSAGES
839
@dirrmtry share/locale/nds/LC_MESSAGES
905
@dirrmtry share/locale/nds
840
@dirrmtry share/locale/nds
841
@dirrmtry share/locale/kk/LC_MESSAGES
842
@dirrmtry share/locale/kk
906
@dirrmtry share/locale/fy/LC_MESSAGES
843
@dirrmtry share/locale/fy/LC_MESSAGES
907
@dirrmtry share/locale/fy
844
@dirrmtry share/locale/fy
908
@dirrmtry share/locale/fo/LC_MESSAGES
845
@dirrmtry share/locale/fo/LC_MESSAGES
909
@dirrmtry share/locale/fo
846
@dirrmtry share/locale/fo
910
@dirrmtry share/locale/fil/LC_MESSAGES
847
@dirrmtry share/locale/fil/LC_MESSAGES
911
@dirrmtry share/locale/fil
848
@dirrmtry share/locale/fil
849
@dirrmtry share/locale/ckb/LC_MESSAGES
850
@dirrmtry share/locale/ckb
912
@dirrmtry share/locale/csb/LC_MESSAGES
851
@dirrmtry share/locale/csb/LC_MESSAGES
913
@dirrmtry share/locale/csb
852
@dirrmtry share/locale/csb
914
@dirrmtry %%DESKTOPDIR%%
853
@dirrmtry share/applications
915
@dirrm %%DATADIR%%/resources/testdata
854
@dirrm libexec/miro
916
@dirrm %%DATADIR%%/resources/templates/unittest
855
@dirrm %%PYTHON_SITELIBDIR%%/miro/test
917
@dirrm %%DATADIR%%/resources/templates
856
@dirrm %%PYTHON_SITELIBDIR%%/miro/plat/renderers
918
@dirrm %%DATADIR%%/resources/searchengines
857
@dirrm %%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets
919
@dirrm %%DATADIR%%/resources/images
858
@dirrm %%PYTHON_SITELIBDIR%%/miro/plat/frontends
920
@dirrm %%DATADIR%%/resources/html
859
@dirrm %%PYTHON_SITELIBDIR%%/miro/plat
921
@dirrm %%DATADIR%%/resources/css
860
@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk
922
@dirrm %%DATADIR%%/resources
861
@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends/widgets
923
@dirrm %%DATADIR%%
862
@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends/cli
924
@dirrm %%PYTHON_SITELIBDIR%%/miro/test/
863
@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends
925
@dirrm %%PYTHON_SITELIBDIR%%/miro/platform/renderers/
864
@dirrm %%PYTHON_SITELIBDIR%%/miro/dl_daemon/private
926
@dirrm %%PYTHON_SITELIBDIR%%/miro/platform/frontends/html/
865
@dirrm %%PYTHON_SITELIBDIR%%/miro/dl_daemon
927
@dirrm %%PYTHON_SITELIBDIR%%/miro/platform/frontends/
928
@dirrm %%PYTHON_SITELIBDIR%%/miro/platform/
929
@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/unittest/
930
@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends/html/compiled_templates/
931
@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends/html/
932
@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends/cli/
933
@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends/
934
@dirrm %%PYTHON_SITELIBDIR%%/miro/dl_daemon/private/
935
@dirrm %%PYTHON_SITELIBDIR%%/miro/dl_daemon/
936
@dirrm %%PYTHON_SITELIBDIR%%/miro
866
@dirrm %%PYTHON_SITELIBDIR%%/miro
937
@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime
867
@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime
938
@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime
868
@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime

Return to bug 131832