diff options
author | neysx <neysx> | 2009-08-14 16:24:15 +0000 |
---|---|---|
committer | neysx <neysx> | 2009-08-14 16:24:15 +0000 |
commit | 93365273bf5048c9b9ba225133705ad7b635337b (patch) | |
tree | fbed7945a47eeb471821e97f0726299eedad54c9 | |
parent | Show content with a file name header and grey left border when a debug.xml (diff) | |
download | www-redesign-93365273bf5048c9b9ba225133705ad7b635337b.tar.gz www-redesign-93365273bf5048c9b9ba225133705ad7b635337b.tar.bz2 www-redesign-93365273bf5048c9b9ba225133705ad7b635337b.zip |
Make aliases available in xml mode
-rw-r--r-- | xml/htdocs/xsl/devlist.xsl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xml/htdocs/xsl/devlist.xsl b/xml/htdocs/xsl/devlist.xsl index 6d52869f..0ba06d6b 100644 --- a/xml/htdocs/xsl/devlist.xsl +++ b/xml/htdocs/xsl/devlist.xsl @@ -42,6 +42,9 @@ <xsl:if test="email[substring-after(text(),'@')!='gentoo.org']"> <email><xsl:value-of select="email[substring-after(text(),'@')!='gentoo.org'][1]"/></email> </xsl:if> + <xsl:for-each select="alias"> + <alias><xsl:value-of select="."/></alias> + </xsl:for-each> </user> </xsl:for-each> </xsl:variable> @@ -151,6 +154,9 @@ <xsl:if test="email[substring-after(text(),'@')!='gentoo.org']"> <email><xsl:value-of select="email[substring-after(text(),'@')!='gentoo.org'][1]"/></email> </xsl:if> + <xsl:for-each select="alias"> + <alias><xsl:value-of select="."/></alias> + </xsl:for-each> </xsl:element> </xsl:template> |