File: logo.xsl

package info (click to toggle)
mokomaze 0.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,580 kB
  • sloc: ansic: 3,600; sh: 1,241; cpp: 1,230; makefile: 163; sed: 57
file content (19 lines) | stat: -rw-r--r-- 723 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:svg="http://www.w3.org/2000/svg">
<xsl:template match="/">
<svg xmlns="http://www.w3.org/2000/svg" height="128" width="128" version="1.0">
<defs>
    <xsl:copy-of select="document('filters.svg')/svg:svg/svg:defs/svg:filter"/>
    <xsl:copy-of select="document('background.svg')/svg:svg/svg:defs"/>
    <xsl:copy-of select="svg:svg/svg:defs"/>
</defs>
<g filter="url(#{$filter_name})">
    <xsl:copy-of select="document('background.svg')/svg:svg/svg:g"/>
</g>
<g transform="scale(0.80) translate(15, 20)">
    <xsl:copy-of select="svg:svg/svg:g"/>
</g>
</svg>
</xsl:template>
</xsl:stylesheet>