<?xml version="1.0" encoding="utf-8"?>

<!-- Acknowledgments list by Hugo Haas <hugo@w3.org> -->
<!-- $Id: acknoledgments.xsl,v 1.5 2003/11/07 01:38:39 hugo Exp $ -->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:html="http://www.w3.org/1999/xhtml"
  exclude-result-prefixes="html"
  version="1.0">

  <xsl:output
    method="html"
    indent="yes"
    encoding="ISO-8859-1"
    doctype-public="-//W3C//DTD HTML 4.01//EN"
    />

    <xsl:template match="html:p|html:h1|html:h2|html:h3|html:h4|html:address|html:ul|html:dl|html:form|html:head|html:caption"/>
    <!--
         Cannot use this because XT does not support node()...
  <xsl:template match="node()|text()">
    <xsl:apply-templates/>
  </xsl:template>
  -->

  <xsl:template match="/">
    <html>
      <head>
        <title>Web Services Architecture Working Group participants</title>
      </head>
      <body>
        <xsl:apply-templates/>

        <p>
          <small>
            See
            <a href='acknoledgments.xsl'>XSLT style sheet</a>.
          </small>
        </p>
        <hr/>
        <address>
          <a href='../../'>Web Services Architecture Working
          Group</a>
        </address>
      </body>
    </html>
  </xsl:template>

  <xsl:template match="html:table/html:tbody">
    <xsl:comment> **************** Cut from here **************** </xsl:comment>
    <xsl:text>
    </xsl:text>
      <p>
        Members of the Working Group are
        (at the time of writing, and by alphabetical order):
        <xsl:for-each select="html:tr[position() &gt; 1]">
          <xsl:value-of select="html:td[1]/html:a"/>
          <xsl:if test="position()!=last()">
            (<xsl:value-of select="html:td[2]"/>)<xsl:text>, </xsl:text>
          </xsl:if>
          <xsl:if test="position()=last()">
            (<xsl:value-of select="html:td[2]"/>)<xsl:text>.</xsl:text>
          </xsl:if>
        </xsl:for-each>
      </p>
  </xsl:template>

  <xsl:template match="html:*[@id='prevmem']">
    <p>
      <xsl:value-of select="."/>
    </p>
    <xsl:text>
    </xsl:text>
    <xsl:comment> **************** Stop cutting there **************** </xsl:comment>
  </xsl:template>

</xsl:stylesheet>
