Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <xsl:stylesheet version="1.0" |
| 3 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
| 4 | xmlns:d="http://docbook.org/ns/docbook"> |
| 5 | |
| 6 | <xsl:output method="html" /> |
| 7 | |
| 8 | <xsl:template match="/d:chapter/d:section/d:mediaobject"> |
| 9 | <xsl:for-each select="."> |
| 10 | <xsl:variable name="vid_url"> |
| 11 | <xsl:value-of select="./d:videoobject/d:videodata/@fileref" /> |
| 12 | </xsl:variable> |
| 13 | <div style="text-align: center; margin: auto"> |
| 14 | <object type="application/x-shockwave-flash" width="640" height="420" data="{$vid_url}?color2=FBE9EC&showsearch=0&version=3&modestbranding=1&fs=1"> |
| 15 | <param name="movie" value="{$vid_url}?color2=FBE9EC&showsearch=0&version=3&modestbranding=1&fs=1" /> |
| 16 | <param name="allowFullScreen" value="true" /> |
| 17 | <param name="allowscriptaccess" value="always" /> |
| 18 | </object> |
| 19 | </div> |
| 20 | </xsl:for-each> |
| 21 | </xsl:template> |
| 22 | </xsl:stylesheet> |