Update of /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer In directory vz-cvs-3.sog:/tmp/cvs-serv1684/WebContent/WEB-INF/tags/sage/api/mediaplayer Modified Files: WatchLive.tag GetCurrentMediaTitle.tag IsPlaying.tag IsMediaPlayerFullyLoaded.tag VolumeDown.tag LockTuner.tag DoesCurrentMediaFileHaveVideo.tag IsMuted.tag GetDVDAvailableLanguages.tag VolumeUp.tag GetDVDNumberOfTitles.tag IsCorrectParentalLockCode.tag IsMediaPlayerSignalLost.tag DVDMenu.tag StartPlaylist.tag GetBluRayTitleDescription.tag SetSubtitleDelay.tag GetDVDCurrentChapter.tag ApplyRelativeSubtitleAdjustment.tag DirectPlaybackControl.tag IsMediaPlayerLoading.tag SkipForward.tag CloseAndWaitUntilClosed.tag GetDVDCurrentTitle.tag SetPlaybackRate.tag Seek.tag VolumeAdjust.tag GetAvailableSeekingStart.tag GetDVDNumberOfAngles.tag GetSubtitleDelay.tag WatchLocalFile.tag IsShowingDVDMenu.tag StartPlaylistAt.tag HasMediaFile.tag SkipForward2.tag DVDChapterSet.tag DVDTitleMenu.tag DVDAngleChange.tag Log Message: SageTV 7.1.8 Index: DirectPlaybackControl.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/DirectPlaybackControl.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DirectPlaybackControl.tag 17 Jul 2010 14:35:05 -0000 1.3 --- DirectPlaybackControl.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DirectPlaybackControl(int, long, long)'>MediaPlayerAPI.DirectPlaybackControl</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DirectPlaybackControl(int, long, long)'>MediaPlayerAPI.DirectPlaybackControl</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: IsMediaPlayerLoading.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/IsMediaPlayerLoading.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IsMediaPlayerLoading.tag 17 Jul 2010 14:35:05 -0000 1.3 --- IsMediaPlayerLoading.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsMediaPlayerLoading()'>MediaPlayerAPI.IsMediaPlayerLoading</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsMediaPlayerLoading()'>MediaPlayerAPI.IsMediaPlayerLoading</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: StartPlaylist.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/StartPlaylist.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** StartPlaylist.tag 17 Jul 2010 14:35:05 -0000 1.3 --- StartPlaylist.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#StartPlaylist(sage.Playlist)'>MediaPlayerAPI.StartPlaylist</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#StartPlaylist(sage.Playlist)'>MediaPlayerAPI.StartPlaylist</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. *************** *** 8,11 **** --- 8,13 ---- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> + <%@ attribute name="var" required="true" rtexprvalue="false" %> + <%@ variable name-from-attribute="var" alias="varLocal" scope="AT_END" %> <%@ attribute name="context" required="false" type="java.lang.String" %> <%@ attribute name="playlist" required="true" type="java.lang.Object" %> *************** *** 15,25 **** Object playlistAttr = jspContext.getAttribute("playlist"); if ((context != null) && (context.trim().length() > 0)) { ! sage.SageTV.apiUI(context, "StartPlaylist", new Object[] {playlistAttr}); } else { ! sage.SageTV.api("StartPlaylist", new Object[] {playlistAttr}); } %> --- 17,31 ---- Object playlistAttr = jspContext.getAttribute("playlist"); + Object returnVal = null; + if ((context != null) && (context.trim().length() > 0)) { ! returnVal = sage.SageTV.apiUI(context, "StartPlaylist", new Object[] {playlistAttr}); } else { ! returnVal = sage.SageTV.api("StartPlaylist", new Object[] {playlistAttr}); } %> + + <c:set var="varLocal" value="<%= returnVal %>"/> Index: Seek.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/Seek.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Seek.tag 17 Jul 2010 14:35:05 -0000 1.3 --- Seek.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#Seek(long)'>MediaPlayerAPI.Seek</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#Seek(long)'>MediaPlayerAPI.Seek</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: GetDVDCurrentChapter.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/GetDVDCurrentChapter.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GetDVDCurrentChapter.tag 17 Jul 2010 14:35:05 -0000 1.3 --- GetDVDCurrentChapter.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetDVDCurrentChapter()'>MediaPlayerAPI.GetDVDCurrentChapter</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetDVDCurrentChapter()'>MediaPlayerAPI.GetDVDCurrentChapter</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: GetAvailableSeekingStart.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/GetAvailableSeekingStart.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GetAvailableSeekingStart.tag 17 Jul 2010 14:35:05 -0000 1.3 --- GetAvailableSeekingStart.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetAvailableSeekingStart()'>MediaPlayerAPI.GetAvailableSeekingStart</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetAvailableSeekingStart()'>MediaPlayerAPI.GetAvailableSeekingStart</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: GetBluRayTitleDescription.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/GetBluRayTitleDescription.tag,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** GetBluRayTitleDescription.tag 17 Jul 2010 14:35:05 -0000 1.1 --- GetBluRayTitleDescription.tag 8 Jun 2011 21:20:30 -0000 1.2 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetBluRayTitleDescription(int)'>MediaPlayerAPI.GetBluRayTitleDescription</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetBluRayTitleDescription(int)'>MediaPlayerAPI.GetBluRayTitleDescription</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: IsMuted.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/IsMuted.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IsMuted.tag 17 Jul 2010 14:35:05 -0000 1.3 --- IsMuted.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsMuted()'>MediaPlayerAPI.IsMuted</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsMuted()'>MediaPlayerAPI.IsMuted</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: GetCurrentMediaTitle.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/GetCurrentMediaTitle.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GetCurrentMediaTitle.tag 17 Jul 2010 14:35:05 -0000 1.3 --- GetCurrentMediaTitle.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetCurrentMediaTitle()'>MediaPlayerAPI.GetCurrentMediaTitle</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetCurrentMediaTitle()'>MediaPlayerAPI.GetCurrentMediaTitle</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: CloseAndWaitUntilClosed.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/CloseAndWaitUntilClosed.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CloseAndWaitUntilClosed.tag 17 Jul 2010 14:35:05 -0000 1.3 --- CloseAndWaitUntilClosed.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#CloseAndWaitUntilClosed()'>MediaPlayerAPI.CloseAndWaitUntilClosed</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#CloseAndWaitUntilClosed()'>MediaPlayerAPI.CloseAndWaitUntilClosed</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: DVDAngleChange.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/DVDAngleChange.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DVDAngleChange.tag 17 Jul 2010 14:35:05 -0000 1.3 --- DVDAngleChange.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DVDAngleChange(int)'>MediaPlayerAPI.DVDAngleChange</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DVDAngleChange(int)'>MediaPlayerAPI.DVDAngleChange</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: DVDChapterSet.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/DVDChapterSet.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DVDChapterSet.tag 17 Jul 2010 14:35:05 -0000 1.3 --- DVDChapterSet.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DVDChapterSet(int)'>MediaPlayerAPI.DVDChapterSet</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DVDChapterSet(int)'>MediaPlayerAPI.DVDChapterSet</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: WatchLocalFile.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/WatchLocalFile.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** WatchLocalFile.tag 17 Jul 2010 14:35:05 -0000 1.3 --- WatchLocalFile.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#WatchLocalFile(java.io.File)'>MediaPlayerAPI.WatchLocalFile</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#WatchLocalFile(java.io.File)'>MediaPlayerAPI.WatchLocalFile</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: StartPlaylistAt.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/StartPlaylistAt.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** StartPlaylistAt.tag 17 Jul 2010 14:35:05 -0000 1.3 --- StartPlaylistAt.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#StartPlaylistAt(sage.Playlist, int)'>MediaPlayerAPI.StartPlaylistAt</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#StartPlaylistAt(sage.Playlist, int)'>MediaPlayerAPI.StartPlaylistAt</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. *************** *** 8,11 **** --- 8,13 ---- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> + <%@ attribute name="var" required="true" rtexprvalue="false" %> + <%@ variable name-from-attribute="var" alias="varLocal" scope="AT_END" %> <%@ attribute name="context" required="false" type="java.lang.String" %> <%@ attribute name="playlist" required="true" type="java.lang.Object" %> *************** *** 17,27 **** Object startIndexAttr = jspContext.getAttribute("startIndex"); if ((context != null) && (context.trim().length() > 0)) { ! sage.SageTV.apiUI(context, "StartPlaylistAt", new Object[] {playlistAttr, startIndexAttr}); } else { ! sage.SageTV.api("StartPlaylistAt", new Object[] {playlistAttr, startIndexAttr}); } %> --- 19,33 ---- Object startIndexAttr = jspContext.getAttribute("startIndex"); + Object returnVal = null; + if ((context != null) && (context.trim().length() > 0)) { ! returnVal = sage.SageTV.apiUI(context, "StartPlaylistAt", new Object[] {playlistAttr, startIndexAttr}); } else { ! returnVal = sage.SageTV.api("StartPlaylistAt", new Object[] {playlistAttr, startIndexAttr}); } %> + + <c:set var="varLocal" value="<%= returnVal %>"/> Index: GetDVDNumberOfAngles.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/GetDVDNumberOfAngles.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GetDVDNumberOfAngles.tag 17 Jul 2010 14:35:05 -0000 1.3 --- GetDVDNumberOfAngles.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetDVDNumberOfAngles()'>MediaPlayerAPI.GetDVDNumberOfAngles</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetDVDNumberOfAngles()'>MediaPlayerAPI.GetDVDNumberOfAngles</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: VolumeDown.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/VolumeDown.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** VolumeDown.tag 17 Jul 2010 14:35:05 -0000 1.3 --- VolumeDown.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#VolumeDown()'>MediaPlayerAPI.VolumeDown</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#VolumeDown()'>MediaPlayerAPI.VolumeDown</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: IsMediaPlayerSignalLost.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/IsMediaPlayerSignalLost.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IsMediaPlayerSignalLost.tag 17 Jul 2010 14:35:05 -0000 1.3 --- IsMediaPlayerSignalLost.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsMediaPlayerSignalLost()'>MediaPlayerAPI.IsMediaPlayerSignalLost</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsMediaPlayerSignalLost()'>MediaPlayerAPI.IsMediaPlayerSignalLost</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: IsPlaying.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/IsPlaying.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IsPlaying.tag 17 Jul 2010 14:35:05 -0000 1.3 --- IsPlaying.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsPlaying()'>MediaPlayerAPI.IsPlaying</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsPlaying()'>MediaPlayerAPI.IsPlaying</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: GetSubtitleDelay.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/GetSubtitleDelay.tag,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** GetSubtitleDelay.tag 17 Jul 2010 14:35:05 -0000 1.2 --- GetSubtitleDelay.tag 8 Jun 2011 21:20:30 -0000 1.3 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetSubtitleDelay()'>MediaPlayerAPI.GetSubtitleDelay</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetSubtitleDelay()'>MediaPlayerAPI.GetSubtitleDelay</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: SkipForward2.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/SkipForward2.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SkipForward2.tag 17 Jul 2010 14:35:05 -0000 1.3 --- SkipForward2.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#SkipForward2()'>MediaPlayerAPI.SkipForward2</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#SkipForward2()'>MediaPlayerAPI.SkipForward2</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: DVDTitleMenu.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/DVDTitleMenu.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DVDTitleMenu.tag 17 Jul 2010 14:35:05 -0000 1.3 --- DVDTitleMenu.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DVDTitleMenu()'>MediaPlayerAPI.DVDTitleMenu</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DVDTitleMenu()'>MediaPlayerAPI.DVDTitleMenu</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: WatchLive.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/WatchLive.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** WatchLive.tag 17 Jul 2010 14:35:05 -0000 1.3 --- WatchLive.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#WatchLive(java.lang.String, long, java.lang.String)'>MediaPlayerAPI.WatchLive</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#WatchLive(java.lang.String, long, java.lang.String)'>MediaPlayerAPI.WatchLive</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: IsShowingDVDMenu.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/IsShowingDVDMenu.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IsShowingDVDMenu.tag 17 Jul 2010 14:35:05 -0000 1.3 --- IsShowingDVDMenu.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsShowingDVDMenu()'>MediaPlayerAPI.IsShowingDVDMenu</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsShowingDVDMenu()'>MediaPlayerAPI.IsShowingDVDMenu</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: DVDMenu.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/DVDMenu.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DVDMenu.tag 17 Jul 2010 14:35:05 -0000 1.3 --- DVDMenu.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DVDMenu()'>MediaPlayerAPI.DVDMenu</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DVDMenu()'>MediaPlayerAPI.DVDMenu</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: GetDVDAvailableLanguages.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/GetDVDAvailableLanguages.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GetDVDAvailableLanguages.tag 17 Jul 2010 14:35:05 -0000 1.3 --- GetDVDAvailableLanguages.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetDVDAvailableLanguages()'>MediaPlayerAPI.GetDVDAvailableLanguages</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetDVDAvailableLanguages()'>MediaPlayerAPI.GetDVDAvailableLanguages</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: GetDVDCurrentTitle.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/GetDVDCurrentTitle.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GetDVDCurrentTitle.tag 17 Jul 2010 14:35:05 -0000 1.3 --- GetDVDCurrentTitle.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetDVDCurrentTitle()'>MediaPlayerAPI.GetDVDCurrentTitle</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetDVDCurrentTitle()'>MediaPlayerAPI.GetDVDCurrentTitle</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: IsMediaPlayerFullyLoaded.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/IsMediaPlayerFullyLoaded.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IsMediaPlayerFullyLoaded.tag 17 Jul 2010 14:35:05 -0000 1.3 --- IsMediaPlayerFullyLoaded.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsMediaPlayerFullyLoaded()'>MediaPlayerAPI.IsMediaPlayerFullyLoaded</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsMediaPlayerFullyLoaded()'>MediaPlayerAPI.IsMediaPlayerFullyLoaded</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: ApplyRelativeSubtitleAdjustment.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/ApplyRelativeSubtitleAdjustment.tag,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ApplyRelativeSubtitleAdjustment.tag 17 Jul 2010 14:35:05 -0000 1.2 --- ApplyRelativeSubtitleAdjustment.tag 8 Jun 2011 21:20:30 -0000 1.3 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#ApplyRelativeSubtitleAdjustment(int)'>MediaPlayerAPI.ApplyRelativeSubtitleAdjustment</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#ApplyRelativeSubtitleAdjustment(int)'>MediaPlayerAPI.ApplyRelativeSubtitleAdjustment</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: LockTuner.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/LockTuner.tag,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LockTuner.tag 17 Jul 2010 14:35:05 -0000 1.2 --- LockTuner.tag 8 Jun 2011 21:20:30 -0000 1.3 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#LockTuner(java.lang.String)'>MediaPlayerAPI.LockTuner</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#LockTuner(java.lang.String)'>MediaPlayerAPI.LockTuner</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: VolumeAdjust.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/VolumeAdjust.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** VolumeAdjust.tag 17 Jul 2010 14:35:05 -0000 1.3 --- VolumeAdjust.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#VolumeAdjust(float)'>MediaPlayerAPI.VolumeAdjust</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#VolumeAdjust(float)'>MediaPlayerAPI.VolumeAdjust</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: GetDVDNumberOfTitles.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/GetDVDNumberOfTitles.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GetDVDNumberOfTitles.tag 17 Jul 2010 14:35:05 -0000 1.3 --- GetDVDNumberOfTitles.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetDVDNumberOfTitles()'>MediaPlayerAPI.GetDVDNumberOfTitles</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#GetDVDNumberOfTitles()'>MediaPlayerAPI.GetDVDNumberOfTitles</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: DoesCurrentMediaFileHaveVideo.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/DoesCurrentMediaFileHaveVideo.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DoesCurrentMediaFileHaveVideo.tag 17 Jul 2010 14:35:05 -0000 1.3 --- DoesCurrentMediaFileHaveVideo.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DoesCurrentMediaFileHaveVideo()'>MediaPlayerAPI.DoesCurrentMediaFileHaveVideo</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#DoesCurrentMediaFileHaveVideo()'>MediaPlayerAPI.DoesCurrentMediaFileHaveVideo</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: SkipForward.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/SkipForward.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SkipForward.tag 17 Jul 2010 14:35:05 -0000 1.3 --- SkipForward.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#SkipForward()'>MediaPlayerAPI.SkipForward</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#SkipForward()'>MediaPlayerAPI.SkipForward</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: HasMediaFile.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/HasMediaFile.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** HasMediaFile.tag 17 Jul 2010 14:35:05 -0000 1.3 --- HasMediaFile.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#HasMediaFile()'>MediaPlayerAPI.HasMediaFile</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#HasMediaFile()'>MediaPlayerAPI.HasMediaFile</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: IsCorrectParentalLockCode.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/IsCorrectParentalLockCode.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IsCorrectParentalLockCode.tag 17 Jul 2010 14:35:05 -0000 1.3 --- IsCorrectParentalLockCode.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsCorrectParentalLockCode(java.lang.String)'>MediaPlayerAPI.IsCorrectParentalLockCode</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#IsCorrectParentalLockCode(java.lang.String)'>MediaPlayerAPI.IsCorrectParentalLockCode</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: VolumeUp.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/VolumeUp.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** VolumeUp.tag 17 Jul 2010 14:35:05 -0000 1.3 --- VolumeUp.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#VolumeUp()'>MediaPlayerAPI.VolumeUp</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#VolumeUp()'>MediaPlayerAPI.VolumeUp</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: SetSubtitleDelay.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/SetSubtitleDelay.tag,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SetSubtitleDelay.tag 17 Jul 2010 14:35:05 -0000 1.2 --- SetSubtitleDelay.tag 8 Jun 2011 21:20:30 -0000 1.3 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#SetSubtitleDelay(long)'>MediaPlayerAPI.SetSubtitleDelay</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#SetSubtitleDelay(long)'>MediaPlayerAPI.SetSubtitleDelay</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. Index: SetPlaybackRate.tag =================================================================== RCS file: /cvsroot/sageplugins/webapp/WebContent/WEB-INF/tags/sage/api/mediaplayer/SetPlaybackRate.tag,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SetPlaybackRate.tag 17 Jul 2010 14:35:05 -0000 1.3 --- SetPlaybackRate.tag 8 Jun 2011 21:20:30 -0000 1.4 *************** *** 1,5 **** <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 7/17/10 8:25 AM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#SetPlaybackRate(float)'>MediaPlayerAPI.SetPlaybackRate</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. --- 1,5 ---- <%-- -- Unofficial SageTV Generated File - Never Edit ! -- Generated Date/Time: 6/8/11 2:47 PM -- See Official Sage Documentation at <a href='http://download.sage.tv/api/sage/api/MediaPlayerAPI.html#SetPlaybackRate(float)'>MediaPlayerAPI.SetPlaybackRate</a> -- This Generated API is not Affiliated with SageTV. It is user contributed. |