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

Collapse All | Expand All

(-)Makefile (-13 / +30 lines)
Lines 12-37 Link Here
12
LICENSE_FILE=	${WRKSRC}/COPYING
12
LICENSE_FILE=	${WRKSRC}/COPYING
13
13
14
BUILD_DEPENDS=	${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat \
14
BUILD_DEPENDS=	${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat \
15
		yasm:devel/yasm
15
		yasm:devel/yasm \
16
		p5-DBD-mysql>0:databases/p5-DBD-mysql
16
LIB_DEPENDS=	libmp3lame.so:audio/lame \
17
LIB_DEPENDS=	libmp3lame.so:audio/lame \
17
		libfreetype.so:print/freetype2 \
18
		libfreetype.so:print/freetype2 \
18
		libtag.so:audio/taglib \
19
		libtag.so:audio/taglib \
19
		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
20
29
30
			
31
		
32
21
CONFLICTS=	mythtv-[0-9]*
33
CONFLICTS=	mythtv-[0-9]*
22
34
23
USE_GITHUB=	yes
35
USE_GITHUB=	yes
24
GH_ACCOUNT=	MythTV
36
GH_ACCOUNT=	MythTV
25
GH_PROJECT=	mythtv
37
GH_PROJECT=	mythtv
26
GH_TAGNAME=	ad97d24
38
GH_TAGNAME=	03f4403
27
39
28
WRKSRC_SUBDIR=	${GH_PROJECT}
40
WRKSRC_SUBDIR=	${GH_PROJECT}
29
41
30
ONLY_FOR_ARCHS=	i386 amd64
42
ONLY_FOR_ARCHS=	i386 amd64
31
NOPRECIOUSMAKEVARS=	# don't override $(ARCH) in ffmpeg makefiles
43
NOPRECIOUSMAKEVARS=	# don't override $(ARCH) in ffmpeg makefiles
32
USES=		gmake libtool pkgconfig
44
USES=		gmake libtool iconv mysql pkgconfig shebangfix ssl
33
USE_QT4=	gui sql network script linguist_build l10n sql-mysql_run \
45
SHEBANG_FILES=	programs/scripts/database/mythconverg_backup.pl \
34
		moc_build qmake_build rcc_build uic_build
46
		programs/scripts/database/mythconverg_restore.pl
47
48
USE_QT5=	core dbus declarative gui sql network script linguist_build l10n sql  sql-mysql_run \
49
		webkit widgets xml
50
51
USE_XORG=	x11 xcb xext xinerama xrandr  xv xxf86vm
52
35
QT_NONSTANDARD=	yes
53
QT_NONSTANDARD=	yes
36
HAS_CONFIGURE=	yes
54
HAS_CONFIGURE=	yes
37
USE_LDCONFIG=	${PREFIX}/lib/mythtv/filters
55
USE_LDCONFIG=	${PREFIX}/lib/mythtv/filters
Lines 40-52 Link Here
40
58
41
DATADIR=	${PREFIX}/share/mythtv
59
DATADIR=	${PREFIX}/share/mythtv
42
60
43
MAKE_ENV=	QTDIR="${PREFIX}" \
44
		QMAKESPEC="${QMAKESPEC}"
45
61
46
CPPFLAGS+=	${QTCPPFLAGS}
62
CPPFLAGS+=	${QTCPPFLAGS}
47
CONFIGURE_ENV+=	QMAKESPEC="${QMAKESPEC}" MOC="${MOC}" \
48
		QTDIR="${PREFIX}" \
49
		PKG_CONFIG_PATH="${LOCALBASE}/libdata/pkgconfig"
50
LDFLAGS+=	-L${LOCALBASE}/lib
63
LDFLAGS+=	-L${LOCALBASE}/lib
51
64
52
CONFIGURE_ARGS=	--prefix="${PREFIX}" --cc="${CC}" --cxx="${CXX}" --libxml2-path="${LOCALBASE}/include/libxml2" \
65
CONFIGURE_ARGS=	--prefix="${PREFIX}" --cc="${CC}" --cxx="${CXX}" --libxml2-path="${LOCALBASE}/include/libxml2" \
Lines 72-78 Link Here
72
VDPAU_CONFIGURE_ENABLE=	vdpau
85
VDPAU_CONFIGURE_ENABLE=	vdpau
73
86
74
OPENGL_CONFIGURE_ENABLE=	opengl-video
87
OPENGL_CONFIGURE_ENABLE=	opengl-video
75
OPENGL_USE=	QT4=opengl
88
OPENGL_USE=	QT5=opengl
76
89
77
post-patch:
90
post-patch:
78
	@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
91
	@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
Lines 79-87 Link Here
79
		${WRKSRC}/configure \
92
		${WRKSRC}/configure \
80
		${WRKSRC}/libs/libmythtv/libmythtv.pro \
93
		${WRKSRC}/libs/libmythtv/libmythtv.pro \
81
		${WRKSRC}/bindings/perl/MythTV/Recording.pm \
94
		${WRKSRC}/bindings/perl/MythTV/Recording.pm \
82
		${WRKSRC}/programs/mythtranscode/replex/Makefile.standalone \
95
		${WRKSRC}/programs/mythtranscode/external/replex/Makefile.standalone \
83
		${WRKSRC}/programs/scripts/database/mythconverg_backup.pl \
96
		${WRKSRC}/programs/scripts/database/mythconverg_backup.pl \
84
		${WRKSRC}/programs/scripts/database/mythconverg_restore.pl \
97
		${WRKSRC}/programs/scripts/database/mythconverg_restore.pl \
85
		${WRKSRC}/programs/mythcommflag/mythcommflag-analyze
98
		${WRKSRC}/programs/mythcommflag/mythcommflag-analyze
86
99
100
post-install:
101
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/mythtv/database
102
	@${CP} ${WRKSRC}/database/mc.sql ${STAGEDIR}${PREFIX}/share/mythtv/database
103
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so
87
.include <bsd.port.mk>
104
.include <bsd.port.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1494080483
1
TIMESTAMP = 1494865112
2
SHA256 (MythTV-mythtv-0.28.1-ad97d24_GH0.tar.gz) = 9e3b0782e7627fdbb91641ac39e2c39d3fc01ee1a57152c74df9c9116e966238
2
SHA256 (MythTV-mythtv-0.28.1-03f4403_GH0.tar.gz) = 7553ac918427b37f376fbb293868b718c26836e4ed9d1f51b39a1494b49a97be
3
SIZE (MythTV-mythtv-0.28.1-ad97d24_GH0.tar.gz) = 85651303
3
SIZE (MythTV-mythtv-0.28.1-03f4403_GH0.tar.gz) = 104460837
(-)files/patch-configure (-46 / +29 lines)
Lines 1-6 Link Here
1
--- configure.orig	2013-09-18 20:06:08.000000000 +0000
1
--- configure.orig	2017-05-14 14:12:06 UTC
2
+++ configure	2013-10-18 11:11:10.000000000 +0000
2
+++ configure
3
@@ -846,28 +846,28 @@
3
@@ -979,35 +979,35 @@ check_cc(){
4
     log check_cc "$@"
4
     log check_cc "$@"
5
     cat > $TMPC
5
     cat > $TMPC
6
     log_file $TMPC
6
     log_file $TMPC
Lines 24-78 Link Here
24
+    check_cmd $cxx $CPPFLAGS $CXXFLAGS $ECXXFLAGS -I${prefix}/include "$@" $CXX_C -o $TMPO $TMPCPP
24
+    check_cmd $cxx $CPPFLAGS $CXXFLAGS $ECXXFLAGS -I${prefix}/include "$@" $CXX_C -o $TMPO $TMPCPP
25
 }
25
 }
26
 
26
 
27
 check_objcc(){
28
     log check_objcc "$@"
29
     cat > $TMPM
30
     log_file $TMPM
31
-    check_cmd $objcc -Werror=missing-prototypes $CPPFLAGS $CFLAGS $OBJCFLAGS "$@" $OBJCC_C $(cc_o $TMPO) $TMPM
32
+    check_cmd $objcc -Werror=missing-prototypes $CPPFLAGS $CFLAGS $OBJCFLAGS -I${prefix}/include  "$@" $OBJCC_C $(cc_o $TMPO) $TMPM
33
 }
34
 
27
 check_cpp(){
35
 check_cpp(){
28
     log check_cpp "$@"
36
     log check_cpp "$@"
29
     cat > $TMPC
37
     cat > $TMPC
30
     log_file $TMPC
38
     log_file $TMPC
31
-    check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
39
-    check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
32
+    check_cmd $cc $CPPFLAGS $CFLAGS -I${prefix}/include "$@" $(cc_e $TMPO) $TMPC
40
+    check_cmd $cc $CPPFLAGS $CFLAGS -I${prefix}/include  "$@" $(cc_e $TMPO) $TMPC
33
 }
41
 }
34
 
42
 
35
 as_o(){
43
 as_o(){
36
@@ -2539,7 +2539,7 @@
44
@@ -3364,7 +3364,7 @@ vbox_deps="backend"
45
 ceton_deps="backend"
46
 mpegtsraw_demuxer_deps="merge_libavformat_mpegts_c"
47
 mythtranscode_deps="backend frontend"
48
-opengl_deps_any="agl_h GL_gl_h EGL_egl_h GLES2_gl2_h darwin windows x11"
49
+opengl_deps_any="agl_h $GL_gl_h EGL_egl_h GLES2_gl2_h darwin windows x11"
50
 opengles_deps="GLES2_gl2_h"
51
 opengl_video_deps="opengl"
52
 opengl_themepainter_deps="opengl"
53
@@ -6615,7 +6615,7 @@ if enabled taglib; then
54
         taglibs=`taglib-config --libs`
55
     fi
37
 
56
 
38
 # machine
57
-    if test $taglib_minor -lt 7 || ! check_class_headers_cpp "taglib/fileref.h stdlib.h" TagLib::FileRef $tagincludes $taglibs -lstdc++; then
39
 arch_default=$(uname -m)
58
+    if test $taglib_minor -lt 10 || ! check_class_headers_cpp "/usr/local/include/taglib/fileref.h stdlib.h" TagLib::FileRef $tagincludes $taglibs -lstdc++; then
40
-cpu="generic"
59
         die "ERROR: cannot find taglib 1.7 or later."
41
+cpu="i686"
60
     fi
42
 processor=`uname -p 2>/dev/null`
61
 fi
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 (-16 / +44 lines)
Lines 1-22 Link Here
1
--- external/FFmpeg/configure.orig	2010-08-23 18:54:20.000000000 +0200
1
--- external/FFmpeg/configure.orig	2017-05-14 20:15:31 UTC
2
+++ external/FFmpeg/configure	2010-11-01 21:13:19.000000000 +0100
2
+++ external/FFmpeg/configure
3
@@ -1528,8 +1528,8 @@
3
@@ -4234,7 +4234,7 @@ elif enabled mips; then
4
 nm_opts='-g'
4
             enable simd_align_16
5
 
5
             enable fast_64bit
6
 # machine
6
             enable fast_clz
7
-arch_default=$(uname -m)
7
-            enable fast_cmov
8
-cpu="generic"
8
+            disable fast_cmov
9
+arch_default=$(uname -p)
9
             enable fast_unaligned
10
+cpu="i686"
10
             disable aligned_stack
11
 
11
             case $cpu in
12
 # OS
12
@@ -4357,7 +4357,7 @@ elif enabled x86; then
13
 target_os_default=$(tolower $(uname -s))
13
         |core*|atom|bonnell|nehalem|westmere|silvermont|sandybridge|ivybridge|haswell|broadwell|amdfam10|barcelona|b[dt]ver*)
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"
14
             cpuflags="-march=$cpu"
17
             enable cmov
15
             enable i686
18
-            enable fast_cmov
16
-            enable fast_cmov
19
+            disable fast_cmov
17
+            disable fast_cmov
20
         ;;
18
         ;;
21
         # targets that do support conditional mov but on which it's slow
19
         # targets that do support conditional mov but on which it's slow
22
         pentium4|pentium4m|prescott|nocona)
20
         pentium4|pentium4m|prescott|nocona)
21
@@ -4458,7 +4458,7 @@ enabled spic && enable_weak pic
22
 case $target_os in
23
     aix)
24
         SHFLAGS=-shared
25
-        add_cppflags '-I\$(SRC_PATH)/compat/aix'
26
+        add_cppflags '-I\$(sRC_PATH)/compat/aix'
27
         enabled shared && add_ldflags -Wl,-brtl
28
         ;;
29
     android)
30
@@ -6285,19 +6285,15 @@ DATADIR=\$(DESTDIR)$datadir
31
 DOCDIR=\$(DESTDIR)$docdir
32
 MANDIR=\$(DESTDIR)$mandir
33
 PKGCONFIGDIR=\$(DESTDIR)$pkgconfigdir
34
-SRC_PATH=$source_path
35
 SRC_LINK=$source_link
36
 ifndef MAIN_MAKEFILE
37
 SRC_PATH:=\$(SRC_PATH:.%=..%)
38
 endif
39
-CC_IDENT=$cc_ident
40
 ARCH=$arch
41
 INTRINSICS=$intrinsics
42
-CC=$cc
43
-CXX=$cxx
44
-AS=$as
45
 OBJCC=$objcc
46
 LD=$ld
47
+FFMPEG=$arch
48
 DEPCC=$dep_cc
49
 DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
50
 DEPAS=$as
(-)files/patch-external__libmytdvdnav__dvdnav__dvdnav_c (+13 lines)
Line 0 Link Here
1
--- external/libmythdvdnav/dvdnav/dvdnav.c.orig	2017-05-14 21:32:56 UTC
2
+++ external/libmythdvdnav/dvdnav/dvdnav.c
3
@@ -43,6 +43,10 @@
4
 #include "read_cache.h"
5
 #include <dvdread/nav_read.h>
6
 
7
+#define DVDNAV_VERSION 50400
8
+#define DVDNAV_VERSION_GIT "8a270d6dd40ac43c98c948fe9d10e5bcb4aa3d41"
9
+
10
+
11
 static dvdnav_status_t dvdnav_clear(dvdnav_t * this) {
12
   /* clear everything except file, vm, mutex, readahead */
13
 
(-)files/patch-programs.pro (+15 lines)
Line 0 Link Here
1
--- programs/programs.pro.orig	2017-05-15 21:00:20 UTC
2
+++ programs/programs.pro
3
@@ -15,12 +15,4 @@ using_frontend {
4
     !mingw:!win32-msvc*: SUBDIRS += mythtranscode/external/replex
5
 }
6
 
7
-using_backend {
8
-    SUBDIRS += mythbackend mythfilldatabase mythtv-setup 
9
-    SUBDIRS += mythmetadatalookup
10
-
11
-    !win32-msvc*:SUBDIRS += scripts
12
-    !mingw:!win32-msvc*: SUBDIRS += mythfilerecorder
13
-}
14
-
15
 using_mythtranscode: SUBDIRS += mythtranscode
(-)pkg-plist (-178 / +287 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-361 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
356
include/mythtv/metadata/metadatagrabber.h
398
include/mythtv/metadata/metadatagrabber.h
357
include/mythtv/metadata/metadataimagedownload.h
399
include/mythtv/metadata/metadataimagedownload.h
358
include/mythtv/metadata/metadataimagehelper.h
359
include/mythtv/metadata/metaio.h
400
include/mythtv/metadata/metaio.h
360
include/mythtv/metadata/metaioavfcomment.h
401
include/mythtv/metadata/metaioavfcomment.h
361
include/mythtv/metadata/metaioflacvorbis.h
402
include/mythtv/metadata/metaioflacvorbis.h
Lines 364-369 Link Here
364
include/mythtv/metadata/metaiooggvorbis.h
405
include/mythtv/metadata/metaiooggvorbis.h
365
include/mythtv/metadata/metaiotaglib.h
406
include/mythtv/metadata/metaiotaglib.h
366
include/mythtv/metadata/metaiowavpack.h
407
include/mythtv/metadata/metaiowavpack.h
408
include/mythtv/metadata/musicfilescanner.h
367
include/mythtv/metadata/musicmetadata.h
409
include/mythtv/metadata/musicmetadata.h
368
include/mythtv/metadata/musicutils.h
410
include/mythtv/metadata/musicutils.h
369
include/mythtv/metadata/mythmetaexp.h
411
include/mythtv/metadata/mythmetaexp.h
Lines 376-384 Link Here
376
include/mythtv/metadata/videoscan.h
418
include/mythtv/metadata/videoscan.h
377
include/mythtv/metadata/videoutils.h
419
include/mythtv/metadata/videoutils.h
378
include/mythtv/metadataimagehelper.h
420
include/mythtv/metadataimagehelper.h
421
include/mythtv/minilzo.h
379
include/mythtv/mpeg2dec/mpeg2.h
422
include/mythtv/mpeg2dec/mpeg2.h
380
include/mythtv/mthread.h
423
include/mythtv/mthread.h
381
include/mythtv/mthreadpool.h
424
include/mythtv/mthreadpool.h
425
include/mythtv/mythavutil.h
382
include/mythtv/mythbaseexp.h
426
include/mythtv/mythbaseexp.h
383
include/mythtv/mythcdrom.h
427
include/mythtv/mythcdrom.h
384
include/mythtv/mythcommandlineparser.h
428
include/mythtv/mythcommandlineparser.h
Lines 399-404 Link Here
399
include/mythtv/mythdownloadmanager.h
443
include/mythtv/mythdownloadmanager.h
400
include/mythtv/mythevent.h
444
include/mythtv/mythevent.h
401
include/mythtv/mythexp.h
445
include/mythtv/mythexp.h
446
include/mythtv/mythframe.h
402
include/mythtv/mythlocale.h
447
include/mythtv/mythlocale.h
403
include/mythtv/mythlogging.h
448
include/mythtv/mythlogging.h
404
include/mythtv/mythmedia.h
449
include/mythtv/mythmedia.h
Lines 409-414 Link Here
409
include/mythtv/mythpluginapi.h
454
include/mythtv/mythpluginapi.h
410
include/mythtv/mythqtcompat.h
455
include/mythtv/mythqtcompat.h
411
include/mythtv/mythrssmanager.h
456
include/mythtv/mythrssmanager.h
457
include/mythtv/mythsession.h
412
include/mythtv/mythsingledownload.h
458
include/mythtv/mythsingledownload.h
413
include/mythtv/mythsocket.h
459
include/mythtv/mythsocket.h
414
include/mythtv/mythsocket_cb.h
460
include/mythtv/mythsocket_cb.h
Lines 425-431 Link Here
425
include/mythtv/mythwizard.h
471
include/mythtv/mythwizard.h
426
include/mythtv/netgrabbermanager.h
472
include/mythtv/netgrabbermanager.h
427
include/mythtv/netutils.h
473
include/mythtv/netutils.h
428
include/mythtv/oldsettings.h
429
include/mythtv/output.h
474
include/mythtv/output.h
430
include/mythtv/playgroup.h
475
include/mythtv/playgroup.h
431
include/mythtv/plist.h
476
include/mythtv/plist.h
Lines 445-451 Link Here
445
include/mythtv/storagegroup.h
490
include/mythtv/storagegroup.h
446
include/mythtv/storagegroupeditor.h
491
include/mythtv/storagegroupeditor.h
447
include/mythtv/threadedfilewriter.h
492
include/mythtv/threadedfilewriter.h
448
include/mythtv/uitypes.h
493
include/mythtv/udfread.h
449
include/mythtv/upnp/bufferedsocketdevice.h
494
include/mythtv/upnp/bufferedsocketdevice.h
450
include/mythtv/upnp/configuration.h
495
include/mythtv/upnp/configuration.h
451
include/mythtv/upnp/eventing.h
496
include/mythtv/upnp/eventing.h
Lines 468-473 Link Here
468
include/mythtv/upnp/upnpcdsobjects.h
513
include/mythtv/upnp/upnpcdsobjects.h
469
include/mythtv/upnp/upnpcmgr.h
514
include/mythtv/upnp/upnpcmgr.h
470
include/mythtv/upnp/upnpdevice.h
515
include/mythtv/upnp/upnpdevice.h
516
include/mythtv/upnp/upnphelpers.h
471
include/mythtv/upnp/upnpsubscription.h
517
include/mythtv/upnp/upnpsubscription.h
472
include/mythtv/upnp/upnptaskcache.h
518
include/mythtv/upnp/upnptaskcache.h
473
include/mythtv/upnp/upnptaskevent.h
519
include/mythtv/upnp/upnptaskevent.h
Lines 476-551 Link Here
476
include/mythtv/upnp/upnputil.h
522
include/mythtv/upnp/upnputil.h
477
include/mythtv/upnp/wsdl.h
523
include/mythtv/upnp/wsdl.h
478
include/mythtv/upnp/xmlSerializer.h
524
include/mythtv/upnp/xmlSerializer.h
525
include/mythtv/upnp/xsd.h
479
include/mythtv/verbosedefs.h
526
include/mythtv/verbosedefs.h
480
include/mythtv/version.h
527
include/mythtv/version.h
481
include/mythtv/virtualkeyboard_qt.h
482
include/mythtv/visual.h
528
include/mythtv/visual.h
483
include/mythtv/volumebase.h
529
include/mythtv/volumebase.h
484
include/mythtv/xmlparse.h
530
lib/libmyth-0.28.so
485
lib/libmyth-0.27.so
531
lib/libmyth-0.28.so.0
486
lib/libmyth-0.27.so.0
532
lib/libmyth-0.28.so.0.28
487
lib/libmyth-0.27.so.0.27
533
lib/libmyth-0.28.so.0.28.0
488
lib/libmyth-0.27.so.0.27.0
489
lib/libmythavcodec.so
534
lib/libmythavcodec.so
490
lib/libmythavcodec.so.54
535
lib/libmythavcodec.so.57
491
lib/libmythavcodec.so.54.92.100
536
lib/libmythavcodec.so.57.24.102
492
lib/libmythavdevice.so
537
lib/libmythavdevice.so
493
lib/libmythavdevice.so.54
538
lib/libmythavdevice.so.57
494
lib/libmythavdevice.so.54.3.103
539
lib/libmythavdevice.so.57.0.101
495
lib/libmythavfilter.so
540
lib/libmythavfilter.so
496
lib/libmythavfilter.so.3
541
lib/libmythavfilter.so.6
497
lib/libmythavfilter.so.3.42.103
542
lib/libmythavfilter.so.6.31.100
498
lib/libmythavformat.so
543
lib/libmythavformat.so
499
lib/libmythavformat.so.54
544
lib/libmythavformat.so.57
500
lib/libmythavformat.so.54.63.104
545
lib/libmythavformat.so.57.25.100
501
lib/libmythavutil.so
546
lib/libmythavutil.so
502
lib/libmythavutil.so.52
547
lib/libmythavutil.so.55
503
lib/libmythavutil.so.52.18.100
548
lib/libmythavutil.so.55.17.103
504
lib/libmythbase-0.27.so
549
lib/libmythbase-0.28.so
505
lib/libmythbase-0.27.so.0
550
lib/libmythbase-0.28.so.0
506
lib/libmythbase-0.27.so.0.27
551
lib/libmythbase-0.28.so.0.28
507
lib/libmythbase-0.27.so.0.27.0
552
lib/libmythbase-0.28.so.0.28.0
508
lib/libmythfreemheg-0.27.so
553
lib/libmythfreemheg-0.28.so
509
lib/libmythfreemheg-0.27.so.0
554
lib/libmythfreemheg-0.28.so.0
510
lib/libmythfreemheg-0.27.so.0.27
555
lib/libmythfreemheg-0.28.so.0.28
511
lib/libmythfreemheg-0.27.so.0.27.0
556
lib/libmythfreemheg-0.28.so.0.28.0
512
lib/libmythmetadata-0.27.so
557
lib/libmythmetadata-0.28.so
513
lib/libmythmetadata-0.27.so.0
558
lib/libmythmetadata-0.28.so.0
514
lib/libmythmetadata-0.27.so.0.27
559
lib/libmythmetadata-0.28.so.0.28
515
lib/libmythmetadata-0.27.so.0.27.0
560
lib/libmythmetadata-0.28.so.0.28.0
516
lib/libmythpostproc.so
561
lib/libmythpostproc.so
517
lib/libmythpostproc.so.52
562
lib/libmythpostproc.so.54
518
lib/libmythpostproc.so.52.2.100
563
lib/libmythpostproc.so.54.0.100
519
lib/libmythprotoserver-0.27.so
564
lib/libmythprotoserver-0.28.so
520
lib/libmythprotoserver-0.27.so.0
565
lib/libmythprotoserver-0.28.so.0
521
lib/libmythprotoserver-0.27.so.0.27
566
lib/libmythprotoserver-0.28.so.0.28
522
lib/libmythprotoserver-0.27.so.0.27.0
567
lib/libmythprotoserver-0.28.so.0.28.0
523
lib/libmythqjson.so
568
lib/libmythservicecontracts-0.28.so
524
lib/libmythqjson.so.0
569
lib/libmythservicecontracts-0.28.so.0
525
lib/libmythqjson.so.0.7
570
lib/libmythservicecontracts-0.28.so.0.28
526
lib/libmythqjson.so.0.7.1
571
lib/libmythservicecontracts-0.28.so.0.28.0
527
lib/libmythservicecontracts-0.27.so
528
lib/libmythservicecontracts-0.27.so.0
529
lib/libmythservicecontracts-0.27.so.0.27
530
lib/libmythservicecontracts-0.27.so.0.27.0
531
lib/libmythswresample.so
572
lib/libmythswresample.so
532
lib/libmythswresample.so.0
573
lib/libmythswresample.so.2
533
lib/libmythswresample.so.0.17.102
574
lib/libmythswresample.so.2.0.101
534
lib/libmythswscale.so
575
lib/libmythswscale.so
535
lib/libmythswscale.so.2
576
lib/libmythswscale.so.4
536
lib/libmythswscale.so.2.2.100
577
lib/libmythswscale.so.4.0.100
537
lib/libmythtv-0.27.so
578
lib/libmythtv-0.28.so
538
lib/libmythtv-0.27.so.0
579
lib/libmythtv-0.28.so.0
539
lib/libmythtv-0.27.so.0.27
580
lib/libmythtv-0.28.so.0.28
540
lib/libmythtv-0.27.so.0.27.0
581
lib/libmythtv-0.28.so.0.28.0
541
lib/libmythui-0.27.so
582
lib/libmythui-0.28.so
542
lib/libmythui-0.27.so.0
583
lib/libmythui-0.28.so.0
543
lib/libmythui-0.27.so.0.27
584
lib/libmythui-0.28.so.0.28
544
lib/libmythui-0.27.so.0.27.0
585
lib/libmythui-0.28.so.0.28.0
545
lib/libmythupnp-0.27.so
586
lib/libmythupnp-0.28.so
546
lib/libmythupnp-0.27.so.0
587
lib/libmythupnp-0.28.so.0
547
lib/libmythupnp-0.27.so.0.27
588
lib/libmythupnp-0.28.so.0.28
548
lib/libmythupnp-0.27.so.0.27.0
589
lib/libmythupnp-0.28.so.0.28.0
549
lib/mythtv/filters/libadjust.so
590
lib/mythtv/filters/libadjust.so
550
lib/mythtv/filters/libbobdeint.so
591
lib/mythtv/filters/libbobdeint.so
551
lib/mythtv/filters/libcrop.so
592
lib/mythtv/filters/libcrop.so
Lines 562-571 Link Here
562
lib/mythtv/filters/libquickdnr.so
603
lib/mythtv/filters/libquickdnr.so
563
lib/mythtv/filters/libvflip.so
604
lib/mythtv/filters/libvflip.so
564
lib/mythtv/filters/libyadif.so
605
lib/mythtv/filters/libyadif.so
606
libdata/ldconfig/mythtv-frontend
607
share/applications/mythfrontend.desktop
565
%%DATADIR%%/CDS_scpd.xml
608
%%DATADIR%%/CDS_scpd.xml
566
%%DATADIR%%/CMGR_scpd.xml
609
%%DATADIR%%/CMGR_scpd.xml
567
%%DATADIR%%/MFEXML_scpd.xml
610
%%DATADIR%%/MFEXML_scpd.xml
568
%%DATADIR%%/MSRR_scpd.xml
611
%%DATADIR%%/MSRR_scpd.xml
612
%%DATADIR%%/database/mc.sql
569
%%DATADIR%%/fonts/DroidSans-Bold.ttf
613
%%DATADIR%%/fonts/DroidSans-Bold.ttf
570
%%DATADIR%%/fonts/DroidSans.ttf
614
%%DATADIR%%/fonts/DroidSans.ttf
571
%%DATADIR%%/fonts/DroidSansMono.ttf
615
%%DATADIR%%/fonts/DroidSansMono.ttf
Lines 595-693 Link Here
595
%%DATADIR%%/fonts/Tiresias Infofont.ttf
639
%%DATADIR%%/fonts/Tiresias Infofont.ttf
596
%%DATADIR%%/fonts/texgyrechorus-mediumitalic.otf
640
%%DATADIR%%/fonts/texgyrechorus-mediumitalic.otf
597
%%DATADIR%%/fonts/tiresias_gpl3.txt
641
%%DATADIR%%/fonts/tiresias_gpl3.txt
642
%%DATADIR%%/html/3rdParty/jquery/MYTH_README
643
%%DATADIR%%/html/3rdParty/jquery/galleria/LICENSE
644
%%DATADIR%%/html/3rdParty/jquery/galleria/galleria.js
645
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/flickr-demo.html
646
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/flickr-loader.gif
647
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/galleria.flickr.js
648
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/galleria.flickr.min.js
649
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/loader.gif
650
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/history/galleria.history.js
651
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/history/galleria.history.min.js
652
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/history/history-demo.html
653
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/galleria.picasa.js
654
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/galleria.picasa.min.js
655
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/loader.gif
656
%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/picasa-demo.html
657
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/README.rst
658
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/classic-demo.html
659
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/classic-loader.gif
660
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/classic-map.png
661
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/galleria.classic.css
662
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/galleria.classic.js
663
%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/galleria.classic.min.js
664
%%DATADIR%%/html/3rdParty/jquery/jquery-2.0.3.js
665
%%DATADIR%%/html/3rdParty/jquery/jquery-2.0.3.min.js
666
%%DATADIR%%/html/3rdParty/jquery/jquery-2.1.4.min.js
667
%%DATADIR%%/html/3rdParty/jquery/jqueryContextMenu/js/jquery.contextmenu.js
668
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/application.png
669
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/code.png
670
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/css.png
671
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/db.png
672
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/directory.png
673
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/doc.png
674
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/file.png
675
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/film.png
676
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/flash.png
677
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/folder_open.png
678
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/html.png
679
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/java.png
680
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/linux.png
681
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/music.png
682
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/pdf.png
683
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/php.png
684
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/picture.png
685
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/ppt.png
686
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/psd.png
687
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/ruby.png
688
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/script.png
689
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/spinner.gif
690
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/txt.png
691
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/xls.png
692
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/zip.png
693
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/jqueryFileTree.css
694
%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/jqueryFileTree.js
695
%%DATADIR%%/html/3rdParty/jquery/jqueryGrid/css/ui.jqgrid.css
696
%%DATADIR%%/html/3rdParty/jquery/jqueryGrid/js/grid.locale-en.js
697
%%DATADIR%%/html/3rdParty/jquery/jqueryGrid/js/jquery.jqGrid.js
698
%%DATADIR%%/html/3rdParty/jquery/jqueryJScroll/README.md
699
%%DATADIR%%/html/3rdParty/jquery/jqueryJScroll/jquery.jscroll.js
700
%%DATADIR%%/html/3rdParty/jquery/jqueryJScroll/jscroll.jquery.json
701
%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/css/jquery.multiselect.css
702
%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/css/ui.multiselect.css
703
%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/js/jquery.multiselect.js
704
%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/js/ui-multiselect-en.js
705
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_flat_30_cccccc_40x100.png
706
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_flat_50_5c5c5c_40x100.png
707
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_glass_40_ffc73d_1x400.png
708
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_hexagon_10_000000_12x10.png
709
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-hard_20_0b6a98_1x100.png
710
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_33_003147_1x100.png
711
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_35_222222_1x100.png
712
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_44_444444_1x100.png
713
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
714
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_222222_256x240.png
715
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_4b8e0b_256x240.png
716
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_a83300_256x240.png
717
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_cccccc_256x240.png
718
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_ffffff_256x240.png
719
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/jquery-ui-1.10.3.css
720
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/jquery-ui.css
721
%%DATADIR%%/html/3rdParty/jquery/jqueryUI/js/jquery-ui-1.10.3.js
598
%%DATADIR%%/html/3rdParty/jwplayer.qsp
722
%%DATADIR%%/html/3rdParty/jwplayer.qsp
723
%%DATADIR%%/html/backend_index.qsp
599
%%DATADIR%%/html/css/Status.css
724
%%DATADIR%%/html/css/Status.css
600
%%DATADIR%%/html/css/images/ui-bg_flat_30_cccccc_40x100.png
725
%%DATADIR%%/html/css/settings.css
601
%%DATADIR%%/html/css/images/ui-bg_flat_50_5c5c5c_40x100.png
602
%%DATADIR%%/html/css/images/ui-bg_glass_40_ffc73d_1x400.png
603
%%DATADIR%%/html/css/images/ui-bg_hexagon_10_000000_12x10.png
604
%%DATADIR%%/html/css/images/ui-bg_highlight-hard_20_0b6a98_1x100.png
605
%%DATADIR%%/html/css/images/ui-bg_highlight-soft_33_003147_1x100.png
606
%%DATADIR%%/html/css/images/ui-bg_highlight-soft_35_222222_1x100.png
607
%%DATADIR%%/html/css/images/ui-bg_highlight-soft_44_444444_1x100.png
608
%%DATADIR%%/html/css/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
609
%%DATADIR%%/html/css/images/ui-icons_222222_256x240.png
610
%%DATADIR%%/html/css/images/ui-icons_4b8e0b_256x240.png
611
%%DATADIR%%/html/css/images/ui-icons_a83300_256x240.png
612
%%DATADIR%%/html/css/images/ui-icons_cccccc_256x240.png
613
%%DATADIR%%/html/css/images/ui-icons_ffffff_256x240.png
614
%%DATADIR%%/html/css/jquery-ui.css
615
%%DATADIR%%/html/css/menustyle.css
616
%%DATADIR%%/html/css/setup.css
726
%%DATADIR%%/html/css/setup.css
617
%%DATADIR%%/html/css/site.css
727
%%DATADIR%%/html/css/site.css
618
%%DATADIR%%/html/css/ui.jqgrid.css
619
%%DATADIR%%/html/css/ui.multiselect.css
620
%%DATADIR%%/html/css/wsdl.css
728
%%DATADIR%%/html/css/wsdl.css
729
%%DATADIR%%/html/debug/websocket.qsp
730
%%DATADIR%%/html/frontend_index.qsp
621
%%DATADIR%%/html/images/blank.gif
731
%%DATADIR%%/html/images/blank.gif
622
%%DATADIR%%/html/images/checkerboard_100x100.png
732
%%DATADIR%%/html/images/checkerboard_100x100.png
623
%%DATADIR%%/html/images/favicon.ico
733
%%DATADIR%%/html/images/favicon.ico
734
%%DATADIR%%/html/images/icons/README
735
%%DATADIR%%/html/images/icons/upnp_large_icon.jpg
736
%%DATADIR%%/html/images/icons/upnp_large_icon.png
737
%%DATADIR%%/html/images/icons/upnp_small_icon.jpg
738
%%DATADIR%%/html/images/icons/upnp_small_icon.png
624
%%DATADIR%%/html/images/menu-button-bg.gif
739
%%DATADIR%%/html/images/menu-button-bg.gif
625
%%DATADIR%%/html/images/mythtv.png
740
%%DATADIR%%/html/images/mythtv.png
626
%%DATADIR%%/html/images/ui-bg_flat_30_cccccc_40x100.png
627
%%DATADIR%%/html/images/ui-bg_flat_50_5c5c5c_40x100.png
628
%%DATADIR%%/html/images/ui-bg_glass_40_ffc73d_1x400.png
629
%%DATADIR%%/html/images/ui-bg_hexagon_10_000000_12x10.png
630
%%DATADIR%%/html/images/ui-bg_highlight-hard_20_0b6a98_1x100.png
631
%%DATADIR%%/html/images/ui-bg_highlight-soft_33_003147_1x100.png
632
%%DATADIR%%/html/images/ui-bg_highlight-soft_35_222222_1x100.png
633
%%DATADIR%%/html/images/ui-bg_highlight-soft_44_444444_1x100.png
634
%%DATADIR%%/html/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
635
%%DATADIR%%/html/images/ui-icons_222222_256x240.png
636
%%DATADIR%%/html/images/ui-icons_4b8e0b_256x240.png
637
%%DATADIR%%/html/images/ui-icons_a83300_256x240.png
638
%%DATADIR%%/html/images/ui-icons_cccccc_256x240.png
639
%%DATADIR%%/html/images/ui-icons_ffffff_256x240.png
640
%%DATADIR%%/html/index.html
641
%%DATADIR%%/html/js/databaseutil.js
642
%%DATADIR%%/html/js/fileutil.js
741
%%DATADIR%%/html/js/fileutil.js
643
%%DATADIR%%/html/js/galleria/LICENSE
644
%%DATADIR%%/html/js/galleria/galleria-1.2.3.js
645
%%DATADIR%%/html/js/galleria/galleria-1.2.3.min.js
646
%%DATADIR%%/html/js/galleria/themes/classic/README.rst
647
%%DATADIR%%/html/js/galleria/themes/classic/classic-demo.html
648
%%DATADIR%%/html/js/galleria/themes/classic/classic-loader.gif
649
%%DATADIR%%/html/js/galleria/themes/classic/classic-map.png
650
%%DATADIR%%/html/js/galleria/themes/classic/galleria.classic.css
651
%%DATADIR%%/html/js/galleria/themes/classic/galleria.classic.js
652
%%DATADIR%%/html/js/galleria/themes/classic/galleria.classic.min.js
653
%%DATADIR%%/html/js/grid.locale-en.js
654
%%DATADIR%%/html/js/inspect.js
742
%%DATADIR%%/html/js/inspect.js
655
%%DATADIR%%/html/js/jquery-ui.min.js
656
%%DATADIR%%/html/js/jquery.contextmenu.js
657
%%DATADIR%%/html/js/jquery.jqGrid.min.js
658
%%DATADIR%%/html/js/jquery.min.js
659
%%DATADIR%%/html/js/jqueryFileTree/images/application.png
660
%%DATADIR%%/html/js/jqueryFileTree/images/code.png
661
%%DATADIR%%/html/js/jqueryFileTree/images/css.png
662
%%DATADIR%%/html/js/jqueryFileTree/images/db.png
663
%%DATADIR%%/html/js/jqueryFileTree/images/directory.png
664
%%DATADIR%%/html/js/jqueryFileTree/images/doc.png
665
%%DATADIR%%/html/js/jqueryFileTree/images/file.png
666
%%DATADIR%%/html/js/jqueryFileTree/images/film.png
667
%%DATADIR%%/html/js/jqueryFileTree/images/flash.png
668
%%DATADIR%%/html/js/jqueryFileTree/images/folder_open.png
669
%%DATADIR%%/html/js/jqueryFileTree/images/html.png
670
%%DATADIR%%/html/js/jqueryFileTree/images/java.png
671
%%DATADIR%%/html/js/jqueryFileTree/images/linux.png
672
%%DATADIR%%/html/js/jqueryFileTree/images/music.png
673
%%DATADIR%%/html/js/jqueryFileTree/images/pdf.png
674
%%DATADIR%%/html/js/jqueryFileTree/images/php.png
675
%%DATADIR%%/html/js/jqueryFileTree/images/picture.png
676
%%DATADIR%%/html/js/jqueryFileTree/images/ppt.png
677
%%DATADIR%%/html/js/jqueryFileTree/images/psd.png
678
%%DATADIR%%/html/js/jqueryFileTree/images/ruby.png
679
%%DATADIR%%/html/js/jqueryFileTree/images/script.png
680
%%DATADIR%%/html/js/jqueryFileTree/images/spinner.gif
681
%%DATADIR%%/html/js/jqueryFileTree/images/txt.png
682
%%DATADIR%%/html/js/jqueryFileTree/images/xls.png
683
%%DATADIR%%/html/js/jqueryFileTree/images/zip.png
684
%%DATADIR%%/html/js/jqueryFileTree/jqueryFileTree.css
685
%%DATADIR%%/html/js/jqueryFileTree/jqueryFileTree.js
686
%%DATADIR%%/html/js/menu.js
743
%%DATADIR%%/html/js/menu.js
687
%%DATADIR%%/html/js/ui-multiselect-en.js
744
%%DATADIR%%/html/js/settings.js
688
%%DATADIR%%/html/js/ui.multiselect.js
689
%%DATADIR%%/html/js/util.qjs
745
%%DATADIR%%/html/js/util.qjs
746
%%DATADIR%%/html/js/utility.js
747
%%DATADIR%%/html/js/websocket_events.js
690
%%DATADIR%%/html/menu.qsp
748
%%DATADIR%%/html/menu.qsp
749
%%DATADIR%%/html/misc/css/overview.css
691
%%DATADIR%%/html/misc/database-backup.html
750
%%DATADIR%%/html/misc/database-backup.html
692
%%DATADIR%%/html/misc/database-repair.html
751
%%DATADIR%%/html/misc/database-repair.html
693
%%DATADIR%%/html/misc/databasetabs.html
752
%%DATADIR%%/html/misc/databasetabs.html
Lines 697-708 Link Here
697
%%DATADIR%%/html/misc/js/databasetabs.js
756
%%DATADIR%%/html/misc/js/databasetabs.js
698
%%DATADIR%%/html/misc/js/hardwareprofile.js
757
%%DATADIR%%/html/misc/js/hardwareprofile.js
699
%%DATADIR%%/html/misc/js/messagetab.js
758
%%DATADIR%%/html/misc/js/messagetab.js
759
%%DATADIR%%/html/misc/js/overview.js
700
%%DATADIR%%/html/misc/js/viewlogs.js
760
%%DATADIR%%/html/misc/js/viewlogs.js
701
%%DATADIR%%/html/misc/message.html
761
%%DATADIR%%/html/misc/message.html
702
%%DATADIR%%/html/misc/messagetab.html
762
%%DATADIR%%/html/misc/messagetab.html
763
%%DATADIR%%/html/misc/misc_template.html
703
%%DATADIR%%/html/misc/overview.qsp
764
%%DATADIR%%/html/misc/overview.qsp
704
%%DATADIR%%/html/misc/placeholder.html
765
%%DATADIR%%/html/misc/placeholder.html
705
%%DATADIR%%/html/misc/viewlogs.html
766
%%DATADIR%%/html/misc/viewlogs.html
767
%%DATADIR%%/html/robots.txt
706
%%DATADIR%%/html/samples/hlstest.qsp
768
%%DATADIR%%/html/samples/hlstest.qsp
707
%%DATADIR%%/html/samples/js/samples.js
769
%%DATADIR%%/html/samples/js/samples.js
708
%%DATADIR%%/html/samples/livestream_rec.qsp
770
%%DATADIR%%/html/samples/livestream_rec.qsp
Lines 710-718 Link Here
710
%%DATADIR%%/html/samples/recorded.qsp
772
%%DATADIR%%/html/samples/recorded.qsp
711
%%DATADIR%%/html/samples/serverside.qsp
773
%%DATADIR%%/html/samples/serverside.qsp
712
%%DATADIR%%/html/samples/storagegroups.qsp
774
%%DATADIR%%/html/samples/storagegroups.qsp
775
%%DATADIR%%/html/setup/ajax_backends/setting_util.qsp
713
%%DATADIR%%/html/setup/channeleditor-channeldetail-multi.html
776
%%DATADIR%%/html/setup/channeleditor-channeldetail-multi.html
714
%%DATADIR%%/html/setup/channeleditor-channeldetail.html
777
%%DATADIR%%/html/setup/channeleditor-channeldetail.html
715
%%DATADIR%%/html/setup/channeleditor.html
778
%%DATADIR%%/html/setup/channeleditor.html
779
%%DATADIR%%/html/setup/css/common.css
716
%%DATADIR%%/html/setup/database.html
780
%%DATADIR%%/html/setup/database.html
717
%%DATADIR%%/html/setup/expert.html
781
%%DATADIR%%/html/setup/expert.html
718
%%DATADIR%%/html/setup/general.html
782
%%DATADIR%%/html/setup/general.html
Lines 723-743 Link Here
723
%%DATADIR%%/html/setup/jobqueue-jobs.qsp
787
%%DATADIR%%/html/setup/jobqueue-jobs.qsp
724
%%DATADIR%%/html/setup/jobqueue.html
788
%%DATADIR%%/html/setup/jobqueue.html
725
%%DATADIR%%/html/setup/js/channeleditor.js
789
%%DATADIR%%/html/setup/js/channeleditor.js
790
%%DATADIR%%/html/setup/js/common.js
726
%%DATADIR%%/html/setup/js/database.js
791
%%DATADIR%%/html/setup/js/database.js
727
%%DATADIR%%/html/setup/js/general.js
792
%%DATADIR%%/html/setup/js/general.js
728
%%DATADIR%%/html/setup/js/guidedatasources.js
793
%%DATADIR%%/html/setup/js/guidedatasources.js
729
%%DATADIR%%/html/setup/js/jobqueue.js
794
%%DATADIR%%/html/setup/js/jobqueue.js
730
%%DATADIR%%/html/setup/js/password.js
795
%%DATADIR%%/html/setup/js/password.js
731
%%DATADIR%%/html/setup/js/setup.js
732
%%DATADIR%%/html/setup/js/storagegroups.js
796
%%DATADIR%%/html/setup/js/storagegroups.js
733
%%DATADIR%%/html/setup/js/systemevents.js
797
%%DATADIR%%/html/setup/js/systemevents.js
734
%%DATADIR%%/html/setup/js/wizard.js
798
%%DATADIR%%/html/setup/js/wizard.js
735
%%DATADIR%%/html/setup/overview.html
799
%%DATADIR%%/html/setup/overview.html
736
%%DATADIR%%/html/setup/password.html
800
%%DATADIR%%/html/setup/password.html
801
%%DATADIR%%/html/setup/setup_template.html
737
%%DATADIR%%/html/setup/storagegroups-add-dir.html
802
%%DATADIR%%/html/setup/storagegroups-add-dir.html
738
%%DATADIR%%/html/setup/storagegroups-add-new.html
803
%%DATADIR%%/html/setup/storagegroups-add-new.html
739
%%DATADIR%%/html/setup/storagegroups.html
804
%%DATADIR%%/html/setup/storagegroups.html
740
%%DATADIR%%/html/setup/systemevents.html
805
%%DATADIR%%/html/setup/systemevents.html
806
%%DATADIR%%/html/setup/webfrontend-settings.qsp
741
%%DATADIR%%/html/setup/wizard-database.html
807
%%DATADIR%%/html/setup/wizard-database.html
742
%%DATADIR%%/html/setup/wizard-guide_data.html
808
%%DATADIR%%/html/setup/wizard-guide_data.html
743
%%DATADIR%%/html/setup/wizard-media_storage.html
809
%%DATADIR%%/html/setup/wizard-media_storage.html
Lines 744-750 Link Here
744
%%DATADIR%%/html/setup/wizard-network.qsp
810
%%DATADIR%%/html/setup/wizard-network.qsp
745
%%DATADIR%%/html/setup/wizard-recording_devices.html
811
%%DATADIR%%/html/setup/wizard-recording_devices.html
746
%%DATADIR%%/html/setup/wizard.html
812
%%DATADIR%%/html/setup/wizard.html
813
%%DATADIR%%/html/tv/ajax_backends/dvr_util.qsp
814
%%DATADIR%%/html/tv/ajax_backends/program_util.qsp
815
%%DATADIR%%/html/tv/css/category_colors.css
816
%%DATADIR%%/html/tv/css/common.css
817
%%DATADIR%%/html/tv/css/guide.css
818
%%DATADIR%%/html/tv/css/icons.css
819
%%DATADIR%%/html/tv/css/programsearch.css
820
%%DATADIR%%/html/tv/css/recordingrules.css
821
%%DATADIR%%/html/tv/css/recordings.css
822
%%DATADIR%%/html/tv/css/schedule.css
823
%%DATADIR%%/html/tv/css/tvplayer.css
824
%%DATADIR%%/html/tv/css/upcoming.css
825
%%DATADIR%%/html/tv/guide.qsp
826
%%DATADIR%%/html/tv/images/blank.png
827
%%DATADIR%%/html/tv/images/cat_movie.svg
828
%%DATADIR%%/html/tv/images/channel_icon.svg
829
%%DATADIR%%/html/tv/images/fl_autoexp.svg
830
%%DATADIR%%/html/tv/images/fl_bookmark.svg
831
%%DATADIR%%/html/tv/images/fl_commflag.svg
832
%%DATADIR%%/html/tv/images/fl_watched.svg
833
%%DATADIR%%/html/tv/images/hd_1080.svg
834
%%DATADIR%%/html/tv/images/hd_720.svg
835
%%DATADIR%%/html/tv/images/hd_tv.svg
836
%%DATADIR%%/html/tv/images/play_arrow.png
837
%%DATADIR%%/html/tv/images/play_arrow.svg
838
%%DATADIR%%/html/tv/images/recording_icons_sprite.svg
839
%%DATADIR%%/html/tv/images/wastebin.svg
840
%%DATADIR%%/html/tv/js/common.js
841
%%DATADIR%%/html/tv/js/constants.js
842
%%DATADIR%%/html/tv/js/guide.js
843
%%DATADIR%%/html/tv/js/programsearch.js
844
%%DATADIR%%/html/tv/js/recordings.js
845
%%DATADIR%%/html/tv/js/schedule.js
846
%%DATADIR%%/html/tv/js/tvutil.qjs
847
%%DATADIR%%/html/tv/js/upcoming.js
848
%%DATADIR%%/html/tv/programsearch.qsp
849
%%DATADIR%%/html/tv/recordingrules.qsp
850
%%DATADIR%%/html/tv/recordings.qsp
851
%%DATADIR%%/html/tv/schedule.qsp
852
%%DATADIR%%/html/tv/stream.qsp
853
%%DATADIR%%/html/tv/tvplayer.qsp
854
%%DATADIR%%/html/tv/upcoming.qsp
855
%%DATADIR%%/html/video/css/gallery.css
856
%%DATADIR%%/html/video/gallery.qsp
857
%%DATADIR%%/html/video/gallery_detail.qsp
858
%%DATADIR%%/html/video/images/folder_icon.png
859
%%DATADIR%%/html/video/images/mv_gallery_dir_up.png
860
%%DATADIR%%/html/video/images/unknown.png
861
%%DATADIR%%/html/video/js/gallery.js
862
%%DATADIR%%/html/video/js/gallery.qjs
747
%%DATADIR%%/html/xslt/class.xslt
863
%%DATADIR%%/html/xslt/class.xslt
864
%%DATADIR%%/html/xslt/enum.xslt
748
%%DATADIR%%/html/xslt/service.xslt
865
%%DATADIR%%/html/xslt/service.xslt
749
%%DATADIR%%/i18n/mythfrontend_bg.qm
866
%%DATADIR%%/i18n/mythfrontend_bg.qm
750
%%DATADIR%%/i18n/mythfrontend_ca.qm
867
%%DATADIR%%/i18n/mythfrontend_ca.qm
Lines 1222-1228 Link Here
1222
%%DATADIR%%/themes/Terra/video/video_gallery_background_selected.png
1339
%%DATADIR%%/themes/Terra/video/video_gallery_background_selected.png
1223
%%DATADIR%%/themes/Terra/watermarks/README.license
1340
%%DATADIR%%/themes/Terra/watermarks/README.license
1224
%%DATADIR%%/themes/Terra/watermarks/aerial.png
1341
%%DATADIR%%/themes/Terra/watermarks/aerial.png
1225
%%DATADIR%%/themes/Terra/watermarks/appearance.png
1226
%%DATADIR%%/themes/Terra/watermarks/archive.png
1342
%%DATADIR%%/themes/Terra/watermarks/archive.png
1227
%%DATADIR%%/themes/Terra/watermarks/audio.png
1343
%%DATADIR%%/themes/Terra/watermarks/audio.png
1228
%%DATADIR%%/themes/Terra/watermarks/browser.png
1344
%%DATADIR%%/themes/Terra/watermarks/browser.png
Lines 1264-1269 Link Here
1264
%%DATADIR%%/themes/Terra/watermarks/select_music.png
1380
%%DATADIR%%/themes/Terra/watermarks/select_music.png
1265
%%DATADIR%%/themes/Terra/watermarks/status.png
1381
%%DATADIR%%/themes/Terra/watermarks/status.png
1266
%%DATADIR%%/themes/Terra/watermarks/stop_light.png
1382
%%DATADIR%%/themes/Terra/watermarks/stop_light.png
1383
%%DATADIR%%/themes/Terra/watermarks/themechooser.png
1267
%%DATADIR%%/themes/Terra/watermarks/tools.png
1384
%%DATADIR%%/themes/Terra/watermarks/tools.png
1268
%%DATADIR%%/themes/Terra/watermarks/tv.png
1385
%%DATADIR%%/themes/Terra/watermarks/tv.png
1269
%%DATADIR%%/themes/Terra/watermarks/vcr.png
1386
%%DATADIR%%/themes/Terra/watermarks/vcr.png
Lines 1433-1460 Link Here
1433
%%DATADIR%%/themes/default/htmls/notfound.html
1550
%%DATADIR%%/themes/default/htmls/notfound.html
1434
%%DATADIR%%/themes/default/htmls/progdetails_page1.html
1551
%%DATADIR%%/themes/default/htmls/progdetails_page1.html
1435
%%DATADIR%%/themes/default/htmls/progdetails_page2.html
1552
%%DATADIR%%/themes/default/htmls/progdetails_page2.html
1553
%%DATADIR%%/themes/default/image-ui.xml
1436
%%DATADIR%%/themes/default/keyboard/ar.xml
1554
%%DATADIR%%/themes/default/keyboard/ar.xml
1437
%%DATADIR%%/themes/default/keyboard/ar_ui.xml
1438
%%DATADIR%%/themes/default/keyboard/da.xml
1555
%%DATADIR%%/themes/default/keyboard/da.xml
1439
%%DATADIR%%/themes/default/keyboard/da_ui.xml
1440
%%DATADIR%%/themes/default/keyboard/de.xml
1556
%%DATADIR%%/themes/default/keyboard/de.xml
1441
%%DATADIR%%/themes/default/keyboard/de_ui.xml
1442
%%DATADIR%%/themes/default/keyboard/el.xml
1557
%%DATADIR%%/themes/default/keyboard/el.xml
1443
%%DATADIR%%/themes/default/keyboard/el_ui.xml
1444
%%DATADIR%%/themes/default/keyboard/en_gb.xml
1558
%%DATADIR%%/themes/default/keyboard/en_gb.xml
1445
%%DATADIR%%/themes/default/keyboard/en_gb_ui.xml
1446
%%DATADIR%%/themes/default/keyboard/en_us.xml
1559
%%DATADIR%%/themes/default/keyboard/en_us.xml
1447
%%DATADIR%%/themes/default/keyboard/en_us_ui.xml
1448
%%DATADIR%%/themes/default/keyboard/es.xml
1560
%%DATADIR%%/themes/default/keyboard/es.xml
1449
%%DATADIR%%/themes/default/keyboard/es_ui.xml
1450
%%DATADIR%%/themes/default/keyboard/fr.xml
1561
%%DATADIR%%/themes/default/keyboard/fr.xml
1451
%%DATADIR%%/themes/default/keyboard/fr_ch.xml
1562
%%DATADIR%%/themes/default/keyboard/fr_ch.xml
1452
%%DATADIR%%/themes/default/keyboard/fr_ch_ui.xml
1453
%%DATADIR%%/themes/default/keyboard/fr_ui.xml
1454
%%DATADIR%%/themes/default/keyboard/he.xml
1563
%%DATADIR%%/themes/default/keyboard/he.xml
1455
%%DATADIR%%/themes/default/keyboard/he_ui.xml
1456
%%DATADIR%%/themes/default/keyboard/it.xml
1564
%%DATADIR%%/themes/default/keyboard/it.xml
1457
%%DATADIR%%/themes/default/keyboard/it_ui.xml
1458
%%DATADIR%%/themes/default/keyboard/key_down.png
1565
%%DATADIR%%/themes/default/keyboard/key_down.png
1459
%%DATADIR%%/themes/default/keyboard/key_down_back.png
1566
%%DATADIR%%/themes/default/keyboard/key_down_back.png
1460
%%DATADIR%%/themes/default/keyboard/key_down_del.png
1567
%%DATADIR%%/themes/default/keyboard/key_down_del.png
Lines 1491-1504 Link Here
1491
%%DATADIR%%/themes/default/keyboard/keyboard.xml
1598
%%DATADIR%%/themes/default/keyboard/keyboard.xml
1492
%%DATADIR%%/themes/default/keyboard/leftarrow.png
1599
%%DATADIR%%/themes/default/keyboard/leftarrow.png
1493
%%DATADIR%%/themes/default/keyboard/nb.xml
1600
%%DATADIR%%/themes/default/keyboard/nb.xml
1494
%%DATADIR%%/themes/default/keyboard/nb_ui.xml
1495
%%DATADIR%%/themes/default/keyboard/returnarrow.png
1601
%%DATADIR%%/themes/default/keyboard/returnarrow.png
1496
%%DATADIR%%/themes/default/keyboard/rightarrow.png
1602
%%DATADIR%%/themes/default/keyboard/rightarrow.png
1497
%%DATADIR%%/themes/default/keyboard/ru.xml
1603
%%DATADIR%%/themes/default/keyboard/ru.xml
1498
%%DATADIR%%/themes/default/keyboard/ru_ui.xml
1499
%%DATADIR%%/themes/default/keyboard/shiftarrow.png
1604
%%DATADIR%%/themes/default/keyboard/shiftarrow.png
1500
%%DATADIR%%/themes/default/keyboard/sv.xml
1605
%%DATADIR%%/themes/default/keyboard/sv.xml
1501
%%DATADIR%%/themes/default/keyboard/sv_ui.xml
1502
%%DATADIR%%/themes/default/lb-arrow.png
1606
%%DATADIR%%/themes/default/lb-arrow.png
1503
%%DATADIR%%/themes/default/lb-check-empty.png
1607
%%DATADIR%%/themes/default/lb-check-empty.png
1504
%%DATADIR%%/themes/default/lb-check-full.png
1608
%%DATADIR%%/themes/default/lb-check-full.png
Lines 1769-1774 Link Here
1769
%%DATADIR%%/themes/default/menu_playback.xml
1873
%%DATADIR%%/themes/default/menu_playback.xml
1770
%%DATADIR%%/themes/default/menu_playback_compact.xml
1874
%%DATADIR%%/themes/default/menu_playback_compact.xml
1771
%%DATADIR%%/themes/default/mono.png
1875
%%DATADIR%%/themes/default/mono.png
1876
%%DATADIR%%/themes/default/musicscanner.png
1772
%%DATADIR%%/themes/default/mv_browse_background.png
1877
%%DATADIR%%/themes/default/mv_browse_background.png
1773
%%DATADIR%%/themes/default/mv_browse_selector.png
1878
%%DATADIR%%/themes/default/mv_browse_selector.png
1774
%%DATADIR%%/themes/default/mv_filerequest.png
1879
%%DATADIR%%/themes/default/mv_filerequest.png
Lines 1830-1838 Link Here
1830
%%DATADIR%%/themes/default/shared/directory.png
1935
%%DATADIR%%/themes/default/shared/directory.png
1831
%%DATADIR%%/themes/default/shared/executable.png
1936
%%DATADIR%%/themes/default/shared/executable.png
1832
%%DATADIR%%/themes/default/shared/file.png
1937
%%DATADIR%%/themes/default/shared/file.png
1938
%%DATADIR%%/themes/default/shared/folder-reg.png
1939
%%DATADIR%%/themes/default/shared/folder-sel.png
1833
%%DATADIR%%/themes/default/shared/grid_back_reg.png
1940
%%DATADIR%%/themes/default/shared/grid_back_reg.png
1834
%%DATADIR%%/themes/default/shared/grid_back_sel.png
1941
%%DATADIR%%/themes/default/shared/grid_back_sel.png
1835
%%DATADIR%%/themes/default/shared/grid_noimage.png
1942
%%DATADIR%%/themes/default/shared/grid_noimage.png
1943
%%DATADIR%%/themes/default/shared/movie-reg.png
1944
%%DATADIR%%/themes/default/shared/movie-sel.png
1836
%%DATADIR%%/themes/default/shared/secure.png
1945
%%DATADIR%%/themes/default/shared/secure.png
1837
%%DATADIR%%/themes/default/shared/unsecure.png
1946
%%DATADIR%%/themes/default/shared/unsecure.png
1838
%%DATADIR%%/themes/default/shared/updirectory.png
1947
%%DATADIR%%/themes/default/shared/updirectory.png

Return to bug 219149