<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Here is the default xslSlideMaker rules
	In order to make yours, you just have to add your rules in it.
	Author: Jeremy Calles., Jeremy.Calles@sophia.inria.fr
-->
<xsl:stylesheet>
<!-- The Root-Rule  -->
<xsl:template match="/">
	<!-- Html -->
	<xsl:text>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
                        "http://www.w3.org/TR/REC-html40/loose.dtd"></xsl:text>	
	<html lang="en">
	<head>
		<xsl:process select="head"/>	
	</head>
	<body bgcolor="#e7995b">
		<xsl:process select="body"/> 
	</body>
	</html>
	<!-- End of Html document -->
</xsl:template>
<!-- Basic Rule-->
<xsl:template match="*">
	<xsl:process-children/>
</xsl:template>

<xsl:template match="body">
	<xsl:process-children/>
</xsl:template>
<!-- other rules -->
<xsl:template match="title">
	<title><xsl:process-children/></title>
</xsl:template>

<xsl:template match="p">
	<p><xsl:process-children/></p>
</xsl:template>

<xsl:template match="i">
	<i><xsl:process-children/></i>
</xsl:template>

<xsl:template match="b">
	<b><xsl:process-children/></b>
</xsl:template>

<xsl:template match="body/title">
	<center><h2><xsl:process-children/></h2></center>
</xsl:template>

<xsl:template match="section/title">
	<h3><xsl:process-children/></h3>
</xsl:template>

<xsl:template match="hr">
	<xsl:text>&lt;hr></xsl:text>
</xsl:template>

<xsl:template match="br">
	<xsl:text>&lt;br></xsl:text>
</xsl:template>

<xsl:template match="list">
	<ul>
		<xsl:process-children/>
	</ul>
</xsl:template>

<xsl:template match="it">
	<li>
		<xsl:process-children/>
	</li>
</xsl:template>
<!-- Images and Other Stuff -->
<xsl:template match="imgTools">
	<center><xsl:text>&lt;img alt="SGML/XML Tools" src="images/SGML2.jpg"></xsl:text></center>
</xsl:template>

<xsl:template match="nsgmls">
<a href="http://www.jclark.com/sp/nsgmls.htm">NSGMLS</a>
</xsl:template>

<xsl:template match="Bigloo">
<a href="http://kaolin.unice.fr/~serrano/bigloo">Bigloo</a>
</xsl:template>

<xsl:template match="serrano">
<i><a href="mailto:Manuel.Serrano@unice.fr">Manuel Serrano</a></i>
</xsl:template>

<xsl:template match="Calles">
<a href="http://www.mygale.org/07/jcalles">Jeremy CALLES</a>
</xsl:template>

<xsl:template match="Brosset">
<a href="http://www-mips.unice.fr/~sbrosset">Sylvain BROSSET</a>
</xsl:template>

<xsl:template match="Canonico">
<a href="http://www-mips.unice.fr/~dcanonic">David CANONICO</a>
</xsl:template>

<xsl:template match="Theole">
	<a href="mailto:plehegar@sophia.inria.fr">P. Le Hégaret</a>
</xsl:template>

<xsl:template match="Sax">
	<a href="http://www.megginson.com/SAX/">SAX 1.0</a>
</xsl:template>

<xsl:template match="Xsl">
	<a href="http://www.w3.org/TR/WD-xsl">XSL</a>
</xsl:template>

<xsl:template match="Xml">
	<a href="http://www.w3.org/TR/PR-xml">XML</a>
</xsl:template>

<xsl:template match="FreeDOM">
	<a href="http://www.docuverse.com/personal/freedom">FreeDOM</a>
</xsl:template>

<xsl:template match="DOM">
	<a href="http://www.w3.org/DOM">DOM 1.0</a>
</xsl:template>

<xsl:template match="downloadBCC">
<a href="bcc_1.0.tar.gz">here</a>
</xsl:template>

<xsl:template match="downloadXsl">
<a href="ftp://koala.inria.fr/pub/xml">tar.gz here</a>
</xsl:template>

<xsl:template match="downloadXslZip">
<a href="ftp://koala.inria.fr/pub/xml">.zip here</a>
</xsl:template>

<xsl:template match="downloadXslSources">
<a href="ftp://koala.inria.fr/pub/xml">sources files</a>
</xsl:template>

<xsl:template match="xslProcessor">
<a href="xslProcessor.html">here</a>
</xsl:template>

<xsl:template match="xslProcessorName">
<a href="xslProcessor.html">Xsl Processor</a>
</xsl:template>

<xsl:template match="xslSlideMaker">
<a href="slide.0.1.html">here</a>
</xsl:template>

<xsl:template match="finetuning">
<a href="http://www.finetuning.com">FineTuning.com</a>
</xsl:template>

<xsl:template match="RCover">
<a href="http://www.oasis-open.org/cover">Robin Cover's SGML/XML Page</a>
</xsl:template>

<xsl:template match="xslFile">
<a href="html.xsl">here</a>
</xsl:template>

<xsl:template match="xmlFile">
<a href="index.xml">here</a>
</xsl:template>

<xsl:template match="infotek">
<a href="http://www.infotek.no/sgmltool">The Whirlwind Guide to SGML &amp; XML Tools and Vendors</a>
</xsl:template>

<xsl:template match="W3c">
<a href="http://w3c.org/XML">W3C's XML Page</a>
</xsl:template>

<xsl:template match="XMLtools">
<a href="http://www.stud.ifi.uio.no/~larsga/linker/XMLtools.html">Free XML Tools</a>
</xsl:template>

<xsl:template match="Koala">
<a href="http://www.inria.fr/koala/XML">Koala XML page</a>
</xsl:template>

<xsl:template match="organisation[attribute(href)]">
  <xsl:text>&lt;a href="</xsl:text>
  <xsl:value-of expr="attribute(href)"/>
  <xsl:text>"></xsl:text>
  <xsl:process-children/>
  <xsl:text>&lt;/a></xsl:text>
</xsl:template>

<xsl:template match="author[attribute(href)]">

  <xsl:text>&lt;hr>&lt;a href="</xsl:text>
  <xsl:value-of expr="attribute(href)"/>
  <xsl:text>"></xsl:text>
  <xsl:process-children/>
  <xsl:text>&lt;/a>&lt;br></xsl:text>
</xsl:template>
</xsl:stylesheet>
