diff options
Diffstat (limited to 'documentation/template')
-rw-r--r-- | documentation/template/embedded_video.xsl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/documentation/template/embedded_video.xsl b/documentation/template/embedded_video.xsl new file mode 100644 index 0000000000..dfb33c3441 --- /dev/null +++ b/documentation/template/embedded_video.xsl | |||
@@ -0,0 +1,22 @@ | |||
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> | ||