diff options
Diffstat (limited to 'planet2/config')
-rw-r--r-- | planet2/config/stream-config.xml | 11 | ||||
-rw-r--r-- | planet2/config/stream-template.html | 15 |
2 files changed, 16 insertions, 10 deletions
diff --git a/planet2/config/stream-config.xml b/planet2/config/stream-config.xml index df358aa..4307451 100644 --- a/planet2/config/stream-config.xml +++ b/planet2/config/stream-config.xml @@ -30,14 +30,9 @@ </template> <template keyword="youtube" idpattern="http://www.youtube.com/watch\?v=([^&]+)" descriptionfilter="<span>(.*)</span>"> <![CDATA[ - <object width="480" height="385"> - <param name="movie" value="http://www.youtube.com/v/#id#&hl=en_US&fs=1&rel=0&color1=0x2b405b&color2=0x6b8ab6&hd=1"/> - <param name="allowFullScreen" value="true"/> - <param name="allowscriptaccess" value="always"/> - <embed src="http://www.youtube.com/v/#id#&hl=en_US&fs=1&rel=0&color1=0x2b405b&color2=0x6b8ab6&hd=1" - type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"> - </embed> - </object> + <a href="http://www.youtube.com/watch?v=#id#"><img src="http://img.youtube.com/vi/#id#/1.jpg" alt="Youtube Video Thumbnail 1"/></a> + <a href="http://www.youtube.com/watch?v=#id#"><img src="http://img.youtube.com/vi/#id#/2.jpg" alt="Youtube Video Thumbnail 2"/></a> + <a href="http://www.youtube.com/watch?v=#id#"><img src="http://img.youtube.com/vi/#id#/3.jpg" alt="Youtube Video Thumbnail 3"/></a> ]]> </template> diff --git a/planet2/config/stream-template.html b/planet2/config/stream-template.html index 6b08ae8..b273f81 100644 --- a/planet2/config/stream-template.html +++ b/planet2/config/stream-template.html @@ -39,8 +39,19 @@ </div> <div id="text"> <#list entries as entry> -${entry.player}<br/> -<!--${entry.description}--> +<div> + <table> + <tr> + <td width=400> + ${entry.player} + </td> + <td align="left" valign="center"> + <b>${entry.title}</b><br> + ${entry.description} + </td> + </tr> + </table> +</div> </#list> </div> </div> |