Changeset 2232
- Timestamp:
- 06/25/09 16:17:09
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r2223 r2232 2338 2338 </td> 2339 2339 <td class="role"> 2340 <xsl: value-ofselect="role"/>2340 <xsl:apply-templates select="role"/> 2341 2341 </td> 2342 2342 <td class="status"> 2343 <xsl: value-ofselect="partstat"/>2343 <xsl:apply-templates select="partstat"/> 2344 2344 </td> 2345 2345 </tr> … … 4351 4351 </td> 4352 4352 <td class="role"> 4353 <xsl: value-ofselect="role"/>4353 <xsl:apply-templates select="role"/> 4354 4354 </td> 4355 4355 <td class="status"> 4356 <xsl: value-ofselect="partstat"/>4356 <xsl:apply-templates select="partstat"/> 4357 4357 </td> 4358 4358 </tr> 4359 4359 </xsl:for-each> 4360 4360 </table> 4361 </xsl:template> 4362 4363 <xsl:template match="partstat"> 4364 <xsl:choose> 4365 <xsl:when test=". = 'NEEDS-ACTION' or . = ''">needs action</xsl:when> 4366 <xsl:when test=". = 'ACCEPTED'">accepted</xsl:when> 4367 <xsl:when test=". = 'DECLINED'">declined</xsl:when> 4368 <xsl:when test=". = 'TENTATIVE'">tentative</xsl:when> 4369 <xsl:when test=". = 'DELEGATED'">delegated</xsl:when> 4370 <xsl:otherwise><xsl:value-of select="."/></xsl:otherwise> 4371 </xsl:choose> 4372 </xsl:template> 4373 4374 <xsl:template match="role"> 4375 <xsl:choose> 4376 <xsl:when test=". = 'REQ-PARTICIPANT' or . = ''">required participant</xsl:when> 4377 <xsl:when test=". = 'CHAIR'">chair</xsl:when> 4378 <xsl:when test=". = 'OPT-PARTICIPANT'">optional participant</xsl:when> 4379 <xsl:when test=". = 'NON-PARTICIPANT'">non-participant</xsl:when> 4380 <xsl:otherwise><xsl:value-of select="."/></xsl:otherwise> 4381 </xsl:choose> 4361 4382 </xsl:template> 4362 4383 … … 7289 7310 <tr> 7290 7311 <td class="role"> 7291 <xsl: value-ofselect="role"/>7312 <xsl:apply-templates select="role"/> 7292 7313 </td> 7293 7314 <td class="status"> 7294 <xsl: value-ofselect="partstat"/>7315 <xsl:apply-templates select="partstat"/> 7295 7316 </td> 7296 7317 <td> … … 7411 7432 </xsl:when> 7412 7433 <xsl:otherwise> 7413 <xsl: value-ofselect="attendees/attendee/partstat"/>7434 <xsl:apply-templates select="attendees/attendee/partstat"/> 7414 7435 </xsl:otherwise> 7415 7436 </xsl:choose> … … 7472 7493 </td> 7473 7494 <td class="fieldval scheduleActions"> 7474 <xsl: value-ofselect="attendees/attendee/partstat"/>7495 <xsl:apply-templates select="attendees/attendee/partstat"/> 7475 7496 <xsl:if test="comments/value"> 7476 7497 <p><strong>Comments:</strong></p>
