Revision 5540
Added by ben leinfelder about 14 years ago
annotation.xsl | ||
---|---|---|
40 | 40 |
<xsl:param name="enableediting">false</xsl:param> |
41 | 41 |
<xsl:param name="contextURL"/> |
42 | 42 |
|
43 |
<xsl:key name="mapping" match="//*[local-name()='map']" use="@measurement" /> |
|
44 |
|
|
43 | 45 |
<xsl:template name="annotation"> |
46 |
|
|
44 | 47 |
<table align="center" border="0" cellpadding="5" cellspacing="0" width="100%"> |
45 | 48 |
<tr> |
46 | 49 |
<th class="tablehead" colspan="2"> |
... | ... | |
88 | 91 |
<!-- measurement --> |
89 | 92 |
<td class="text_plain"> |
90 | 93 |
<xsl:for-each select="./*[local-name()='measurement']"> |
94 |
<xsl:for-each select="key('mapping', @label)"> |
|
95 |
Column: <xsl:value-of select="./@attribute" /> |
|
96 |
<br /> |
|
97 |
</xsl:for-each> |
|
91 | 98 |
<!-- |
92 | 99 |
<xsl:value-of select="./@label" /> |
93 | 100 |
<br /> |
Also available in: Unified diff
include the column name that the measurement is mapped to