Ticket #557: mapfish-557.patch

File mapfish-557.patch, 0.8 kB (added by ahocevar, 2 years ago)
  • src/main/resources/org/mapfish/print/map/renderers/svgZoomOut.xsl

     
    1717 
    1818  <xsl:template match="/*"> 
    1919    <svg:svg xmlns:svg="http://www.w3.org/2000/svg" 
    20              xmlns:xlink="http://www.w3.org/1999/xlink" 
    21              version="{@version}" width="{@width}" height="{@height}"> 
     20             xmlns:xlink="http://www.w3.org/1999/xlink"> 
     21      <xsl:for-each select="@*"> 
     22        <xsl:attribute name="{name(.)}"> 
     23          <xsl:value-of select="."/> 
     24        </xsl:attribute> 
     25      </xsl:for-each> 
    2226      <xsl:apply-templates/> 
    2327    </svg:svg> 
    2428  </xsl:template>