app: explicitly clear GUI when halting a filter tool
[gimp.git] / authors4gimp-web.xsl
blobedcfba2723eede181cb5e756ad1a4a7cc8aabb84
1 <?xml version="1.0" encoding="UTF-8"?>
3 <!-- simple XSL transformation to create a text version from authors.xml -->
5 <xsl:stylesheet version="1.0"
6 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
7 xmlns:dc="http://purl.org/dc/elements/1.1/">
9 <xsl:output method="text" />
10 <xsl:param name="today" />
12 <xsl:template name="contributor">
13 <xsl:param name="role" />
14 <xsl:apply-templates select="dc:contributor[contains(@role, $role)]" />
15 </xsl:template>
17 <xsl:template match="/dc:gimp-authors">
18 <xsl:text>Title: Authors: The People That Made it Happen
19 Date: </xsl:text><xsl:value-of select="$today"/><xsl:text>
20 Modified: </xsl:text><xsl:value-of select="$today"/><xsl:text>
21 Author: generated from authors.xml.
23 ## GIMP was originally written by:
25 </xsl:text>
26 <xsl:apply-templates select="dc:creator" />
27 <xsl:text>
28 ## The current maintainers are:
30 </xsl:text>
31 <xsl:apply-templates select="dc:maintainer" />
32 <xsl:text>
33 ## The following people have contributed code to GIMP:
35 *Contributing patches, fixes, plugins, extensions, scripts and other [improvements to the code](/develop/).*
37 </xsl:text>
38 <xsl:call-template name="contributor">
39 <xsl:with-param name="role" select="'author'"/>
40 </xsl:call-template>
41 <xsl:text>
43 ## The following people have contributed art to GIMP:
45 *Contributing icons, cursors, brushes, gradients, patterns, etc.*
47 </xsl:text>
48 <xsl:call-template name="contributor">
49 <xsl:with-param name="role" select="'artist'"/>
50 </xsl:call-template>
51 <xsl:text>
53 ## The following people have helped to document GIMP:
55 *Contributing [documentation](/docs/).*
57 </xsl:text>
58 <xsl:call-template name="contributor">
59 <xsl:with-param name="role" select="'documenter'"/>
60 </xsl:call-template>
62 </xsl:template>
64 <xsl:template match="dc:creator">
65 <xsl:text>* </xsl:text><xsl:apply-templates /><xsl:text>
66 </xsl:text>
67 </xsl:template>
69 <xsl:template match="dc:maintainer">
70 <xsl:text>* </xsl:text><xsl:apply-templates /><xsl:text>
71 </xsl:text>
72 </xsl:template>
74 <xsl:template match="dc:contributor">
75 <xsl:text>* </xsl:text><xsl:apply-templates /><xsl:text>
76 </xsl:text>
77 </xsl:template>
79 </xsl:stylesheet>