• Switched to XPath value comparison operators (eq, etc.) where appropriate.
• Made better use of XPath general comparison operators for lists of alternatives.
• Normalised synonyms for “center” in attributes.
• Normalised synonyms for “yes” and “no” in attributes.
1 parent d86569b commit 9115e7344ea54fb6713a445a93fb21f2198556d4
Nigel Stanger authored on 13 Feb 2017
Showing 21 changed files
View
22
modules/basic-page-elements.xml
-->
<xsl:call-template name="newline-internal" />
<xsl:call-template name="newline-internal" />
<xsl:choose>
<xsl:when test="(@align = 'left') or (@align = 'right')">
<xsl:when test="@align = ('left', 'right')">
<xsl:text>\begin{flush</xsl:text>
<xsl:value-of select="@align" />
<xsl:text>}</xsl:text>
</xsl:when>
<xsl:when test="@align = 'center'">
<xsl:when test="@align = ('center', 'centre')">
<xsl:text>\begin{center}</xsl:text>
</xsl:when>
</xsl:choose>
<xsl:if test="@indent = 'no'">
<xsl:if test="@indent = ('no', 'n', 'false', 'f', '0')">
<xsl:text>\noindent </xsl:text>
</xsl:if>
<xsl:if test="@border = 'yes'">
<xsl:if test="@border = ('yes', 'y')">
<xsl:text>\fbox{\parbox[t]{\textwidth}{</xsl:text>
</xsl:if>
<xsl:apply-templates />
<xsl:if test="@border = 'yes'">
<xsl:if test="@border = ('yes', 'y')">
<xsl:text>}}</xsl:text>
</xsl:if>
<xsl:choose>
<xsl:when test="(@align = 'left') or (@align = 'right')">
<xsl:when test="@align = ('left', 'right')">
<xsl:text>\end{flush</xsl:text>
<xsl:value-of select="@align" />
<xsl:text>}</xsl:text>
</xsl:when>
<xsl:when test="@align = 'center'">
<xsl:when test="@align = ('center', 'centre')">
<xsl:text>\end{center}</xsl:text>
</xsl:when>
</xsl:choose>
<xsl:call-template name="newline-internal" />
The HTMLStyle parameter is an Ugly Hack(tm) to ensure that paragraphs are indented correctly inside definition lists in HTML. I tried modes first, but they didn't work correctly. Fortunately this only needs to be done with paragraphs, so this will work fine.
-->
<xsl:param name="HTMLStyle" />
<p>
<xsl:if test="@border = 'yes'">
<xsl:if test="@border = ('yes', 'y')">
<xsl:attribute name="style">border: 1px solid black;</xsl:attribute>
</xsl:if>
<xsl:if test="$HTMLStyle">
<xsl:attribute name="class">
<template name="page-break" match="page-break|new-page|newpage|pagebreak">
<common formats="/latex/xelatex/">
<xsl:variable name="insert" select="
if ((name(..) = 'answer') and ($showanswers = 'no')) then false()
else if ((name(..) = 'question') and ($showanswers = 'yes')) then false()
if ((name(..) eq 'answer') and ($showanswers = ('no', 'n', 'false', 'f', '0'))) then false()
else if ((name(..) eq 'question') and ($showanswers = ('yes', 'y', 'true', 't', '1'))) then false()
else true()" />
<xsl:if test="$insert">
<xsl:if test="@print-caption = 'yes'">
<xsl:if test="@print-caption = ('yes', 'y', 'true', 't', '1')">
<xsl:text>\begin{flushright}</xsl:text>
<xsl:call-template name="newline-internal" />
<xsl:text>\emph{</xsl:text>
<xsl:choose>
View
4
modules/bibliography.xml
-->
<template name="citation-item" match="cite/item">
<common formats="/latex/xelatex/">
<xsl:value-of select="@label" />
<xsl:if test="position() != last()">
<xsl:if test="position() ne last()">
<xsl:text>,</xsl:text>
</xsl:if>
</common>
<common formats="/html/xhtml/">
<xsl:variable name="id">
<xsl:value-of select="@label" />
</xsl:variable>
<a href="#{@label}"><xsl:value-of select="1 + count(//bibliography/item[@label = $id]/preceding-sibling::*)" /></a>
<xsl:if test="position() != last()">
<xsl:if test="position() ne last()">
<xsl:text>, </xsl:text>
</xsl:if>
</common>
</template>
View
modules/build-date.xml
View
modules/code-formatting.xml
View
modules/cross-references.xml
View
modules/emoticons.xml
View
modules/floaters.xml
View
modules/images.xml
View
modules/lists.xml
View
modules/mathematical-symbols.xml
View
modules/multi-column.xml
View
modules/number-formatting.xml
View
modules/otago-specific.xml
View
modules/paper-calendar.xml
View
modules/q-and-a.xml
View
modules/quotations.xml
View
modules/relational-algebra.xml
View
modules/sectioning.xml
View
modules/tabular.xml
View
modules/titling.xml
View
xml2xslt.xsl