<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:d="http://docbook.org/ns/docbook"
xmlns:doc='http://docbook.org/ns/docbook'
exclude-result-prefixes='doc'>
<!-- ********************************************************************
$Id: dbk2wp.xsl 9396 2012-06-02 21:56:19Z bobstayton $
********************************************************************
This file is part of the XSL DocBook Stylesheet distribution.
See ../README or http://docbook.sf.net/release/xsl/current/ for
copyright and other information.
******************************************************************** -->
<!-- DO NOT USE THIS STYLESHEET!
This stylesheet is imported by the other dbk2* stylesheets.
Use one of those instead.
-->
<xsl:include href='../VERSION.xsl'/>
<!-- doc:docprop.author mode is for creating document metadata -->
<xsl:template match='d:author|doc:author|d:editor|doc:editor' mode='doc:docprop.author'>
<xsl:apply-templates select='d:firstname|doc:firstname |
d:personname/d:firstname|doc:personname/doc:firstname'
mode='doc:docprop.author'/>
<xsl:text> </xsl:text>
<xsl:apply-templates select='d:surname|doc:surname |
d:personname/d:surname|doc:personname/doc:surname'
mode='doc:docprop.author'/>
</xsl:template>
<xsl:template match='d:firstname|doc:firstname |
d:surname|doc:surname'
mode='doc:docprop.author'>
<xsl:apply-templates select='.' mode='doc:body'/>
</xsl:template>
<!-- doc:toplevel mode is for processing whole documents -->
<xsl:template match='*' mode='doc:toplevel'>
<xsl:call-template name='doc:make-body'/>
</xsl:template>
<!-- doc:body mode is for processing components of a document -->
<xsl:template match='d:book|d:article|d:chapter|d:section|d:sect1|d:sect2|d:sect3|d:sect4|d:sect5|d:simplesect |
doc:book|doc:article|doc:chapter|doc:section|doc:sect1|doc:sect2|doc:sect3|doc:sect4|doc:sect5|doc:simplesect'
mode='doc:body'>
<xsl:call-template name='doc:make-subsection'/>
</xsl:template>
<xsl:template match='d:articleinfo |
d:chapterinfo |
d:bookinfo |
doc:info |
doc:articleinfo |
doc:chapterinfo |
doc:bookinfo'
mode='doc:body'>
<xsl:apply-templates select='d:title|d:subtitle|d:titleabbrev |
doc:title|doc:subtitle|doc:titleabbrev'
mode='doc:body'/>
<xsl:apply-templates select='d:author|d:releaseinfo|d:abstract |
doc:author|doc:releaseinfo|doc:abstract'
mode='doc:body'/>
<!-- current implementation ignores all other metadata -->
<xsl:for-each select='*[not(self::d:title|self::d:subtitle|self::d:titleabbrev|self::d:author|self::d:releaseinfo|self::d:abstract |
self::doc:title|self::doc:subtitle|self::doc:titleabbrev|self::doc:author|self::doc:releaseinfo|self::doc:abstract)]'>
<xsl:call-template name='doc:nomatch'/>
</xsl:for-each>
</xsl:template>
<xsl:template match='d:title|d:subtitle|d:titleabbrev |
doc:title|doc:subtitle|doc:titleabbrev'
mode='doc:body'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'>
<xsl:choose>
<xsl:when test='(parent::d:section|parent::doc:section or
parent::d:sectioninfo/parent::d:section|parent::doc:sectioninfo/parent::doc:section) and
count(ancestor::d:section|ancestor::doc:section) > 5'>
<xsl:call-template name='doc:warning'>
<xsl:with-param name='message'>section nested deeper than 5 levels</xsl:with-param>
</xsl:call-template>
<xsl:text>sect5-</xsl:text>
<xsl:value-of select='local-name()'/>
</xsl:when>
<xsl:when test='parent::d:section|parent::doc:section or
parent::d:sectioninfo/parent::d:section|parent::doc:sectioninfo/parent::doc:section'>
<xsl:text>sect</xsl:text>
<xsl:value-of select='count(ancestor::d:section|ancestor::doc:section)'/>
<xsl:text>-</xsl:text>
<xsl:value-of select='local-name()'/>
</xsl:when>
<xsl:when test='contains(local-name(..), "d:info")'>
<xsl:value-of select='local-name(../..)'/>
<xsl:text>-</xsl:text>
<xsl:value-of select='local-name()'/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select='local-name(..)'/>
<xsl:text>-</xsl:text>
<xsl:value-of select='local-name()'/>
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name='outline.level'
select='count(ancestor::*) - count(parent::*[contains(local-name(), "d:info")]) - 1'/>
<xsl:with-param name='attributes.node'
select='../parent::*[contains(local-name(current()), "d:info")] |
parent::*[not(contains(local-name(current()), "d:info"))]'/>
<xsl:with-param name='content'>
<xsl:apply-templates mode='doc:body'/>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<doc:template name='metadata' xmlns=''>
<title>Metadata</title>
<para>TODO: Handle all metadata elements, apart from titles.</para>
</doc:template>
<xsl:template match='*[contains(local-name(), "d:info")]/*[not(self::d:title|self::d:subtitle|self::d:titleabbrev|self::doc:title|self::doc:subtitle|self::doc:titleabbrev)]'
priority='0'
mode='doc:body'/>
<xsl:template match='d:author|d:editor|d:othercredit |
doc:author|doc:editor|doc:othercredit'
mode='doc:body'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'
select='local-name()'/>
<xsl:with-param name='content'>
<xsl:apply-templates select='d:personname|d:surname|d:firstname|d:honorific|d:lineage|d:othername|d:contrib |
doc:personname|doc:surname|doc:firstname|doc:honorific|doc:lineage|doc:othername|doc:contrib'
mode='doc:body'/>
</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates select='d:affiliation|d:address |
doc:affiliation|doc:address'
mode='doc:body'/>
<xsl:apply-templates select='d:authorblurb|d:personblurb |
doc:authorblurb|doc:personblurb'
mode='doc:body'/>
</xsl:template>
<xsl:template match='d:affiliation|doc:affiliation'
mode='doc:body'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"d:affiliation"'/>
<xsl:with-param name='content'>
<xsl:apply-templates mode='doc:body'/>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:address[parent::d:author|parent::d:editor|parent::d:othercredit] |
doc:address[parent::doc:author|parent::doc:editor|parent::doc:othercredit]'
mode='doc:body'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"d:address"'/>
<xsl:with-param name='content'>
<xsl:apply-templates mode='doc:body'/>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<!-- do not attempt to handle recursive structures -->
<xsl:template match='d:address[not(parent::d:author|parent::d:editor|parent::d:othercredit)] |
doc:address[not(parent::doc:author|parent::doc:editor|parent::doc:othercredit)]'
mode='doc:body'>
<xsl:apply-templates select='node()[not(self::d:affiliation|self::d:authorblurb|self::doc:affiliation|self::doc:authorblurb)]'/>
</xsl:template>
<xsl:template match='d:abstract|doc:abstract'
mode='doc:body'>
<xsl:if test='d:title|doc:title'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"abstract-title"'/>
<xsl:with-param name='content'>
<xsl:apply-templates select='d:title/node()|doc:title/node()'
mode='doc:body'/>
</xsl:with-param>
</xsl:call-template>
</xsl:if>
<xsl:apply-templates select='*[not(self::d:title|self::doc:title)]'
mode='doc:body'>
<xsl:with-param name='class'>abstract</xsl:with-param>
</xsl:apply-templates>
</xsl:template>
<!-- TODO -->
<xsl:template match='d:authorblurb|d:personblurb |
doc:authorblurb|doc:personblurb'
mode='doc:body'/>
<!-- TODO: handle inline markup (eg. emphasis) -->
<xsl:template match='d:surname|d:firstname|d:honorific|d:lineage|d:othername|d:contrib|d:email|d:shortaffil|d:jobtitle|d:orgname|d:orgdiv|d:street|d:pob|d:postcode|d:city|d:state|d:country|d:phone|d:fax|d:citetitle |
doc:surname|doc:firstname|doc:honorific|doc:lineage|doc:othername|doc:contrib|doc:email|doc:shortaffil|doc:jobtitle|doc:orgname|doc:orgdiv|doc:street|doc:pob|doc:postcode|doc:city|doc:state|doc:country|doc:phone|doc:fax|doc:citetitle'
mode='doc:body'>
<xsl:if test='preceding-sibling::*'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='content'>
<xsl:text> </xsl:text>
</xsl:with-param>
</xsl:call-template>
</xsl:if>
<xsl:call-template name='doc:handle-linebreaks'>
<xsl:with-param name='style' select='local-name()'/>
<xsl:with-param name='content' select='node()'/>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:email|doc:email'
mode='doc:body'>
<xsl:variable name='address'>
<xsl:choose>
<xsl:when test='starts-with(., "mailto:")'>
<xsl:value-of select='.'/>
</xsl:when>
<xsl:otherwise>
<xsl:text>mailto:</xsl:text>
<xsl:value-of select='.'/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:call-template name='doc:make-hyperlink'>
<xsl:with-param name='target' select='$address'/>
<xsl:with-param name='content'>
<xsl:call-template name='doc:handle-linebreaks'>
<xsl:with-param name='style'>Hyperlink</xsl:with-param>
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<!-- otheraddr often contains ulink -->
<xsl:template match='d:otheraddr|doc:otheraddr'
mode='doc:body'>
<xsl:choose>
<xsl:when test='d:ulink|doc:ulink'>
<xsl:for-each select='d:ulink|doc:ulink'>
<xsl:variable name='prev'
select='preceding-sibling::d:ulink[1] |
preceding-sibling::doc:ulink[1]'/>
<xsl:choose>
<xsl:when test='$prev'>
<xsl:for-each
select='preceding-sibling::node()[generate-id(following-sibling::*[self::d:ulink|self::doc:ulink][1]) = generate-id(current())]'>
<xsl:call-template name='doc:handle-linebreaks'>
<xsl:with-param name='style'>otheraddr</xsl:with-param>
</xsl:call-template>
</xsl:for-each>
</xsl:when>
<xsl:when test='preceding-sibling::node()'>
<xsl:call-template name='doc:handle-linebreaks'>
<xsl:with-param name='style'>otheraddr</xsl:with-param>
</xsl:call-template>
</xsl:when>
</xsl:choose>
<xsl:apply-templates select='.'/>
</xsl:for-each>
<xsl:if test='*[self::d:ulink|self::doc:ulink][last()]/following-sibling::node()'>
<xsl:call-template name='doc:handle-linebreaks'>
<xsl:with-param name='content'
select='*[self::d:ulink|self::doc:ulink][last()]/following-sibling::node()'/>
<xsl:with-param name='style'>otheraddr</xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name='doc:handle-linebreaks'>
<xsl:with-param name='style'>otheraddr</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match='d:ulink|doc:ulink'
mode='doc:body'>
<xsl:call-template name='doc:make-hyperlink'>
<xsl:with-param name='target' select='@url'/>
<xsl:with-param name='content'>
<xsl:call-template name='doc:handle-linebreaks'>
<xsl:with-param name='style'>Hyperlink</xsl:with-param>
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<!-- Cannot round-trip this element -->
<xsl:template match='d:personname|doc:personname'
mode='doc:body'>
<xsl:apply-templates mode='doc:body'/>
</xsl:template>
<xsl:template match='d:releaseinfo|doc:releaseinfo'
mode='doc:body'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'
select='"d:releaseinfo"'/>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:para|doc:para'
mode='doc:body'>
<xsl:param name='class'/>
<xsl:variable name='block'
select='d:blockquote|d:calloutlist|d:classsynopsis|d:funcsynopsis|d:figure|d:glosslist|d:graphic|d:informalfigure|d:informaltable|d:itemizedlist|d:literallayout|d:mediaobject|d:mediaobjectco|d:note|d:caution|d:warning|d:important|d:tip|d:orderedlist|d:programlisting|d:revhistory|d:segmentedlist|d:simplelist|d:table|d:variablelist |
doc:blockquote|doc:calloutlist|doc:classsynopsis|doc:funcsynopsis|doc:figure|doc:glosslist|doc:graphic|doc:informalfigure|doc:informaltable|doc:itemizedlist|doc:literallayout|doc:mediaobject|doc:mediaobjectco|doc:note|doc:caution|doc:warning|doc:important|doc:tip|doc:orderedlist|doc:programlisting|doc:revhistory|doc:segmentedlist|doc:simplelist|doc:table|doc:variablelist'/>
<xsl:choose>
<xsl:when test='$block'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'>
<xsl:choose>
<xsl:when test='$class != ""'>
<xsl:value-of select='$class'/>
</xsl:when>
<xsl:otherwise>para</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name='content'
select='$block[1]/preceding-sibling::node()'/>
</xsl:call-template>
<xsl:for-each select='$block'>
<xsl:apply-templates select='.'/>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'>
<xsl:choose>
<xsl:when test='$class != ""'>
<xsl:value-of select='$class'/>
</xsl:when>
<xsl:otherwise>Normal</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name='content'
select='following-sibling::node()[generate-id(preceding-sibling::*[self::d:blockquote|self::d:calloutlist|self::d:figure|self::d:glosslist|self::d:graphic|self::d:informalfigure|self::d:informaltable|self::d:itemizedlist|self::d:literallayout|self::d:mediaobject|self::d:mediaobjectco|self::d:note|self::d:caution|self::d:warning|self::d:important|self::d:tip|self::d:orderedlist|self::d:programlisting|self::d:revhistory|self::d:segmentedlist|self::d:simplelist|self::d:table|self::d:variablelist | self::doc:blockquote|self::doc:calloutlist|self::doc:figure|self::doc:glosslist|self::doc:graphic|self::doc:informalfigure|self::doc:informaltable|self::doc:itemizedlist|self::doc:literallayout|self::doc:mediaobject|self::doc:mediaobjectco|self::doc:note|self::doc:caution|self::doc:warning|self::doc:important|self::doc:tip|self::doc:orderedlist|self::doc:programlisting|self::doc:revhistory|self::doc:segmentedlist|self::doc:simplelist|self::doc:table|self::doc:variablelist][1]) = generate-id(current())]'/>
</xsl:call-template>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'>
<xsl:choose>
<xsl:when test='$class != ""'>
<xsl:value-of select='$class'/>
</xsl:when>
<xsl:otherwise>Normal</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match='d:simpara|doc:simpara'
mode='doc:body'>
<xsl:param name='class'/>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'>
<xsl:choose>
<xsl:when test='$class != ""'>
<xsl:value-of select='concat("sim-", $class)'/>
</xsl:when>
<xsl:otherwise>simpara</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:emphasis|doc:emphasis'
mode='doc:body'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='italic'>
<xsl:choose>
<xsl:when test='not(@role)'>1</xsl:when>
<xsl:otherwise>0</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name='bold'>
<xsl:choose>
<xsl:when test='@role = "bold" or @role = "d:strong"'>1</xsl:when>
<xsl:otherwise>0</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:informalfigure|doc:informalfigure'
mode='doc:body'>
<xsl:if test='d:mediaobject/d:imageobject/d:imagedata |
doc:mediaobject/doc:imageobject/doc:imagedata'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"informalfigure-imagedata"'/>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='style'/>
<xsl:with-param name='content'>
<xsl:apply-templates select='d:mediaobject/d:imageobject/d:imagedata/@fileref |
doc:mediaobject/doc:imageobject/doc:imagedata/@fileref'
mode='textonly'/>
</xsl:with-param>
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
</xsl:if>
<xsl:apply-templates select='d:caption|doc:caption'
mode='doc:body'/>
<xsl:for-each select='*[not(self::d:mediaobject|self::doc:mediaobject|self::d:caption|self::doc:caption)]'>
<xsl:call-template name='doc:nomatch'/>
</xsl:for-each>
</xsl:template>
<xsl:template match='d:mediaobject|d:mediaobjectco |
doc:mediaobject|doc:mediaobjectco'
mode='doc:body'>
<xsl:apply-templates select='d:objectinfo/d:title|doc:objectinfo/doc:title'/>
<xsl:apply-templates select='d:objectinfo/d:subtitle|d:objectinfo/d:subtitle |
doc:objectinfo/doc:subtitle|doc:objectinfo/doc:subtitle'/>
<!-- TODO: indicate error for other children of objectinfo -->
<xsl:apply-templates select='*[not(self::d:objectinfo|self::doc:objectinfo)]'/>
</xsl:template>
<xsl:template match='d:imageobject|d:imageobjectco|d:audioobject|d:videoobject |
doc:imageobject|doc:imageobjectco|doc:audioobject|doc:videoobject'
mode='doc:body'>
<xsl:apply-templates select='d:objectinfo/d:title|doc:objectinfo/doc:title'/>
<xsl:apply-templates select='d:objectinfo/d:subtitle|doc:objectinfo/doc:subtitle'/>
<!-- TODO: indicate error for other children of objectinfo -->
<xsl:apply-templates select='d:areaspec|doc:areaspec'/>
<xsl:choose>
<xsl:when test='d:imagedata|d:audiodata|d:videodata |
doc:imagedata|doc:audiodata|doc:videodata'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'
select='concat(local-name(), "-", local-name(d:imagedata|d:audiodata|d:videodata|doc:imagedata|doc:audiodata|doc:videodata))'/>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='content'>
<xsl:apply-templates select='*/@fileref'
mode='textonly'/>
</xsl:with-param>
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:when test='self::d:imageobjectco/d:imageobject/d:imagedata |
self::doc:imageobjectco/doc:imageobject/doc:imagedata'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'
select='concat(local-name(), "-imagedata")'/>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='content'>
<xsl:apply-templates select='*/@fileref'
mode='textonly'/>
</xsl:with-param>
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
</xsl:choose>
<xsl:apply-templates select='d:calloutlist|doc:calloutlist'/>
<xsl:for-each select='*[not(self::d:imageobject |
self::d:imagedata |
self::d:audiodata |
self::d:videodata |
self::d:areaspec |
self::d:calloutlist |
self::doc:imageobject |
self::doc:imagedata |
self::doc:audiodata |
self::doc:videodata |
self::doc:areaspec |
self::doc:calloutlist)]'>
<xsl:call-template name='doc:nomatch'/>
</xsl:for-each>
</xsl:template>
<xsl:template match='d:textobject|doc:textobject'
mode='doc:body'>
<xsl:choose>
<xsl:when test='d:objectinfo/d:title|d:objectinfo|d:subtitle |
doc:objectinfo/doc:title|doc:objectinfo|doc:subtitle'>
<xsl:apply-templates select='d:objectinfo/d:title|doc:objectinfo/doc:title'
mode='doc:body'/>
<xsl:apply-templates select='d:objectinfo/d:subtitle|doc:objectinfo/doc:subtitle'
mode='doc:body'/>
<!-- TODO: indicate error for other children of objectinfo -->
</xsl:when>
<!-- In a table, the table itself and the caption delimit the textobject -->
<xsl:when test='ancestor::d:table |
ancestor::doc:table |
ancestor::d:informaltable |
ancestor::doc:informaltable'/>
<xsl:otherwise>
<!-- synthesize a title so that the parent textobject
can be recreated.
-->
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"textobject-title"'/>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='content'>
<xsl:text>Text Object </xsl:text>
<xsl:number level='any'/>
</xsl:with-param>
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select='*[not(self::d:objectinfo|self::doc:objectinfo)]'
mode='doc:body'/>
</xsl:template>
<xsl:template match='d:caption|doc:caption'
mode='doc:body'>
<xsl:choose>
<xsl:when test='not(*)'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"Caption"'/>
<xsl:with-param name='content'>
<xsl:apply-templates/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:when test='not(text()) and
count(*) = count(d:para|doc:para) and
count(*) = 1'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"d:caption"'/>
<xsl:with-param name='content'>
<xsl:apply-templates select='*/node()' mode='doc:body'/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:when test='text()'>
<!-- Not valid DocBook -->
<xsl:call-template name='doc:nomatch'/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"Caption"'/>
<xsl:with-param name='content'>
<xsl:apply-templates select='*[self::d:para|self::doc:para][1]/node()'
mode='doc:body'/>
</xsl:with-param>
</xsl:call-template>
<xsl:for-each select='text()|*[not(self::d:para|self::doc:para)]|*[self::d:para|self::doc:para][position() != 1]'>
<xsl:call-template name='doc:nomatch'/>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match='d:area|d:areaspec|doc:area|doc:areaspec'
mode='doc:body'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='local-name()'/>
<xsl:with-param name='content'/>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:calloutlist|doc:calloutlist'
mode='doc:body'>
<xsl:apply-templates select='d:callout|doc:callout'/>
</xsl:template>
<xsl:template match='d:callout|doc:callout'
mode='doc:body'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"d:callout"'/>
<xsl:with-param name='content'>
<!-- Normally a para would be the first child of a callout -->
<xsl:apply-templates select='*[1][self::d:para|self::doc:para]/node()'
mode='list'/>
</xsl:with-param>
</xsl:call-template>
<!-- This is to catch the case where a listitem's first child is not a paragraph.
- We may not be able to represent this properly.
-->
<xsl:apply-templates select='*[1][not(self::d:para|self::doc:para)]'
mode='list'/>
<xsl:apply-templates select='*[position() != 1]'
mode='list'/>
</xsl:template>
<xsl:template match='d:table|d:informaltable |
doc:table|doc:informaltable'
mode='doc:body'>
<xsl:call-template name='doc:make-table'>
<xsl:with-param name='columns'>
<xsl:apply-templates select='d:tgroup/d:colspec|doc:tgroup/doc:colspec'
mode='doc:column'/>
</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates select='d:textobject|doc:textobject'
mode='doc:body'/>
<xsl:choose>
<xsl:when test='d:caption|doc:caption'>
<xsl:apply-templates select='d:caption|doc:caption'
mode='doc:body'/>
</xsl:when>
<xsl:when test='d:textobject|doc:textobject'>
<!-- Synthesize a caption to delimit the textobject -->
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'>Caption</xsl:with-param>
<xsl:with-param name='content'/>
<xsl:with-param name='attributes.node' select='/..'/>
</xsl:call-template>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match='d:colspec|doc:colspec' mode='doc:column'>
<xsl:variable name='width'>
<xsl:choose>
<xsl:when test='contains(@colwidth, "*")'>
<!-- May need to resolve proportional width with other columns -->
<xsl:value-of select='substring-before(@colwidth, "*")'/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select='@colwidth'/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:call-template name='doc:make-column'>
<xsl:with-param name='width' select='$width'/>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:colspec|doc:colspec' mode='doc:body'/>
<xsl:template name='doc:repeat'>
<xsl:param name='repeats' select='0'/>
<xsl:param name='content'/>
<xsl:if test='$repeats > 0'>
<xsl:copy-of select='$content'/>
<xsl:call-template name='doc:repeat'>
<xsl:with-param name='repeats' select='$repeats - 1'/>
<xsl:with-param name='content' select='$content'/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template match='d:tgroup|d:tbody|d:thead |
doc:tgroup|doc:tbody|doc:thead'
mode='doc:body'>
<xsl:apply-templates mode='doc:body'/>
</xsl:template>
<xsl:template match='d:row|doc:row' mode='doc:body'>
<xsl:call-template name='doc:make-table-row'>
<xsl:with-param name='is-header' select='boolean(parent::d:thead|parent::doc:thead)'/>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:entry|doc:entry' mode='doc:body'>
<!--
Position = Sum(i,preceding-sibling[@colspan = ""]) + entry[i].@colspan)
-->
<xsl:variable name='position'>
<xsl:call-template name='doc:sum-sibling'>
<xsl:with-param name='sum' select='"1"'/>
<xsl:with-param name='node' select='.'/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name='limit' select='$position + @colspan'/>
<xsl:variable name='width.raw'>
<xsl:choose>
<xsl:when test='@colspan != ""'>
<!-- Select all the colspec nodes which correspond to the
column. That is all the nodes between the current
column number and the column number plus the span.
-->
<xsl:variable name='combinedWidth'>
<xsl:call-template name='doc:sum'>
<xsl:with-param name='nodes' select='ancestor::*[self::d:table|self::doc:table|self::d:informaltable|self::doc:informaltable][1]/*[self::d:tgroup|self::doc:tgroup]/*[self::d:colspec|self::doc:colspec][not(position() < $position) and position() < $limit]'/>
<xsl:with-param name='sum' select='"0"'/>
</xsl:call-template>
</xsl:variable>
<xsl:value-of select='$combinedWidth'/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select='ancestor::*[self::d:table|self::doc:table|self::d:informaltable|self::doc:informaltable][1]/*[self::d:tgroup|self::doc:tgroup]/*[self::d:colspec|self::doc:colspec][position() = $position]/@colwidth'/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:call-template name='doc:make-table-cell'>
<xsl:with-param name='width'>
<xsl:choose>
<xsl:when test='contains($width.raw, "*")'>
<!-- Select all the colspec nodes which correspond to the
column. That is all the nodes between the current
column number and the column number plus the span.
-->
<xsl:value-of select='substring-before($width.raw, "*")'/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select='$width.raw'/>
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name='hidden' select='@hidden'/>
<xsl:with-param name='rowspan' select='@rowspan'/>
<xsl:with-param name='colspan' select='@colspan'/>
<xsl:with-param name='content'>
<xsl:choose>
<xsl:when test='not(d:para|doc:para)'>
<!-- TODO: check for any block elements -->
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'/>
<xsl:with-param name='attributes.node' select='/..'/>
<xsl:with-param name='content'/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates mode='doc:body'/>
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<!-- Calculates the position by adding the
count of the preceding siblings where they aren't colspans
and adding the colspans of those entries which do.
-->
<xsl:template name='doc:sum-sibling'>
<xsl:param name='sum'/>
<xsl:param name='node'/>
<xsl:variable name='add'>
<xsl:choose>
<xsl:when test='$node/preceding-sibling::*[self::d:entry|self::doc:entry]/@colspan != ""'>
<xsl:value-of select='$node/preceding-sibling::*[self::d:entry|self::doc:entry]/@colspan'/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select='"1"'/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<xsl:when test='count($node/preceding-sibling::*[self::d:entry|self::doc:entry]) > 0'>
<xsl:call-template name='doc:sum-sibling'>
<xsl:with-param name='sum' select='$sum + $add'/>
<xsl:with-param name='node'
select='$node/preceding-sibling::*[self::d:entry|self::doc:entry][1]'/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select='$sum'/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name='doc:sum'>
<xsl:param name='sum' select='"0"'/>
<xsl:param name='nodes'/>
<xsl:variable name='tmpSum' select='$sum + $nodes[1]/@colwidth'/>
<xsl:choose>
<xsl:when test='count($nodes) > 1'>
<xsl:call-template name='doc:sum'>
<xsl:with-param name='nodes' select='$nodes[position() != 1]'/>
<xsl:with-param name='sum' select='$tmpSum'/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select='$tmpSum'/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match='*[self::d:para|self::d:simpara|self::doc:para|self::doc:simpara]/text()[string-length(normalize-space(.)) != 0]'
mode='doc:body'>
<xsl:call-template name='doc:handle-linebreaks'/>
</xsl:template>
<xsl:template match='text()[not(parent::d:para|parent::d:simpara|parent::d:literallayout|parent::d:programlisting | parent::doc:para|parent::doc:simpara|parent::doc:literallayout|parent::doc:programlisting)][string-length(normalize-space(.)) != 0]'
mode='doc:body'>
<xsl:call-template name='doc:handle-linebreaks'/>
</xsl:template>
<xsl:template match='text()[string-length(normalize-space(.)) = 0]'
mode='doc:body'/>
<xsl:template match='d:literallayout/text()|d:programlisting/text() |
doc:literallayout/text()|doc:programlisting/text()'
mode='doc:body'>
<xsl:call-template name='doc:handle-linebreaks'/>
</xsl:template>
<xsl:template name='doc:handle-linebreaks'>
<xsl:param name='content' select='.'/>
<xsl:param name='style'/>
<xsl:choose>
<xsl:when test='not($content)'/>
<xsl:when test='contains($content, "
")'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='style' select='$style'/>
<xsl:with-param name='content'
select='substring-before($content, "
")'/>
</xsl:call-template>
<xsl:call-template name='doc:handle-linebreaks-aux'>
<xsl:with-param name='content'
select='substring-after($content, "
")'/>
<xsl:with-param name='style' select='$style'/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='style' select='$style'/>
<xsl:with-param name='content' select='$content'/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- pre-condition: leading linefeed has been stripped -->
<xsl:template name='doc:handle-linebreaks-aux'>
<xsl:param name='content'/>
<xsl:param name='style'/>
<xsl:choose>
<xsl:when test='contains($content, "
")'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='style' select='$style'/>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-soft-break'/>
<xsl:value-of select='substring-before($content, "
")'/>
</xsl:with-param>
</xsl:call-template>
<xsl:call-template name='doc:handle-linebreaks-aux'>
<xsl:with-param name='content'
select='substring-after($content, "
")'/>
<xsl:with-param name='style' select='$style'/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='style' select='$style'/>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-soft-break'/>
<xsl:value-of select='$content'/>
</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match='d:authorblurb|d:formalpara|d:legalnotice|d:note|d:caution|d:warning|d:important|d:tip |
doc:authorblurb|doc:formalpara|doc:legalnotice|doc:note|doc:caution|doc:warning|doc:important|doc:tip'
mode='doc:body'>
<xsl:apply-templates select='*'>
<xsl:with-param name='class'>
<xsl:value-of select='local-name()'/>
</xsl:with-param>
</xsl:apply-templates>
</xsl:template>
<xsl:template match='d:blockquote|doc:blockquote'
mode='doc:body'>
<xsl:apply-templates select='d:blockinfo|d:title|doc:info|doc:title'
mode='doc:body'>
<xsl:with-param name='class'>
<xsl:value-of select='local-name()'/>
</xsl:with-param>
</xsl:apply-templates>
<xsl:apply-templates select='*[not(self::d:blockinfo|self::d:title|self::d:attribution|self::doc:info|self::doc:title|self::doc:attribution)]'
mode='doc:body'>
<xsl:with-param name='class' select='"d:blockquote"'/>
</xsl:apply-templates>
<xsl:if test='d:attribution|doc:attribution'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"blockquote-attribution"'/>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='content'>
<xsl:apply-templates select='d:attribution/node()|doc:attribution/node()'/>
</xsl:with-param>
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template match='d:literallayout|d:programlisting|doc:literallayout|doc:programlisting'
mode='doc:body'>
<xsl:param name='class'/>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='local-name()'/>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:bridgehead|doc:bridgehead'
mode='doc:body'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"d:bridgehead"'/>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:itemizedlist|d:orderedlist |
doc:itemizedlist|doc:orderedlist'
mode='doc:body'>
<xsl:apply-templates select='d:listitem|doc:listitem'
mode='doc:body'/>
</xsl:template>
<xsl:template match='d:listitem|doc:listitem'
mode='doc:body'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style'
select='concat(local-name(..),
count(ancestor::d:itemizedlist|ancestor::d:orderedlist|ancestor::doc:itemizedlist|ancestor::doc:orderedlist))'/>
<xsl:with-param name='is-listitem' select='true()'/>
<xsl:with-param name='content'>
<!-- Normally a para would be the first child of a listitem -->
<xsl:apply-templates select='*[1][self::d:para|self::doc:para]/node()'
mode='doc:body'/>
</xsl:with-param>
</xsl:call-template>
<!-- This is to catch the case where a listitem's first child is not a paragraph.
- We may not be able to represent this properly.
-->
<xsl:apply-templates select='*[1][not(self::d:para|self::doc:para)]'
mode='doc:list-continue'/>
<xsl:apply-templates select='*[position() != 1]'
mode='doc:list-continue'/>
</xsl:template>
<xsl:template match='d:para|doc:para' mode='doc:list-continue'>
<xsl:apply-templates select='.'
mode='doc:body'>
<xsl:with-param name='class' select='"para-continue"'/>
</xsl:apply-templates>
</xsl:template>
<!-- non-paragraph elements in a listitem are rolled back into
the list item upon conversion.
-->
<xsl:template match='*' mode='doc:list-continue'>
<xsl:apply-templates select='.' mode='doc:body'/>
</xsl:template>
<xsl:template match='d:variablelist|doc:variablelist'
mode='doc:body'>
<xsl:apply-templates select='*[not(self::d:varlistentry|self::doc:varlistentry)]'/>
<xsl:call-template name='doc:make-table'>
<xsl:with-param name='columns'>
<xsl:call-template name='doc:make-column'>
<xsl:with-param name='width' select='"1"'/>
</xsl:call-template>
<xsl:call-template name='doc:make-column'>
<xsl:with-param name='width' select='"3"'/>
</xsl:call-template>
</xsl:with-param>
<xsl:with-param name='rows'>
<xsl:apply-templates select='d:varlistentry|doc:varlistentry'/>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<xsl:template match='d:varlistentry|doc:varlistentry'
mode='doc:body'>
<xsl:call-template name='doc:make-table-row'>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-table-cell'>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"variablelist-term"'/>
<xsl:with-param name='content'>
<xsl:apply-templates select='*[self::d:term|self::doc:term][1]/node()'
mode='doc:body'/>
<xsl:for-each select='*[self::d:term|self::doc:term][position() != 1]'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-soft-break'/>
</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates/>
</xsl:for-each>
</xsl:with-param>
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
<xsl:call-template name='doc:make-table-cell'>
<xsl:with-param name='content'>
<xsl:apply-templates select='d:listitem/node()|doc:listitem/node()'
mode='doc:body'/>
</xsl:with-param>
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<!-- These elements are not displayed.
- However, they may need to be added (perhaps as hidden text)
- for round-tripping.
-->
<xsl:template match='d:anchor|d:areaset|d:audiodata|d:audioobject|
d:beginpage|
d:constraint|
d:indexterm|d:itermset|
d:keywordset|
d:msg |
doc:anchor|doc:areaset|doc:audiodata|doc:audioobject|
doc:beginpage|
doc:constraint|
doc:indexterm|doc:itermset|
doc:keywordset|
doc:msg'
mode='doc:body'/>
<xsl:template match='*' name='doc:nomatch'>
<xsl:param name='node' select='.'/>
<xsl:message>
<xsl:value-of select='local-name($node)'/>
<xsl:if test='namespace-uri($node) != ""'>
<xsl:text> [</xsl:text>
<xsl:value-of select='namespace-uri($node)'/>
<xsl:text>]</xsl:text>
</xsl:if>
<xsl:text> encountered</xsl:text>
<xsl:if test='$node/parent::*'>
<xsl:text> in </xsl:text>
<xsl:value-of select='local-name($node/parent::*)'/>
</xsl:if>
<xsl:text>, but no template matches.</xsl:text>
</xsl:message>
<xsl:for-each select='$node'>
<xsl:choose>
<xsl:when test='self::d:abstract |
self::d:ackno |
self::d:address |
self::d:answer |
self::d:appendix |
self::d:artheader |
self::d:authorgroup |
self::d:bibliodiv |
self::d:biblioentry |
self::d:bibliography |
self::d:bibliomixed |
self::d:bibliomset |
self::d:biblioset |
self::d:bridgehead |
self::d:calloutlist |
self::d:caption |
self::d:classsynopsis |
self::d:colophon |
self::d:constraintdef |
self::d:copyright |
self::d:dedication |
self::d:epigraph |
self::d:equation |
self::d:example |
self::d:figure |
self::d:funcsynopsis |
self::d:glossary |
self::d:glossdef |
self::d:glossdiv |
self::d:glossentry |
self::d:glosslist |
self::d:graphic |
self::d:highlights |
self::d:imageobject |
self::d:imageobjectco |
self::d:index |
self::d:indexdiv |
self::d:indexentry |
self::d:informalequation |
self::d:informalexample |
self::d:informalfigure |
self::d:lot |
self::d:lotentry |
self::d:mediaobject |
self::d:mediaobjectco |
self::d:member |
self::d:msgentry |
self::d:msgset |
self::d:part |
self::d:partintro |
self::d:personblurb |
self::d:preface |
self::d:printhistory |
self::d:procedure |
self::d:programlisting |
self::d:programlistingco |
self::d:publisher |
self::d:qandadiv |
self::d:qandaentry |
self::d:qandaset |
self::d:question |
self::d:refdescriptor |
self::d:refentry |
self::d:refentrytitle |
self::d:reference |
self::d:refmeta |
self::d:refname |
self::d:refnamediv |
self::d:refpurpose |
self::d:refsect1 |
self::d:refsect2 |
self::d:refsect3 |
self::d:refsection |
self::d:refsynopsisdiv |
self::d:screen |
self::d:screenco |
self::d:screenshot |
self::d:seg |
self::d:seglistitem |
self::d:segmentedlist |
self::d:segtitle |
self::d:set |
self::d:setindex |
self::d:sidebar |
self::d:simplelist |
self::d:simplemsgentry |
self::d:step |
self::d:stepalternatives |
self::d:subjectset |
self::d:substeps |
self::d:task |
self::d:textobject |
self::d:toc |
self::d:videodata |
self::d:videoobject |
self::doc:abstract |
self::doc:ackno |
self::doc:address |
self::doc:answer |
self::doc:appendix |
self::doc:artheader |
self::doc:authorgroup |
self::doc:bibliodiv |
self::doc:biblioentry |
self::doc:bibliography |
self::doc:bibliomixed |
self::doc:bibliomset |
self::doc:biblioset |
self::doc:bridgehead |
self::doc:calloutlist |
self::doc:caption |
self::doc:classsynopsis |
self::doc:colophon |
self::doc:constraintdef |
self::doc:copyright |
self::doc:dedication |
self::doc:epigraph |
self::doc:equation |
self::doc:example |
self::doc:figure |
self::doc:funcsynopsis |
self::doc:glossary |
self::doc:glossdef |
self::doc:glossdiv |
self::doc:glossentry |
self::doc:glosslist |
self::doc:graphic |
self::doc:highlights |
self::doc:imageobject |
self::doc:imageobjectco |
self::doc:index |
self::doc:indexdiv |
self::doc:indexentry |
self::doc:informalequation |
self::doc:informalexample |
self::doc:informalfigure |
self::doc:lot |
self::doc:lotentry |
self::doc:mediaobject |
self::doc:mediaobjectco |
self::doc:member |
self::doc:msgentry |
self::doc:msgset |
self::doc:part |
self::doc:partintro |
self::doc:personblurb |
self::doc:preface |
self::doc:printhistory |
self::doc:procedure |
self::doc:programlisting |
self::doc:programlistingco |
self::doc:publisher |
self::doc:qandadiv |
self::doc:qandaentry |
self::doc:qandaset |
self::doc:question |
self::doc:refdescriptor |
self::doc:refentry |
self::doc:refentrytitle |
self::doc:reference |
self::doc:refmeta |
self::doc:refname |
self::doc:refnamediv |
self::doc:refpurpose |
self::doc:refsect1 |
self::doc:refsect2 |
self::doc:refsect3 |
self::doc:refsection |
self::doc:refsynopsisdiv |
self::doc:screen |
self::doc:screenco |
self::doc:screenshot |
self::doc:seg |
self::doc:seglistitem |
self::doc:segmentedlist |
self::doc:segtitle |
self::doc:set |
self::doc:setindex |
self::doc:sidebar |
self::doc:simplelist |
self::doc:simplemsgentry |
self::doc:step |
self::doc:stepalternatives |
self::doc:subjectset |
self::doc:substeps |
self::doc:task |
self::doc:textobject |
self::doc:toc |
self::doc:videodata |
self::doc:videoobject |
self::*[not(starts-with(local-name(), "d:informal")) and contains(local-name(), "d:info")]'>
<xsl:call-template name='doc:make-paragraph'>
<xsl:with-param name='style' select='"d:blockerror"'/>
<xsl:with-param name='content'>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='content'>
<xsl:value-of select='local-name()'/>
<xsl:if test='namespace-uri() != ""'>
<xsl:text> [</xsl:text>
<xsl:value-of select='namespace-uri()'/>
<xsl:text>]</xsl:text>
</xsl:if>
<xsl:text> encountered</xsl:text>
<xsl:if test='parent::*'>
<xsl:text> in </xsl:text>
<xsl:value-of select='local-name(parent::*)'/>
</xsl:if>
<xsl:text>, but no template matches.</xsl:text>
</xsl:with-param>
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<!-- Some elements are sometimes blocks, sometimes inline
<xsl:when test='self::d:affiliation |
self::d:alt |
self::d:attribution |
self::d:collab |
self::d:collabname |
self::d:confdates |
self::d:confgroup |
self::d:confnum |
self::d:confsponsor |
self::d:conftitle |
self::d:contractnum |
self::d:contractsponsor |
self::d:contrib |
self::d:corpauthor |
self::d:corpcredit |
self::d:corpname |
self::d:edition |
self::d:editor |
self::d:jobtitle |
self::d:personname |
self::d:publishername |
self::d:remark |
self::doc:affiliation |
self::doc:alt |
self::doc:attribution |
self::doc:collab |
self::doc:collabname |
self::doc:confdates |
self::doc:confgroup |
self::doc:confnum |
self::doc:confsponsor |
self::doc:conftitle |
self::doc:contractnum |
self::doc:contractsponsor |
self::doc:contrib |
self::doc:corpauthor |
self::doc:corpcredit |
self::doc:corpname |
self::doc:edition |
self::doc:editor |
self::doc:jobtitle |
self::doc:personname |
self::doc:publishername |
self::doc:remark'>
</xsl:when>
-->
<xsl:otherwise>
<xsl:call-template name='doc:make-phrase'>
<xsl:with-param name='style' select='"d:inlineerror"'/>
<xsl:with-param name='content'>
<xsl:value-of select='local-name()'/>
<xsl:text> encountered</xsl:text>
<xsl:if test='parent::*'>
<xsl:text> in </xsl:text>
<xsl:value-of select='local-name(parent::*)'/>
</xsl:if>
<xsl:text>, but no template matches.</xsl:text>
</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
<xsl:template match='*' mode='doc:copy'>
<xsl:copy>
<xsl:apply-templates select='@*' mode='doc:copy'/>
<xsl:apply-templates mode='doc:copy'/>
</xsl:copy>
</xsl:template>
<xsl:template match='@*' mode='doc:copy'>
<xsl:copy/>
</xsl:template>
<!-- Stubs: the importing stylesheet must override these -->
<!-- stub template for creating a paragraph -->
<xsl:template name='doc:make-paragraph'>
</xsl:template>
<!-- stub template for creating a phrase -->
<xsl:template name='doc:make-phrase'>
</xsl:template>
<!-- stub template for inserting attributes -->
<xsl:template name='doc:attributes'/>
<!-- emit a message -->
<xsl:template name='doc:warning'>
<xsl:param name='message'/>
<xsl:message>WARNING: <xsl:value-of select='$message'/></xsl:message>
</xsl:template>
</xsl:stylesheet>
# |
Change |
User |
Description |
Committed |
|
#1
|
18334 |
Liz Lam |
initial add of jambox |
|
|