app: explicitly clear GUI when halting a filter tool
[gimp.git] / authors.xsl
blob462a2cdc8b7ba831ff0bfefc18af1e4e8c51597e
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" />
11 <xsl:template name="contributor">
12 <xsl:param name="role" />
13 <xsl:apply-templates select="dc:contributor[contains(@role, $role)]" />
14 </xsl:template>
16 <xsl:template match="/dc:gimp-authors">
17 <xsl:text> -- This file is generated from authors.xml, do not edit it directly. --
19 GIMP was originally written by:
21 </xsl:text>
22 <xsl:apply-templates select="dc:creator" />
23 <xsl:text>
25 The current maintainers are:
27 </xsl:text>
28 <xsl:apply-templates select="dc:maintainer" />
29 <xsl:text>
31 The following people have contributed code to GIMP:
33 </xsl:text>
34 <xsl:call-template name="contributor">
35 <xsl:with-param name="role" select="'author'"/>
36 </xsl:call-template>
37 <xsl:text>
39 The following people have contributed art to GIMP:
41 </xsl:text>
42 <xsl:call-template name="contributor">
43 <xsl:with-param name="role" select="'artist'"/>
44 </xsl:call-template>
45 <xsl:text>
47 The following people have helped to document GIMP:
49 </xsl:text>
50 <xsl:call-template name="contributor">
51 <xsl:with-param name="role" select="'documenter'"/>
52 </xsl:call-template>
54 </xsl:template>
56 <xsl:template match="dc:creator">
57 <xsl:text> </xsl:text><xsl:apply-templates /><xsl:text>
58 </xsl:text>
59 </xsl:template>
61 <xsl:template match="dc:maintainer">
62 <xsl:text> </xsl:text><xsl:apply-templates /><xsl:text>
63 </xsl:text>
64 </xsl:template>
66 <xsl:template match="dc:contributor">
67 <xsl:text> </xsl:text><xsl:apply-templates /><xsl:text>
68 </xsl:text>
69 </xsl:template>
71 </xsl:stylesheet>