diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2015-02-18 06:24:18 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-01 12:59:10 +0100 |
commit | 85a0b9b941fbd38d44e4802a27290ad9ec4bb963 (patch) | |
tree | 92bf61d40674f0b28fd44af49daa38b215de3b73 /documentation/template/embedded_video.xsl | |
parent | 9e4adec98db325112ca7a8b9dd95722d4d0ab642 (diff) | |
download | poky-85a0b9b941fbd38d44e4802a27290ad9ec4bb963.tar.gz |
toaster-manual: Draft of Manual.
Fixes [YOCTO #6901]
(From yocto-docs rev: 258b46b0f3e23045b5fb8c97d03dceb69db5ce20)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/template/embedded_video.xsl')
-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> | ||