diff options
author | robbat2 <robbat2> | 2010-06-09 21:48:59 +0000 |
---|---|---|
committer | robbat2 <robbat2> | 2010-06-09 21:48:59 +0000 |
commit | 37dced38703fd07996ec5d077f9f59d963bd8829 (patch) | |
tree | 3ab8aea655f3f6ccecc18dd606922db267b4c899 | |
parent | Spelling fix to election XSL. (diff) | |
download | www-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.xsl | 2 |
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(' {"nick": "', @nick,'", "name": "', name, '", "lat": ', location/@lat, ', "lon": ', location/@lon, ', "roles": "', $roles, '", "loc": "', $loc, '"}')"/> + <xsl:value-of select="concat(' {"nick": "', @nick,'", "name": "', name, '", "joined": "', joined, '", "lat": ', location/@lat, ', "lon": ', location/@lon, ', "roles": "', $roles, '", "loc": "', $loc, '"}')"/> <xsl:if test="position()!=last()">,</xsl:if> <xsl:text>
</xsl:text> </xsl:template> |