Skip to content
Snippets Groups Projects
Commit 48bb0137 authored by Goik Martin's avatar Goik Martin
Browse files

Dumping awkward way of handling @fileref attributes

parent dd65c4d0
No related branches found
No related tags found
No related merge requests found
......@@ -7,14 +7,14 @@ SCRIPTBASENAME=fig
# http://docbook.sourceforge.net/release/xsl/current/doc/param.html
#
XSLPARAM=-p callout.graphics 0 \
-p callout.unicode 1
XSLPARAM=\
-p callout.graphics 0\
-p callout.unicode 1
XSLPARAM_pdf=-p xep.extensions 1\
XSLPARAM_pdf=\
-p xep.extensions 1\
-p highlight.source 1
DOCMODULES=Sd1 Sda1 Sda2 Sdi
BUILDROOT=target
#+++ no changes below this line ++++++++++++++++++++++++++++++++++++
......@@ -27,16 +27,12 @@ SAXONCMD=java -cp "/usr/share/java/Saxon-HE.jar:/usr/share/java/xercesImpl.jar"
-Dorg.apache.xerces.xni.parser.XMLParserConfiguration=org.apache.xerces.parsers.XIncludeParserConfiguration \
net.sf.saxon.Transform
all: epub webhelp pdf slides
slides: fig.xml
mkdir -p Slides
${SAXONCMD} -s:fig.xml -xsl:../Xsl/docbook2slides.xsl
${BUILDROOT}/${SCRIPTBASENAME}_print.xml \
${BUILDROOT}/${SCRIPTBASENAME}_html.xml \
${BUILDROOT}/${SCRIPTBASENAME}.xml: ${SCRIPTBASENAME}.xml
......
......@@ -18,6 +18,20 @@
</xsl:copy>
</xsl:template>
<xsl:template match="@fileref">
<xsl:attribute name="fileref">
<xsl:text>../</xsl:text> <!-- account for descend into "target" subdir -->
<xsl:if test="ancestor::*/@xml:base">
<xsl:call-template name="hdm.get.leftmost.of.separator">
<xsl:with-param name="path" select="ancestor::*/@xml:base"/>
<xsl:with-param name="separator" select="'/'"/>
</xsl:call-template>
<xsl:text>/</xsl:text>
</xsl:if>
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>
<xsl:template match="*" mode="hdmIdGenerate">
<xsl:choose>
<xsl:when test="@xml:id">
......@@ -30,36 +44,6 @@
</xsl:choose>
</xsl:template>
<xsl:template match="db:imagedata">
<db:imagedata>
<xsl:copy-of select="@*[name() != 'fileref']"/>
<xsl:attribute name="fileref">
<xsl:if test="ancestor::*/@xml:base">
<xsl:call-template name="hdm.get.leftmost.of.separator">
<xsl:with-param name="path" select="ancestor::*/@xml:base"/>
<xsl:with-param name="separator" select="'/'"/>
</xsl:call-template>
<xsl:text>/</xsl:text>
</xsl:if>
<xsl:value-of select="@fileref"/>
</xsl:attribute>
</db:imagedata>
</xsl:template>
<xsl:template match="db:videodata">
<db:videodata>
<xsl:copy-of select="@*[name() != 'fileref']"/>
<xsl:attribute name="fileref">
<xsl:call-template name="hdm.get.leftmost.of.separator">
<xsl:with-param name="path" select="ancestor::*/@xml:base"/>
<xsl:with-param name="separator" select="'/'"/>
</xsl:call-template>
<xsl:text>/</xsl:text>
<xsl:value-of select="@fileref"/>
</xsl:attribute>
</db:videodata>
</xsl:template>
<!--
<xsl:template match="db:answer">
<db:answer>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment