<?xml version="1.0"?>
<!-- $Id: breakout.xsl,v 1.5 2001/07/20 16:15:38 mdean Exp $ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

  <xsl:output method="html"/>

  <xsl:template match="/">
    <title>PI Meeting Breakout Outbriefs</title>
    <h1>PI Meeting Breakout Outbriefs</h1>

    <p>
    This page contains DAML summaries of the results of
    breakout discussion sessions at DAML PI meetings.
    The ontology is available in
    <a href="breakout-ont.n3">N3</a>
    and 
    <a href="breakout-ont.daml">DAML</a>
    formats.
    </p>			
    <p>
    Session scribes are asked to
    <ol>
      <li>download <a href="2001-07-20-example.n3">example.n3</a></li>
      <li>add the results from their session</li>
      <li>send the updated file to
          <a href="mailto:webmaster@daml.org">webmaster@daml.org</a>.</li>
    </ol>
    </p>
    <p>
    This document is available at
    <a href="http://www.daml.org/2001/07/breakout/">http://www.daml.org/2001/07/breakout/</a>.
    It was generated directly from the N3 inputs
    using cwm,
    <a href="breakout.xsl">breakout.xsl</a>,
    <a href="test.bat">test.bat</a>,
    and a version of DAML XSLT.
    </p>

    <hr />
    <h2>Sessions</h2>
      <ul>
        <xsl:for-each select="/root/Breakout">
          <xsl:sort select="name"/>
          <li>
            <a>
              <xsl:attribute name="href">#<xsl:value-of select="name"/></xsl:attribute>
              <xsl:value-of select="name"/>
            </a>
          </li>
        </xsl:for-each>
      </ul>
    
    <xsl:for-each select="/root/Breakout">
      <xsl:sort select="name"/>
      <hr />
      <a>
        <xsl:attribute name="name"><xsl:value-of select="name"/></xsl:attribute>
      </a>
      <h2><xsl:value-of select="name"/></h2>

      <h3>Significant Issues</h3>
      <ul>	
        <xsl:for-each select="significantIssue">
          <li><xsl:value-of select="."/></li>
        </xsl:for-each>
      </ul>

      <h3>Plan of Action</h3>
      <dl>	
        <xsl:for-each select="planOfAction/*">
          <xsl:sort select="completionDate"/>
          <dt><xsl:value-of select="completionDate"/></dt>
          <dd><xsl:value-of select="description"/></dd>
        </xsl:for-each>
      </dl>

    </xsl:for-each>
    <hr />
    <!-- version -->
  </xsl:template>

</xsl:stylesheet>
