aboutsummaryrefslogtreecommitdiff
path: root/source/99_result/atom.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'source/99_result/atom.xsl')
-rw-r--r--source/99_result/atom.xsl7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/99_result/atom.xsl b/source/99_result/atom.xsl
index bfd038b..c2cced8 100644
--- a/source/99_result/atom.xsl
+++ b/source/99_result/atom.xsl
@@ -17,7 +17,8 @@
<target mode="plain" value="atom.xml"/>
</xsl:variable>
-<xsl:variable name="url" select="datasource/meta/url"/>
+<xsl:variable name="url" select="datasource/meta/url"/>
+<xsl:variable name="author" select="datasource/meta/author"/>
<xsl:template match="*" mode="xhtml_copy">
<xsl:element name="{name()}" namespace="http://www.w3.org/1999/xhtml">
@@ -34,7 +35,9 @@
<id><xsl:value-of select="$url"/></id>
<title><xsl:value-of select="datasource/meta/title"/></title>
<author>
- <name>Adrian Kummerländer</name>
+ <name>
+ <xsl:value-of select="$author"/>
+ </name>
</author>
<xsl:apply-templates select="datasource/articles/entry[position() &lt;= 5]"/>