- From: Hugo Haas via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 22 Mar 2005 14:04:47 +0000
- To: public-ws-addressing-eds@w3.org
Update of /sources/public/2004/ws/addressing
In directory homer:/tmp/cvs-serv21109
Modified Files:
generate-acknowledgements.xsl
Log Message:
Updated to deal with previous members
Index: generate-acknowledgements.xsl
===================================================================
RCS file: /sources/public/2004/ws/addressing/generate-acknowledgements.xsl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** generate-acknowledgements.xsl 10 Feb 2005 11:33:46 -0000 1.4
--- generate-acknowledgements.xsl 22 Mar 2005 14:04:45 -0000 1.5
***************
*** 20,26 ****
<p>Members of the Working Group are (at the time of writing, and by
alphabetical order):
! <xsl:apply-templates select="//html:table[@class='groupmembers']"/>
</p>
- <p>Previous members of the Working Group were: @@@.</p>
<p>The people who have contributed to <loc
href="http://lists.w3.org/Archives/Public/public-ws-addressing/">discussions
--- 20,34 ----
<p>Members of the Working Group are (at the time of writing, and by
alphabetical order):
! <xsl:apply-templates
! select="//html:table[@class='groupmembers']">
! <xsl:with-param name="standing" select="standing"/>
! </xsl:apply-templates>
! </p>
! <p>Previous members of the Working Group were:
! <xsl:apply-templates
! select="//html:table[@class='groupmembers']">
! <xsl:with-param name="standing" select="'no longer'"/>
! </xsl:apply-templates>
</p>
<p>The people who have contributed to <loc
href="http://lists.w3.org/Archives/Public/public-ws-addressing/">discussions
***************
*** 30,45 ****
</xsl:template>
! <xsl:template match="html:table">
! <xsl:for-each select="html:tr[position() > 1]">
<xsl:value-of select="html:th[@class='name']/html:a"/>
<xsl:text> (</xsl:text>
<xsl:value-of select="html:td[@class='orgname']"/>
<xsl:text>)</xsl:text>
! <xsl:if test="position()!=last()">
! <xsl:text>, </xsl:text>
! </xsl:if>
! <xsl:if test="position()=last()">
! <xsl:text>.</xsl:text>
! </xsl:if>
</xsl:for-each>
</xsl:template>
--- 38,57 ----
</xsl:template>
! <xsl:template match="html:tr">
<xsl:value-of select="html:th[@class='name']/html:a"/>
<xsl:text> (</xsl:text>
<xsl:value-of select="html:td[@class='orgname']"/>
<xsl:text>)</xsl:text>
! </xsl:template>
!
! <xsl:template match="html:table">
! <xsl:for-each select="html:tr[position() > 1][contains(html:td[@class='standing'],$standing)]">
! <xsl:apply-templates select="."/>
! <xsl:if test="position()!=last()">
! <xsl:text>, </xsl:text>
! </xsl:if>
! <xsl:if test="position()=last()">
! <xsl:text>.</xsl:text>
! </xsl:if>
</xsl:for-each>
</xsl:template>
Received on Tuesday, 22 March 2005 14:04:48 UTC