1 <?xml version="1.0" encoding="ASCII"?>
2 <!--This file was created automatically by html2xhtml-->
3 <!--from the HTML stylesheets.-->
4 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:stext="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.TextFactory" xmlns:simg="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.ImageIntrinsics" xmlns:ximg="xalan://com.nwalsh.xalan.ImageIntrinsics" xmlns:xtext="xalan://com.nwalsh.xalan.Text" xmlns:lxslt="http://xml.apache.org/xslt" xmlns="http://www.w3.org/1999/xhtml" exclude-result-prefixes="xlink stext xtext lxslt simg ximg" extension-element-prefixes="stext xtext" version="1.0">
6 <!-- ********************************************************************
7 $Id: graphics.xsl 8421 2009-05-04 07:49:49Z bobstayton $
8 ********************************************************************
10 This file is part of the XSL DocBook Stylesheet distribution.
11 See ../README or http://docbook.sf.net/release/xsl/current/ for
12 copyright and other information.
15 Colin Paul Adams, <colin@colina.demon.co.uk>
17 ******************************************************************** -->
19 <lxslt:component prefix="xtext" elements="insertfile"/>
20 <lxslt:component prefix="ximg" functions="new getWidth getDepth"/>
22 <!-- ==================================================================== -->
23 <!-- Graphic format tests for the HTML backend -->
25 <xsl:template name="is.graphic.format">
26 <xsl:param name="format"/>
27 <xsl:if test="$format = 'SVG' or $format = 'PNG' or $format = 'JPG' or $format = 'JPEG' or $format = 'linespecific' or $format = 'GIF' or $format = 'GIF87a' or $format = 'GIF89a' or $format = 'BMP'">1</xsl:if>
30 <xsl:template name="is.graphic.extension">
31 <xsl:param name="ext"/>
32 <xsl:variable name="lcext" select="translate($ext, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')"/>
33 <xsl:if test="$lcext = 'svg' or $lcext = 'png' or $lcext = 'jpeg' or $lcext = 'jpg' or $lcext = 'avi' or $lcext = 'mpg' or $lcext = 'mpeg' or $lcext = 'qt' or $lcext = 'gif' or $lcext = 'bmp'">1</xsl:if>
36 <!-- ==================================================================== -->
38 <xsl:template match="screenshot">
40 <xsl:apply-templates select="." mode="common.html.attributes"/>
41 <xsl:apply-templates/>
45 <xsl:template match="screeninfo">
48 <!-- ==================================================================== -->
50 <xsl:template name="process.image">
51 <!-- When this template is called, the current node should be -->
52 <!-- a graphic, inlinegraphic, imagedata, or videodata. All -->
53 <!-- those elements have the same set of attributes, so we can -->
54 <!-- handle them all in one place. -->
55 <xsl:param name="tag" select="'img'"/>
56 <xsl:param name="alt"/>
57 <xsl:param name="longdesc"/>
59 <!-- The HTML img element only supports the notion of content-area
60 scaling; it doesn't support the distinction between a
61 content-area and a viewport-area, so we have to make some
64 1. If only the content-area is specified, everything is fine.
65 (If you ask for a three inch image, that's what you'll get.)
67 2. If only the viewport-area is provided:
68 - If scalefit=1, treat it as both the content-area and
69 the viewport-area. (If you ask for an image in a five inch
70 area, we'll make the image five inches to fill that area.)
71 - If scalefit=0, ignore the viewport-area specification.
73 Note: this is not quite the right semantic and has the additional
74 problem that it can result in anamorphic scaling, which scalefit
77 3. If both the content-area and the viewport-area is specified
78 on a graphic element, ignore the viewport-area.
79 (If you ask for a three inch image in a five inch area, we'll assume
80 it's better to give you a three inch image in an unspecified area
81 than a five inch image in a five inch area.
83 Relative units also cause problems. As a general rule, the stylesheets
84 are operating too early and too loosely coupled with the rendering engine
85 to know things like the current font size or the actual dimensions of
88 1. We use a fixed size for pixels, $pixels.per.inch
90 2. We use a fixed size for "em"s, $points.per.em
92 Percentages are problematic. In the following discussion, we speak
93 of width and contentwidth, but the same issues apply to depth and
96 1. A width of 50% means "half of the available space for the image."
97 That's fine. But note that in HTML, this is a dynamic property and
98 the image size will vary if the browser window is resized.
100 2. A contentwidth of 50% means "half of the actual image width". But
101 the stylesheets have no way to assess the image's actual size. Treating
102 this as a width of 50% is one possibility, but it produces behavior
103 (dynamic scaling) that seems entirely out of character with the
106 Instead, the stylesheets define a $nominal.image.width
107 and convert percentages to actual values based on that nominal size.
109 Scale can be problematic. Scale applies to the contentwidth, so
110 a scale of 50 when a contentwidth is not specified is analagous to a
111 width of 50%. (If a contentwidth is specified, the scaling factor can
112 be applied to that value and no problem exists.)
114 If scale is specified but contentwidth is not supplied, the
115 nominal.image.width is used to calculate a base size
118 Warning: as a consequence of these decisions, unless the aspect ratio
119 of your image happens to be exactly the same as (nominal width / nominal height),
120 specifying contentwidth="50%" and contentdepth="50%" is NOT going to
121 scale the way you expect (or really, the way it should).
123 Don't do that. In fact, a percentage value is not recommended for content
124 size at all. Use scale instead.
126 Finally, align and valign are troublesome. Horizontal alignment is now
127 supported by wrapping the image in a <div align="{@align}"> (in block
128 contexts!). I can't think of anything (practical) to do about vertical
132 <xsl:variable name="width-units">
134 <xsl:when test="$ignore.image.scaling != 0"/>
135 <xsl:when test="@width">
136 <xsl:call-template name="length-units">
137 <xsl:with-param name="length" select="@width"/>
140 <xsl:when test="not(@depth) and $default.image.width != ''">
141 <xsl:call-template name="length-units">
142 <xsl:with-param name="length" select="$default.image.width"/>
148 <xsl:variable name="width">
150 <xsl:when test="$ignore.image.scaling != 0"/>
151 <xsl:when test="@width">
153 <xsl:when test="$width-units = '%'">
154 <xsl:value-of select="@width"/>
157 <xsl:call-template name="length-spec">
158 <xsl:with-param name="length" select="@width"/>
163 <xsl:when test="not(@depth) and $default.image.width != ''">
164 <xsl:value-of select="$default.image.width"/>
169 <xsl:variable name="scalefit">
171 <xsl:when test="$ignore.image.scaling != 0">0</xsl:when>
172 <xsl:when test="@contentwidth or @contentdepth">0</xsl:when>
173 <xsl:when test="@scale">0</xsl:when>
174 <xsl:when test="@scalefit"><xsl:value-of select="@scalefit"/></xsl:when>
175 <xsl:when test="$width != '' or @depth">1</xsl:when>
176 <xsl:otherwise>0</xsl:otherwise>
180 <xsl:variable name="scale">
182 <xsl:when test="$ignore.image.scaling != 0">1.0</xsl:when>
183 <xsl:when test="@contentwidth or @contentdepth">1.0</xsl:when>
184 <xsl:when test="@scale">
185 <xsl:value-of select="@scale div 100.0"/>
187 <xsl:otherwise>1.0</xsl:otherwise>
191 <xsl:variable name="filename">
193 <xsl:when test="local-name(.) = 'graphic' or local-name(.) = 'inlinegraphic'">
194 <!-- handle legacy graphic and inlinegraphic by new template -->
195 <xsl:call-template name="mediaobject.filename">
196 <xsl:with-param name="object" select="."/>
200 <!-- imagedata, videodata, audiodata -->
201 <xsl:call-template name="mediaobject.filename">
202 <xsl:with-param name="object" select=".."/>
208 <xsl:variable name="output_filename">
210 <xsl:when test="@entityref">
211 <xsl:value-of select="$filename"/>
214 Moved test for $keep.relative.image.uris to template below:
215 <xsl:template match="@fileref">
218 <xsl:value-of select="$filename"/>
223 <xsl:variable name="img.src.path.pi">
224 <xsl:call-template name="pi.dbhtml_img.src.path">
225 <xsl:with-param name="node" select=".."/>
229 <xsl:variable name="filename.for.graphicsize">
231 <xsl:when test="$img.src.path.pi != ''">
232 <xsl:value-of select="concat($img.src.path.pi, $filename)"/>
234 <xsl:when test="$img.src.path != '' and $graphicsize.use.img.src.path != 0 and $tag = 'img' and not(starts-with($filename, '/')) and not(contains($filename, '://'))">
235 <xsl:value-of select="concat($img.src.path, $filename)"/>
238 <xsl:value-of select="$filename"/>
243 <xsl:variable name="realintrinsicwidth">
244 <!-- This funny compound test works around a bug in XSLTC -->
246 <xsl:when test="$use.extensions != 0 and $graphicsize.extension != 0">
248 <xsl:when test="function-available('simg:getWidth')">
249 <xsl:value-of select="simg:getWidth(simg:new($filename.for.graphicsize), $nominal.image.width)"/>
251 <xsl:when test="function-available('ximg:getWidth')">
252 <xsl:value-of select="ximg:getWidth(ximg:new($filename.for.graphicsize), $nominal.image.width)"/>
255 <xsl:value-of select="0"/>
260 <xsl:value-of select="0"/>
265 <xsl:variable name="intrinsicwidth">
267 <xsl:when test="$realintrinsicwidth = 0">
268 <xsl:value-of select="$nominal.image.width"/>
271 <xsl:value-of select="$realintrinsicwidth"/>
276 <xsl:variable name="intrinsicdepth">
277 <!-- This funny compound test works around a bug in XSLTC -->
279 <xsl:when test="$use.extensions != 0 and $graphicsize.extension != 0">
281 <xsl:when test="function-available('simg:getDepth')">
282 <xsl:value-of select="simg:getDepth(simg:new($filename.for.graphicsize), $nominal.image.depth)"/>
284 <xsl:when test="function-available('ximg:getDepth')">
285 <xsl:value-of select="ximg:getDepth(ximg:new($filename.for.graphicsize), $nominal.image.depth)"/>
288 <xsl:value-of select="$nominal.image.depth"/>
293 <xsl:value-of select="$nominal.image.depth"/>
298 <xsl:variable name="contentwidth">
300 <xsl:when test="$ignore.image.scaling != 0"/>
301 <xsl:when test="@contentwidth">
302 <xsl:variable name="units">
303 <xsl:call-template name="length-units">
304 <xsl:with-param name="length" select="@contentwidth"/>
309 <xsl:when test="$units = '%'">
310 <xsl:variable name="cmagnitude">
311 <xsl:call-template name="length-magnitude">
312 <xsl:with-param name="length" select="@contentwidth"/>
315 <xsl:value-of select="$intrinsicwidth * $cmagnitude div 100.0"/>
316 <xsl:text>px</xsl:text>
319 <xsl:call-template name="length-spec">
320 <xsl:with-param name="length" select="@contentwidth"/>
326 <xsl:value-of select="$intrinsicwidth"/>
327 <xsl:text>px</xsl:text>
332 <xsl:variable name="scaled.contentwidth">
333 <xsl:if test="$contentwidth != ''">
334 <xsl:variable name="cwidth.in.points">
335 <xsl:call-template name="length-in-points">
336 <xsl:with-param name="length" select="$contentwidth"/>
337 <xsl:with-param name="pixels.per.inch" select="$pixels.per.inch"/>
338 <xsl:with-param name="em.size" select="$points.per.em"/>
341 <xsl:value-of select="$cwidth.in.points div 72.0 * $pixels.per.inch * $scale"/>
345 <xsl:variable name="html.width">
347 <xsl:when test="$ignore.image.scaling != 0"/>
348 <xsl:when test="$width-units = '%'">
349 <xsl:value-of select="$width"/>
351 <xsl:when test="$width != ''">
352 <xsl:variable name="width.in.points">
353 <xsl:call-template name="length-in-points">
354 <xsl:with-param name="length" select="$width"/>
355 <xsl:with-param name="pixels.per.inch" select="$pixels.per.inch"/>
356 <xsl:with-param name="em.size" select="$points.per.em"/>
359 <xsl:value-of select="round($width.in.points div 72.0 * $pixels.per.inch)"/>
365 <xsl:variable name="contentdepth">
367 <xsl:when test="$ignore.image.scaling != 0"/>
368 <xsl:when test="@contentdepth">
369 <xsl:variable name="units">
370 <xsl:call-template name="length-units">
371 <xsl:with-param name="length" select="@contentdepth"/>
376 <xsl:when test="$units = '%'">
377 <xsl:variable name="cmagnitude">
378 <xsl:call-template name="length-magnitude">
379 <xsl:with-param name="length" select="@contentdepth"/>
382 <xsl:value-of select="$intrinsicdepth * $cmagnitude div 100.0"/>
383 <xsl:text>px</xsl:text>
386 <xsl:call-template name="length-spec">
387 <xsl:with-param name="length" select="@contentdepth"/>
393 <xsl:value-of select="$intrinsicdepth"/>
394 <xsl:text>px</xsl:text>
399 <xsl:variable name="scaled.contentdepth">
400 <xsl:if test="$contentdepth != ''">
401 <xsl:variable name="cdepth.in.points">
402 <xsl:call-template name="length-in-points">
403 <xsl:with-param name="length" select="$contentdepth"/>
404 <xsl:with-param name="pixels.per.inch" select="$pixels.per.inch"/>
405 <xsl:with-param name="em.size" select="$points.per.em"/>
408 <xsl:value-of select="$cdepth.in.points div 72.0 * $pixels.per.inch * $scale"/>
412 <xsl:variable name="depth-units">
413 <xsl:if test="@depth">
414 <xsl:call-template name="length-units">
415 <xsl:with-param name="length" select="@depth"/>
420 <xsl:variable name="depth">
421 <xsl:if test="@depth">
423 <xsl:when test="$depth-units = '%'">
424 <xsl:value-of select="@depth"/>
427 <xsl:call-template name="length-spec">
428 <xsl:with-param name="length" select="@depth"/>
435 <xsl:variable name="html.depth">
437 <xsl:when test="$ignore.image.scaling != 0"/>
438 <xsl:when test="$depth-units = '%'">
439 <xsl:value-of select="$depth"/>
441 <xsl:when test="@depth and @depth != ''">
442 <xsl:variable name="depth.in.points">
443 <xsl:call-template name="length-in-points">
444 <xsl:with-param name="length" select="$depth"/>
445 <xsl:with-param name="pixels.per.inch" select="$pixels.per.inch"/>
446 <xsl:with-param name="em.size" select="$points.per.em"/>
449 <xsl:value-of select="round($depth.in.points div 72.0 * $pixels.per.inch)"/>
455 <xsl:variable name="viewport">
457 <xsl:when test="$ignore.image.scaling != 0">0</xsl:when>
458 <xsl:when test="local-name(.) = 'inlinegraphic' or ancestor::inlinemediaobject or ancestor::inlineequation">0</xsl:when>
460 <xsl:value-of select="$make.graphic.viewport"/>
466 <xsl:message>=====================================
467 scale: <xsl:value-of select="$scale"/>, <xsl:value-of select="$scalefit"/>
468 @contentwidth <xsl:value-of select="@contentwidth"/>
469 $contentwidth <xsl:value-of select="$contentwidth"/>
470 scaled.contentwidth: <xsl:value-of select="$scaled.contentwidth"/>
471 @width: <xsl:value-of select="@width"/>
472 width: <xsl:value-of select="$width"/>
473 html.width: <xsl:value-of select="$html.width"/>
474 @contentdepth <xsl:value-of select="@contentdepth"/>
475 $contentdepth <xsl:value-of select="$contentdepth"/>
476 scaled.contentdepth: <xsl:value-of select="$scaled.contentdepth"/>
477 @depth: <xsl:value-of select="@depth"/>
478 depth: <xsl:value-of select="$depth"/>
479 html.depth: <xsl:value-of select="$html.depth"/>
480 align: <xsl:value-of select="@align"/>
481 valign: <xsl:value-of select="@valign"/></xsl:message>
484 <xsl:variable name="scaled" select="@width|@depth|@contentwidth|@contentdepth |@scale|@scalefit"/>
486 <xsl:variable name="img">
488 <xsl:when test="@format = 'SVG'">
489 <object type="image/svg+xml">
490 <xsl:attribute name="data">
492 <xsl:when test="$img.src.path != '' and $tag = 'img' and not(starts-with($output_filename, '/')) and not(contains($output_filename, '://'))">
493 <xsl:value-of select="$img.src.path"/>
496 <xsl:value-of select="$output_filename"/>
498 <xsl:call-template name="process.image.attributes">
499 <!--xsl:with-param name="alt" select="$alt"/ there's no alt here-->
500 <xsl:with-param name="html.depth" select="$html.depth"/>
501 <xsl:with-param name="html.width" select="$html.width"/>
502 <xsl:with-param name="longdesc" select="$longdesc"/>
503 <xsl:with-param name="scale" select="$scale"/>
504 <xsl:with-param name="scalefit" select="$scalefit"/>
505 <xsl:with-param name="scaled.contentdepth" select="$scaled.contentdepth"/>
506 <xsl:with-param name="scaled.contentwidth" select="$scaled.contentwidth"/>
507 <xsl:with-param name="viewport" select="$viewport"/>
509 <xsl:if test="@align">
510 <xsl:attribute name="align">
512 <xsl:when test="@align = 'center'">middle</xsl:when>
514 <xsl:value-of select="@align"/>
519 <xsl:if test="$use.embed.for.svg != 0">
520 <embed type="image/svg+xml">
521 <xsl:attribute name="src">
523 <xsl:when test="$img.src.path != '' and $tag = 'img' and not(starts-with($output_filename, '/')) and not(contains($output_filename, '://'))">
524 <xsl:value-of select="$img.src.path"/>
527 <xsl:value-of select="$output_filename"/>
529 <xsl:call-template name="process.image.attributes">
530 <!--xsl:with-param name="alt" select="$alt"/ there's no alt here -->
531 <xsl:with-param name="html.depth" select="$html.depth"/>
532 <xsl:with-param name="html.width" select="$html.width"/>
533 <xsl:with-param name="longdesc" select="$longdesc"/>
534 <xsl:with-param name="scale" select="$scale"/>
535 <xsl:with-param name="scalefit" select="$scalefit"/>
536 <xsl:with-param name="scaled.contentdepth" select="$scaled.contentdepth"/>
537 <xsl:with-param name="scaled.contentwidth" select="$scaled.contentwidth"/>
538 <xsl:with-param name="viewport" select="$viewport"/>
545 <xsl:element name="{$tag}" namespace="http://www.w3.org/1999/xhtml">
546 <xsl:if test="$tag = 'img' and ../../self::imageobjectco">
547 <xsl:variable name="mapname">
548 <xsl:call-template name="object.id">
549 <xsl:with-param name="object" select="../../areaspec"/>
553 <xsl:when test="$scaled">
554 <!-- It might be possible to handle some scaling; needs -->
555 <!-- more investigation -->
557 <xsl:text>Warning: imagemaps not supported </xsl:text>
558 <xsl:text>on scaled images</xsl:text>
562 <xsl:attribute name="border">0</xsl:attribute>
563 <xsl:attribute name="usemap">
564 <xsl:value-of select="concat('#', $mapname)"/>
570 <xsl:attribute name="src">
572 <xsl:when test="$img.src.path != '' and $tag = 'img' and not(starts-with($output_filename, '/')) and not(contains($output_filename, '://'))">
573 <xsl:value-of select="$img.src.path"/>
576 <xsl:value-of select="$output_filename"/>
579 <xsl:if test="@align">
580 <xsl:attribute name="align">
582 <xsl:when test="@align = 'center'">middle</xsl:when>
584 <xsl:value-of select="@align"/>
590 <xsl:call-template name="process.image.attributes">
591 <xsl:with-param name="alt">
593 <xsl:when test="$alt != ''">
594 <xsl:copy-of select="$alt"/>
596 <xsl:when test="ancestor::figure">
597 <xsl:value-of select="normalize-space(ancestor::figure/title)"/>
601 <xsl:with-param name="html.depth" select="$html.depth"/>
602 <xsl:with-param name="html.width" select="$html.width"/>
603 <xsl:with-param name="longdesc" select="$longdesc"/>
604 <xsl:with-param name="scale" select="$scale"/>
605 <xsl:with-param name="scalefit" select="$scalefit"/>
606 <xsl:with-param name="scaled.contentdepth" select="$scaled.contentdepth"/>
607 <xsl:with-param name="scaled.contentwidth" select="$scaled.contentwidth"/>
608 <xsl:with-param name="viewport" select="$viewport"/>
615 <xsl:variable name="bgcolor">
616 <xsl:call-template name="pi.dbhtml_background-color">
617 <xsl:with-param name="node" select=".."/>
621 <xsl:variable name="use.viewport" select="$viewport != 0 and ($html.width != '' or ($html.depth != '' and $depth-units != '%') or $bgcolor != '' or @valign)"/>
624 <xsl:when test="$use.viewport">
625 <table border="0" summary="manufactured viewport for HTML img" cellspacing="0" cellpadding="0">
626 <xsl:if test="$html.width != ''">
627 <xsl:attribute name="width">
628 <xsl:value-of select="$html.width"/>
632 <xsl:if test="$html.depth != '' and $depth-units != '%'">
633 <!-- don't do this for percentages because browsers get confused -->
635 <xsl:when test="$css.decoration != 0">
636 <xsl:attribute name="style">
637 <xsl:text>height: </xsl:text>
638 <xsl:value-of select="$html.depth"/>
639 <xsl:text>px</xsl:text>
643 <xsl:attribute name="height">
644 <xsl:value-of select="$html.depth"/>
650 <xsl:if test="$bgcolor != ''">
652 <xsl:when test="$css.decoration != 0">
653 <xsl:attribute name="style">
654 <xsl:text>background-color: </xsl:text>
655 <xsl:value-of select="$bgcolor"/>
659 <xsl:attribute name="bgcolor">
660 <xsl:value-of select="$bgcolor"/>
665 <xsl:if test="@align">
666 <xsl:attribute name="align">
667 <xsl:value-of select="@align"/>
670 <xsl:if test="@valign">
671 <xsl:attribute name="valign">
672 <xsl:value-of select="@valign"/>
675 <xsl:copy-of select="$img"/>
681 <xsl:copy-of select="$img"/>
685 <xsl:if test="$tag = 'img' and ../../self::imageobjectco and not($scaled)">
686 <xsl:variable name="mapname">
687 <xsl:call-template name="object.id">
688 <xsl:with-param name="object" select="../../areaspec"/>
692 <map name="{$mapname}">
693 <xsl:for-each select="../../areaspec//area">
694 <xsl:variable name="units">
696 <xsl:when test="@units = 'other' and @otherunits">
697 <xsl:value-of select="@otherunits"/>
699 <xsl:when test="@units">
700 <xsl:value-of select="@units"/>
702 <!-- areaspec|areaset/area -->
703 <xsl:when test="../@units = 'other' and ../@otherunits">
704 <xsl:value-of select="../@otherunits"/>
706 <xsl:when test="../@units">
707 <xsl:value-of select="../@units"/>
709 <!-- areaspec/areaset/area -->
710 <xsl:when test="../../@units = 'other' and ../../@otherunits">
711 <xsl:value-of select="../@otherunits"/>
713 <xsl:when test="../../@units">
714 <xsl:value-of select="../../@units"/>
716 <xsl:otherwise>calspair</xsl:otherwise>
721 <xsl:when test="$units = 'calspair' or $units = 'imagemap'">
722 <xsl:variable name="coords" select="normalize-space(@coords)"/>
725 <xsl:variable name="linkends">
727 <xsl:when test="@linkends">
728 <xsl:value-of select="normalize-space(@linkends)"/>
731 <xsl:value-of select="normalize-space(../@linkends)"/>
736 <xsl:variable name="href">
738 <xsl:when test="@xlink:href">
739 <xsl:value-of select="@xlink:href"/>
742 <xsl:value-of select="../@xlink:href"/>
748 <xsl:when test="$linkends != ''">
749 <xsl:variable name="linkend">
751 <xsl:when test="contains($linkends, ' ')">
752 <xsl:value-of select="substring-before($linkends, ' ')"/>
755 <xsl:value-of select="$linkends"/>
760 <xsl:variable name="target" select="key('id', $linkend)[1]"/>
762 <xsl:if test="$target">
763 <xsl:attribute name="href">
764 <xsl:call-template name="href.target">
765 <xsl:with-param name="object" select="$target"/>
770 <xsl:when test="$href != ''">
771 <xsl:attribute name="href">
772 <xsl:value-of select="$href"/>
778 <xsl:attribute name="alt">
779 <xsl:value-of select="alt[1]"/>
783 <xsl:attribute name="coords">
785 <xsl:when test="$units = 'calspair'">
787 <xsl:variable name="p1" select="substring-before($coords, ' ')"/>
788 <xsl:variable name="p2" select="substring-after($coords, ' ')"/>
790 <xsl:variable name="x1" select="substring-before($p1,',')"/>
791 <xsl:variable name="y1" select="substring-after($p1,',')"/>
792 <xsl:variable name="x2" select="substring-before($p2,',')"/>
793 <xsl:variable name="y2" select="substring-after($p2,',')"/>
795 <xsl:variable name="x1p" select="$x1 div 100.0"/>
796 <xsl:variable name="y1p" select="$y1 div 100.0"/>
797 <xsl:variable name="x2p" select="$x2 div 100.0"/>
798 <xsl:variable name="y2p" select="$y2 div 100.0"/>
802 <xsl:text>units: </xsl:text>
803 <xsl:value-of select="$units"/>
804 <xsl:text> </xsl:text>
805 <xsl:value-of select="$x1p"/><xsl:text>, </xsl:text>
806 <xsl:value-of select="$y1p"/><xsl:text>, </xsl:text>
807 <xsl:value-of select="$x2p"/><xsl:text>, </xsl:text>
808 <xsl:value-of select="$y2p"/><xsl:text>, </xsl:text>
812 <xsl:text> </xsl:text>
813 <xsl:value-of select="$intrinsicwidth"/>
814 <xsl:text>, </xsl:text>
815 <xsl:value-of select="$intrinsicdepth"/>
819 <xsl:text> </xsl:text>
820 <xsl:value-of select="$units"/>
821 <xsl:text> </xsl:text>
823 select="round($x1p * $intrinsicwidth div 100.0)"/>
824 <xsl:text>,</xsl:text>
825 <xsl:value-of select="round($intrinsicdepth
826 - ($y2p * $intrinsicdepth div 100.0))"/>
827 <xsl:text>,</xsl:text>
828 <xsl:value-of select="round($x2p *
829 $intrinsicwidth div 100.0)"/>
830 <xsl:text>,</xsl:text>
831 <xsl:value-of select="round($intrinsicdepth
832 - ($y1p * $intrinsicdepth div 100.0))"/>
835 <xsl:value-of select="round($x1p * $intrinsicwidth div 100.0)"/>
836 <xsl:text>,</xsl:text>
837 <xsl:value-of select="round($intrinsicdepth - ($y2p * $intrinsicdepth div 100.0))"/>
838 <xsl:text>,</xsl:text>
839 <xsl:value-of select="round($x2p * $intrinsicwidth div 100.0)"/>
840 <xsl:text>,</xsl:text>
841 <xsl:value-of select="round($intrinsicdepth - ($y1p * $intrinsicdepth div 100.0))"/>
844 <xsl:copy-of select="$coords"/>
852 <xsl:text>Warning: only calspair or </xsl:text>
853 <xsl:text>otherunits='imagemap' supported </xsl:text>
854 <xsl:text>in imageobjectco</xsl:text>
863 <xsl:template name="process.image.attributes">
864 <xsl:param name="alt"/>
865 <xsl:param name="html.width"/>
866 <xsl:param name="html.depth"/>
867 <xsl:param name="longdesc"/>
868 <xsl:param name="scale"/>
869 <xsl:param name="scalefit"/>
870 <xsl:param name="scaled.contentdepth"/>
871 <xsl:param name="scaled.contentwidth"/>
872 <xsl:param name="viewport"/>
875 <xsl:when test="@contentwidth or @contentdepth">
876 <!-- ignore @width/@depth, @scale, and @scalefit if specified -->
877 <xsl:if test="@contentwidth and $scaled.contentwidth != ''">
878 <xsl:attribute name="width">
879 <xsl:value-of select="$scaled.contentwidth"/>
882 <xsl:if test="@contentdepth and $scaled.contentdepth != ''">
883 <xsl:attribute name="height">
884 <xsl:value-of select="$scaled.contentdepth"/>
889 <xsl:when test="number($scale) != 1.0">
890 <!-- scaling is always uniform, so we only have to specify one dimension -->
891 <!-- ignore @scalefit if specified -->
892 <xsl:attribute name="width">
893 <xsl:value-of select="$scaled.contentwidth"/>
897 <xsl:when test="$scalefit != 0">
899 <xsl:when test="contains($html.width, '%')">
901 <xsl:when test="$viewport != 0">
902 <!-- The *viewport* will be scaled, so use 100% here! -->
903 <xsl:attribute name="width">
904 <xsl:value-of select="'100%'"/>
908 <xsl:attribute name="width">
909 <xsl:value-of select="$html.width"/>
915 <xsl:when test="contains($html.depth, '%')">
916 <!-- HTML doesn't deal with this case very well...do nothing -->
919 <xsl:when test="$scaled.contentwidth != '' and $html.width != '' and $scaled.contentdepth != '' and $html.depth != ''">
920 <!-- scalefit should not be anamorphic; figure out which direction -->
921 <!-- has the limiting scale factor and scale in that direction -->
923 <xsl:when test="$html.width div $scaled.contentwidth > $html.depth div $scaled.contentdepth">
924 <xsl:attribute name="height">
925 <xsl:value-of select="$html.depth"/>
929 <xsl:attribute name="width">
930 <xsl:value-of select="$html.width"/>
936 <xsl:when test="$scaled.contentwidth != '' and $html.width != ''">
937 <xsl:attribute name="width">
938 <xsl:value-of select="$html.width"/>
942 <xsl:when test="$scaled.contentdepth != '' and $html.depth != ''">
943 <xsl:attribute name="height">
944 <xsl:value-of select="$html.depth"/>
951 <xsl:if test="$alt != ''">
952 <xsl:attribute name="alt">
953 <xsl:value-of select="normalize-space($alt)"/>
957 <xsl:if test="$longdesc != ''">
958 <xsl:attribute name="longdesc">
959 <xsl:value-of select="$longdesc"/>
963 <xsl:if test="@align and $viewport = 0">
964 <xsl:attribute name="align">
966 <xsl:when test="@align = 'center'">middle</xsl:when>
968 <xsl:value-of select="@align"/>
975 <!-- ==================================================================== -->
977 <xsl:template match="graphic">
979 <xsl:when test="parent::inlineequation">
980 <xsl:call-template name="anchor"/>
981 <xsl:call-template name="process.image"/>
985 <xsl:if test="@align">
986 <xsl:attribute name="align">
987 <xsl:value-of select="@align"/>
990 <xsl:call-template name="anchor"/>
991 <xsl:call-template name="process.image"/>
997 <xsl:template match="inlinegraphic">
998 <xsl:variable name="filename">
1000 <xsl:when test="@entityref">
1001 <xsl:value-of select="unparsed-entity-uri(@entityref)"/>
1004 <xsl:apply-templates select="@fileref"/>
1009 <xsl:call-template name="anchor"/>
1012 <xsl:when test="@format='linespecific'">
1014 <xsl:when test="$use.extensions != '0' and $textinsert.extension != '0'">
1016 <xsl:when test="element-available('stext:insertfile')">
1017 <stext:insertfile href="{$filename}" encoding="{$textdata.default.encoding}"/>
1019 <xsl:when test="element-available('xtext:insertfile')">
1020 <xtext:insertfile href="{$filename}"/>
1023 <xsl:message terminate="yes">
1024 <xsl:text>No insertfile extension available.</xsl:text>
1030 <xsl:message terminate="yes">
1031 <xsl:text>Cannot insert </xsl:text><xsl:value-of select="$filename"/>
1032 <xsl:text>. Check use.extensions and textinsert.extension parameters.</xsl:text>
1038 <xsl:call-template name="process.image"/>
1043 <!-- ==================================================================== -->
1045 <xsl:template match="mediaobject|mediaobjectco">
1047 <xsl:variable name="olist" select="imageobject|imageobjectco |videoobject|audioobject |textobject"/>
1049 <xsl:variable name="object.index">
1050 <xsl:call-template name="select.mediaobject.index">
1051 <xsl:with-param name="olist" select="$olist"/>
1052 <xsl:with-param name="count" select="1"/>
1053 </xsl:call-template>
1056 <xsl:variable name="object" select="$olist[position() = $object.index]"/>
1058 <xsl:variable name="align">
1059 <xsl:value-of select="$object/descendant::imagedata[@align][1]/@align"/>
1063 <xsl:apply-templates select="." mode="common.html.attributes"/>
1064 <xsl:if test="$align != '' ">
1065 <xsl:attribute name="align">
1066 <xsl:value-of select="$align"/>
1069 <xsl:call-template name="anchor"/>
1071 <xsl:apply-templates select="$object"/>
1072 <xsl:apply-templates select="caption"/>
1076 <xsl:template match="inlinemediaobject">
1078 <xsl:apply-templates select="." mode="common.html.attributes"/>
1079 <xsl:call-template name="anchor"/>
1080 <xsl:call-template name="select.mediaobject"/>
1084 <xsl:template match="programlisting/inlinemediaobject |screen/inlinemediaobject" priority="2">
1085 <!-- the additional span causes problems in some cases -->
1086 <xsl:call-template name="select.mediaobject"/>
1089 <!-- ==================================================================== -->
1091 <xsl:template match="imageobjectco">
1092 <xsl:call-template name="anchor"/>
1093 <xsl:apply-templates select="imageobject"/>
1094 <xsl:apply-templates select="calloutlist"/>
1097 <xsl:template match="imageobject">
1098 <xsl:apply-templates select="imagedata"/>
1101 <xsl:template match="imagedata">
1102 <xsl:variable name="filename">
1103 <xsl:call-template name="mediaobject.filename">
1104 <xsl:with-param name="object" select=".."/>
1105 </xsl:call-template>
1109 <!-- Handle MathML and SVG markup in imagedata -->
1110 <xsl:when xmlns:mml="http://www.w3.org/1998/Math/MathML" test="mml:*">
1111 <xsl:apply-templates/>
1114 <xsl:when xmlns:svg="http://www.w3.org/2000/svg" test="svg:*">
1115 <xsl:apply-templates/>
1118 <xsl:when test="@format='linespecific'">
1120 <xsl:when test="$use.extensions != '0' and $textinsert.extension != '0'">
1122 <xsl:when test="element-available('stext:insertfile')">
1123 <stext:insertfile href="{$filename}" encoding="{$textdata.default.encoding}"/>
1125 <xsl:when test="element-available('xtext:insertfile')">
1126 <xtext:insertfile href="{$filename}"/>
1129 <xsl:message terminate="yes">
1130 <xsl:text>No insertfile extension available.</xsl:text>
1136 <a xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad" href="{$filename}"/>
1141 <xsl:variable name="longdesc.uri">
1142 <xsl:call-template name="longdesc.uri">
1143 <xsl:with-param name="mediaobject" select="ancestor::imageobject/parent::*"/>
1144 </xsl:call-template>
1147 <xsl:variable name="phrases" select="ancestor::mediaobject/textobject[phrase] |ancestor::inlinemediaobject/textobject[phrase] |ancestor::mediaobjectco/textobject[phrase]"/>
1149 <xsl:call-template name="process.image">
1150 <xsl:with-param name="alt">
1151 <xsl:apply-templates select="$phrases[not(@role) or @role!='tex'][1]"/>
1153 <xsl:with-param name="longdesc">
1154 <xsl:call-template name="write.longdesc">
1155 <xsl:with-param name="mediaobject" select="ancestor::imageobject/parent::*"/>
1156 </xsl:call-template>
1158 </xsl:call-template>
1160 <xsl:if test="$html.longdesc != 0 and $html.longdesc.link != 0 and ancestor::imageobject/parent::*/textobject[not(phrase)]">
1161 <xsl:call-template name="longdesc.link">
1162 <xsl:with-param name="longdesc.uri" select="$longdesc.uri"/>
1163 </xsl:call-template>
1169 <!-- ==================================================================== -->
1171 <xsl:template name="longdesc.uri">
1172 <xsl:param name="mediaobject" select="."/>
1173 <xsl:if test="$html.longdesc">
1174 <xsl:if test="$mediaobject/textobject[not(phrase)]">
1175 <xsl:variable name="dbhtml.dir">
1176 <xsl:call-template name="dbhtml-dir"/>
1178 <xsl:variable name="filename">
1179 <xsl:call-template name="make-relative-filename">
1180 <xsl:with-param name="base.dir">
1182 <xsl:when test="$dbhtml.dir != ''">
1183 <xsl:value-of select="$dbhtml.dir"/>
1186 <xsl:value-of select="$base.dir"/>
1190 <xsl:with-param name="base.name">
1192 <xsl:when test=" $mediaobject/@*[local-name() = 'id'] and not($use.id.as.filename = 0)">
1193 <!-- * if this mediaobject has an ID, then we use the -->
1194 <!-- * value of that ID as basename for the "longdesc" -->
1195 <!-- * file (that is, without prepending an "ld-" too it) -->
1196 <xsl:value-of select="$mediaobject/@*[local-name() = 'id']"/>
1197 <xsl:value-of select="$html.ext"/>
1200 <!-- * otherwise, if this mediaobject does not have an -->
1201 <!-- * ID, then we generate an ID... -->
1202 <xsl:variable name="image-id">
1203 <xsl:call-template name="object.id">
1204 <xsl:with-param name="object" select="$mediaobject"/>
1205 </xsl:call-template>
1207 <!-- * ...and then we take that generated ID, prepend an -->
1208 <!-- * "ld-" to it, and use that as the basename for the file -->
1209 <xsl:value-of select="concat('ld-',$image-id,$html.ext)"/>
1213 </xsl:call-template>
1216 <xsl:value-of select="$filename"/>
1221 <xsl:template name="write.longdesc">
1222 <xsl:param name="mediaobject" select="."/>
1223 <xsl:if test="$html.longdesc != 0 and $mediaobject/textobject[not(phrase)]">
1224 <xsl:variable name="filename">
1225 <xsl:call-template name="longdesc.uri">
1226 <xsl:with-param name="mediaobject" select="$mediaobject"/>
1227 </xsl:call-template>
1230 <xsl:value-of select="$filename"/>
1232 <xsl:call-template name="write.chunk">
1233 <xsl:with-param name="filename" select="$filename"/>
1234 <xsl:with-param name="quiet" select="$chunk.quietly"/>
1235 <xsl:with-param name="content">
1236 <xsl:call-template name="user.preroot"/>
1239 <xsl:call-template name="system.head.content"/>
1240 <xsl:call-template name="head.content">
1241 <xsl:with-param name="title" select="'Long Description'"/>
1242 </xsl:call-template>
1243 <xsl:call-template name="user.head.content"/>
1246 <xsl:call-template name="body.attributes"/>
1247 <xsl:for-each select="$mediaobject/textobject[not(phrase)]">
1248 <xsl:apply-templates select="./*"/>
1252 <xsl:value-of select="$chunk.append"/>
1254 </xsl:call-template>
1258 <xsl:template name="longdesc.link">
1259 <xsl:param name="longdesc.uri" select="''"/>
1261 <xsl:variable name="this.uri">
1262 <xsl:call-template name="make-relative-filename">
1263 <xsl:with-param name="base.dir" select="$base.dir"/>
1264 <xsl:with-param name="base.name">
1265 <xsl:call-template name="href.target.uri"/>
1267 </xsl:call-template>
1270 <xsl:variable name="href.to">
1271 <xsl:call-template name="trim.common.uri.paths">
1272 <xsl:with-param name="uriA" select="$longdesc.uri"/>
1273 <xsl:with-param name="uriB" select="$this.uri"/>
1274 <xsl:with-param name="return" select="'A'"/>
1275 </xsl:call-template>
1278 <div class="longdesc-link" align="{$direction.align.end}">
1280 <span class="longdesc-link">
1281 <xsl:text>[</xsl:text>
1282 <a href="{$href.to}" target="longdesc">D</a>
1283 <xsl:text>]</xsl:text>
1288 <!-- ==================================================================== -->
1290 <xsl:template match="videoobject">
1291 <xsl:apply-templates select="videodata"/>
1294 <xsl:template match="videodata">
1295 <xsl:call-template name="process.image">
1296 <xsl:with-param name="tag" select="'embed'"/>
1297 <xsl:with-param name="alt">
1298 <xsl:apply-templates select="(../../textobject/phrase)[1]"/>
1300 </xsl:call-template>
1303 <!-- ==================================================================== -->
1305 <xsl:template match="audioobject">
1306 <xsl:apply-templates select="audiodata"/>
1309 <xsl:template match="audiodata">
1310 <xsl:call-template name="process.image">
1311 <xsl:with-param name="tag" select="'embed'"/>
1312 <xsl:with-param name="alt">
1313 <xsl:apply-templates select="(../../textobject/phrase)[1]"/>
1315 </xsl:call-template>
1318 <!-- ==================================================================== -->
1320 <xsl:template match="textobject">
1321 <xsl:apply-templates/>
1324 <xsl:template match="textdata">
1325 <xsl:variable name="filename">
1327 <xsl:when test="@entityref">
1328 <xsl:value-of select="unparsed-entity-uri(@entityref)"/>
1331 <xsl:apply-templates select="@fileref"/>
1336 <xsl:variable name="encoding">
1338 <xsl:when test="@encoding">
1339 <xsl:value-of select="@encoding"/>
1342 <xsl:value-of select="$textdata.default.encoding"/>
1348 <xsl:when test="$use.extensions != '0' and $textinsert.extension != '0'">
1350 <xsl:when test="element-available('stext:insertfile')">
1351 <stext:insertfile href="{$filename}" encoding="{$encoding}"/>
1353 <xsl:when test="element-available('xtext:insertfile')">
1354 <xtext:insertfile href="{$filename}"/>
1357 <xsl:message terminate="yes">
1358 <xsl:text>No insertfile extension available.</xsl:text>
1364 <xsl:message terminate="yes">
1365 <xsl:text>Cannot insert </xsl:text><xsl:value-of select="$filename"/>
1366 <xsl:text>. Check use.extensions and textinsert.extension parameters.</xsl:text>
1372 <!-- ==================================================================== -->
1374 <xsl:template match="caption">
1376 <xsl:apply-templates select="." mode="common.html.attributes"/>
1377 <xsl:if test="@align = 'right' or @align = 'left' or @align='center'">
1378 <xsl:attribute name="align"><xsl:value-of select="@align"/></xsl:attribute>
1380 <xsl:apply-templates/>
1384 <!-- ==================================================================== -->
1385 <!-- "Support" for SVG -->
1387 <xsl:template xmlns:svg="http://www.w3.org/2000/svg" match="svg:*">
1389 <xsl:copy-of select="@*"/>
1390 <xsl:apply-templates/>
1395 <!-- The following works sometimes, but needs to take into account
1396 1. When there is no /*/@xml:base
1397 2. When the chunks are going somewhere else
1398 <xsl:variable name="relpath">
1399 <xsl:call-template name="relative-uri">
1400 <xsl:with-param name="filename" select="@fileref"/>
1401 </xsl:call-template>
1405 <xsl:when test="/*/@xml:base
1406 and starts-with($relpath,/*/@xml:base)">
1407 <xsl:value-of select="substring-after($relpath,/*/@xml:base)"/>
1410 <xsl:value-of select="@fileref"/>
1413 <xsl:value-of select="@fileref"/>
1416 <!-- Resolve xml:base attributes -->
1417 <xsl:template match="@fileref">
1418 <!-- need a check for absolute urls -->
1420 <xsl:when test="contains(., ':')">
1421 <!-- it has a uri scheme so it is an absolute uri -->
1422 <xsl:value-of select="."/>
1424 <xsl:when test="$keep.relative.image.uris != 0">
1425 <!-- leave it alone -->
1426 <xsl:value-of select="."/>
1429 <!-- its a relative uri that needs xml:base processing -->
1430 <xsl:call-template name="relative-uri">
1431 </xsl:call-template>