<?xml version="1.0" ?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"><!--  Style sheet for converting xmlp-issues.xml into a static HTML  document        June 23, 2004 [JMarsh]          Branch wsd-issues-html.xsl 1.7; variant to hide closed issues  $Id: wsd-issues-html-condensed.xsl,v 1.1 2004/06/24 00:47:48 jonathanMarsh Exp $--><xsl:import href="wsd-issues-html.xsl"/><xsl:template match="issues" mode="detail">   <h2><a name="detailList"></a>Detailed List of Open Issues</h2>   <p><a href="wsd-issues.html#detailList">Show both open and closed issues</a></p>  <table border='1' width='100%'>      <tr>        <th><a href="#id">id</a></th>        <th><a href="#Spec">Spec</a></th>        <th><a href="#Requirement">Req</a></th>        <th><a href="#Topic">Topic</a></th>        <th><a href="#Class">Class</a></th>        <th><a href="#Status">Status</a></th>        <th><a href="#Raised by">Raised By</a></th>        <th><a href="#Owner">Owner</a></th>      </tr>    <xsl:apply-templates select="issue[child::status!='Closed']" mode="detail">      <xsl:sort data-type="number" select="issue-num" />    </xsl:apply-templates>  </table>  <h2><a name="legend">Table Legend</a></h2>   <dl>   <dt><a name="id">id</a></dt>   <dd>Issue number</dd>   <dt><a name="title">Title</a></dt>   <dd>Short title/name of the issue</dd>   <dt><a name="Spec">Spec</a></dt>   <dd>Document referred to in issue (AM = Abstract Model, Spec = WSDL Specification</dd>   <dt><a name="Description">Description</a></dt>   <dd>Short description of issue, possibly including link to origin of issue</dd>   <dt><a name="Requirement">Req</a></dt>   <dd>Link to WS Description Requirement that motivated this issue</dd>   <dt><a name="Topic">Topic</a></dt>   <dd>Rough topic categorisation, one of: env(elope), rpc, enc(oding), meta(issue), bind(ing), fault</dd>   <dt><a name="Class">Class</a></dt>   <dd>Design or Editorial</dd>   <dt><a name="Status">Status</a></dt>   <dd>One of: Unassigned, Active, Closed, Postponed</dd>   <dt><a name="Proposal">Proposal</a></dt>   <dd>Current proposal for resolution of issue, possibly including link to further text</dd>   <dt><a name="Resolution">Resolution</a></dt>   <dd>Short description of resolution, possibly including link to a more elaborate description</dd>   <dt><a name="Raised">Raised by</a></dt>   <dd>Person who raised the issue</dd>   <dt><a name="Owner">Owner</a></dt>   <dd>WS Definition WG Member responsible for the issue</dd>   </dl></xsl:template></xsl:stylesheet>
