summaryrefslogtreecommitdiff
path: root/xsl/svg.xsl
blob: 67b76efee0e02b953d3765cb7a6a65bc1e601a37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0"
  xmlns="http://www.w3.org/1999/xhtml"
  xmlns:svg="http://www.w3.org/2000/svg"
  xmlns:s="https://beratung-franzke.de/web-tpl">

  <!--
  <xsl:template match="s:svg" mode="html">
    <xsl:call-template name="svg-img">
      <xsl:with-param name="svg-file" select="@src" />
      <xsl:with-param name="svg-alt"  select="@alt" />
    </xsl:call-template>
  </xsl:template>
  -->
  <xsl:template match="s:svg" mode="html">
    <xsl:call-template name="svg-inline">
      <xsl:with-param name="svg-file" select="@file" />
    </xsl:call-template>
  </xsl:template>

  <xsl:template name="svg-img">
    <xsl:param name="svg-file" />
    <xsl:param name="svg-alt" />

    <xsl:variable name="png-file" select="concat(substring-before($svg-file, '.svg'), '.png')" />

    <img src="{$svg-file}" alt="{$svg-alt}" class="svg" />

    <object data="{$svg-file}" type="image/svg+xml" class="svg" style="display: none">
      <xsl:attribute name="width">
        <xsl:value-of select="ceiling(document(concat('../', $svg-file))/svg:svg/@width)" />
      </xsl:attribute>
      <xsl:attribute name="height">
        <xsl:value-of select="ceiling(document(concat('../', $svg-file))/svg:svg/@height)" />
      </xsl:attribute>
      <param name="src" value="{$svg-file}" />
      <img src="{$png-file}" alt="{$svg-alt}" />
    </object>
  </xsl:template>

  <xsl:template mode="inline-svg" match="@*">
    <xsl:attribute name="{local-name()}">
      <xsl:value-of select="normalize-space(.)"/>
    </xsl:attribute>
  </xsl:template>

  <xsl:template mode="inline-svg" match="node()">
    <xsl:copy>
      <xsl:apply-templates mode="inline-svg" select="@*|node()"/>
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>