summaryrefslogtreecommitdiffstats
path: root/documentation/template
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2015-02-18 06:24:18 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-04-01 17:36:05 +0100
commit693ba0b14fa4aa166a072ab0080de666af239b03 (patch)
tree174284b3ab867f8c2169f682e247762d8ee90140 /documentation/template
parente7b07d33c2d7e1ef231a1d99183d00f3c0882218 (diff)
downloadast2050-yocto-poky-693ba0b14fa4aa166a072ab0080de666af239b03.zip
ast2050-yocto-poky-693ba0b14fa4aa166a072ab0080de666af239b03.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')
-rw-r--r--documentation/template/embedded_video.xsl22
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 0000000..dfb33c3
--- /dev/null
+++ b/documentation/template/embedded_video.xsl
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:d="http://docbook.org/ns/docbook">
+
+ <xsl:output method="html" />
+
+ <xsl:template match="/d:chapter/d:section/d:mediaobject">
+ <xsl:for-each select=".">
+ <xsl:variable name="vid_url">
+ <xsl:value-of select="./d:videoobject/d:videodata/@fileref" />
+ </xsl:variable>
+ <div style="text-align: center; margin: auto">
+ <object type="application/x-shockwave-flash" width="640" height="420" data="{$vid_url}?color2=FBE9EC&amp;showsearch=0&amp;version=3&amp;modestbranding=1&amp;fs=1">
+ <param name="movie" value="{$vid_url}?color2=FBE9EC&amp;showsearch=0&amp;version=3&amp;modestbranding=1&amp;fs=1" />
+ <param name="allowFullScreen" value="true" />
+ <param name="allowscriptaccess" value="always" />
+ </object>
+ </div>
+ </xsl:for-each>
+ </xsl:template>
+</xsl:stylesheet>
OpenPOWER on IntegriCloud