summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobbat2 <robbat2>2010-06-09 21:48:59 +0000
committerrobbat2 <robbat2>2010-06-09 21:48:59 +0000
commit37dced38703fd07996ec5d077f9f59d963bd8829 (patch)
tree3ab8aea655f3f6ccecc18dd606922db267b4c899
parentSpelling fix to election XSL. (diff)
downloadwww-redesign-37dced38703fd07996ec5d077f9f59d963bd8829.tar.gz
www-redesign-37dced38703fd07996ec5d077f9f59d963bd8829.tar.bz2
www-redesign-37dced38703fd07996ec5d077f9f59d963bd8829.zip
Add joinDate to yaml output.
-rw-r--r--xml/htdocs/xsl/devlist.xsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/xml/htdocs/xsl/devlist.xsl b/xml/htdocs/xsl/devlist.xsl
index 832f0224..89479027 100644
--- a/xml/htdocs/xsl/devlist.xsl
+++ b/xml/htdocs/xsl/devlist.xsl
@@ -105,7 +105,7 @@
<xsl:variable name="double-quote">"</xsl:variable>
<xsl:variable name="roles" select="translate(roles, $double-quote, $single-quote)"/>
<xsl:variable name="loc" select="translate(location, $double-quote, $single-quote)"/>
- <xsl:value-of select="concat(' {&#34;nick&#34;: &#34;', @nick,'&#34;, &#34;name&#34;: &#34;', name, '&#34;, &#34;lat&#34;: ', location/@lat, ', &#34;lon&#34;: ', location/@lon, ', &#34;roles&#34;: &#34;', $roles, '&#34;, &#34;loc&#34;: &#34;', $loc, '&#34;}')"/>
+ <xsl:value-of select="concat(' {&#34;nick&#34;: &#34;', @nick,'&#34;, &#34;name&#34;: &#34;', name, '&#34;, &#34;joined&#34;: &#34;', joined, '&#34;, &#34;lat&#34;: ', location/@lat, ', &#34;lon&#34;: ', location/@lon, ', &#34;roles&#34;: &#34;', $roles, '&#34;, &#34;loc&#34;: &#34;', $loc, '&#34;}')"/>
<xsl:if test="position()!=last()">,</xsl:if>
<xsl:text>&#xA;</xsl:text>
</xsl:template>