FreeBSD Bugzilla – Attachment 184585 Details for
Bug 219149
multimedia/mythtv-frontend: Update to 0.28.1
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
WORK IN PROGRESS (HAS ISSUES) Patch against recent tree to build mythtv-frontend
mythtv-frontend.diff (text/plain), 41.04 KB, created by
robbak
on 2017-07-22 01:23:34 UTC
(
hide
)
Description:
WORK IN PROGRESS (HAS ISSUES) Patch against recent tree to build mythtv-frontend
Filename:
MIME Type:
Creator:
robbak
Created:
2017-07-22 01:23:34 UTC
Size:
41.04 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (revision 445846) >+++ Makefile (working copy) >@@ -3,7 +3,7 @@ > > PORTNAME= mythtv-frontend > PORTVERSION= 0.28.1 >-PORTREVISION= 1 >+PORTREVISION= 2 > CATEGORIES= multimedia > > MAINTAINER= ports@FreeBSD.org >@@ -13,11 +13,20 @@ > LICENSE_FILE= ${WRKSRC}/COPYING > > BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat \ >- yasm:devel/yasm >+ yasm:devel/yasm \ >+ p5-DBD-mysql>0:databases/p5-DBD-mysql > LIB_DEPENDS= libmp3lame.so:audio/lame \ > libfreetype.so:print/freetype2 \ > libtag.so:audio/taglib \ >- libxml2.so:textproc/libxml2 >+ libxml2.so:textproc/libxml2 \ >+ libfftw3f.so:math/fftw3-float \ >+ libfftw3_threads.so:math/fftw3 \ >+ libass.so:multimedia/libass \ >+ libexiv2.so:graphics/exiv2 \ >+ libsndio.so:audio/sndio \ >+ libva.so:multimedia/libva \ >+ libjack.so:audio/jack >+#RUN_DEPENDS= libqsqlmysql:databases/qt5-sqldrivers-mysql > > CONFLICTS= mythtv-[0-9]* > >@@ -24,15 +33,29 @@ > USE_GITHUB= yes > GH_ACCOUNT= MythTV > GH_PROJECT= mythtv >-GH_TAGNAME= ad97d24 >+GH_TAGNAME= 03f4403 > > WRKSRC_SUBDIR= ${GH_PROJECT} > > ONLY_FOR_ARCHS= i386 amd64 > NOPRECIOUSMAKEVARS= # don't override $(ARCH) in ffmpeg makefiles >-USES= gmake libtool pkgconfig >-USE_QT4= gui sql network script linguist_build l10n sql-mysql_run \ >- moc_build qmake_build rcc_build uic_build >+USES= gmake libtool iconv mysql pkgconfig shebangfix ssl python:2.7+ >+SHEBANG_FILES= programs/scripts/database/mythconverg_backup.pl \ >+ programs/scripts/database/mythconverg_restore.pl \ >+ programs/scripts/internetcontent/*.py \ >+ programs/scripts/internetcontent/nv_python_libs/mainProcess.py \ >+ programs/scripts/hardwareprofile/sendProfile.py \ >+ programs/scripts/metadata/Television/ttvdb.py \ >+ programs/scripts/metadata/Movie/tmdb3.py >+#SHEBANG_GLOB= *.py >+ >+USE_QT5= buildtools_build core dbus gui sql network qmake_build script \ >+ linguist_build l10n sql sql-mysql_run webkit widgets xml >+ >+USE_GL+= gl >+ >+USE_XORG= x11 xcb xext xinerama xrandr xv xxf86vm >+ > QT_NONSTANDARD= yes > HAS_CONFIGURE= yes > USE_LDCONFIG= ${PREFIX}/lib/mythtv/filters >@@ -41,19 +64,16 @@ > > DATADIR= ${PREFIX}/share/mythtv > >-MAKE_ENV= QTDIR="${PREFIX}" \ >- QMAKESPEC="${QMAKESPEC}" >- >-CPPFLAGS+= ${QTCPPFLAGS} >-CONFIGURE_ENV+= QMAKESPEC="${QMAKESPEC}" MOC="${MOC}" \ >- QTDIR="${PREFIX}" \ >- PKG_CONFIG_PATH="${LOCALBASE}/libdata/pkgconfig" >+#CPPFLAGS+= ${QTCPPFLAGS} -isystem-after${LOCALBASE}/include >+CPPFLAGS+= ${QTCPPFLAGS} -I${LOCALBASE}/include >+#CPPFLAGS+= ${QTCPPFLAGS} > LDFLAGS+= -L${LOCALBASE}/lib > >+ > CONFIGURE_ARGS= --prefix="${PREFIX}" --cc="${CC}" --cxx="${CXX}" --libxml2-path="${LOCALBASE}/include/libxml2" \ > --disable-audio-alsa --disable-indev=alsa --disable-outdev=alsa --disable-mythlogserver \ > --disable-firewire --disable-hdhomerun --disable-v4l2 --disable-ivtv --disable-hdpvr \ >- --disable-dvb --enable-opengl-video --without-bindings=perl,python,php >+ --disable-dvb --without-bindings=perl,python,php > > QMAKESPEC?= ${LOCALBASE}/share/qt4/mkspecs/freebsd-g++ > >@@ -73,7 +93,7 @@ > VDPAU_CONFIGURE_ENABLE= vdpau > > OPENGL_CONFIGURE_ENABLE= opengl-video >-OPENGL_USE= QT4=opengl >+OPENGL_USE= QT5=opengl > > post-patch: > @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ >@@ -80,9 +100,24 @@ > ${WRKSRC}/configure \ > ${WRKSRC}/libs/libmythtv/libmythtv.pro \ > ${WRKSRC}/bindings/perl/MythTV/Recording.pm \ >- ${WRKSRC}/programs/mythtranscode/replex/Makefile.standalone \ >+ ${WRKSRC}/programs/mythtranscode/external/replex/Makefile.standalone \ > ${WRKSRC}/programs/scripts/database/mythconverg_backup.pl \ > ${WRKSRC}/programs/scripts/database/mythconverg_restore.pl \ > ${WRKSRC}/programs/mythcommflag/mythcommflag-analyze >+ @${REINPLACE_CMD} -e 's|<dvdnav/dvd_types.h>|"dvd_types.h"|' \ >+ ${WRKSRC}/external/libmythdvdnav/dvdnav/dvdnav/*.h > >+post-install: >+ @${MKDIR} ${STAGEDIR}${PREFIX}/share/mythtv/database >+ @${CP} ${WRKSRC}/database/mc.sql ${STAGEDIR}${PREFIX}/share/mythtv/database >+ @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so >+ @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mythtv/filters/*.so >+.for filename in mythutil mythffmpeg mythccextractor \ >+ mythlcdserver mythfrontend mythpreviewgen mythjobqueue \ >+ mythffprobe mythtranscode mythcommflag mythffserver \ >+ mythavtest mythmediaserver \ >+ mythreplex mythwelcome mythshutdown mythscreenwizard >+ @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${filename} >+.endfor >+ > .include <bsd.port.mk> >Index: distinfo >=================================================================== >--- distinfo (revision 445846) >+++ distinfo (working copy) >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1494080483 >-SHA256 (MythTV-mythtv-0.28.1-ad97d24_GH0.tar.gz) = 9e3b0782e7627fdbb91641ac39e2c39d3fc01ee1a57152c74df9c9116e966238 >-SIZE (MythTV-mythtv-0.28.1-ad97d24_GH0.tar.gz) = 85651303 >+TIMESTAMP = 1499853684 >+SHA256 (MythTV-mythtv-0.28.1-03f4403_GH0.tar.gz) = fa2e8d3dd18495ea71c9b60657e84fcea1013118ca0190241b4e220fc1c33c73 >+SIZE (MythTV-mythtv-0.28.1-03f4403_GH0.tar.gz) = 104461043 >Index: pkg-plist >=================================================================== >--- pkg-plist (revision 445846) >+++ pkg-plist (working copy) >@@ -15,15 +15,6 @@ > bin/mythtranscode > bin/mythutil > bin/mythwelcome >-include/mythtv/QJson/Parser >-include/mythtv/QJson/QObjectHelper >-include/mythtv/QJson/Serializer >-include/mythtv/QJson/parser.h >-include/mythtv/QJson/parserrunnable.h >-include/mythtv/QJson/qjson_export.h >-include/mythtv/QJson/qobjecthelper.h >-include/mythtv/QJson/serializer.h >-include/mythtv/QJson/serializerrunnable.h > include/mythtv/audioconvert.h > include/mythtv/audiooutput.h > include/mythtv/audiooutputsettings.h >@@ -30,6 +21,8 @@ > include/mythtv/audiooutpututil.h > include/mythtv/audiosettings.h > include/mythtv/autodeletedeque.h >+include/mythtv/blockinput.h >+include/mythtv/bluray/array.h > include/mythtv/bluray/attributes.h > include/mythtv/bluray/bdid_parse.h > include/mythtv/bluray/bdparse.h >@@ -37,10 +30,10 @@ > include/mythtv/bluray/bluray.h > include/mythtv/bluray/clpi_data.h > include/mythtv/bluray/clpi_parse.h >+include/mythtv/bluray/dirs.h > include/mythtv/bluray/dl.h > include/mythtv/bluray/extdata_parse.h > include/mythtv/bluray/file.h >-include/mythtv/bluray/file_mythiowrapper.h > include/mythtv/bluray/filesystem.h > include/mythtv/bluray/hdmv_insn.h > include/mythtv/bluray/hdmv_vm.h >@@ -50,12 +43,17 @@ > include/mythtv/bluray/macro.h > include/mythtv/bluray/meta_data.h > include/mythtv/bluray/meta_parse.h >+include/mythtv/bluray/mobj_data.h > include/mythtv/bluray/mobj_parse.h >+include/mythtv/bluray/mobj_print.h >+include/mythtv/bluray/mount.h > include/mythtv/bluray/mpls_parse.h > include/mythtv/bluray/mutex.h > include/mythtv/bluray/navigation.h >+include/mythtv/bluray/refcnt.h > include/mythtv/bluray/sound_parse.h > include/mythtv/bluray/strutl.h >+include/mythtv/bluray/time.h > include/mythtv/bluray/uo_mask_table.h > include/mythtv/bonjourregister.h > include/mythtv/bswap.h >@@ -80,18 +78,22 @@ > include/mythtv/langsettings.h > include/mythtv/lcddevice.h > include/mythtv/libavcodec/avcodec.h >+include/mythtv/libavcodec/avdct.h > include/mythtv/libavcodec/avfft.h >+include/mythtv/libavcodec/d3d11va.h >+include/mythtv/libavcodec/dirac.h >+include/mythtv/libavcodec/dv_profile.h > include/mythtv/libavcodec/dxva2.h >-include/mythtv/libavcodec/old_codec_ids.h >+include/mythtv/libavcodec/qsv.h > include/mythtv/libavcodec/vaapi.h > include/mythtv/libavcodec/vda.h > include/mythtv/libavcodec/vdpau.h > include/mythtv/libavcodec/version.h >+include/mythtv/libavcodec/videotoolbox.h >+include/mythtv/libavcodec/vorbis_parser.h > include/mythtv/libavcodec/xvmc.h > include/mythtv/libavdevice/avdevice.h > include/mythtv/libavdevice/version.h >-include/mythtv/libavfilter/asrc_abuffer.h >-include/mythtv/libavfilter/avcodec.h > include/mythtv/libavfilter/avfilter.h > include/mythtv/libavfilter/avfiltergraph.h > include/mythtv/libavfilter/buffersink.h >@@ -102,9 +104,9 @@ > include/mythtv/libavformat/version.h > include/mythtv/libavutil/adler32.h > include/mythtv/libavutil/aes.h >+include/mythtv/libavutil/aes_ctr.h > include/mythtv/libavutil/attributes.h > include/mythtv/libavutil/audio_fifo.h >-include/mythtv/libavutil/audioconvert.h > include/mythtv/libavutil/avassert.h > include/mythtv/libavutil/avconfig.h > include/mythtv/libavutil/avstring.h >@@ -113,38 +115,59 @@ > include/mythtv/libavutil/blowfish.h > include/mythtv/libavutil/bprint.h > include/mythtv/libavutil/bswap.h >+include/mythtv/libavutil/buffer.h >+include/mythtv/libavutil/camellia.h >+include/mythtv/libavutil/cast5.h > include/mythtv/libavutil/channel_layout.h > include/mythtv/libavutil/common.h > include/mythtv/libavutil/cpu.h > include/mythtv/libavutil/crc.h >+include/mythtv/libavutil/des.h > include/mythtv/libavutil/dict.h >+include/mythtv/libavutil/display.h >+include/mythtv/libavutil/downmix_info.h > include/mythtv/libavutil/error.h > include/mythtv/libavutil/eval.h >+include/mythtv/libavutil/ffversion.h > include/mythtv/libavutil/fifo.h > include/mythtv/libavutil/file.h >+include/mythtv/libavutil/frame.h >+include/mythtv/libavutil/hash.h > include/mythtv/libavutil/hmac.h > include/mythtv/libavutil/imgutils.h > include/mythtv/libavutil/intfloat.h >-include/mythtv/libavutil/intfloat_readwrite.h > include/mythtv/libavutil/intreadwrite.h > include/mythtv/libavutil/lfg.h > include/mythtv/libavutil/log.h > include/mythtv/libavutil/lzo.h >+include/mythtv/libavutil/macros.h >+include/mythtv/libavutil/mastering_display_metadata.h > include/mythtv/libavutil/mathematics.h > include/mythtv/libavutil/md5.h > include/mythtv/libavutil/mem.h >-include/mythtv/libavutil/old_pix_fmts.h >+include/mythtv/libavutil/motion_vector.h >+include/mythtv/libavutil/murmur3.h > include/mythtv/libavutil/opt.h > include/mythtv/libavutil/parseutils.h > include/mythtv/libavutil/pixdesc.h >+include/mythtv/libavutil/pixelutils.h > include/mythtv/libavutil/pixfmt.h > include/mythtv/libavutil/random_seed.h > include/mythtv/libavutil/rational.h >+include/mythtv/libavutil/rc4.h >+include/mythtv/libavutil/replaygain.h >+include/mythtv/libavutil/ripemd.h > include/mythtv/libavutil/samplefmt.h > include/mythtv/libavutil/sha.h >+include/mythtv/libavutil/sha512.h >+include/mythtv/libavutil/stereo3d.h >+include/mythtv/libavutil/tea.h >+include/mythtv/libavutil/threadmessage.h > include/mythtv/libavutil/time.h > include/mythtv/libavutil/timecode.h > include/mythtv/libavutil/timestamp.h >+include/mythtv/libavutil/tree.h >+include/mythtv/libavutil/twofish.h > include/mythtv/libavutil/version.h > include/mythtv/libavutil/xtea.h > include/mythtv/libmyth/audioconvert.h >@@ -167,22 +190,17 @@ > include/mythtv/libmyth/mythwizard.h > include/mythtv/libmyth/netgrabbermanager.h > include/mythtv/libmyth/netutils.h >-include/mythtv/libmyth/oldsettings.h > include/mythtv/libmyth/output.h > include/mythtv/libmyth/programinfo.h > include/mythtv/libmyth/programtypes.h > include/mythtv/libmyth/recordingtypes.h >-include/mythtv/libmyth/remotefile.h > include/mythtv/libmyth/remoteutil.h > include/mythtv/libmyth/rssparse.h > include/mythtv/libmyth/schemawizard.h > include/mythtv/libmyth/settings.h > include/mythtv/libmyth/storagegroupeditor.h >-include/mythtv/libmyth/uitypes.h >-include/mythtv/libmyth/virtualkeyboard_qt.h > include/mythtv/libmyth/visual.h > include/mythtv/libmyth/volumebase.h >-include/mythtv/libmyth/xmlparse.h > include/mythtv/libmythbase/autodeletedeque.h > include/mythtv/libmythbase/bonjourregister.h > include/mythtv/libmythbase/bswap.h >@@ -196,7 +214,6 @@ > include/mythtv/libmythbase/iso639.h > include/mythtv/libmythbase/lcddevice.h > include/mythtv/libmythbase/loggingserver.h >-include/mythtv/libmythbase/mcodecs.h > include/mythtv/libmythbase/mthread.h > include/mythtv/libmythbase/mthreadpool.h > include/mythtv/libmythbase/mythbaseexp.h >@@ -222,6 +239,7 @@ > include/mythtv/libmythbase/mythplugin.h > include/mythtv/libmythbase/mythpluginapi.h > include/mythtv/libmythbase/mythqtcompat.h >+include/mythtv/libmythbase/mythsession.h > include/mythtv/libmythbase/mythsingledownload.h > include/mythtv/libmythbase/mythsocket.h > include/mythtv/libmythbase/mythsocket_cb.h >@@ -245,23 +263,42 @@ > include/mythtv/libmythservicecontracts/datacontracthelper.h > include/mythtv/libmythservicecontracts/datacontracts/artworkInfo.h > include/mythtv/libmythservicecontracts/datacontracts/artworkInfoList.h >+include/mythtv/libmythservicecontracts/datacontracts/backendInfo.h > include/mythtv/libmythservicecontracts/datacontracts/blurayInfo.h >+include/mythtv/libmythservicecontracts/datacontracts/buildInfo.h > include/mythtv/libmythservicecontracts/datacontracts/captureCard.h > include/mythtv/libmythservicecontracts/datacontracts/captureCardList.h >+include/mythtv/libmythservicecontracts/datacontracts/castMember.h >+include/mythtv/libmythservicecontracts/datacontracts/castMemberList.h >+include/mythtv/libmythservicecontracts/datacontracts/channelGroup.h >+include/mythtv/libmythservicecontracts/datacontracts/channelGroupList.h > include/mythtv/libmythservicecontracts/datacontracts/channelInfoList.h > include/mythtv/libmythservicecontracts/datacontracts/connectionInfo.h >+include/mythtv/libmythservicecontracts/datacontracts/cutList.h >+include/mythtv/libmythservicecontracts/datacontracts/cutting.h > include/mythtv/libmythservicecontracts/datacontracts/databaseInfo.h >+include/mythtv/libmythservicecontracts/datacontracts/enum.h >+include/mythtv/libmythservicecontracts/datacontracts/enumItem.h >+include/mythtv/libmythservicecontracts/datacontracts/envInfo.h > include/mythtv/libmythservicecontracts/datacontracts/frontendActionList.h > include/mythtv/libmythservicecontracts/datacontracts/frontendStatus.h >+include/mythtv/libmythservicecontracts/datacontracts/imageMetadataInfo.h >+include/mythtv/libmythservicecontracts/datacontracts/imageMetadataInfoList.h >+include/mythtv/libmythservicecontracts/datacontracts/imageSyncInfo.h >+include/mythtv/libmythservicecontracts/datacontracts/input.h >+include/mythtv/libmythservicecontracts/datacontracts/inputList.h > include/mythtv/libmythservicecontracts/datacontracts/labelValue.h > include/mythtv/libmythservicecontracts/datacontracts/lineup.h > include/mythtv/libmythservicecontracts/datacontracts/liveStreamInfo.h > include/mythtv/libmythservicecontracts/datacontracts/liveStreamInfoList.h >+include/mythtv/libmythservicecontracts/datacontracts/logInfo.h > include/mythtv/libmythservicecontracts/datacontracts/logMessage.h > include/mythtv/libmythservicecontracts/datacontracts/logMessageList.h > include/mythtv/libmythservicecontracts/datacontracts/programAndChannel.h > include/mythtv/libmythservicecontracts/datacontracts/programGuide.h > include/mythtv/libmythservicecontracts/datacontracts/recRule.h >+include/mythtv/libmythservicecontracts/datacontracts/recRuleFilter.h >+include/mythtv/libmythservicecontracts/datacontracts/recRuleFilterList.h > include/mythtv/libmythservicecontracts/datacontracts/recRuleList.h > include/mythtv/libmythservicecontracts/datacontracts/recording.h > include/mythtv/libmythservicecontracts/datacontracts/settingList.h >@@ -286,7 +323,9 @@ > include/mythtv/libmythservicecontracts/services/dvrServices.h > include/mythtv/libmythservicecontracts/services/frontendServices.h > include/mythtv/libmythservicecontracts/services/guideServices.h >+include/mythtv/libmythservicecontracts/services/imageServices.h > include/mythtv/libmythservicecontracts/services/mythServices.h >+include/mythtv/libmythservicecontracts/services/rttiServices.h > include/mythtv/libmythservicecontracts/services/videoServices.h > include/mythtv/libmythui/mythdialogbox.h > include/mythtv/libmythui/mythfontproperties.h >@@ -344,18 +383,20 @@ > include/mythtv/libswscale/swscale.h > include/mythtv/libswscale/version.h > include/mythtv/loggingserver.h >-include/mythtv/mcodecs.h > include/mythtv/metadata/bluraymetadata.h > include/mythtv/metadata/cleanup.h > include/mythtv/metadata/dbaccess.h > include/mythtv/metadata/dirscan.h > include/mythtv/metadata/globals.h >+include/mythtv/metadata/imagemanager.h >+include/mythtv/metadata/imagemetadata.h >+include/mythtv/metadata/imagetypes.h >+include/mythtv/metadata/lyricsdata.h > include/mythtv/metadata/metadatacommon.h > include/mythtv/metadata/metadatadownload.h > include/mythtv/metadata/metadatafactory.h > include/mythtv/metadata/metadatagrabber.h > include/mythtv/metadata/metadataimagedownload.h >-include/mythtv/metadata/metadataimagehelper.h > include/mythtv/metadata/metaio.h > include/mythtv/metadata/metaioavfcomment.h > include/mythtv/metadata/metaioflacvorbis.h >@@ -364,6 +405,7 @@ > include/mythtv/metadata/metaiooggvorbis.h > include/mythtv/metadata/metaiotaglib.h > include/mythtv/metadata/metaiowavpack.h >+include/mythtv/metadata/musicfilescanner.h > include/mythtv/metadata/musicmetadata.h > include/mythtv/metadata/musicutils.h > include/mythtv/metadata/mythmetaexp.h >@@ -376,9 +418,11 @@ > include/mythtv/metadata/videoscan.h > include/mythtv/metadata/videoutils.h > include/mythtv/metadataimagehelper.h >+include/mythtv/minilzo.h > include/mythtv/mpeg2dec/mpeg2.h > include/mythtv/mthread.h > include/mythtv/mthreadpool.h >+include/mythtv/mythavutil.h > include/mythtv/mythbaseexp.h > include/mythtv/mythcdrom.h > include/mythtv/mythcommandlineparser.h >@@ -399,6 +443,7 @@ > include/mythtv/mythdownloadmanager.h > include/mythtv/mythevent.h > include/mythtv/mythexp.h >+include/mythtv/mythframe.h > include/mythtv/mythlocale.h > include/mythtv/mythlogging.h > include/mythtv/mythmedia.h >@@ -409,6 +454,7 @@ > include/mythtv/mythpluginapi.h > include/mythtv/mythqtcompat.h > include/mythtv/mythrssmanager.h >+include/mythtv/mythsession.h > include/mythtv/mythsingledownload.h > include/mythtv/mythsocket.h > include/mythtv/mythsocket_cb.h >@@ -425,7 +471,6 @@ > include/mythtv/mythwizard.h > include/mythtv/netgrabbermanager.h > include/mythtv/netutils.h >-include/mythtv/oldsettings.h > include/mythtv/output.h > include/mythtv/playgroup.h > include/mythtv/plist.h >@@ -445,7 +490,7 @@ > include/mythtv/storagegroup.h > include/mythtv/storagegroupeditor.h > include/mythtv/threadedfilewriter.h >-include/mythtv/uitypes.h >+include/mythtv/udfread.h > include/mythtv/upnp/bufferedsocketdevice.h > include/mythtv/upnp/configuration.h > include/mythtv/upnp/eventing.h >@@ -468,6 +513,7 @@ > include/mythtv/upnp/upnpcdsobjects.h > include/mythtv/upnp/upnpcmgr.h > include/mythtv/upnp/upnpdevice.h >+include/mythtv/upnp/upnphelpers.h > include/mythtv/upnp/upnpsubscription.h > include/mythtv/upnp/upnptaskcache.h > include/mythtv/upnp/upnptaskevent.h >@@ -476,76 +522,71 @@ > include/mythtv/upnp/upnputil.h > include/mythtv/upnp/wsdl.h > include/mythtv/upnp/xmlSerializer.h >+include/mythtv/upnp/xsd.h > include/mythtv/verbosedefs.h > include/mythtv/version.h >-include/mythtv/virtualkeyboard_qt.h > include/mythtv/visual.h > include/mythtv/volumebase.h >-include/mythtv/xmlparse.h >-lib/libmyth-0.27.so >-lib/libmyth-0.27.so.0 >-lib/libmyth-0.27.so.0.27 >-lib/libmyth-0.27.so.0.27.0 >+lib/libmyth-0.28.so >+lib/libmyth-0.28.so.0 >+lib/libmyth-0.28.so.0.28 >+lib/libmyth-0.28.so.0.28.0 > lib/libmythavcodec.so >-lib/libmythavcodec.so.54 >-lib/libmythavcodec.so.54.92.100 >+lib/libmythavcodec.so.57 >+lib/libmythavcodec.so.57.24.102 > lib/libmythavdevice.so >-lib/libmythavdevice.so.54 >-lib/libmythavdevice.so.54.3.103 >+lib/libmythavdevice.so.57 >+lib/libmythavdevice.so.57.0.101 > lib/libmythavfilter.so >-lib/libmythavfilter.so.3 >-lib/libmythavfilter.so.3.42.103 >+lib/libmythavfilter.so.6 >+lib/libmythavfilter.so.6.31.100 > lib/libmythavformat.so >-lib/libmythavformat.so.54 >-lib/libmythavformat.so.54.63.104 >+lib/libmythavformat.so.57 >+lib/libmythavformat.so.57.25.100 > lib/libmythavutil.so >-lib/libmythavutil.so.52 >-lib/libmythavutil.so.52.18.100 >-lib/libmythbase-0.27.so >-lib/libmythbase-0.27.so.0 >-lib/libmythbase-0.27.so.0.27 >-lib/libmythbase-0.27.so.0.27.0 >-lib/libmythfreemheg-0.27.so >-lib/libmythfreemheg-0.27.so.0 >-lib/libmythfreemheg-0.27.so.0.27 >-lib/libmythfreemheg-0.27.so.0.27.0 >-lib/libmythmetadata-0.27.so >-lib/libmythmetadata-0.27.so.0 >-lib/libmythmetadata-0.27.so.0.27 >-lib/libmythmetadata-0.27.so.0.27.0 >+lib/libmythavutil.so.55 >+lib/libmythavutil.so.55.17.103 >+lib/libmythbase-0.28.so >+lib/libmythbase-0.28.so.0 >+lib/libmythbase-0.28.so.0.28 >+lib/libmythbase-0.28.so.0.28.0 >+lib/libmythfreemheg-0.28.so >+lib/libmythfreemheg-0.28.so.0 >+lib/libmythfreemheg-0.28.so.0.28 >+lib/libmythfreemheg-0.28.so.0.28.0 >+lib/libmythmetadata-0.28.so >+lib/libmythmetadata-0.28.so.0 >+lib/libmythmetadata-0.28.so.0.28 >+lib/libmythmetadata-0.28.so.0.28.0 > lib/libmythpostproc.so >-lib/libmythpostproc.so.52 >-lib/libmythpostproc.so.52.2.100 >-lib/libmythprotoserver-0.27.so >-lib/libmythprotoserver-0.27.so.0 >-lib/libmythprotoserver-0.27.so.0.27 >-lib/libmythprotoserver-0.27.so.0.27.0 >-lib/libmythqjson.so >-lib/libmythqjson.so.0 >-lib/libmythqjson.so.0.7 >-lib/libmythqjson.so.0.7.1 >-lib/libmythservicecontracts-0.27.so >-lib/libmythservicecontracts-0.27.so.0 >-lib/libmythservicecontracts-0.27.so.0.27 >-lib/libmythservicecontracts-0.27.so.0.27.0 >+lib/libmythpostproc.so.54 >+lib/libmythpostproc.so.54.0.100 >+lib/libmythprotoserver-0.28.so >+lib/libmythprotoserver-0.28.so.0 >+lib/libmythprotoserver-0.28.so.0.28 >+lib/libmythprotoserver-0.28.so.0.28.0 >+lib/libmythservicecontracts-0.28.so >+lib/libmythservicecontracts-0.28.so.0 >+lib/libmythservicecontracts-0.28.so.0.28 >+lib/libmythservicecontracts-0.28.so.0.28.0 > lib/libmythswresample.so >-lib/libmythswresample.so.0 >-lib/libmythswresample.so.0.17.102 >+lib/libmythswresample.so.2 >+lib/libmythswresample.so.2.0.101 > lib/libmythswscale.so >-lib/libmythswscale.so.2 >-lib/libmythswscale.so.2.2.100 >-lib/libmythtv-0.27.so >-lib/libmythtv-0.27.so.0 >-lib/libmythtv-0.27.so.0.27 >-lib/libmythtv-0.27.so.0.27.0 >-lib/libmythui-0.27.so >-lib/libmythui-0.27.so.0 >-lib/libmythui-0.27.so.0.27 >-lib/libmythui-0.27.so.0.27.0 >-lib/libmythupnp-0.27.so >-lib/libmythupnp-0.27.so.0 >-lib/libmythupnp-0.27.so.0.27 >-lib/libmythupnp-0.27.so.0.27.0 >+lib/libmythswscale.so.4 >+lib/libmythswscale.so.4.0.100 >+lib/libmythtv-0.28.so >+lib/libmythtv-0.28.so.0 >+lib/libmythtv-0.28.so.0.28 >+lib/libmythtv-0.28.so.0.28.0 >+lib/libmythui-0.28.so >+lib/libmythui-0.28.so.0 >+lib/libmythui-0.28.so.0.28 >+lib/libmythui-0.28.so.0.28.0 >+lib/libmythupnp-0.28.so >+lib/libmythupnp-0.28.so.0 >+lib/libmythupnp-0.28.so.0.28 >+lib/libmythupnp-0.28.so.0.28.0 > lib/mythtv/filters/libadjust.so > lib/mythtv/filters/libbobdeint.so > lib/mythtv/filters/libcrop.so >@@ -566,6 +607,7 @@ > %%DATADIR%%/CMGR_scpd.xml > %%DATADIR%%/MFEXML_scpd.xml > %%DATADIR%%/MSRR_scpd.xml >+%%DATADIR%%/database/mc.sql > %%DATADIR%%/fonts/DroidSans-Bold.ttf > %%DATADIR%%/fonts/DroidSans.ttf > %%DATADIR%%/fonts/DroidSansMono.ttf >@@ -595,99 +637,114 @@ > %%DATADIR%%/fonts/Tiresias Infofont.ttf > %%DATADIR%%/fonts/texgyrechorus-mediumitalic.otf > %%DATADIR%%/fonts/tiresias_gpl3.txt >+%%DATADIR%%/html/3rdParty/jquery/MYTH_README >+%%DATADIR%%/html/3rdParty/jquery/galleria/LICENSE >+%%DATADIR%%/html/3rdParty/jquery/galleria/galleria.js >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/flickr-demo.html >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/flickr-loader.gif >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/galleria.flickr.js >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/galleria.flickr.min.js >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/flickr/loader.gif >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/history/galleria.history.js >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/history/galleria.history.min.js >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/history/history-demo.html >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/galleria.picasa.js >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/galleria.picasa.min.js >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/loader.gif >+%%DATADIR%%/html/3rdParty/jquery/galleria/plugins/picasa/picasa-demo.html >+%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/README.rst >+%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/classic-demo.html >+%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/classic-loader.gif >+%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/classic-map.png >+%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/galleria.classic.css >+%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/galleria.classic.js >+%%DATADIR%%/html/3rdParty/jquery/galleria/themes/classic/galleria.classic.min.js >+%%DATADIR%%/html/3rdParty/jquery/jquery-2.0.3.js >+%%DATADIR%%/html/3rdParty/jquery/jquery-2.0.3.min.js >+%%DATADIR%%/html/3rdParty/jquery/jquery-2.1.4.min.js >+%%DATADIR%%/html/3rdParty/jquery/jqueryContextMenu/js/jquery.contextmenu.js >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/application.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/code.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/css.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/db.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/directory.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/doc.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/file.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/film.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/flash.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/folder_open.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/html.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/java.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/linux.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/music.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/pdf.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/php.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/picture.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/ppt.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/psd.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/ruby.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/script.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/spinner.gif >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/txt.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/xls.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/images/zip.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/jqueryFileTree.css >+%%DATADIR%%/html/3rdParty/jquery/jqueryFileTree/jqueryFileTree.js >+%%DATADIR%%/html/3rdParty/jquery/jqueryGrid/css/ui.jqgrid.css >+%%DATADIR%%/html/3rdParty/jquery/jqueryGrid/js/grid.locale-en.js >+%%DATADIR%%/html/3rdParty/jquery/jqueryGrid/js/jquery.jqGrid.js >+%%DATADIR%%/html/3rdParty/jquery/jqueryJScroll/README.md >+%%DATADIR%%/html/3rdParty/jquery/jqueryJScroll/jquery.jscroll.js >+%%DATADIR%%/html/3rdParty/jquery/jqueryJScroll/jscroll.jquery.json >+%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/css/jquery.multiselect.css >+%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/css/ui.multiselect.css >+%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/js/jquery.multiselect.js >+%%DATADIR%%/html/3rdParty/jquery/jqueryMultiSelect/js/ui-multiselect-en.js >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_flat_30_cccccc_40x100.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_flat_50_5c5c5c_40x100.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_glass_40_ffc73d_1x400.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_hexagon_10_000000_12x10.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-hard_20_0b6a98_1x100.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_33_003147_1x100.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_35_222222_1x100.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_44_444444_1x100.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-bg_highlight-soft_80_eeeeee_1x100.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_222222_256x240.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_4b8e0b_256x240.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_a83300_256x240.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_cccccc_256x240.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/images/ui-icons_ffffff_256x240.png >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/jquery-ui-1.10.3.css >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/css/jquery-ui.css >+%%DATADIR%%/html/3rdParty/jquery/jqueryUI/js/jquery-ui-1.10.3.js > %%DATADIR%%/html/3rdParty/jwplayer.qsp >+%%DATADIR%%/html/backend_index.qsp > %%DATADIR%%/html/css/Status.css >-%%DATADIR%%/html/css/images/ui-bg_flat_30_cccccc_40x100.png >-%%DATADIR%%/html/css/images/ui-bg_flat_50_5c5c5c_40x100.png >-%%DATADIR%%/html/css/images/ui-bg_glass_40_ffc73d_1x400.png >-%%DATADIR%%/html/css/images/ui-bg_hexagon_10_000000_12x10.png >-%%DATADIR%%/html/css/images/ui-bg_highlight-hard_20_0b6a98_1x100.png >-%%DATADIR%%/html/css/images/ui-bg_highlight-soft_33_003147_1x100.png >-%%DATADIR%%/html/css/images/ui-bg_highlight-soft_35_222222_1x100.png >-%%DATADIR%%/html/css/images/ui-bg_highlight-soft_44_444444_1x100.png >-%%DATADIR%%/html/css/images/ui-bg_highlight-soft_80_eeeeee_1x100.png >-%%DATADIR%%/html/css/images/ui-icons_222222_256x240.png >-%%DATADIR%%/html/css/images/ui-icons_4b8e0b_256x240.png >-%%DATADIR%%/html/css/images/ui-icons_a83300_256x240.png >-%%DATADIR%%/html/css/images/ui-icons_cccccc_256x240.png >-%%DATADIR%%/html/css/images/ui-icons_ffffff_256x240.png >-%%DATADIR%%/html/css/jquery-ui.css >-%%DATADIR%%/html/css/menustyle.css >+%%DATADIR%%/html/css/settings.css > %%DATADIR%%/html/css/setup.css > %%DATADIR%%/html/css/site.css >-%%DATADIR%%/html/css/ui.jqgrid.css >-%%DATADIR%%/html/css/ui.multiselect.css > %%DATADIR%%/html/css/wsdl.css >+%%DATADIR%%/html/debug/websocket.qsp >+%%DATADIR%%/html/frontend_index.qsp > %%DATADIR%%/html/images/blank.gif > %%DATADIR%%/html/images/checkerboard_100x100.png > %%DATADIR%%/html/images/favicon.ico >+%%DATADIR%%/html/images/icons/README >+%%DATADIR%%/html/images/icons/upnp_large_icon.jpg >+%%DATADIR%%/html/images/icons/upnp_large_icon.png >+%%DATADIR%%/html/images/icons/upnp_small_icon.jpg >+%%DATADIR%%/html/images/icons/upnp_small_icon.png > %%DATADIR%%/html/images/menu-button-bg.gif > %%DATADIR%%/html/images/mythtv.png >-%%DATADIR%%/html/images/ui-bg_flat_30_cccccc_40x100.png >-%%DATADIR%%/html/images/ui-bg_flat_50_5c5c5c_40x100.png >-%%DATADIR%%/html/images/ui-bg_glass_40_ffc73d_1x400.png >-%%DATADIR%%/html/images/ui-bg_hexagon_10_000000_12x10.png >-%%DATADIR%%/html/images/ui-bg_highlight-hard_20_0b6a98_1x100.png >-%%DATADIR%%/html/images/ui-bg_highlight-soft_33_003147_1x100.png >-%%DATADIR%%/html/images/ui-bg_highlight-soft_35_222222_1x100.png >-%%DATADIR%%/html/images/ui-bg_highlight-soft_44_444444_1x100.png >-%%DATADIR%%/html/images/ui-bg_highlight-soft_80_eeeeee_1x100.png >-%%DATADIR%%/html/images/ui-icons_222222_256x240.png >-%%DATADIR%%/html/images/ui-icons_4b8e0b_256x240.png >-%%DATADIR%%/html/images/ui-icons_a83300_256x240.png >-%%DATADIR%%/html/images/ui-icons_cccccc_256x240.png >-%%DATADIR%%/html/images/ui-icons_ffffff_256x240.png >-%%DATADIR%%/html/index.html >-%%DATADIR%%/html/js/databaseutil.js > %%DATADIR%%/html/js/fileutil.js >-%%DATADIR%%/html/js/galleria/LICENSE >-%%DATADIR%%/html/js/galleria/galleria-1.2.3.js >-%%DATADIR%%/html/js/galleria/galleria-1.2.3.min.js >-%%DATADIR%%/html/js/galleria/themes/classic/README.rst >-%%DATADIR%%/html/js/galleria/themes/classic/classic-demo.html >-%%DATADIR%%/html/js/galleria/themes/classic/classic-loader.gif >-%%DATADIR%%/html/js/galleria/themes/classic/classic-map.png >-%%DATADIR%%/html/js/galleria/themes/classic/galleria.classic.css >-%%DATADIR%%/html/js/galleria/themes/classic/galleria.classic.js >-%%DATADIR%%/html/js/galleria/themes/classic/galleria.classic.min.js >-%%DATADIR%%/html/js/grid.locale-en.js > %%DATADIR%%/html/js/inspect.js >-%%DATADIR%%/html/js/jquery-ui.min.js >-%%DATADIR%%/html/js/jquery.contextmenu.js >-%%DATADIR%%/html/js/jquery.jqGrid.min.js >-%%DATADIR%%/html/js/jquery.min.js >-%%DATADIR%%/html/js/jqueryFileTree/images/application.png >-%%DATADIR%%/html/js/jqueryFileTree/images/code.png >-%%DATADIR%%/html/js/jqueryFileTree/images/css.png >-%%DATADIR%%/html/js/jqueryFileTree/images/db.png >-%%DATADIR%%/html/js/jqueryFileTree/images/directory.png >-%%DATADIR%%/html/js/jqueryFileTree/images/doc.png >-%%DATADIR%%/html/js/jqueryFileTree/images/file.png >-%%DATADIR%%/html/js/jqueryFileTree/images/film.png >-%%DATADIR%%/html/js/jqueryFileTree/images/flash.png >-%%DATADIR%%/html/js/jqueryFileTree/images/folder_open.png >-%%DATADIR%%/html/js/jqueryFileTree/images/html.png >-%%DATADIR%%/html/js/jqueryFileTree/images/java.png >-%%DATADIR%%/html/js/jqueryFileTree/images/linux.png >-%%DATADIR%%/html/js/jqueryFileTree/images/music.png >-%%DATADIR%%/html/js/jqueryFileTree/images/pdf.png >-%%DATADIR%%/html/js/jqueryFileTree/images/php.png >-%%DATADIR%%/html/js/jqueryFileTree/images/picture.png >-%%DATADIR%%/html/js/jqueryFileTree/images/ppt.png >-%%DATADIR%%/html/js/jqueryFileTree/images/psd.png >-%%DATADIR%%/html/js/jqueryFileTree/images/ruby.png >-%%DATADIR%%/html/js/jqueryFileTree/images/script.png >-%%DATADIR%%/html/js/jqueryFileTree/images/spinner.gif >-%%DATADIR%%/html/js/jqueryFileTree/images/txt.png >-%%DATADIR%%/html/js/jqueryFileTree/images/xls.png >-%%DATADIR%%/html/js/jqueryFileTree/images/zip.png >-%%DATADIR%%/html/js/jqueryFileTree/jqueryFileTree.css >-%%DATADIR%%/html/js/jqueryFileTree/jqueryFileTree.js > %%DATADIR%%/html/js/menu.js >-%%DATADIR%%/html/js/ui-multiselect-en.js >-%%DATADIR%%/html/js/ui.multiselect.js >+%%DATADIR%%/html/js/settings.js > %%DATADIR%%/html/js/util.qjs >+%%DATADIR%%/html/js/utility.js >+%%DATADIR%%/html/js/websocket_events.js > %%DATADIR%%/html/menu.qsp >+%%DATADIR%%/html/misc/css/overview.css > %%DATADIR%%/html/misc/database-backup.html > %%DATADIR%%/html/misc/database-repair.html > %%DATADIR%%/html/misc/databasetabs.html >@@ -697,12 +754,15 @@ > %%DATADIR%%/html/misc/js/databasetabs.js > %%DATADIR%%/html/misc/js/hardwareprofile.js > %%DATADIR%%/html/misc/js/messagetab.js >+%%DATADIR%%/html/misc/js/overview.js > %%DATADIR%%/html/misc/js/viewlogs.js > %%DATADIR%%/html/misc/message.html > %%DATADIR%%/html/misc/messagetab.html >+%%DATADIR%%/html/misc/misc_template.html > %%DATADIR%%/html/misc/overview.qsp > %%DATADIR%%/html/misc/placeholder.html > %%DATADIR%%/html/misc/viewlogs.html >+%%DATADIR%%/html/robots.txt > %%DATADIR%%/html/samples/hlstest.qsp > %%DATADIR%%/html/samples/js/samples.js > %%DATADIR%%/html/samples/livestream_rec.qsp >@@ -710,9 +770,11 @@ > %%DATADIR%%/html/samples/recorded.qsp > %%DATADIR%%/html/samples/serverside.qsp > %%DATADIR%%/html/samples/storagegroups.qsp >+%%DATADIR%%/html/setup/ajax_backends/setting_util.qsp > %%DATADIR%%/html/setup/channeleditor-channeldetail-multi.html > %%DATADIR%%/html/setup/channeleditor-channeldetail.html > %%DATADIR%%/html/setup/channeleditor.html >+%%DATADIR%%/html/setup/css/common.css > %%DATADIR%%/html/setup/database.html > %%DATADIR%%/html/setup/expert.html > %%DATADIR%%/html/setup/general.html >@@ -723,21 +785,23 @@ > %%DATADIR%%/html/setup/jobqueue-jobs.qsp > %%DATADIR%%/html/setup/jobqueue.html > %%DATADIR%%/html/setup/js/channeleditor.js >+%%DATADIR%%/html/setup/js/common.js > %%DATADIR%%/html/setup/js/database.js > %%DATADIR%%/html/setup/js/general.js > %%DATADIR%%/html/setup/js/guidedatasources.js > %%DATADIR%%/html/setup/js/jobqueue.js > %%DATADIR%%/html/setup/js/password.js >-%%DATADIR%%/html/setup/js/setup.js > %%DATADIR%%/html/setup/js/storagegroups.js > %%DATADIR%%/html/setup/js/systemevents.js > %%DATADIR%%/html/setup/js/wizard.js > %%DATADIR%%/html/setup/overview.html > %%DATADIR%%/html/setup/password.html >+%%DATADIR%%/html/setup/setup_template.html > %%DATADIR%%/html/setup/storagegroups-add-dir.html > %%DATADIR%%/html/setup/storagegroups-add-new.html > %%DATADIR%%/html/setup/storagegroups.html > %%DATADIR%%/html/setup/systemevents.html >+%%DATADIR%%/html/setup/webfrontend-settings.qsp > %%DATADIR%%/html/setup/wizard-database.html > %%DATADIR%%/html/setup/wizard-guide_data.html > %%DATADIR%%/html/setup/wizard-media_storage.html >@@ -744,7 +808,58 @@ > %%DATADIR%%/html/setup/wizard-network.qsp > %%DATADIR%%/html/setup/wizard-recording_devices.html > %%DATADIR%%/html/setup/wizard.html >+%%DATADIR%%/html/tv/ajax_backends/dvr_util.qsp >+%%DATADIR%%/html/tv/ajax_backends/program_util.qsp >+%%DATADIR%%/html/tv/css/category_colors.css >+%%DATADIR%%/html/tv/css/common.css >+%%DATADIR%%/html/tv/css/guide.css >+%%DATADIR%%/html/tv/css/icons.css >+%%DATADIR%%/html/tv/css/programsearch.css >+%%DATADIR%%/html/tv/css/recordingrules.css >+%%DATADIR%%/html/tv/css/recordings.css >+%%DATADIR%%/html/tv/css/schedule.css >+%%DATADIR%%/html/tv/css/tvplayer.css >+%%DATADIR%%/html/tv/css/upcoming.css >+%%DATADIR%%/html/tv/guide.qsp >+%%DATADIR%%/html/tv/images/blank.png >+%%DATADIR%%/html/tv/images/cat_movie.svg >+%%DATADIR%%/html/tv/images/channel_icon.svg >+%%DATADIR%%/html/tv/images/fl_autoexp.svg >+%%DATADIR%%/html/tv/images/fl_bookmark.svg >+%%DATADIR%%/html/tv/images/fl_commflag.svg >+%%DATADIR%%/html/tv/images/fl_watched.svg >+%%DATADIR%%/html/tv/images/hd_1080.svg >+%%DATADIR%%/html/tv/images/hd_720.svg >+%%DATADIR%%/html/tv/images/hd_tv.svg >+%%DATADIR%%/html/tv/images/play_arrow.png >+%%DATADIR%%/html/tv/images/play_arrow.svg >+%%DATADIR%%/html/tv/images/recording_icons_sprite.svg >+%%DATADIR%%/html/tv/images/wastebin.svg >+%%DATADIR%%/html/tv/js/common.js >+%%DATADIR%%/html/tv/js/constants.js >+%%DATADIR%%/html/tv/js/guide.js >+%%DATADIR%%/html/tv/js/programsearch.js >+%%DATADIR%%/html/tv/js/recordings.js >+%%DATADIR%%/html/tv/js/schedule.js >+%%DATADIR%%/html/tv/js/tvutil.qjs >+%%DATADIR%%/html/tv/js/upcoming.js >+%%DATADIR%%/html/tv/programsearch.qsp >+%%DATADIR%%/html/tv/recordingrules.qsp >+%%DATADIR%%/html/tv/recordings.qsp >+%%DATADIR%%/html/tv/schedule.qsp >+%%DATADIR%%/html/tv/stream.qsp >+%%DATADIR%%/html/tv/tvplayer.qsp >+%%DATADIR%%/html/tv/upcoming.qsp >+%%DATADIR%%/html/video/css/gallery.css >+%%DATADIR%%/html/video/gallery.qsp >+%%DATADIR%%/html/video/gallery_detail.qsp >+%%DATADIR%%/html/video/images/folder_icon.png >+%%DATADIR%%/html/video/images/mv_gallery_dir_up.png >+%%DATADIR%%/html/video/images/unknown.png >+%%DATADIR%%/html/video/js/gallery.js >+%%DATADIR%%/html/video/js/gallery.qjs > %%DATADIR%%/html/xslt/class.xslt >+%%DATADIR%%/html/xslt/enum.xslt > %%DATADIR%%/html/xslt/service.xslt > %%DATADIR%%/i18n/mythfrontend_bg.qm > %%DATADIR%%/i18n/mythfrontend_ca.qm >@@ -1222,7 +1337,6 @@ > %%DATADIR%%/themes/Terra/video/video_gallery_background_selected.png > %%DATADIR%%/themes/Terra/watermarks/README.license > %%DATADIR%%/themes/Terra/watermarks/aerial.png >-%%DATADIR%%/themes/Terra/watermarks/appearance.png > %%DATADIR%%/themes/Terra/watermarks/archive.png > %%DATADIR%%/themes/Terra/watermarks/audio.png > %%DATADIR%%/themes/Terra/watermarks/browser.png >@@ -1264,6 +1378,7 @@ > %%DATADIR%%/themes/Terra/watermarks/select_music.png > %%DATADIR%%/themes/Terra/watermarks/status.png > %%DATADIR%%/themes/Terra/watermarks/stop_light.png >+%%DATADIR%%/themes/Terra/watermarks/themechooser.png > %%DATADIR%%/themes/Terra/watermarks/tools.png > %%DATADIR%%/themes/Terra/watermarks/tv.png > %%DATADIR%%/themes/Terra/watermarks/vcr.png >@@ -1433,28 +1548,18 @@ > %%DATADIR%%/themes/default/htmls/notfound.html > %%DATADIR%%/themes/default/htmls/progdetails_page1.html > %%DATADIR%%/themes/default/htmls/progdetails_page2.html >+%%DATADIR%%/themes/default/image-ui.xml > %%DATADIR%%/themes/default/keyboard/ar.xml >-%%DATADIR%%/themes/default/keyboard/ar_ui.xml > %%DATADIR%%/themes/default/keyboard/da.xml >-%%DATADIR%%/themes/default/keyboard/da_ui.xml > %%DATADIR%%/themes/default/keyboard/de.xml >-%%DATADIR%%/themes/default/keyboard/de_ui.xml > %%DATADIR%%/themes/default/keyboard/el.xml >-%%DATADIR%%/themes/default/keyboard/el_ui.xml > %%DATADIR%%/themes/default/keyboard/en_gb.xml >-%%DATADIR%%/themes/default/keyboard/en_gb_ui.xml > %%DATADIR%%/themes/default/keyboard/en_us.xml >-%%DATADIR%%/themes/default/keyboard/en_us_ui.xml > %%DATADIR%%/themes/default/keyboard/es.xml >-%%DATADIR%%/themes/default/keyboard/es_ui.xml > %%DATADIR%%/themes/default/keyboard/fr.xml > %%DATADIR%%/themes/default/keyboard/fr_ch.xml >-%%DATADIR%%/themes/default/keyboard/fr_ch_ui.xml >-%%DATADIR%%/themes/default/keyboard/fr_ui.xml > %%DATADIR%%/themes/default/keyboard/he.xml >-%%DATADIR%%/themes/default/keyboard/he_ui.xml > %%DATADIR%%/themes/default/keyboard/it.xml >-%%DATADIR%%/themes/default/keyboard/it_ui.xml > %%DATADIR%%/themes/default/keyboard/key_down.png > %%DATADIR%%/themes/default/keyboard/key_down_back.png > %%DATADIR%%/themes/default/keyboard/key_down_del.png >@@ -1491,14 +1596,11 @@ > %%DATADIR%%/themes/default/keyboard/keyboard.xml > %%DATADIR%%/themes/default/keyboard/leftarrow.png > %%DATADIR%%/themes/default/keyboard/nb.xml >-%%DATADIR%%/themes/default/keyboard/nb_ui.xml > %%DATADIR%%/themes/default/keyboard/returnarrow.png > %%DATADIR%%/themes/default/keyboard/rightarrow.png > %%DATADIR%%/themes/default/keyboard/ru.xml >-%%DATADIR%%/themes/default/keyboard/ru_ui.xml > %%DATADIR%%/themes/default/keyboard/shiftarrow.png > %%DATADIR%%/themes/default/keyboard/sv.xml >-%%DATADIR%%/themes/default/keyboard/sv_ui.xml > %%DATADIR%%/themes/default/lb-arrow.png > %%DATADIR%%/themes/default/lb-check-empty.png > %%DATADIR%%/themes/default/lb-check-full.png >@@ -1769,6 +1871,7 @@ > %%DATADIR%%/themes/default/menu_playback.xml > %%DATADIR%%/themes/default/menu_playback_compact.xml > %%DATADIR%%/themes/default/mono.png >+%%DATADIR%%/themes/default/musicscanner.png > %%DATADIR%%/themes/default/mv_browse_background.png > %%DATADIR%%/themes/default/mv_browse_selector.png > %%DATADIR%%/themes/default/mv_filerequest.png >@@ -1830,9 +1933,13 @@ > %%DATADIR%%/themes/default/shared/directory.png > %%DATADIR%%/themes/default/shared/executable.png > %%DATADIR%%/themes/default/shared/file.png >+%%DATADIR%%/themes/default/shared/folder-reg.png >+%%DATADIR%%/themes/default/shared/folder-sel.png > %%DATADIR%%/themes/default/shared/grid_back_reg.png > %%DATADIR%%/themes/default/shared/grid_back_sel.png > %%DATADIR%%/themes/default/shared/grid_noimage.png >+%%DATADIR%%/themes/default/shared/movie-reg.png >+%%DATADIR%%/themes/default/shared/movie-sel.png > %%DATADIR%%/themes/default/shared/secure.png > %%DATADIR%%/themes/default/shared/unsecure.png > %%DATADIR%%/themes/default/shared/updirectory.png
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 219149
:
182413
|
182439
|
182440
|
182459
|
182499
|
182501
|
182503
|
182636
|
182638
|
182716
|
182725
|
182739
|
182742
|
182752
|
182773
|
182777
|
182780
|
182783
|
182785
|
182786
| 184585