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

Collapse All | Expand All

(-)Makefile (-23 / +50 lines)
Lines 2-19 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	mythtv-frontend
4
PORTNAME=	mythtv-frontend
5
PORTVERSION=	0.27.5.20150616
5
PORTVERSION=	0.28.1
6
CATEGORIES=	multimedia
6
CATEGORIES=	multimedia
7
7
8
MAINTAINER=	decke@FreeBSD.org
8
MAINTAINER=	ports@FreeBSD.org
9
COMMENT=	MythTV is a homebrew PVR project
9
COMMENT=	MythTV is a homebrew PVR project
10
10
11
LICENSE=	GPLv2
12
LICENSE_FILE=	${WRKSRC}/COPYING
13
11
BUILD_DEPENDS=	${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat \
14
BUILD_DEPENDS=	${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat \
12
		yasm:devel/yasm
15
		yasm:devel/yasm \
16
		p5-DBD-mysql>0:databases/p5-DBD-mysql
13
LIB_DEPENDS=	libmp3lame.so:audio/lame \
17
LIB_DEPENDS=	libmp3lame.so:audio/lame \
14
		libfreetype.so:print/freetype2 \
18
		libfreetype.so:print/freetype2 \
15
		libtag.so:audio/taglib \
19
		libtag.so:audio/taglib \
16
		libxml2.so:textproc/libxml2
20
		libxml2.so:textproc/libxml2 \
21
		libfftw3f.so:math/fftw3-float \
22
		libfftw3_threads.so:math/fftw3 \
23
		libass.so:multimedia/libass \
24
		libexiv2.so:graphics/exiv2 \
25
		libsndio.so:audio/sndio \
26
		libva.so:multimedia/libva \
27
		libjack.so:audio/jack
28
#RUN_DEPENDS=    libqsqlmysql:databases/qt5-sqldrivers-mysql
17
29
18
CONFLICTS=	mythtv-[0-9]*
30
CONFLICTS=	mythtv-[0-9]*
19
31
Lines 20-34 Link Here
20
USE_GITHUB=	yes
32
USE_GITHUB=	yes
21
GH_ACCOUNT=	MythTV
33
GH_ACCOUNT=	MythTV
22
GH_PROJECT=	mythtv
34
GH_PROJECT=	mythtv
23
GH_TAGNAME=	ad97d24
35
GH_TAGNAME=	03f4403
24
36
25
WRKSRC_SUBDIR=	${GH_PROJECT}
37
WRKSRC_SUBDIR=	${GH_PROJECT}
26
38
27
ONLY_FOR_ARCHS=	i386 amd64
39
ONLY_FOR_ARCHS=	i386 amd64
28
NOPRECIOUSMAKEVARS=	# don't override $(ARCH) in ffmpeg makefiles
40
NOPRECIOUSMAKEVARS=	# don't override $(ARCH) in ffmpeg makefiles
29
USES=		gmake libtool pkgconfig
41
USES=		gmake libtool iconv mysql pkgconfig shebangfix ssl
30
USE_QT4=	gui sql network script linguist_build l10n sql-mysql_run \
42
SHEBANG_FILES=	programs/scripts/database/mythconverg_backup.pl \
31
		moc_build qmake_build rcc_build uic_build
43
		programs/scripts/database/mythconverg_restore.pl
44
45
USE_QT5=	buildtools_build core dbus declarative gui sql network qmake_build  script \
46
		linguist_build l10n sql sql-mysql_run webkit widgets xml
47
48
USE_XORG=	x11 xcb xext xinerama xrandr xv xxf86vm
49
32
QT_NONSTANDARD=	yes
50
QT_NONSTANDARD=	yes
33
HAS_CONFIGURE=	yes
51
HAS_CONFIGURE=	yes
34
USE_LDCONFIG=	${PREFIX}/lib/mythtv/filters
52
USE_LDCONFIG=	${PREFIX}/lib/mythtv/filters
Lines 37-49 Link Here
37
55
38
DATADIR=	${PREFIX}/share/mythtv
56
DATADIR=	${PREFIX}/share/mythtv
39
57
40
MAKE_ENV=	QTDIR="${QT_PREFIX}" \
41
		QMAKESPEC="${QMAKESPEC}"
42
43
CPPFLAGS+=	${QTCPPFLAGS}
58
CPPFLAGS+=	${QTCPPFLAGS}
44
CONFIGURE_ENV+=	QMAKESPEC="${QMAKESPEC}" MOC="${MOC}" \
45
		QTDIR="${QT_PREFIX}" \
46
		PKG_CONFIG_PATH="${LOCALBASE}/libdata/pkgconfig"
47
LDFLAGS+=	-L${LOCALBASE}/lib
59
LDFLAGS+=	-L${LOCALBASE}/lib
48
60
49
CONFIGURE_ARGS=	--prefix="${PREFIX}" --cc="${CC}" --cxx="${CXX}" --libxml2-path="${LOCALBASE}/include/libxml2" \
61
CONFIGURE_ARGS=	--prefix="${PREFIX}" --cc="${CC}" --cxx="${CXX}" --libxml2-path="${LOCALBASE}/include/libxml2" \
Lines 69-84 Link Here
69
VDPAU_CONFIGURE_ENABLE=	vdpau
81
VDPAU_CONFIGURE_ENABLE=	vdpau
70
82
71
OPENGL_CONFIGURE_ENABLE=	opengl-video
83
OPENGL_CONFIGURE_ENABLE=	opengl-video
72
OPENGL_USE=	QT4=opengl
84
OPENGL_USE=	QT5=opengl
73
85
74
post-patch:
86
post-patch:
75
		@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
87
	@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
76
			${WRKSRC}/configure \
88
		${WRKSRC}/configure \
77
			${WRKSRC}/libs/libmythtv/libmythtv.pro \
89
		${WRKSRC}/libs/libmythtv/libmythtv.pro \
78
			${WRKSRC}/bindings/perl/MythTV/Recording.pm \
90
		${WRKSRC}/bindings/perl/MythTV/Recording.pm \
79
			${WRKSRC}/programs/mythtranscode/replex/Makefile.standalone \
91
		${WRKSRC}/programs/mythtranscode/external/replex/Makefile.standalone \
80
			${WRKSRC}/programs/scripts/database/mythconverg_backup.pl \
92
		${WRKSRC}/programs/scripts/database/mythconverg_backup.pl \
81
			${WRKSRC}/programs/scripts/database/mythconverg_restore.pl \
93
		${WRKSRC}/programs/scripts/database/mythconverg_restore.pl \
82
			${WRKSRC}/programs/mythcommflag/mythcommflag-analyze
94
		${WRKSRC}/programs/mythcommflag/mythcommflag-analyze
95
	@${REINPLACE_CMD} -e 's|<dvdnav/dvd_types.h>|"dvd_types.h"|' \
96
		${WRKSRC}/external/libmythdvdnav/dvdnav/dvdnav/*.h
83
97
98
post-install:
99
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/mythtv/database
100
	@${CP} ${WRKSRC}/database/mc.sql ${STAGEDIR}${PREFIX}/share/mythtv/database
101
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so
102
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mythtv/filters/*.so
103
.for filename in mythutil mythffmpeg mythccextractor \
104
	mythlcdserver mythfrontend mythpreviewgen mythjobqueue \
105
	mythffprobe mythtranscode mythcommflag mythffserver \
106
	mythavtest mythmediaserver \
107
	mythreplex mythwelcome mythshutdown mythscreenwizard
108
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${filename}
109
.endfor
110
84
.include <bsd.port.mk>
111
.include <bsd.port.mk>
(-)distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (MythTV-mythtv-0.27.5.20150616-ad97d24_GH0.tar.gz) = 9e3b0782e7627fdbb91641ac39e2c39d3fc01ee1a57152c74df9c9116e966238
1
TIMESTAMP = 1495143555
2
SIZE (MythTV-mythtv-0.27.5.20150616-ad97d24_GH0.tar.gz) = 85651303
2
SHA256 (MythTV-mythtv-0.28.1-03f4403_GH0.tar.gz) = 7553ac918427b37f376fbb293868b718c26836e4ed9d1f51b39a1494b49a97be
3
SIZE (MythTV-mythtv-0.28.1-03f4403_GH0.tar.gz) = 104460837
(-)files/patch-configure (-78 lines)
Lines 1-78 Link Here
1
--- configure.orig	2013-09-18 20:06:08.000000000 +0000
2
+++ configure	2013-10-18 11:11:10.000000000 +0000
3
@@ -846,28 +846,28 @@
4
     log check_cc "$@"
5
     cat > $TMPC
6
     log_file $TMPC
7
-    check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
8
+    check_cmd $cc $CPPFLAGS $CFLAGS -I${prefix}/include "$@" $CC_C $(cc_o $TMPO) $TMPC
9
 }
10
 
11
 check_cxx(){
12
     log check_cxx "$@"
13
     cat > $TMPCPP
14
     log_file $TMPCPP
15
-    check_cmd $cxx $CPPFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
16
+    check_cmd $cxx $CPPFLAGS $CXXFLAGS -I${prefix}/include "$@" $CXX_C -o $TMPO $TMPCPP
17
 }
18
 
19
 check_ecxx(){
20
     log check_cxx "$@"
21
     cat > $TMPCPP
22
     log_file $TMPCPP
23
-    check_cmd $cxx $CPPFLAGS $CXXFLAGS $ECXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
24
+    check_cmd $cxx $CPPFLAGS $CXXFLAGS $ECXXFLAGS -I${prefix}/include "$@" $CXX_C -o $TMPO $TMPCPP
25
 }
26
 
27
 check_cpp(){
28
     log check_cpp "$@"
29
     cat > $TMPC
30
     log_file $TMPC
31
-    check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
32
+    check_cmd $cc $CPPFLAGS $CFLAGS -I${prefix}/include "$@" $(cc_e $TMPO) $TMPC
33
 }
34
 
35
 as_o(){
36
@@ -2539,7 +2539,7 @@
37
 
38
 # machine
39
 arch_default=$(uname -m)
40
-cpu="generic"
41
+cpu="i686"
42
 processor=`uname -p 2>/dev/null`
43
 processor_flags=""
44
 tune="generic"
45
@@ -3931,7 +3931,7 @@
46
         i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|corei7*|amdfam10|barcelona|atom|bdver*)
47
             cpuflags="-march=$cpu"
48
             enable cmov
49
-            enable fast_cmov
50
+            disable fast_cmov
51
         ;;
52
         # targets that do support conditional mov but on which it's slow
53
         pentium4|pentium4m|prescott|nocona)
54
@@ -4102,7 +4102,6 @@
55
         append CCONFIG "freebsd"
56
         # Workaround compile errors from missing u_int/uint def
57
         CPPFLAGS=`echo $CPPFLAGS | sed 's/-D_POSIX_C_SOURCE=200112//'`
58
-        disable ivtv
59
         enable backend
60
         ;;
61
     bsd/os)
62
@@ -6383,6 +6382,7 @@
63
 QMAKE_LIBDIR_QT-=${sysroot}${libdir}
64
 QMAKE_LIBDIR-=${sysroot}${libdir}
65
 LATE_LIBS+=-L${sysroot}${libdir}
66
+FREETYPE_CFLAGS-= -I/usr/local/include
67
 EOF
68
 
69
 #echo "endif # FFMPEG_CONFIG_MAK" >> $TMPMAK
70
@@ -6435,7 +6435,7 @@
71
 BINDIR=\$(INSTALL_ROOT)$bindir
72
 DATADIR=\$(INSTALL_ROOT)$datadir
73
 MANDIR=\$(INSTALL_ROOT)$mandir
74
-CFLAGS=${CFLAGS} -w
75
+CFLAGS=${CFLAGS} -I/usr/local/include -w
76
 endif # FFMPEG_CONFIG_MAK
77
 EOF
78
 
(-)files/patch-external__FFmpeg__configure (-22 lines)
Lines 1-22 Link Here
1
--- external/FFmpeg/configure.orig	2010-08-23 18:54:20.000000000 +0200
2
+++ external/FFmpeg/configure	2010-11-01 21:13:19.000000000 +0100
3
@@ -1528,8 +1528,8 @@
4
 nm_opts='-g'
5
 
6
 # machine
7
-arch_default=$(uname -m)
8
-cpu="generic"
9
+arch_default=$(uname -p)
10
+cpu="i686"
11
 
12
 # OS
13
 target_os_default=$(tolower $(uname -s))
14
@@ -2108,7 +2108,7 @@
15
         i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2|amdfam10|barcelona)
16
             cpuflags="-march=$cpu"
17
             enable cmov
18
-            enable fast_cmov
19
+            disable fast_cmov
20
         ;;
21
         # targets that do support conditional mov but on which it's slow
22
         pentium4|pentium4m|prescott|nocona)
(-)files/patch-external__FFmpeg__libavcodec__x86__ac3dsp_init.c (-11 lines)
Lines 1-11 Link Here
1
--- external/FFmpeg/libavcodec/x86/ac3dsp_init.c.orig	2013-09-18 20:06:08.000000000 +0000
2
+++ external/FFmpeg/libavcodec/x86/ac3dsp_init.c	2013-10-18 11:58:01.000000000 +0000
3
@@ -51,7 +51,7 @@
4
 extern void ff_ac3_extract_exponents_sse2 (uint8_t *exp, int32_t *coef, int nb_coefs);
5
 extern void ff_ac3_extract_exponents_ssse3(uint8_t *exp, int32_t *coef, int nb_coefs);
6
 
7
-#if ARCH_X86_32 && defined(__INTEL_COMPILER)
8
+#if ARCH_X86_32 && (defined(__INTEL_COMPILER) || defined(__clang__))
9
 #       undef HAVE_7REGS
10
 #       define HAVE_7REGS 0
11
 #endif
(-)files/patch-external__zeromq__src__Makefile.am (-10 lines)
Lines 1-10 Link Here
1
--- external/zeromq/src/Makefile.am.orig	2015-11-16 14:31:23.735432710 +0000
2
+++ external/zeromq/src/Makefile.am	2015-11-16 14:28:48.465433398 +0000
3
@@ -1,6 +1,6 @@
4
 lib_LTLIBRARIES = libmythzmq.la
5
 
6
-pkgconfigdir = $(libdir)/pkgconfig
7
+pkgconfigdir = $(PKG_CONFIG_PATH)
8
 pkgconfig_DATA = libmythzmq.pc
9
 
10
 include_HEADERS = ../include/zmq.h ../include/zmq.hpp ../include/zmq_utils.h
(-)files/patch-libs__libmyth__remoteutil.h (-11 lines)
Lines 1-11 Link Here
1
--- libs/libmyth/remoteutil.h.orig	2013-09-18 16:06:08.000000000 -0400
2
+++ libs/libmyth/remoteutil.h	2014-01-22 08:26:34.000000000 -0500
3
@@ -8,6 +8,7 @@
4
 using namespace std;
5
 
6
 #include "mythexp.h"
7
+#include <sys/types.h>
8
 
9
 class ProgramInfo;
10
 class MythEvent;
11
(-)files/patch-libs__libmythdvdnav__dvdnav__dvdnav.c (-11 lines)
Lines 1-11 Link Here
1
--- libs/libmythdvdnav/dvdnav/dvdnav.c.orig	2012-03-18 12:13:45.805789048 +0100
2
+++ libs/libmythdvdnav/dvdnav/dvdnav.c	2012-03-18 12:12:47.166812027 +0100
3
@@ -33,7 +33,7 @@
4
 #include <limits.h>
5
 #include <string.h>
6
 #include <sys/time.h>
7
-#include "dvdnav/dvdnav.h"
8
+#include "dvdnav.h"
9
 #include <dvdread/dvd_reader.h>
10
 #include <dvdread/nav_types.h>
11
 #include <dvdread/ifo_types.h> /* For vm_cmd_t */
(-)files/patch-libs__libmythtv__recorders__dvbstreamhandler.cpp (-29 lines)
Lines 1-29 Link Here
1
--- libs/libmythtv/recorders/dvbstreamhandler.cpp.orig	2012-03-05 03:31:31.000000000 +0100
2
+++ libs/libmythtv/recorders/dvbstreamhandler.cpp	2012-03-18 11:24:44.309770699 +0100
3
@@ -614,7 +614,7 @@
4
     {
5
         struct dmx_pes_filter_params pesFilterParams;
6
         memset(&pesFilterParams, 0, sizeof(struct dmx_pes_filter_params));
7
-        pesFilterParams.pid      = (__u16) _pid;
8
+        pesFilterParams.pid      = (uint16_t) _pid;
9
         pesFilterParams.input    = DMX_IN_FRONTEND;
10
         pesFilterParams.output   = DMX_OUT_TS_TAP;
11
         pesFilterParams.flags    = DMX_IMMEDIATE_START;
12
@@ -634,7 +634,7 @@
13
     {
14
         struct dmx_sct_filter_params sctFilterParams;
15
         memset(&sctFilterParams, 0, sizeof(struct dmx_sct_filter_params));
16
-        switch ( (__u16) _pid )
17
+        switch ( (uint16_t) _pid )
18
         {
19
             case 0x0: // PAT
20
                 sctFilterParams.filter.filter[0] = 0;
21
@@ -670,7 +670,7 @@
22
                 sctFilterParams.filter.mask[0]   = 0x00;
23
                 break;
24
         }
25
-        sctFilterParams.pid            = (__u16) _pid;
26
+        sctFilterParams.pid            = (uint16_t) _pid;
27
         sctFilterParams.timeout        = 0;
28
         sctFilterParams.flags          = DMX_IMMEDIATE_START;
29
 
(-)files/patch-libs__libmythtv__videoout_vdpau.cpp (-11 lines)
Lines 1-11 Link Here
1
--- libs/libmythtv/videoout_vdpau.cpp.orig	2010-02-27 06:58:11.000000000 +0100
2
+++ libs/libmythtv/videoout_vdpau.cpp	2010-04-06 17:40:50.000000000 +0200
3
@@ -395,7 +395,7 @@
4
     if (frame)
5
     {
6
         // FIXME for 0.23. This should be triggered from AFD by a seek
7
-        if ((abs(frame->frameNumber - framesPlayed) > 8))
8
+        if ((labs(frame->frameNumber - framesPlayed) > 8))
9
             ClearReferenceFrames();
10
         new_frame = (framesPlayed != frame->frameNumber + 1);
11
         framesPlayed = frame->frameNumber + 1;
(-)files/patch-libs__libmythui__mythgesture.cpp (-19 lines)
Lines 1-19 Link Here
1
--- libs/libmythui/mythgesture.cpp.orig	2013-09-18 16:06:08.000000000 -0400
2
+++ libs/libmythui/mythgesture.cpp	2014-01-22 08:20:33.000000000 -0500
3
@@ -28,6 +28,7 @@
4
 
5
 #include "mythgesture.h"
6
 
7
+#include <cstdlib>
8
 #include <cmath>
9
 #include <algorithm>
10
 
11
@@ -283,7 +284,7 @@
12
     int dely = p.y() - points.back().y();
13
 
14
     /* step by the greatest delta direction */
15
-    if (abs(delx) > abs(dely))
16
+    if (std::abs(delx) > std::abs(dely))
17
     {
18
         float iy = points.back().y();
19
 
(-)files/patch-libs__libmythui__mythpainter.cpp (-9 lines)
Lines 1-9 Link Here
1
--- libs/libmythui/mythpainter.cpp.orig	2013-09-18 16:06:08.000000000 -0400
2
+++ libs/libmythui/mythpainter.cpp	2014-01-22 08:18:40.000000000 -0500
3
@@ -1,5 +1,6 @@
4
 #include <stdint.h>
5
 #include <algorithm>
6
+#include <cstdlib>
7
 
8
 // QT headers
9
 #include <QRect>
(-)files/patch-libs__libmythupnp__mmulticastsocketdevice.h (-11 lines)
Lines 1-11 Link Here
1
--- libs/libmythupnp/mmulticastsocketdevice.h.orig	2013-09-18 16:06:08.000000000 -0400
2
+++ libs/libmythupnp/mmulticastsocketdevice.h	2014-01-22 08:24:26.000000000 -0500
3
@@ -18,6 +18,7 @@
4
 #  include <ws2tcpip.h>
5
 # endif
6
 #else
7
+# include <sys/types.h>
8
 # include <sys/socket.h>
9
 # include <netinet/in.h>
10
 # include <netinet/ip.h>
11
(-)files/patch-programs__programs.pro (-12 lines)
Lines 1-12 Link Here
1
--- programs/programs.pro.orig	2012-03-19 06:39:10.000000000 +0100
2
+++ programs/programs.pro	2012-03-21 23:55:00.883069453 +0100
3
@@ -11,9 +11,4 @@
4
     !mingw: SUBDIRS += mythtranscode/replex
5
 }
6
 
7
-using_backend {
8
-    SUBDIRS += mythbackend mythfilldatabase mythtv-setup scripts
9
-    SUBDIRS += mythmetadatalookup
10
-}
11
-
12
 using_mythtranscode: SUBDIRS += mythtranscode
(-)pkg-descr (-1 / +1 lines)
Lines 3-6 Link Here
3
cards, hardware or software video compression, onscreen program guides
3
cards, hardware or software video compression, onscreen program guides
4
and a distributed architecture.
4
and a distributed architecture.
5
5
6
WWW: http://www.mythtv.org
6
WWW: http://www.mythtv.org/
(-)pkg-plist (-180 / +292 lines)
Lines 15-29 Link Here
15
bin/mythtranscode
15
bin/mythtranscode
16
bin/mythutil
16
bin/mythutil
17
bin/mythwelcome
17
bin/mythwelcome
18
include/mythtv/QJson/Parser
19
include/mythtv/QJson/QObjectHelper
20
include/mythtv/QJson/Serializer
21
include/mythtv/QJson/parser.h
22
include/mythtv/QJson/parserrunnable.h
23
include/mythtv/QJson/qjson_export.h
24
include/mythtv/QJson/qobjecthelper.h
25
include/mythtv/QJson/serializer.h
26
include/mythtv/QJson/serializerrunnable.h
27
include/mythtv/audioconvert.h
18
include/mythtv/audioconvert.h
28
include/mythtv/audiooutput.h
19
include/mythtv/audiooutput.h
29
include/mythtv/audiooutputsettings.h
20
include/mythtv/audiooutputsettings.h
Lines 30-35 Link Here
30
include/mythtv/audiooutpututil.h
21
include/mythtv/audiooutpututil.h
31
include/mythtv/audiosettings.h
22
include/mythtv/audiosettings.h
32
include/mythtv/autodeletedeque.h
23
include/mythtv/autodeletedeque.h
24
include/mythtv/blockinput.h
25
include/mythtv/bluray/array.h
33
include/mythtv/bluray/attributes.h
26
include/mythtv/bluray/attributes.h
34
include/mythtv/bluray/bdid_parse.h
27
include/mythtv/bluray/bdid_parse.h
35
include/mythtv/bluray/bdparse.h
28
include/mythtv/bluray/bdparse.h
Lines 37-46 Link Here
37
include/mythtv/bluray/bluray.h
30
include/mythtv/bluray/bluray.h
38
include/mythtv/bluray/clpi_data.h
31
include/mythtv/bluray/clpi_data.h
39
include/mythtv/bluray/clpi_parse.h
32
include/mythtv/bluray/clpi_parse.h
33
include/mythtv/bluray/dirs.h
40
include/mythtv/bluray/dl.h
34
include/mythtv/bluray/dl.h
41
include/mythtv/bluray/extdata_parse.h
35
include/mythtv/bluray/extdata_parse.h
42
include/mythtv/bluray/file.h
36
include/mythtv/bluray/file.h
43
include/mythtv/bluray/file_mythiowrapper.h
44
include/mythtv/bluray/filesystem.h
37
include/mythtv/bluray/filesystem.h
45
include/mythtv/bluray/hdmv_insn.h
38
include/mythtv/bluray/hdmv_insn.h
46
include/mythtv/bluray/hdmv_vm.h
39
include/mythtv/bluray/hdmv_vm.h
Lines 50-61 Link Here
50
include/mythtv/bluray/macro.h
43
include/mythtv/bluray/macro.h
51
include/mythtv/bluray/meta_data.h
44
include/mythtv/bluray/meta_data.h
52
include/mythtv/bluray/meta_parse.h
45
include/mythtv/bluray/meta_parse.h
46
include/mythtv/bluray/mobj_data.h
53
include/mythtv/bluray/mobj_parse.h
47
include/mythtv/bluray/mobj_parse.h
48
include/mythtv/bluray/mobj_print.h
49
include/mythtv/bluray/mount.h
54
include/mythtv/bluray/mpls_parse.h
50
include/mythtv/bluray/mpls_parse.h
55
include/mythtv/bluray/mutex.h
51
include/mythtv/bluray/mutex.h
56
include/mythtv/bluray/navigation.h
52
include/mythtv/bluray/navigation.h
53
include/mythtv/bluray/refcnt.h
57
include/mythtv/bluray/sound_parse.h
54
include/mythtv/bluray/sound_parse.h
58
include/mythtv/bluray/strutl.h
55
include/mythtv/bluray/strutl.h
56
include/mythtv/bluray/time.h
59
include/mythtv/bluray/uo_mask_table.h
57
include/mythtv/bluray/uo_mask_table.h
60
include/mythtv/bonjourregister.h
58
include/mythtv/bonjourregister.h
61
include/mythtv/bswap.h
59
include/mythtv/bswap.h
Lines 80-97 Link Here
80
include/mythtv/langsettings.h
78
include/mythtv/langsettings.h
81
include/mythtv/lcddevice.h
79
include/mythtv/lcddevice.h
82
include/mythtv/libavcodec/avcodec.h
80
include/mythtv/libavcodec/avcodec.h
81
include/mythtv/libavcodec/avdct.h
83
include/mythtv/libavcodec/avfft.h
82
include/mythtv/libavcodec/avfft.h
83
include/mythtv/libavcodec/d3d11va.h
84
include/mythtv/libavcodec/dirac.h
85
include/mythtv/libavcodec/dv_profile.h
84
include/mythtv/libavcodec/dxva2.h
86
include/mythtv/libavcodec/dxva2.h
85
include/mythtv/libavcodec/old_codec_ids.h
87
include/mythtv/libavcodec/qsv.h
86
include/mythtv/libavcodec/vaapi.h
88
include/mythtv/libavcodec/vaapi.h
87
include/mythtv/libavcodec/vda.h
89
include/mythtv/libavcodec/vda.h
88
include/mythtv/libavcodec/vdpau.h
90
include/mythtv/libavcodec/vdpau.h
89
include/mythtv/libavcodec/version.h
91
include/mythtv/libavcodec/version.h
92
include/mythtv/libavcodec/videotoolbox.h
93
include/mythtv/libavcodec/vorbis_parser.h
90
include/mythtv/libavcodec/xvmc.h
94
include/mythtv/libavcodec/xvmc.h
91
include/mythtv/libavdevice/avdevice.h
95
include/mythtv/libavdevice/avdevice.h
92
include/mythtv/libavdevice/version.h
96
include/mythtv/libavdevice/version.h
93
include/mythtv/libavfilter/asrc_abuffer.h
94
include/mythtv/libavfilter/avcodec.h
95
include/mythtv/libavfilter/avfilter.h
97
include/mythtv/libavfilter/avfilter.h
96
include/mythtv/libavfilter/avfiltergraph.h
98
include/mythtv/libavfilter/avfiltergraph.h
97
include/mythtv/libavfilter/buffersink.h
99
include/mythtv/libavfilter/buffersink.h
Lines 102-110 Link Here
102
include/mythtv/libavformat/version.h
104
include/mythtv/libavformat/version.h
103
include/mythtv/libavutil/adler32.h
105
include/mythtv/libavutil/adler32.h
104
include/mythtv/libavutil/aes.h
106
include/mythtv/libavutil/aes.h
107
include/mythtv/libavutil/aes_ctr.h
105
include/mythtv/libavutil/attributes.h
108
include/mythtv/libavutil/attributes.h
106
include/mythtv/libavutil/audio_fifo.h
109
include/mythtv/libavutil/audio_fifo.h
107
include/mythtv/libavutil/audioconvert.h
108
include/mythtv/libavutil/avassert.h
110
include/mythtv/libavutil/avassert.h
109
include/mythtv/libavutil/avconfig.h
111
include/mythtv/libavutil/avconfig.h
110
include/mythtv/libavutil/avstring.h
112
include/mythtv/libavutil/avstring.h
Lines 113-150 Link Here
113
include/mythtv/libavutil/blowfish.h
115
include/mythtv/libavutil/blowfish.h
114
include/mythtv/libavutil/bprint.h
116
include/mythtv/libavutil/bprint.h
115
include/mythtv/libavutil/bswap.h
117
include/mythtv/libavutil/bswap.h
118
include/mythtv/libavutil/buffer.h
119
include/mythtv/libavutil/camellia.h
120
include/mythtv/libavutil/cast5.h
116
include/mythtv/libavutil/channel_layout.h
121
include/mythtv/libavutil/channel_layout.h
117
include/mythtv/libavutil/common.h
122
include/mythtv/libavutil/common.h
118
include/mythtv/libavutil/cpu.h
123
include/mythtv/libavutil/cpu.h
119
include/mythtv/libavutil/crc.h
124
include/mythtv/libavutil/crc.h
125
include/mythtv/libavutil/des.h
120
include/mythtv/libavutil/dict.h
126
include/mythtv/libavutil/dict.h
127
include/mythtv/libavutil/display.h
128
include/mythtv/libavutil/downmix_info.h
121
include/mythtv/libavutil/error.h
129
include/mythtv/libavutil/error.h
122
include/mythtv/libavutil/eval.h
130
include/mythtv/libavutil/eval.h
131
include/mythtv/libavutil/ffversion.h
123
include/mythtv/libavutil/fifo.h
132
include/mythtv/libavutil/fifo.h
124
include/mythtv/libavutil/file.h
133
include/mythtv/libavutil/file.h
134
include/mythtv/libavutil/frame.h
135
include/mythtv/libavutil/hash.h
125
include/mythtv/libavutil/hmac.h
136
include/mythtv/libavutil/hmac.h
126
include/mythtv/libavutil/imgutils.h
137
include/mythtv/libavutil/imgutils.h
127
include/mythtv/libavutil/intfloat.h
138
include/mythtv/libavutil/intfloat.h
128
include/mythtv/libavutil/intfloat_readwrite.h
129
include/mythtv/libavutil/intreadwrite.h
139
include/mythtv/libavutil/intreadwrite.h
130
include/mythtv/libavutil/lfg.h
140
include/mythtv/libavutil/lfg.h
131
include/mythtv/libavutil/log.h
141
include/mythtv/libavutil/log.h
132
include/mythtv/libavutil/lzo.h
142
include/mythtv/libavutil/lzo.h
143
include/mythtv/libavutil/macros.h
144
include/mythtv/libavutil/mastering_display_metadata.h
133
include/mythtv/libavutil/mathematics.h
145
include/mythtv/libavutil/mathematics.h
134
include/mythtv/libavutil/md5.h
146
include/mythtv/libavutil/md5.h
135
include/mythtv/libavutil/mem.h
147
include/mythtv/libavutil/mem.h
136
include/mythtv/libavutil/old_pix_fmts.h
148
include/mythtv/libavutil/motion_vector.h
149
include/mythtv/libavutil/murmur3.h
137
include/mythtv/libavutil/opt.h
150
include/mythtv/libavutil/opt.h
138
include/mythtv/libavutil/parseutils.h
151
include/mythtv/libavutil/parseutils.h
139
include/mythtv/libavutil/pixdesc.h
152
include/mythtv/libavutil/pixdesc.h
153
include/mythtv/libavutil/pixelutils.h
140
include/mythtv/libavutil/pixfmt.h
154
include/mythtv/libavutil/pixfmt.h
141
include/mythtv/libavutil/random_seed.h
155
include/mythtv/libavutil/random_seed.h
142
include/mythtv/libavutil/rational.h
156
include/mythtv/libavutil/rational.h
157
include/mythtv/libavutil/rc4.h
158
include/mythtv/libavutil/replaygain.h
159
include/mythtv/libavutil/ripemd.h
143
include/mythtv/libavutil/samplefmt.h
160
include/mythtv/libavutil/samplefmt.h
144
include/mythtv/libavutil/sha.h
161
include/mythtv/libavutil/sha.h
162
include/mythtv/libavutil/sha512.h
163
include/mythtv/libavutil/stereo3d.h
164
include/mythtv/libavutil/tea.h
165
include/mythtv/libavutil/threadmessage.h
145
include/mythtv/libavutil/time.h
166
include/mythtv/libavutil/time.h
146
include/mythtv/libavutil/timecode.h
167
include/mythtv/libavutil/timecode.h
147
include/mythtv/libavutil/timestamp.h
168
include/mythtv/libavutil/timestamp.h
169
include/mythtv/libavutil/tree.h
170
include/mythtv/libavutil/twofish.h
148
include/mythtv/libavutil/version.h
171
include/mythtv/libavutil/version.h
149
include/mythtv/libavutil/xtea.h
172
include/mythtv/libavutil/xtea.h
150
include/mythtv/libmyth/audioconvert.h
173
include/mythtv/libmyth/audioconvert.h
Lines 167-188 Link Here
167
include/mythtv/libmyth/mythwizard.h
190
include/mythtv/libmyth/mythwizard.h
168
include/mythtv/libmyth/netgrabbermanager.h
191
include/mythtv/libmyth/netgrabbermanager.h
169
include/mythtv/libmyth/netutils.h
192
include/mythtv/libmyth/netutils.h
170
include/mythtv/libmyth/oldsettings.h
171
include/mythtv/libmyth/output.h
193
include/mythtv/libmyth/output.h
172
include/mythtv/libmyth/programinfo.h
194
include/mythtv/libmyth/programinfo.h
173
include/mythtv/libmyth/programtypes.h
195
include/mythtv/libmyth/programtypes.h
174
include/mythtv/libmyth/recordingtypes.h
196
include/mythtv/libmyth/recordingtypes.h
175
include/mythtv/libmyth/remotefile.h
176
include/mythtv/libmyth/remoteutil.h
197
include/mythtv/libmyth/remoteutil.h
177
include/mythtv/libmyth/rssparse.h
198
include/mythtv/libmyth/rssparse.h
178
include/mythtv/libmyth/schemawizard.h
199
include/mythtv/libmyth/schemawizard.h
179
include/mythtv/libmyth/settings.h
200
include/mythtv/libmyth/settings.h
180
include/mythtv/libmyth/storagegroupeditor.h
201
include/mythtv/libmyth/storagegroupeditor.h
181
include/mythtv/libmyth/uitypes.h
182
include/mythtv/libmyth/virtualkeyboard_qt.h
183
include/mythtv/libmyth/visual.h
202
include/mythtv/libmyth/visual.h
184
include/mythtv/libmyth/volumebase.h
203
include/mythtv/libmyth/volumebase.h
185
include/mythtv/libmyth/xmlparse.h
186
include/mythtv/libmythbase/autodeletedeque.h
204
include/mythtv/libmythbase/autodeletedeque.h
187
include/mythtv/libmythbase/bonjourregister.h
205
include/mythtv/libmythbase/bonjourregister.h
188
include/mythtv/libmythbase/bswap.h
206
include/mythtv/libmythbase/bswap.h
Lines 196-202 Link Here
196
include/mythtv/libmythbase/iso639.h
214
include/mythtv/libmythbase/iso639.h
197
include/mythtv/libmythbase/lcddevice.h
215
include/mythtv/libmythbase/lcddevice.h
198
include/mythtv/libmythbase/loggingserver.h
216
include/mythtv/libmythbase/loggingserver.h
199
include/mythtv/libmythbase/mcodecs.h
200
include/mythtv/libmythbase/mthread.h
217
include/mythtv/libmythbase/mthread.h
201
include/mythtv/libmythbase/mthreadpool.h
218
include/mythtv/libmythbase/mthreadpool.h
202
include/mythtv/libmythbase/mythbaseexp.h
219
include/mythtv/libmythbase/mythbaseexp.h
Lines 222-227 Link Here
222
include/mythtv/libmythbase/mythplugin.h
239
include/mythtv/libmythbase/mythplugin.h
223
include/mythtv/libmythbase/mythpluginapi.h
240
include/mythtv/libmythbase/mythpluginapi.h
224
include/mythtv/libmythbase/mythqtcompat.h
241
include/mythtv/libmythbase/mythqtcompat.h
242
include/mythtv/libmythbase/mythsession.h
225
include/mythtv/libmythbase/mythsingledownload.h
243
include/mythtv/libmythbase/mythsingledownload.h
226
include/mythtv/libmythbase/mythsocket.h
244
include/mythtv/libmythbase/mythsocket.h
227
include/mythtv/libmythbase/mythsocket_cb.h
245
include/mythtv/libmythbase/mythsocket_cb.h
Lines 245-267 Link Here
245
include/mythtv/libmythservicecontracts/datacontracthelper.h
263
include/mythtv/libmythservicecontracts/datacontracthelper.h
246
include/mythtv/libmythservicecontracts/datacontracts/artworkInfo.h
264
include/mythtv/libmythservicecontracts/datacontracts/artworkInfo.h
247
include/mythtv/libmythservicecontracts/datacontracts/artworkInfoList.h
265
include/mythtv/libmythservicecontracts/datacontracts/artworkInfoList.h
266
include/mythtv/libmythservicecontracts/datacontracts/backendInfo.h
248
include/mythtv/libmythservicecontracts/datacontracts/blurayInfo.h
267
include/mythtv/libmythservicecontracts/datacontracts/blurayInfo.h
268
include/mythtv/libmythservicecontracts/datacontracts/buildInfo.h
249
include/mythtv/libmythservicecontracts/datacontracts/captureCard.h
269
include/mythtv/libmythservicecontracts/datacontracts/captureCard.h
250
include/mythtv/libmythservicecontracts/datacontracts/captureCardList.h
270
include/mythtv/libmythservicecontracts/datacontracts/captureCardList.h
271
include/mythtv/libmythservicecontracts/datacontracts/castMember.h
272
include/mythtv/libmythservicecontracts/datacontracts/castMemberList.h
273
include/mythtv/libmythservicecontracts/datacontracts/channelGroup.h
274
include/mythtv/libmythservicecontracts/datacontracts/channelGroupList.h
251
include/mythtv/libmythservicecontracts/datacontracts/channelInfoList.h
275
include/mythtv/libmythservicecontracts/datacontracts/channelInfoList.h
252
include/mythtv/libmythservicecontracts/datacontracts/connectionInfo.h
276
include/mythtv/libmythservicecontracts/datacontracts/connectionInfo.h
277
include/mythtv/libmythservicecontracts/datacontracts/cutList.h
278
include/mythtv/libmythservicecontracts/datacontracts/cutting.h
253
include/mythtv/libmythservicecontracts/datacontracts/databaseInfo.h
279
include/mythtv/libmythservicecontracts/datacontracts/databaseInfo.h
280
include/mythtv/libmythservicecontracts/datacontracts/enum.h
281
include/mythtv/libmythservicecontracts/datacontracts/enumItem.h
282
include/mythtv/libmythservicecontracts/datacontracts/envInfo.h
254
include/mythtv/libmythservicecontracts/datacontracts/frontendActionList.h
283
include/mythtv/libmythservicecontracts/datacontracts/frontendActionList.h
255
include/mythtv/libmythservicecontracts/datacontracts/frontendStatus.h
284
include/mythtv/libmythservicecontracts/datacontracts/frontendStatus.h
285
include/mythtv/libmythservicecontracts/datacontracts/imageMetadataInfo.h
286
include/mythtv/libmythservicecontracts/datacontracts/imageMetadataInfoList.h
287
include/mythtv/libmythservicecontracts/datacontracts/imageSyncInfo.h
288
include/mythtv/libmythservicecontracts/datacontracts/input.h
289
include/mythtv/libmythservicecontracts/datacontracts/inputList.h
256
include/mythtv/libmythservicecontracts/datacontracts/labelValue.h
290
include/mythtv/libmythservicecontracts/datacontracts/labelValue.h
257
include/mythtv/libmythservicecontracts/datacontracts/lineup.h
291
include/mythtv/libmythservicecontracts/datacontracts/lineup.h
258
include/mythtv/libmythservicecontracts/datacontracts/liveStreamInfo.h
292
include/mythtv/libmythservicecontracts/datacontracts/liveStreamInfo.h
259
include/mythtv/libmythservicecontracts/datacontracts/liveStreamInfoList.h
293
include/mythtv/libmythservicecontracts/datacontracts/liveStreamInfoList.h
294
include/mythtv/libmythservicecontracts/datacontracts/logInfo.h
260
include/mythtv/libmythservicecontracts/datacontracts/logMessage.h
295
include/mythtv/libmythservicecontracts/datacontracts/logMessage.h
261
include/mythtv/libmythservicecontracts/datacontracts/logMessageList.h
296
include/mythtv/libmythservicecontracts/datacontracts/logMessageList.h
262
include/mythtv/libmythservicecontracts/datacontracts/programAndChannel.h
297
include/mythtv/libmythservicecontracts/datacontracts/programAndChannel.h
263
include/mythtv/libmythservicecontracts/datacontracts/programGuide.h
298
include/mythtv/libmythservicecontracts/datacontracts/programGuide.h
264
include/mythtv/libmythservicecontracts/datacontracts/recRule.h
299
include/mythtv/libmythservicecontracts/datacontracts/recRule.h
300
include/mythtv/libmythservicecontracts/datacontracts/recRuleFilter.h
301
include/mythtv/libmythservicecontracts/datacontracts/recRuleFilterList.h
265
include/mythtv/libmythservicecontracts/datacontracts/recRuleList.h
302
include/mythtv/libmythservicecontracts/datacontracts/recRuleList.h
266
include/mythtv/libmythservicecontracts/datacontracts/recording.h
303
include/mythtv/libmythservicecontracts/datacontracts/recording.h
267
include/mythtv/libmythservicecontracts/datacontracts/settingList.h
304
include/mythtv/libmythservicecontracts/datacontracts/settingList.h
Lines 286-292 Link Here
286
include/mythtv/libmythservicecontracts/services/dvrServices.h
323
include/mythtv/libmythservicecontracts/services/dvrServices.h
287
include/mythtv/libmythservicecontracts/services/frontendServices.h
324
include/mythtv/libmythservicecontracts/services/frontendServices.h
288
include/mythtv/libmythservicecontracts/services/guideServices.h
325
include/mythtv/libmythservicecontracts/services/guideServices.h
326
include/mythtv/libmythservicecontracts/services/imageServices.h
289
include/mythtv/libmythservicecontracts/services/mythServices.h
327
include/mythtv/libmythservicecontracts/services/mythServices.h
328
include/mythtv/libmythservicecontracts/services/rttiServices.h
290
include/mythtv/libmythservicecontracts/services/videoServices.h
329
include/mythtv/libmythservicecontracts/services/videoServices.h
291
include/mythtv/libmythui/mythdialogbox.h
330
include/mythtv/libmythui/mythdialogbox.h
292
include/mythtv/libmythui/mythfontproperties.h
331
include/mythtv/libmythui/mythfontproperties.h
Lines 344-360 Link Here
344
include/mythtv/libswscale/swscale.h
383
include/mythtv/libswscale/swscale.h
345
include/mythtv/libswscale/version.h
384
include/mythtv/libswscale/version.h
346
include/mythtv/loggingserver.h
385
include/mythtv/loggingserver.h
347
include/mythtv/mcodecs.h
348
include/mythtv/metadata/bluraymetadata.h
386
include/mythtv/metadata/bluraymetadata.h
349
include/mythtv/metadata/cleanup.h
387
include/mythtv/metadata/cleanup.h
350
include/mythtv/metadata/dbaccess.h
388
include/mythtv/metadata/dbaccess.h
351
include/mythtv/metadata/dirscan.h
389
include/mythtv/metadata/dirscan.h
352
include/mythtv/metadata/globals.h
390
include/mythtv/metadata/globals.h
391
include/mythtv/metadata/imagemanager.h
392
include/mythtv/metadata/imagemetadata.h
393
include/mythtv/metadata/imagetypes.h
394
include/mythtv/metadata/lyricsdata.h
353
include/mythtv/metadata/metadatacommon.h
395
include/mythtv/metadata/metadatacommon.h
354
include/mythtv/metadata/metadatadownload.h
396
include/mythtv/metadata/metadatadownload.h
355
include/mythtv/metadata/metadatafactory.h
397
include/mythtv/metadata/metadatafactory.h
398
include/mythtv/metadata/metadatagrabber.h
356
include/mythtv/metadata/metadataimagedownload.h
399
include/mythtv/metadata/metadataimagedownload.h
357
include/mythtv/metadata/metadataimagehelper.h
358
include/mythtv/metadata/metaio.h
400
include/mythtv/metadata/metaio.h
359
include/mythtv/metadata/metaioavfcomment.h
401
include/mythtv/metadata/metaioavfcomment.h
360
include/mythtv/metadata/metaioflacvorbis.h
402
include/mythtv/metadata/metaioflacvorbis.h
Lines 363-368 Link Here
363
include/mythtv/metadata/metaiooggvorbis.h
405
include/mythtv/metadata/metaiooggvorbis.h
364
include/mythtv/metadata/metaiotaglib.h
406
include/mythtv/metadata/metaiotaglib.h
365
include/mythtv/metadata/metaiowavpack.h
407
include/mythtv/metadata/metaiowavpack.h
408
include/mythtv/metadata/musicfilescanner.h
366
include/mythtv/metadata/musicmetadata.h
409
include/mythtv/metadata/musicmetadata.h
367
include/mythtv/metadata/musicutils.h
410
include/mythtv/metadata/musicutils.h
368
include/mythtv/metadata/mythmetaexp.h
411
include/mythtv/metadata/mythmetaexp.h
Lines 375-383 Link Here
375
include/mythtv/metadata/videoscan.h
418
include/mythtv/metadata/videoscan.h
376
include/mythtv/metadata/videoutils.h
419
include/mythtv/metadata/videoutils.h
377
include/mythtv/metadataimagehelper.h
420
include/mythtv/metadataimagehelper.h
421
include/mythtv/minilzo.h
378
include/mythtv/mpeg2dec/mpeg2.h
422
include/mythtv/mpeg2dec/mpeg2.h
379
include/mythtv/mthread.h
423
include/mythtv/mthread.h
380
include/mythtv/mthreadpool.h
424
include/mythtv/mthreadpool.h
425
include/mythtv/mythavutil.h
381
include/mythtv/mythbaseexp.h
426
include/mythtv/mythbaseexp.h
382
include/mythtv/mythcdrom.h
427
include/mythtv/mythcdrom.h
383
include/mythtv/mythcommandlineparser.h
428
include/mythtv/mythcommandlineparser.h
Lines 398-403 Link Here
398
include/mythtv/mythdownloadmanager.h
443
include/mythtv/mythdownloadmanager.h
399
include/mythtv/mythevent.h
444
include/mythtv/mythevent.h
400
include/mythtv/mythexp.h
445
include/mythtv/mythexp.h
446
include/mythtv/mythframe.h
401
include/mythtv/mythlocale.h
447
include/mythtv/mythlocale.h
402
include/mythtv/mythlogging.h
448
include/mythtv/mythlogging.h
403
include/mythtv/mythmedia.h
449
include/mythtv/mythmedia.h
Lines 408-413 Link Here
408
include/mythtv/mythpluginapi.h
454
include/mythtv/mythpluginapi.h
409
include/mythtv/mythqtcompat.h
455
include/mythtv/mythqtcompat.h
410
include/mythtv/mythrssmanager.h
456
include/mythtv/mythrssmanager.h
457
include/mythtv/mythsession.h
411
include/mythtv/mythsingledownload.h
458
include/mythtv/mythsingledownload.h
412
include/mythtv/mythsocket.h
459
include/mythtv/mythsocket.h
413
include/mythtv/mythsocket_cb.h
460
include/mythtv/mythsocket_cb.h
Lines 424-430 Link Here
424
include/mythtv/mythwizard.h
471
include/mythtv/mythwizard.h
425
include/mythtv/netgrabbermanager.h
472
include/mythtv/netgrabbermanager.h
426
include/mythtv/netutils.h
473
include/mythtv/netutils.h
427
include/mythtv/oldsettings.h
428
include/mythtv/output.h
474
include/mythtv/output.h
429
include/mythtv/playgroup.h
475
include/mythtv/playgroup.h
430
include/mythtv/plist.h
476
include/mythtv/plist.h
Lines 444-450 Link Here
444
include/mythtv/storagegroup.h
490
include/mythtv/storagegroup.h
445
include/mythtv/storagegroupeditor.h
491
include/mythtv/storagegroupeditor.h
446
include/mythtv/threadedfilewriter.h
492
include/mythtv/threadedfilewriter.h
447
include/mythtv/uitypes.h
493
include/mythtv/udfread.h
448
include/mythtv/upnp/bufferedsocketdevice.h
494
include/mythtv/upnp/bufferedsocketdevice.h
449
include/mythtv/upnp/configuration.h
495
include/mythtv/upnp/configuration.h
450
include/mythtv/upnp/eventing.h
496
include/mythtv/upnp/eventing.h
Lines 467-472 Link Here
467
include/mythtv/upnp/upnpcdsobjects.h
513
include/mythtv/upnp/upnpcdsobjects.h
468
include/mythtv/upnp/upnpcmgr.h
514
include/mythtv/upnp/upnpcmgr.h
469
include/mythtv/upnp/upnpdevice.h
515
include/mythtv/upnp/upnpdevice.h
516
include/mythtv/upnp/upnphelpers.h
470
include/mythtv/upnp/upnpsubscription.h
517
include/mythtv/upnp/upnpsubscription.h
471
include/mythtv/upnp/upnptaskcache.h
518
include/mythtv/upnp/upnptaskcache.h
472
include/mythtv/upnp/upnptaskevent.h
519
include/mythtv/upnp/upnptaskevent.h
Lines 475-550 Link Here
475
include/mythtv/upnp/upnputil.h
522
include/mythtv/upnp/upnputil.h
476
include/mythtv/upnp/wsdl.h
523
include/mythtv/upnp/wsdl.h
477
include/mythtv/upnp/xmlSerializer.h
524
include/mythtv/upnp/xmlSerializer.h
525
include/mythtv/upnp/xsd.h
478
include/mythtv/verbosedefs.h
526
include/mythtv/verbosedefs.h
479
include/mythtv/version.h
527
include/mythtv/version.h
480
include/mythtv/virtualkeyboard_qt.h
481
include/mythtv/visual.h
528
include/mythtv/visual.h
482
include/mythtv/volumebase.h
529
include/mythtv/volumebase.h
483
include/mythtv/xmlparse.h
530
lib/libmyth-0.28.so
484
lib/libmyth-0.27.so
531
lib/libmyth-0.28.so.0
485
lib/libmyth-0.27.so.0
532
lib/libmyth-0.28.so.0.28
486
lib/libmyth-0.27.so.0.27
533
lib/libmyth-0.28.so.0.28.0
487
lib/libmyth-0.27.so.0.27.0
488
lib/libmythavcodec.so
534
lib/libmythavcodec.so
489
lib/libmythavcodec.so.54
535
lib/libmythavcodec.so.57
490
lib/libmythavcodec.so.54.92.100
536
lib/libmythavcodec.so.57.24.102
491
lib/libmythavdevice.so
537
lib/libmythavdevice.so
492
lib/libmythavdevice.so.54
538
lib/libmythavdevice.so.57
493
lib/libmythavdevice.so.54.3.103
539
lib/libmythavdevice.so.57.0.101
494
lib/libmythavfilter.so
540
lib/libmythavfilter.so
495
lib/libmythavfilter.so.3
541
lib/libmythavfilter.so.6
496
lib/libmythavfilter.so.3.42.103
542
lib/libmythavfilter.so.6.31.100
497
lib/libmythavformat.so
543
lib/libmythavformat.so
498
lib/libmythavformat.so.54
544
lib/libmythavformat.so.57
499
lib/libmythavformat.so.54.63.104
545
lib/libmythavformat.so.57.25.100
500
lib/libmythavutil.so
546
lib/libmythavutil.so
501
lib/libmythavutil.so.52
547
lib/libmythavutil.so.55
502
lib/libmythavutil.so.52.18.100
548
lib/libmythavutil.so.55.17.103
503
lib/libmythbase-0.27.so
549
lib/libmythbase-0.28.so
504
lib/libmythbase-0.27.so.0
550
lib/libmythbase-0.28.so.0
505
lib/libmythbase-0.27.so.0.27
551
lib/libmythbase-0.28.so.0.28
506
lib/libmythbase-0.27.so.0.27.0
552
lib/libmythbase-0.28.so.0.28.0
507
lib/libmythfreemheg-0.27.so
553
lib/libmythfreemheg-0.28.so
508
lib/libmythfreemheg-0.27.so.0
554
lib/libmythfreemheg-0.28.so.0
509
lib/libmythfreemheg-0.27.so.0.27
555
lib/libmythfreemheg-0.28.so.0.28
510
lib/libmythfreemheg-0.27.so.0.27.0
556
lib/libmythfreemheg-0.28.so.0.28.0
511
lib/libmythmetadata-0.27.so
557
lib/libmythmetadata-0.28.so
512
lib/libmythmetadata-0.27.so.0
558
lib/libmythmetadata-0.28.so.0
513
lib/libmythmetadata-0.27.so.0.27
559
lib/libmythmetadata-0.28.so.0.28
514
lib/libmythmetadata-0.27.so.0.27.0
560
lib/libmythmetadata-0.28.so.0.28.0
515
lib/libmythpostproc.so
561
lib/libmythpostproc.so
516
lib/libmythpostproc.so.52
562
lib/libmythpostproc.so.54
517
lib/libmythpostproc.so.52.2.100
563
lib/libmythpostproc.so.54.0.100
518
lib/libmythprotoserver-0.27.so
564
lib/libmythprotoserver-0.28.so
519
lib/libmythprotoserver-0.27.so.0
565
lib/libmythprotoserver-0.28.so.0
520
lib/libmythprotoserver-0.27.so.0.27
566
lib/libmythprotoserver-0.28.so.0.28
521
lib/libmythprotoserver-0.27.so.0.27.0
567
lib/libmythprotoserver-0.28.so.0.28.0
522
lib/libmythqjson.so
568
lib/libmythservicecontracts-0.28.so
523
lib/libmythqjson.so.0
569
lib/libmythservicecontracts-0.28.so.0
524
lib/libmythqjson.so.0.7
570
lib/libmythservicecontracts-0.28.so.0.28
525
lib/libmythqjson.so.0.7.1
571
lib/libmythservicecontracts-0.28.so.0.28.0
526
lib/libmythservicecontracts-0.27.so
527
lib/libmythservicecontracts-0.27.so.0
528
lib/libmythservicecontracts-0.27.so.0.27
529
lib/libmythservicecontracts-0.27.so.0.27.0
530
lib/libmythswresample.so
572
lib/libmythswresample.so
531
lib/libmythswresample.so.0
573
lib/libmythswresample.so.2
532
lib/libmythswresample.so.0.17.102
574
lib/libmythswresample.so.2.0.101
533
lib/libmythswscale.so
575
lib/libmythswscale.so
534
lib/libmythswscale.so.2
576
lib/libmythswscale.so.4
535
lib/libmythswscale.so.2.2.100
577
lib/libmythswscale.so.4.0.100
536
lib/libmythtv-0.27.so
578
lib/libmythtv-0.28.so
537
lib/libmythtv-0.27.so.0
579
lib/libmythtv-0.28.so.0
538
lib/libmythtv-0.27.so.0.27
580
lib/libmythtv-0.28.so.0.28
539
lib/libmythtv-0.27.so.0.27.0
581
lib/libmythtv-0.28.so.0.28.0
540
lib/libmythui-0.27.so
582
lib/libmythui-0.28.so
541
lib/libmythui-0.27.so.0
583
lib/libmythui-0.28.so.0
542
lib/libmythui-0.27.so.0.27
584
lib/libmythui-0.28.so.0.28
543
lib/libmythui-0.27.so.0.27.0
585
lib/libmythui-0.28.so.0.28.0
544
lib/libmythupnp-0.27.so
586
lib/libmythupnp-0.28.so
545
lib/libmythupnp-0.27.so.0
587
lib/libmythupnp-0.28.so.0
546
lib/libmythupnp-0.27.so.0.27
588
lib/libmythupnp-0.28.so.0.28
547
lib/libmythupnp-0.27.so.0.27.0
589
lib/libmythupnp-0.28.so.0.28.0
548
lib/mythtv/filters/libadjust.so
590
lib/mythtv/filters/libadjust.so
549
lib/mythtv/filters/libbobdeint.so
591
lib/mythtv/filters/libbobdeint.so
550
lib/mythtv/filters/libcrop.so
592
lib/mythtv/filters/libcrop.so
Lines 565-570 Link Here
565
%%DATADIR%%/CMGR_scpd.xml
607
%%DATADIR%%/CMGR_scpd.xml
566
%%DATADIR%%/MFEXML_scpd.xml
608
%%DATADIR%%/MFEXML_scpd.xml
567
%%DATADIR%%/MSRR_scpd.xml
609
%%DATADIR%%/MSRR_scpd.xml
610
%%DATADIR%%/database/mc.sql
568
%%DATADIR%%/fonts/DroidSans-Bold.ttf
611
%%DATADIR%%/fonts/DroidSans-Bold.ttf
569
%%DATADIR%%/fonts/DroidSans.ttf
612
%%DATADIR%%/fonts/DroidSans.ttf
570
%%DATADIR%%/fonts/DroidSansMono.ttf
613
%%DATADIR%%/fonts/DroidSansMono.ttf
Lines 592-707 Link Here
592
%%DATADIR%%/fonts/Tiresias Infofont Bold.ttf
635
%%DATADIR%%/fonts/Tiresias Infofont Bold.ttf
593
%%DATADIR%%/fonts/Tiresias Infofont Italic.ttf
636
%%DATADIR%%/fonts/Tiresias Infofont Italic.ttf
594
%%DATADIR%%/fonts/Tiresias Infofont.ttf
637
%%DATADIR%%/fonts/Tiresias Infofont.ttf
638
%%DATADIR%%/fonts/texgyrechorus-mediumitalic.otf
595
%%DATADIR%%/fonts/tiresias_gpl3.txt
639
%%DATADIR%%/fonts/tiresias_gpl3.txt
596
%%DATADIR%%/fonts/texgyrechorus-mediumitalic.otf
640
%%DATADIR%%/html/3rdParty/jquery/MYTH_README
641
%%DATADIR%%/html/3rdParty/jquery/galleria/LICENSE
642
%%DATADIR%%/html/3rdParty/jquery/galleria/galleria.js
643
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/flickr-demo.html
644
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/flickr-loader.gif
645
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/galleria.flickr.js
646
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/galleria.flickr.min.js
647
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/loader.gif
648
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/history/galleria.history.js
649
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/history/galleria.history.min.js
650
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/history/history-demo.html
651
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/galleria.picasa.js
652
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/galleria.picasa.min.js
653
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/loader.gif
654
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/picasa-demo.html
655
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/README.rst
656
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/classic-demo.html
657
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/classic-loader.gif
658
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/classic-map.png
659
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/galleria.classic.css
660
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/galleria.classic.js
661
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/galleria.classic.min.js
662
%%DATADIR%%/html/3rdParty/jquery/jquery-2.0.3.js
663
%%DATADIR%%/html/3rdParty/jquery/jquery-2.0.3.min.js
664
%%DATADIR%%/html/3rdParty/jquery/jquery-2.1.4.min.js
665
%%DATADIR%%/html/3rdParty/jquery/jqueryContextMenu/js/jquery.contextmenu.js
666
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/application.png
667
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/code.png
668
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/css.png
669
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/db.png
670
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/directory.png
671
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/doc.png
672
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/file.png
673
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/film.png
674
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/flash.png
675
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/folder_open.png
676
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/html.png
677
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/java.png
678
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/linux.png
679
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/music.png
680
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/pdf.png
681
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/php.png
682
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/picture.png
683
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/ppt.png
684
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/psd.png
685
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/ruby.png
686
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/script.png
687
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/spinner.gif
688
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/txt.png
689
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/xls.png
690
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/zip.png
691
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/jqueryFileTree.css
692
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/jqueryFileTree.js
693
%%DATADIR%%/html/3rdParty/jquery/jqueryGrid/css/ui.jqgrid.css
694
%%DATADIR%%/html/3rdParty/jquery/jqueryGrid/js/grid.locale-en.js
695
%%DATADIR%%/html/3rdParty/jquery/jqueryGrid/js/jquery.jqGrid.js
696
%%DATADIR%%/html/3rdParty/jquery/jqueryJScroll/README.md
697
%%DATADIR%%/html/3rdParty/jquery/jqueryJScroll/jquery.jscroll.js
698
%%DATADIR%%/html/3rdParty/jquery/jqueryJScroll/jscroll.jquery.json
699
%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/css/jquery.multiselect.css
700
%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/css/ui.multiselect.css
701
%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/js/jquery.multiselect.js
702
%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/js/ui-multiselect-en.js
703
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_flat_30_cccccc_40x100.png
704
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_flat_50_5c5c5c_40x100.png
705
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_glass_40_ffc73d_1x400.png
706
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_hexagon_10_000000_12x10.png
707
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-hard_20_0b6a98_1x100.png
708
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_33_003147_1x100.png
709
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_35_222222_1x100.png
710
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_44_444444_1x100.png
711
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
712
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_222222_256x240.png
713
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_4b8e0b_256x240.png
714
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_a83300_256x240.png
715
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_cccccc_256x240.png
716
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_ffffff_256x240.png
717
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/jquery-ui-1.10.3.css
718
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/jquery-ui.css
719
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/js/jquery-ui-1.10.3.js
597
%%DATADIR%%/html/3rdParty/jwplayer.qsp
720
%%DATADIR%%/html/3rdParty/jwplayer.qsp
721
%%DATADIR%%/html/backend_index.qsp
598
%%DATADIR%%/html/css/Status.css
722
%%DATADIR%%/html/css/Status.css
599
%%DATADIR%%/html/css/images/ui-bg_flat_30_cccccc_40x100.png
723
%%DATADIR%%/html/css/settings.css
600
%%DATADIR%%/html/css/images/ui-bg_flat_50_5c5c5c_40x100.png
601
%%DATADIR%%/html/css/images/ui-bg_glass_40_ffc73d_1x400.png
602
%%DATADIR%%/html/css/images/ui-bg_hexagon_10_000000_12x10.png
603
%%DATADIR%%/html/css/images/ui-bg_highlight-hard_20_0b6a98_1x100.png
604
%%DATADIR%%/html/css/images/ui-bg_highlight-soft_33_003147_1x100.png
605
%%DATADIR%%/html/css/images/ui-bg_highlight-soft_35_222222_1x100.png
606
%%DATADIR%%/html/css/images/ui-bg_highlight-soft_44_444444_1x100.png
607
%%DATADIR%%/html/css/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
608
%%DATADIR%%/html/css/images/ui-icons_222222_256x240.png
609
%%DATADIR%%/html/css/images/ui-icons_4b8e0b_256x240.png
610
%%DATADIR%%/html/css/images/ui-icons_a83300_256x240.png
611
%%DATADIR%%/html/css/images/ui-icons_cccccc_256x240.png
612
%%DATADIR%%/html/css/images/ui-icons_ffffff_256x240.png
613
%%DATADIR%%/html/css/jquery-ui.css
614
%%DATADIR%%/html/css/menustyle.css
615
%%DATADIR%%/html/css/setup.css
724
%%DATADIR%%/html/css/setup.css
616
%%DATADIR%%/html/css/site.css
725
%%DATADIR%%/html/css/site.css
617
%%DATADIR%%/html/css/ui.jqgrid.css
618
%%DATADIR%%/html/css/ui.multiselect.css
619
%%DATADIR%%/html/css/wsdl.css
726
%%DATADIR%%/html/css/wsdl.css
727
%%DATADIR%%/html/debug/websocket.qsp
728
%%DATADIR%%/html/frontend_index.qsp
620
%%DATADIR%%/html/images/blank.gif
729
%%DATADIR%%/html/images/blank.gif
621
%%DATADIR%%/html/images/checkerboard_100x100.png
730
%%DATADIR%%/html/images/checkerboard_100x100.png
622
%%DATADIR%%/html/images/favicon.ico
731
%%DATADIR%%/html/images/favicon.ico
732
%%DATADIR%%/html/images/icons/README
733
%%DATADIR%%/html/images/icons/upnp_large_icon.jpg
734
%%DATADIR%%/html/images/icons/upnp_large_icon.png
735
%%DATADIR%%/html/images/icons/upnp_small_icon.jpg
736
%%DATADIR%%/html/images/icons/upnp_small_icon.png
623
%%DATADIR%%/html/images/menu-button-bg.gif
737
%%DATADIR%%/html/images/menu-button-bg.gif
624
%%DATADIR%%/html/images/mythtv.png
738
%%DATADIR%%/html/images/mythtv.png
625
%%DATADIR%%/html/images/ui-bg_flat_30_cccccc_40x100.png
626
%%DATADIR%%/html/images/ui-bg_flat_50_5c5c5c_40x100.png
627
%%DATADIR%%/html/images/ui-bg_glass_40_ffc73d_1x400.png
628
%%DATADIR%%/html/images/ui-bg_hexagon_10_000000_12x10.png
629
%%DATADIR%%/html/images/ui-bg_highlight-hard_20_0b6a98_1x100.png
630
%%DATADIR%%/html/images/ui-bg_highlight-soft_33_003147_1x100.png
631
%%DATADIR%%/html/images/ui-bg_highlight-soft_35_222222_1x100.png
632
%%DATADIR%%/html/images/ui-bg_highlight-soft_44_444444_1x100.png
633
%%DATADIR%%/html/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
634
%%DATADIR%%/html/images/ui-icons_222222_256x240.png
635
%%DATADIR%%/html/images/ui-icons_4b8e0b_256x240.png
636
%%DATADIR%%/html/images/ui-icons_a83300_256x240.png
637
%%DATADIR%%/html/images/ui-icons_cccccc_256x240.png
638
%%DATADIR%%/html/images/ui-icons_ffffff_256x240.png
639
%%DATADIR%%/html/index.html
640
%%DATADIR%%/html/js/databaseutil.js
641
%%DATADIR%%/html/js/fileutil.js
739
%%DATADIR%%/html/js/fileutil.js
642
%%DATADIR%%/html/js/galleria/LICENSE
643
%%DATADIR%%/html/js/galleria/galleria-1.2.3.js
644
%%DATADIR%%/html/js/galleria/galleria-1.2.3.min.js
645
%%DATADIR%%/html/js/galleria/themes/classic/README.rst
646
%%DATADIR%%/html/js/galleria/themes/classic/classic-demo.html
647
%%DATADIR%%/html/js/galleria/themes/classic/classic-loader.gif
648
%%DATADIR%%/html/js/galleria/themes/classic/classic-map.png
649
%%DATADIR%%/html/js/galleria/themes/classic/galleria.classic.css
650
%%DATADIR%%/html/js/galleria/themes/classic/galleria.classic.js
651
%%DATADIR%%/html/js/galleria/themes/classic/galleria.classic.min.js
652
%%DATADIR%%/html/js/grid.locale-en.js
653
%%DATADIR%%/html/js/inspect.js
740
%%DATADIR%%/html/js/inspect.js
654
%%DATADIR%%/html/js/jquery-ui.min.js
655
%%DATADIR%%/html/js/jquery.contextmenu.js
656
%%DATADIR%%/html/js/jquery.jqGrid.min.js
657
%%DATADIR%%/html/js/jquery.min.js
658
%%DATADIR%%/html/js/jqueryFileTree/images/application.png
659
%%DATADIR%%/html/js/jqueryFileTree/images/code.png
660
%%DATADIR%%/html/js/jqueryFileTree/images/css.png
661
%%DATADIR%%/html/js/jqueryFileTree/images/db.png
662
%%DATADIR%%/html/js/jqueryFileTree/images/directory.png
663
%%DATADIR%%/html/js/jqueryFileTree/images/doc.png
664
%%DATADIR%%/html/js/jqueryFileTree/images/file.png
665
%%DATADIR%%/html/js/jqueryFileTree/images/film.png
666
%%DATADIR%%/html/js/jqueryFileTree/images/flash.png
667
%%DATADIR%%/html/js/jqueryFileTree/images/folder_open.png
668
%%DATADIR%%/html/js/jqueryFileTree/images/html.png
669
%%DATADIR%%/html/js/jqueryFileTree/images/java.png
670
%%DATADIR%%/html/js/jqueryFileTree/images/linux.png
671
%%DATADIR%%/html/js/jqueryFileTree/images/music.png
672
%%DATADIR%%/html/js/jqueryFileTree/images/pdf.png
673
%%DATADIR%%/html/js/jqueryFileTree/images/php.png
674
%%DATADIR%%/html/js/jqueryFileTree/images/picture.png
675
%%DATADIR%%/html/js/jqueryFileTree/images/ppt.png
676
%%DATADIR%%/html/js/jqueryFileTree/images/psd.png
677
%%DATADIR%%/html/js/jqueryFileTree/images/ruby.png
678
%%DATADIR%%/html/js/jqueryFileTree/images/script.png
679
%%DATADIR%%/html/js/jqueryFileTree/images/spinner.gif
680
%%DATADIR%%/html/js/jqueryFileTree/images/txt.png
681
%%DATADIR%%/html/js/jqueryFileTree/images/xls.png
682
%%DATADIR%%/html/js/jqueryFileTree/images/zip.png
683
%%DATADIR%%/html/js/jqueryFileTree/jqueryFileTree.css
684
%%DATADIR%%/html/js/jqueryFileTree/jqueryFileTree.js
685
%%DATADIR%%/html/js/menu.js
741
%%DATADIR%%/html/js/menu.js
686
%%DATADIR%%/html/js/ui-multiselect-en.js
742
%%DATADIR%%/html/js/settings.js
687
%%DATADIR%%/html/js/ui.multiselect.js
688
%%DATADIR%%/html/js/util.qjs
743
%%DATADIR%%/html/js/util.qjs
744
%%DATADIR%%/html/js/utility.js
745
%%DATADIR%%/html/js/websocket_events.js
689
%%DATADIR%%/html/menu.qsp
746
%%DATADIR%%/html/menu.qsp
747
%%DATADIR%%/html/misc/css/overview.css
690
%%DATADIR%%/html/misc/database-backup.html
748
%%DATADIR%%/html/misc/database-backup.html
691
%%DATADIR%%/html/misc/database-repair.html
749
%%DATADIR%%/html/misc/database-repair.html
692
%%DATADIR%%/html/misc/databasetabs.html
750
%%DATADIR%%/html/misc/databasetabs.html
693
%%DATADIR%%/html/misc/hardwareprofile.html
694
%%DATADIR%%/html/misc/hardwareprofile-general.html
751
%%DATADIR%%/html/misc/hardwareprofile-general.html
695
%%DATADIR%%/html/misc/hardwareprofile-myprofile.html
752
%%DATADIR%%/html/misc/hardwareprofile-myprofile.html
753
%%DATADIR%%/html/misc/hardwareprofile.html
696
%%DATADIR%%/html/misc/js/databasetabs.js
754
%%DATADIR%%/html/misc/js/databasetabs.js
697
%%DATADIR%%/html/misc/js/hardwareprofile.js
755
%%DATADIR%%/html/misc/js/hardwareprofile.js
698
%%DATADIR%%/html/misc/js/messagetab.js
756
%%DATADIR%%/html/misc/js/messagetab.js
757
%%DATADIR%%/html/misc/js/overview.js
699
%%DATADIR%%/html/misc/js/viewlogs.js
758
%%DATADIR%%/html/misc/js/viewlogs.js
700
%%DATADIR%%/html/misc/message.html
759
%%DATADIR%%/html/misc/message.html
701
%%DATADIR%%/html/misc/messagetab.html
760
%%DATADIR%%/html/misc/messagetab.html
761
%%DATADIR%%/html/misc/misc_template.html
702
%%DATADIR%%/html/misc/overview.qsp
762
%%DATADIR%%/html/misc/overview.qsp
703
%%DATADIR%%/html/misc/placeholder.html
763
%%DATADIR%%/html/misc/placeholder.html
704
%%DATADIR%%/html/misc/viewlogs.html
764
%%DATADIR%%/html/misc/viewlogs.html
765
%%DATADIR%%/html/robots.txt
705
%%DATADIR%%/html/samples/hlstest.qsp
766
%%DATADIR%%/html/samples/hlstest.qsp
706
%%DATADIR%%/html/samples/js/samples.js
767
%%DATADIR%%/html/samples/js/samples.js
707
%%DATADIR%%/html/samples/livestream_rec.qsp
768
%%DATADIR%%/html/samples/livestream_rec.qsp
Lines 709-717 Link Here
709
%%DATADIR%%/html/samples/recorded.qsp
770
%%DATADIR%%/html/samples/recorded.qsp
710
%%DATADIR%%/html/samples/serverside.qsp
771
%%DATADIR%%/html/samples/serverside.qsp
711
%%DATADIR%%/html/samples/storagegroups.qsp
772
%%DATADIR%%/html/samples/storagegroups.qsp
773
%%DATADIR%%/html/setup/ajax_backends/setting_util.qsp
712
%%DATADIR%%/html/setup/channeleditor-channeldetail-multi.html
774
%%DATADIR%%/html/setup/channeleditor-channeldetail-multi.html
713
%%DATADIR%%/html/setup/channeleditor-channeldetail.html
775
%%DATADIR%%/html/setup/channeleditor-channeldetail.html
714
%%DATADIR%%/html/setup/channeleditor.html
776
%%DATADIR%%/html/setup/channeleditor.html
777
%%DATADIR%%/html/setup/css/common.css
715
%%DATADIR%%/html/setup/database.html
778
%%DATADIR%%/html/setup/database.html
716
%%DATADIR%%/html/setup/expert.html
779
%%DATADIR%%/html/setup/expert.html
717
%%DATADIR%%/html/setup/general.html
780
%%DATADIR%%/html/setup/general.html
Lines 722-742 Link Here
722
%%DATADIR%%/html/setup/jobqueue-jobs.qsp
785
%%DATADIR%%/html/setup/jobqueue-jobs.qsp
723
%%DATADIR%%/html/setup/jobqueue.html
786
%%DATADIR%%/html/setup/jobqueue.html
724
%%DATADIR%%/html/setup/js/channeleditor.js
787
%%DATADIR%%/html/setup/js/channeleditor.js
788
%%DATADIR%%/html/setup/js/common.js
725
%%DATADIR%%/html/setup/js/database.js
789
%%DATADIR%%/html/setup/js/database.js
726
%%DATADIR%%/html/setup/js/general.js
790
%%DATADIR%%/html/setup/js/general.js
727
%%DATADIR%%/html/setup/js/guidedatasources.js
791
%%DATADIR%%/html/setup/js/guidedatasources.js
728
%%DATADIR%%/html/setup/js/jobqueue.js
792
%%DATADIR%%/html/setup/js/jobqueue.js
729
%%DATADIR%%/html/setup/js/password.js
793
%%DATADIR%%/html/setup/js/password.js
730
%%DATADIR%%/html/setup/js/setup.js
731
%%DATADIR%%/html/setup/js/storagegroups.js
794
%%DATADIR%%/html/setup/js/storagegroups.js
732
%%DATADIR%%/html/setup/js/systemevents.js
795
%%DATADIR%%/html/setup/js/systemevents.js
733
%%DATADIR%%/html/setup/js/wizard.js
796
%%DATADIR%%/html/setup/js/wizard.js
734
%%DATADIR%%/html/setup/overview.html
797
%%DATADIR%%/html/setup/overview.html
735
%%DATADIR%%/html/setup/password.html
798
%%DATADIR%%/html/setup/password.html
799
%%DATADIR%%/html/setup/setup_template.html
736
%%DATADIR%%/html/setup/storagegroups-add-dir.html
800
%%DATADIR%%/html/setup/storagegroups-add-dir.html
737
%%DATADIR%%/html/setup/storagegroups-add-new.html
801
%%DATADIR%%/html/setup/storagegroups-add-new.html
738
%%DATADIR%%/html/setup/storagegroups.html
802
%%DATADIR%%/html/setup/storagegroups.html
739
%%DATADIR%%/html/setup/systemevents.html
803
%%DATADIR%%/html/setup/systemevents.html
804
%%DATADIR%%/html/setup/webfrontend-settings.qsp
740
%%DATADIR%%/html/setup/wizard-database.html
805
%%DATADIR%%/html/setup/wizard-database.html
741
%%DATADIR%%/html/setup/wizard-guide_data.html
806
%%DATADIR%%/html/setup/wizard-guide_data.html
742
%%DATADIR%%/html/setup/wizard-media_storage.html
807
%%DATADIR%%/html/setup/wizard-media_storage.html
Lines 743-749 Link Here
743
%%DATADIR%%/html/setup/wizard-network.qsp
808
%%DATADIR%%/html/setup/wizard-network.qsp
744
%%DATADIR%%/html/setup/wizard-recording_devices.html
809
%%DATADIR%%/html/setup/wizard-recording_devices.html
745
%%DATADIR%%/html/setup/wizard.html
810
%%DATADIR%%/html/setup/wizard.html
811
%%DATADIR%%/html/tv/ajax_backends/dvr_util.qsp
812
%%DATADIR%%/html/tv/ajax_backends/program_util.qsp
813
%%DATADIR%%/html/tv/css/category_colors.css
814
%%DATADIR%%/html/tv/css/common.css
815
%%DATADIR%%/html/tv/css/guide.css
816
%%DATADIR%%/html/tv/css/icons.css
817
%%DATADIR%%/html/tv/css/programsearch.css
818
%%DATADIR%%/html/tv/css/recordingrules.css
819
%%DATADIR%%/html/tv/css/recordings.css
820
%%DATADIR%%/html/tv/css/schedule.css
821
%%DATADIR%%/html/tv/css/tvplayer.css
822
%%DATADIR%%/html/tv/css/upcoming.css
823
%%DATADIR%%/html/tv/guide.qsp
824
%%DATADIR%%/html/tv/images/blank.png
825
%%DATADIR%%/html/tv/images/cat_movie.svg
826
%%DATADIR%%/html/tv/images/channel_icon.svg
827
%%DATADIR%%/html/tv/images/fl_autoexp.svg
828
%%DATADIR%%/html/tv/images/fl_bookmark.svg
829
%%DATADIR%%/html/tv/images/fl_commflag.svg
830
%%DATADIR%%/html/tv/images/fl_watched.svg
831
%%DATADIR%%/html/tv/images/hd_1080.svg
832
%%DATADIR%%/html/tv/images/hd_720.svg
833
%%DATADIR%%/html/tv/images/hd_tv.svg
834
%%DATADIR%%/html/tv/images/play_arrow.png
835
%%DATADIR%%/html/tv/images/play_arrow.svg
836
%%DATADIR%%/html/tv/images/recording_icons_sprite.svg
837
%%DATADIR%%/html/tv/images/wastebin.svg
838
%%DATADIR%%/html/tv/js/common.js
839
%%DATADIR%%/html/tv/js/constants.js
840
%%DATADIR%%/html/tv/js/guide.js
841
%%DATADIR%%/html/tv/js/programsearch.js
842
%%DATADIR%%/html/tv/js/recordings.js
843
%%DATADIR%%/html/tv/js/schedule.js
844
%%DATADIR%%/html/tv/js/tvutil.qjs
845
%%DATADIR%%/html/tv/js/upcoming.js
846
%%DATADIR%%/html/tv/programsearch.qsp
847
%%DATADIR%%/html/tv/recordingrules.qsp
848
%%DATADIR%%/html/tv/recordings.qsp
849
%%DATADIR%%/html/tv/schedule.qsp
850
%%DATADIR%%/html/tv/stream.qsp
851
%%DATADIR%%/html/tv/tvplayer.qsp
852
%%DATADIR%%/html/tv/upcoming.qsp
853
%%DATADIR%%/html/video/css/gallery.css
854
%%DATADIR%%/html/video/gallery.qsp
855
%%DATADIR%%/html/video/gallery_detail.qsp
856
%%DATADIR%%/html/video/images/folder_icon.png
857
%%DATADIR%%/html/video/images/mv_gallery_dir_up.png
858
%%DATADIR%%/html/video/images/unknown.png
859
%%DATADIR%%/html/video/js/gallery.js
860
%%DATADIR%%/html/video/js/gallery.qjs
746
%%DATADIR%%/html/xslt/class.xslt
861
%%DATADIR%%/html/xslt/class.xslt
862
%%DATADIR%%/html/xslt/enum.xslt
747
%%DATADIR%%/html/xslt/service.xslt
863
%%DATADIR%%/html/xslt/service.xslt
748
%%DATADIR%%/i18n/mythfrontend_bg.qm
864
%%DATADIR%%/i18n/mythfrontend_bg.qm
749
%%DATADIR%%/i18n/mythfrontend_ca.qm
865
%%DATADIR%%/i18n/mythfrontend_ca.qm
Lines 777-782 Link Here
777
%%DATADIR%%/i18n/mythfrontend_zh_cn.qm
893
%%DATADIR%%/i18n/mythfrontend_zh_cn.qm
778
%%DATADIR%%/i18n/mythfrontend_zh_hk.qm
894
%%DATADIR%%/i18n/mythfrontend_zh_hk.qm
779
%%DATADIR%%/locales/da_dk.xml
895
%%DATADIR%%/locales/da_dk.xml
896
%%DATADIR%%/locales/de_at.xml
897
%%DATADIR%%/locales/de_ch.xml
780
%%DATADIR%%/locales/de_de.xml
898
%%DATADIR%%/locales/de_de.xml
781
%%DATADIR%%/locales/el_gr.xml
899
%%DATADIR%%/locales/el_gr.xml
782
%%DATADIR%%/locales/en_ca.xml
900
%%DATADIR%%/locales/en_ca.xml
Lines 1040-1045 Link Here
1040
%%DATADIR%%/themes/Terra/browser-ui.xml
1158
%%DATADIR%%/themes/Terra/browser-ui.xml
1041
%%DATADIR%%/themes/Terra/config-ui.xml
1159
%%DATADIR%%/themes/Terra/config-ui.xml
1042
%%DATADIR%%/themes/Terra/config/selected_icon_mask.png
1160
%%DATADIR%%/themes/Terra/config/selected_icon_mask.png
1161
%%DATADIR%%/themes/Terra/controls-ui.xml
1043
%%DATADIR%%/themes/Terra/controls/button.png
1162
%%DATADIR%%/themes/Terra/controls/button.png
1044
%%DATADIR%%/themes/Terra/controls/button_pushed.png
1163
%%DATADIR%%/themes/Terra/controls/button_pushed.png
1045
%%DATADIR%%/themes/Terra/controls/checkbox_background.png
1164
%%DATADIR%%/themes/Terra/controls/checkbox_background.png
Lines 1051-1057 Link Here
1051
%%DATADIR%%/themes/Terra/controls/short_textedit_background_selected.png
1170
%%DATADIR%%/themes/Terra/controls/short_textedit_background_selected.png
1052
%%DATADIR%%/themes/Terra/controls/small_button.png
1171
%%DATADIR%%/themes/Terra/controls/small_button.png
1053
%%DATADIR%%/themes/Terra/controls/small_button_pushed.png
1172
%%DATADIR%%/themes/Terra/controls/small_button_pushed.png
1054
%%DATADIR%%/themes/Terra/controls-ui.xml
1055
%%DATADIR%%/themes/Terra/gallery-ui.xml
1173
%%DATADIR%%/themes/Terra/gallery-ui.xml
1056
%%DATADIR%%/themes/Terra/game-ui.xml
1174
%%DATADIR%%/themes/Terra/game-ui.xml
1057
%%DATADIR%%/themes/Terra/guide/guide_arrow_left.png
1175
%%DATADIR%%/themes/Terra/guide/guide_arrow_left.png
Lines 1219-1225 Link Here
1219
%%DATADIR%%/themes/Terra/video/video_gallery_background_selected.png
1337
%%DATADIR%%/themes/Terra/video/video_gallery_background_selected.png
1220
%%DATADIR%%/themes/Terra/watermarks/README.license
1338
%%DATADIR%%/themes/Terra/watermarks/README.license
1221
%%DATADIR%%/themes/Terra/watermarks/aerial.png
1339
%%DATADIR%%/themes/Terra/watermarks/aerial.png
1222
%%DATADIR%%/themes/Terra/watermarks/appearance.png
1223
%%DATADIR%%/themes/Terra/watermarks/archive.png
1340
%%DATADIR%%/themes/Terra/watermarks/archive.png
1224
%%DATADIR%%/themes/Terra/watermarks/audio.png
1341
%%DATADIR%%/themes/Terra/watermarks/audio.png
1225
%%DATADIR%%/themes/Terra/watermarks/browser.png
1342
%%DATADIR%%/themes/Terra/watermarks/browser.png
Lines 1261-1266 Link Here
1261
%%DATADIR%%/themes/Terra/watermarks/select_music.png
1378
%%DATADIR%%/themes/Terra/watermarks/select_music.png
1262
%%DATADIR%%/themes/Terra/watermarks/status.png
1379
%%DATADIR%%/themes/Terra/watermarks/status.png
1263
%%DATADIR%%/themes/Terra/watermarks/stop_light.png
1380
%%DATADIR%%/themes/Terra/watermarks/stop_light.png
1381
%%DATADIR%%/themes/Terra/watermarks/themechooser.png
1264
%%DATADIR%%/themes/Terra/watermarks/tools.png
1382
%%DATADIR%%/themes/Terra/watermarks/tools.png
1265
%%DATADIR%%/themes/Terra/watermarks/tv.png
1383
%%DATADIR%%/themes/Terra/watermarks/tv.png
1266
%%DATADIR%%/themes/Terra/watermarks/vcr.png
1384
%%DATADIR%%/themes/Terra/watermarks/vcr.png
Lines 1430-1455 Link Here
1430
%%DATADIR%%/themes/default/htmls/notfound.html
1548
%%DATADIR%%/themes/default/htmls/notfound.html
1431
%%DATADIR%%/themes/default/htmls/progdetails_page1.html
1549
%%DATADIR%%/themes/default/htmls/progdetails_page1.html
1432
%%DATADIR%%/themes/default/htmls/progdetails_page2.html
1550
%%DATADIR%%/themes/default/htmls/progdetails_page2.html
1551
%%DATADIR%%/themes/default/image-ui.xml
1433
%%DATADIR%%/themes/default/keyboard/ar.xml
1552
%%DATADIR%%/themes/default/keyboard/ar.xml
1434
%%DATADIR%%/themes/default/keyboard/ar_ui.xml
1435
%%DATADIR%%/themes/default/keyboard/da.xml
1553
%%DATADIR%%/themes/default/keyboard/da.xml
1436
%%DATADIR%%/themes/default/keyboard/da_ui.xml
1437
%%DATADIR%%/themes/default/keyboard/de.xml
1554
%%DATADIR%%/themes/default/keyboard/de.xml
1438
%%DATADIR%%/themes/default/keyboard/de_ui.xml
1555
%%DATADIR%%/themes/default/keyboard/el.xml
1439
%%DATADIR%%/themes/default/keyboard/en_gb.xml
1556
%%DATADIR%%/themes/default/keyboard/en_gb.xml
1440
%%DATADIR%%/themes/default/keyboard/en_gb_ui.xml
1441
%%DATADIR%%/themes/default/keyboard/en_us.xml
1557
%%DATADIR%%/themes/default/keyboard/en_us.xml
1442
%%DATADIR%%/themes/default/keyboard/en_us_ui.xml
1443
%%DATADIR%%/themes/default/keyboard/es.xml
1558
%%DATADIR%%/themes/default/keyboard/es.xml
1444
%%DATADIR%%/themes/default/keyboard/es_ui.xml
1445
%%DATADIR%%/themes/default/keyboard/fr.xml
1559
%%DATADIR%%/themes/default/keyboard/fr.xml
1446
%%DATADIR%%/themes/default/keyboard/fr_ch.xml
1560
%%DATADIR%%/themes/default/keyboard/fr_ch.xml
1447
%%DATADIR%%/themes/default/keyboard/fr_ch_ui.xml
1448
%%DATADIR%%/themes/default/keyboard/fr_ui.xml
1449
%%DATADIR%%/themes/default/keyboard/he.xml
1561
%%DATADIR%%/themes/default/keyboard/he.xml
1450
%%DATADIR%%/themes/default/keyboard/he_ui.xml
1451
%%DATADIR%%/themes/default/keyboard/it.xml
1562
%%DATADIR%%/themes/default/keyboard/it.xml
1452
%%DATADIR%%/themes/default/keyboard/it_ui.xml
1453
%%DATADIR%%/themes/default/keyboard/key_down.png
1563
%%DATADIR%%/themes/default/keyboard/key_down.png
1454
%%DATADIR%%/themes/default/keyboard/key_down_back.png
1564
%%DATADIR%%/themes/default/keyboard/key_down_back.png
1455
%%DATADIR%%/themes/default/keyboard/key_down_del.png
1565
%%DATADIR%%/themes/default/keyboard/key_down_del.png
Lines 1486-1499 Link Here
1486
%%DATADIR%%/themes/default/keyboard/keyboard.xml
1596
%%DATADIR%%/themes/default/keyboard/keyboard.xml
1487
%%DATADIR%%/themes/default/keyboard/leftarrow.png
1597
%%DATADIR%%/themes/default/keyboard/leftarrow.png
1488
%%DATADIR%%/themes/default/keyboard/nb.xml
1598
%%DATADIR%%/themes/default/keyboard/nb.xml
1489
%%DATADIR%%/themes/default/keyboard/nb_ui.xml
1490
%%DATADIR%%/themes/default/keyboard/returnarrow.png
1599
%%DATADIR%%/themes/default/keyboard/returnarrow.png
1491
%%DATADIR%%/themes/default/keyboard/rightarrow.png
1600
%%DATADIR%%/themes/default/keyboard/rightarrow.png
1492
%%DATADIR%%/themes/default/keyboard/ru.xml
1601
%%DATADIR%%/themes/default/keyboard/ru.xml
1493
%%DATADIR%%/themes/default/keyboard/ru_ui.xml
1494
%%DATADIR%%/themes/default/keyboard/shiftarrow.png
1602
%%DATADIR%%/themes/default/keyboard/shiftarrow.png
1495
%%DATADIR%%/themes/default/keyboard/sv.xml
1603
%%DATADIR%%/themes/default/keyboard/sv.xml
1496
%%DATADIR%%/themes/default/keyboard/sv_ui.xml
1497
%%DATADIR%%/themes/default/lb-arrow.png
1604
%%DATADIR%%/themes/default/lb-arrow.png
1498
%%DATADIR%%/themes/default/lb-check-empty.png
1605
%%DATADIR%%/themes/default/lb-check-empty.png
1499
%%DATADIR%%/themes/default/lb-check-full.png
1606
%%DATADIR%%/themes/default/lb-check-full.png
Lines 1764-1769 Link Here
1764
%%DATADIR%%/themes/default/menu_playback.xml
1871
%%DATADIR%%/themes/default/menu_playback.xml
1765
%%DATADIR%%/themes/default/menu_playback_compact.xml
1872
%%DATADIR%%/themes/default/menu_playback_compact.xml
1766
%%DATADIR%%/themes/default/mono.png
1873
%%DATADIR%%/themes/default/mono.png
1874
%%DATADIR%%/themes/default/musicscanner.png
1767
%%DATADIR%%/themes/default/mv_browse_background.png
1875
%%DATADIR%%/themes/default/mv_browse_background.png
1768
%%DATADIR%%/themes/default/mv_browse_selector.png
1876
%%DATADIR%%/themes/default/mv_browse_selector.png
1769
%%DATADIR%%/themes/default/mv_filerequest.png
1877
%%DATADIR%%/themes/default/mv_filerequest.png
Lines 1825-1833 Link Here
1825
%%DATADIR%%/themes/default/shared/directory.png
1933
%%DATADIR%%/themes/default/shared/directory.png
1826
%%DATADIR%%/themes/default/shared/executable.png
1934
%%DATADIR%%/themes/default/shared/executable.png
1827
%%DATADIR%%/themes/default/shared/file.png
1935
%%DATADIR%%/themes/default/shared/file.png
1936
%%DATADIR%%/themes/default/shared/folder-reg.png
1937
%%DATADIR%%/themes/default/shared/folder-sel.png
1828
%%DATADIR%%/themes/default/shared/grid_back_reg.png
1938
%%DATADIR%%/themes/default/shared/grid_back_reg.png
1829
%%DATADIR%%/themes/default/shared/grid_back_sel.png
1939
%%DATADIR%%/themes/default/shared/grid_back_sel.png
1830
%%DATADIR%%/themes/default/shared/grid_noimage.png
1940
%%DATADIR%%/themes/default/shared/grid_noimage.png
1941
%%DATADIR%%/themes/default/shared/movie-reg.png
1942
%%DATADIR%%/themes/default/shared/movie-sel.png
1831
%%DATADIR%%/themes/default/shared/secure.png
1943
%%DATADIR%%/themes/default/shared/secure.png
1832
%%DATADIR%%/themes/default/shared/unsecure.png
1944
%%DATADIR%%/themes/default/shared/unsecure.png
1833
%%DATADIR%%/themes/default/shared/updirectory.png
1945
%%DATADIR%%/themes/default/shared/updirectory.png

Return to bug 219149