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

<!-- Member-only calendar filtering by Hugo Haas <hugo@w3.org> -->
<!-- $Id: schedule-public.xsl,v 1.4 2004/05/11 13:30:45 hugo Exp $ -->

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

  <xsl:output
    method="xml"
    indent="yes"
    doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
    encoding="ISO-8859-1"/>

  <xsl:template match="html:tr[@class = 'w3c']"/>

  <xsl:template match="html:tr[@class = 'moratorium']"/>

  <xsl:template match="html:link">
    <link href="../../../../../StyleSheets/base" rel="stylesheet"
      type="text/css"/>
  </xsl:template>

  <xsl:template match="html:p[@class = 'member']">
    <p>See also <a href='schedule'>the complete schedule with other W3C dates</a>, this version being generated with an <a href='schedule-public'>style sheet</a>.</p>
  </xsl:template>

  <xsl:template match="/">
    <xsl:apply-templates/>
  </xsl:template>

  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>

