<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp "&#160;"> ]>

<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

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

  <xsl:template match="/softliste">

<html lang="en">
  <head>
    <title>FSF France - Free software for scientific documentation</title>
  </head>
  <body>

    <div> <!-- The header will be inserted here -->
      <center>
	[
	<!-- Please keep this list alphabetical -->
	English | <a href="documentation.fr.html">French</a>
	]
      </center>
      <p />

<p align="center"><font size="+2"><b>Free software for scientific documentation</b></font>
<font size="-2">(Listed by various contributors.)</font>
</p>

  <p align="center">This page lists different free software usefull to
  produce scientific documentation. It was compelled part of the <a
  href="science.en.html">Free Software and science</a> project.</p>

  <xsl:apply-templates select="updatenotice"/>

<TABLE CELLPADDING="10" RULES="all" BORDER="1">
<TR>
<TH>Name</TH>
<TH>Description</TH>
<TH>URL</TH>
</TR>

      <xsl:apply-templates select="software"/>      

</TABLE>

    </div> <!-- The footer will be inserted here -->

    Updated:
    <!-- timestamp start -->
    $Date: 2002-03-02 19:21:05 +0100 (Sat, 02 Mar 2002) $ $Author: olberger $
    <!-- timestamp end -->

  </body>
    </html>
  </xsl:template>

  <xsl:template match="/softliste/software">
<TR>
<TD><b><xsl:value-of select="name" /></b><br />(<xsl:value-of select="date" />)</TD>
<TD><xsl:value-of select="description[@lang='en']" /></TD>
<TD><a href="{url}"><xsl:value-of select="url" /></a></TD>
</TR>
  </xsl:template>

<!--  <xsl:include href="chimie.xsl" /> -->

<xsl:template match="updatenotice">
    <i>List updated : <xsl:apply-templates select="@*|node()"/></i>
</xsl:template>

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

  <!--
  Local Variables: ***
  mode: xml ***
  End: ***
  -->
</xsl:stylesheet>
