Skip to content

Commit

Permalink
Buzilla 909: allow a NameComment element after a members.xml particip…
Browse files Browse the repository at this point in the history
…ant's Name.

Can be used on either a Member or a NonMember.
If present, put this in parentheses on a second line in the statistics page's participant listing tables.
  • Loading branch information
iay committed Apr 16, 2012
1 parent e045a7f commit b0bbdcc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion mdx/uk/statistics.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,15 @@
<xsl:variable name="matched" select="$entities[md:Organization/md:OrganizationName = $myName]"/>
<xsl:variable name="primaryScope" select="members:PrimaryScope"/>
<tr>
<td><xsl:value-of select="$myName"/></td>
<td>
<xsl:value-of select="$myName"/>
<xsl:if test="members:NameComment">
<br />
<xsl:text>(</xsl:text>
<xsl:value-of select="members:NameComment"/>
<xsl:text>)</xsl:text>
</xsl:if>
</td>
<!-- count total entities -->
<td align="center">
<xsl:choose>
Expand Down

0 comments on commit b0bbdcc

Please sign in to comment.