|
From: OryNider <ory...@us...> - 2007-09-21 22:26:33
|
Update of /cvsroot/mxbb/mx_music/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19145 Modified Files: Tag: core28x music_cat_xs.tpl music_media_cat_body.tpl music_page_body.tpl music_pic_cat_body.tpl Log Message: This will get default.jpg pic from youtube and will be displayed when no pic is uploaded instead of displaying defaul no image pic. Index: music_cat_xs.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_music/templates/subSilver/music_cat_xs.tpl,v retrieving revision 1.7.2.2 retrieving revision 1.7.2.3 diff -C2 -d -r1.7.2.2 -r1.7.2.3 *** music_cat_xs.tpl 17 Sep 2007 02:19:26 -0000 1.7.2.2 --- music_cat_xs.tpl 21 Sep 2007 22:26:25 -0000 1.7.2.3 *************** *** 234,248 **** <!-- IF song_detail.S_ROW_TYPE eq YOUTUBE --> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="VideoPlayback" width="{song_detail.WIDTH}" height="{song_detail.HEIGHT}"> - <param name="allowScriptAccess" value="always" /> <param name="movie" value="{song_detail.VIDEO_URL}" /> <param name="wmode" value="transparent" /> - <param name="loop" value="false" /> - <param name="menu" value="false" /> - <param name="quality" value="high" /> <param name="allowfullscreen" value="true" /> ! <param name="scale" value="noscale" /> ! <param name="salign" value="lt" /> ! <embed src="{song_detail.VIDEO_URL}" id="VideoPlayback" type="application/x-shockwave-flash" wmode="transparent" width="{song_detail.WIDTH}" height="{song_detail.HEIGHT}" allowfullscreen="true"> ! </embed> </object> <!-- ENDIF --> --- 234,242 ---- <!-- IF song_detail.S_ROW_TYPE eq YOUTUBE --> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="VideoPlayback" width="{song_detail.WIDTH}" height="{song_detail.HEIGHT}"> <param name="movie" value="{song_detail.VIDEO_URL}" /> <param name="wmode" value="transparent" /> <param name="allowfullscreen" value="true" /> ! <param name="flashvars" value="&rs=1&sn=1&iurl={song_detail.U_IMG}" /> ! <embed src="{song_detail.VIDEO_URL}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350" allowfullscreen="true" flashvars="&rs=1&sn=1&iurl={song_detail.U_IMG}" /> </object> <!-- ENDIF --> Index: music_pic_cat_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_music/templates/subSilver/music_pic_cat_body.tpl,v retrieving revision 1.2.2.2 retrieving revision 1.2.2.3 diff -C2 -d -r1.2.2.2 -r1.2.2.3 *** music_pic_cat_body.tpl 17 Sep 2007 02:19:26 -0000 1.2.2.2 --- music_pic_cat_body.tpl 21 Sep 2007 22:26:26 -0000 1.2.2.3 *************** *** 203,211 **** <!-- IF song_detail.S_ROW_TYPE eq YOUTUBE --> ! <object width="{song_detail.WIDTH}" height="{song_detail.HEIGHT}"> ! <param name="movie" value="{song_detail.SONG_URL}"></param> ! <param name="wmode" value="transparent"></param> ! <embed src="{song_detail.VIDEO_URL}" id="VideoPlayback" type="application/x-shockwave-flash" wmode="transparent" width="{song_detail.WIDTH}" height="{song_detail.HEIGHT}" flashvars=""> ! </embed> </object> <!-- ENDIF --> --- 203,212 ---- <!-- IF song_detail.S_ROW_TYPE eq YOUTUBE --> ! <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="VideoPlayback" width="{song_detail.WIDTH}" height="{song_detail.HEIGHT}"> ! <param name="movie" value="{song_detail.VIDEO_URL}" /> ! <param name="wmode" value="transparent" /> ! <param name="allowfullscreen" value="true" /> ! <param name="flashvars" value="&rs=1&sn=1&iurl={song_detail.U_IMG}" /> ! <embed src="{song_detail.VIDEO_URL}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350" allowfullscreen="true" flashvars="&rs=1&sn=1&iurl={song_detail.U_IMG}" /> </object> <!-- ENDIF --> Index: music_page_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_music/templates/subSilver/music_page_body.tpl,v retrieving revision 1.5.2.1 retrieving revision 1.5.2.2 diff -C2 -d -r1.5.2.1 -r1.5.2.2 *** music_page_body.tpl 12 Sep 2007 23:50:02 -0000 1.5.2.1 --- music_page_body.tpl 21 Sep 2007 22:26:26 -0000 1.5.2.2 *************** *** 147,157 **** <!-- END flashvideo --> ! <!-- BEGIN youtube --> <object width="425" height="350"> ! <param name="movie" value="{VIDEO_URL}"></param> ! <param name="wmode" value="transparent"></param> ! <embed src="{VIDEO_URL}" id="VideoPlayback" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350" flashvars=""> ! </embed> ! </object> <!-- END youtube --> --- 147,158 ---- <!-- END flashvideo --> ! <!-- BEGIN youtube --> <object width="425" height="350"> ! <param name="movie" value="{VIDEO_URL}" /> ! <param name="wmode" value="transparent" /> ! <param name="allowfullscreen" value="true" /> ! <param name="flashvars" value="&rs=1&sn=1&iurl={U_IMG}" /> ! <embed src="{VIDEO_URL}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350" allowfullscreen="true" flashvars="&rs=1&sn=1&iurl={U_IMG}" /> ! </object> <!-- END youtube --> Index: music_media_cat_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_music/templates/subSilver/music_media_cat_body.tpl,v retrieving revision 1.2.2.2 retrieving revision 1.2.2.3 diff -C2 -d -r1.2.2.2 -r1.2.2.3 *** music_media_cat_body.tpl 17 Sep 2007 02:19:26 -0000 1.2.2.2 --- music_media_cat_body.tpl 21 Sep 2007 22:26:25 -0000 1.2.2.3 *************** *** 191,205 **** <!-- IF song_detail.S_ROW_TYPE eq YOUTUBE --> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="VideoPlayback" width="{song_detail.WIDTH}" height="{song_detail.HEIGHT}"> - <param name="allowScriptAccess" value="always" /> <param name="movie" value="{song_detail.VIDEO_URL}" /> <param name="wmode" value="transparent" /> - <param name="loop" value="false" /> - <param name="menu" value="false" /> - <param name="quality" value="high" /> <param name="allowfullscreen" value="true" /> ! <param name="scale" value="noscale" /> ! <param name="salign" value="lt" /> ! <embed src="{song_detail.VIDEO_URL}" id="VideoPlayback" type="application/x-shockwave-flash" wmode="transparent" width="{song_detail.WIDTH}" height="{song_detail.HEIGHT}" allowfullscreen="true"> ! </embed> </object> <!-- ENDIF --> --- 191,199 ---- <!-- IF song_detail.S_ROW_TYPE eq YOUTUBE --> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="VideoPlayback" width="{song_detail.WIDTH}" height="{song_detail.HEIGHT}"> <param name="movie" value="{song_detail.VIDEO_URL}" /> <param name="wmode" value="transparent" /> <param name="allowfullscreen" value="true" /> ! <param name="flashvars" value="&rs=1&sn=1&iurl={song_detail.U_IMG}" /> ! <embed src="{song_detail.VIDEO_URL}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350" allowfullscreen="true" flashvars="&rs=1&sn=1&iurl={song_detail.U_IMG}" /> </object> <!-- ENDIF --> |