Bug 734981 - Update maintainers and authors.

Adding a XSL stylesheet to generate ./content/about/authors.md for
gimp-web repository. This way, it will be very easy to keep an
up-to-date authors page on the website, as long as authors.xml is
up-to-date as well.
Note that authors.md is git-ignored and not generated automatically. It
will have to be manually requested with a `make authors.md`.
This commit is contained in:
Jehan 2017-10-23 23:49:01 +02:00
parent 20ab06a119
commit 715c458649
3 changed files with 84 additions and 0 deletions

1
.gitignore vendored
View File

@ -12,6 +12,7 @@
/Makefile /Makefile
/Makefile.in /Makefile.in
/aclocal.m4 /aclocal.m4
/authors.md
/autom4te.cache /autom4te.cache
/compile /compile
/config.cache /config.cache

View File

@ -45,6 +45,10 @@ if HAVE_XSLTPROC
$(XSLTPROC) -o $(@) $(top_srcdir)/authors.xsl $< || rm -f $(@) $(XSLTPROC) -o $(@) $(top_srcdir)/authors.xsl $< || rm -f $(@)
endif endif
authors.md: authors.xml authors4gimp-web.xsl
if HAVE_XSLTPROC
$(XSLTPROC) --stringparam today "`date --iso-8601=seconds`" -o $(@) $(top_srcdir)/authors4gimp-web.xsl $< || rm -f $(@)
endif
EXTRA_DIST = \ EXTRA_DIST = \
AUTHORS \ AUTHORS \

79
authors4gimp-web.xsl Normal file
View File

@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- simple XSL transformation to create a text version from authors.xml -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<xsl:output method="text" />
<xsl:param name="today" />
<xsl:template name="contributor">
<xsl:param name="role" />
<xsl:apply-templates select="dc:contributor[contains(@role, $role)]" />
</xsl:template>
<xsl:template match="/dc:gimp-authors">
<xsl:text>Title: Authors: The People That Made it Happen
Date: </xsl:text><xsl:value-of select="$today"/><xsl:text>
Modified: </xsl:text><xsl:value-of select="$today"/><xsl:text>
Author: generated from authors.xml.
## GIMP was originally written by:
</xsl:text>
<xsl:apply-templates select="dc:creator" />
<xsl:text>
## The current maintainers are:
</xsl:text>
<xsl:apply-templates select="dc:maintainer" />
<xsl:text>
## The following people have contributed code to GIMP:
*Contributing patches, fixes, plugins, extensions, scripts and other [improvements to the code](/develop/).*
</xsl:text>
<xsl:call-template name="contributor">
<xsl:with-param name="role" select="'author'"/>
</xsl:call-template>
<xsl:text>
## The following people have contributed art to GIMP:
*Contributing icons, cursors, brushes, gradients, patterns, etc.*
</xsl:text>
<xsl:call-template name="contributor">
<xsl:with-param name="role" select="'artist'"/>
</xsl:call-template>
<xsl:text>
## The following people have helped to document GIMP:
*Contributing [documentation](/docs/).*
</xsl:text>
<xsl:call-template name="contributor">
<xsl:with-param name="role" select="'documenter'"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="dc:creator">
<xsl:text>* </xsl:text><xsl:apply-templates /><xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="dc:maintainer">
<xsl:text>* </xsl:text><xsl:apply-templates /><xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="dc:contributor">
<xsl:text>* </xsl:text><xsl:apply-templates /><xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>