2012-09-22 22:09:08 +02:00
|
|
|
|
<?xml version="1.0" encoding="iso-8859-1" ?>
|
2012-08-05 15:41:44 +02:00
|
|
|
|
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
2012-10-01 13:56:00 +02:00
|
|
|
|
"http://www.FreeBSD.org/XML/www/share/xml/xslt10-freebsd.dtd" [
|
2012-08-12 22:35:40 +02:00
|
|
|
|
<!ENTITY title "Plan du site">
|
2012-08-05 15:41:44 +02:00
|
|
|
|
]>
|
|
|
|
|
|
|
|
|
|
<!-- $FreeBSD$ -->
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
The FreeBSD French Documentation Project
|
|
|
|
|
Original revision: 1.27
|
|
|
|
|
|
|
|
|
|
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
|
|
|
|
|
Version francaise (mise a jour) : Vincent Tougait <viny@scientiae.net>
|
|
|
|
|
Version francaise (mise a jour) : Antoine Brodin <antoine.brodin@laposte.net>
|
|
|
|
|
-->
|
|
|
|
|
|
2012-08-12 22:35:40 +02:00
|
|
|
|
<xsl:stylesheet version="1.0"
|
|
|
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
|
xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
|
|
2012-10-01 13:56:00 +02:00
|
|
|
|
<xsl:import href="http://www.FreeBSD.org/XML/www/share/xml/libcommon.xsl"/>
|
|
|
|
|
<xsl:import href="http://www.FreeBSD.org/XML/www/share/xml/xhtml.xsl"/>
|
2012-08-05 15:41:44 +02:00
|
|
|
|
|
|
|
|
|
<xsl:variable name="lowercase" select="'a<>bc<62>de<64><65><EFBFBD>fghi<68>jklmno<6E>pqrstu<74><75>vwxyz'"/>
|
|
|
|
|
<xsl:variable name="uppercase" select="'A<>BC<42>DE<44><45><EFBFBD>FGHI<48>JKLMNO<4E>PQRSTU<54><55>VWXYZ'"/>
|
|
|
|
|
|
2012-08-12 22:35:40 +02:00
|
|
|
|
<xsl:variable name="title">&title;</xsl:variable>
|
|
|
|
|
|
2012-08-05 15:41:44 +02:00
|
|
|
|
<xsl:key name="indexLetter" match="term" use="translate(substring(text, 1, 1), $lowercase, $uppercase)"/>
|
|
|
|
|
|
|
|
|
|
<xsl:template name="process.contentwrap">
|
|
|
|
|
<xsl:call-template name="html-sitemap"/>
|
|
|
|
|
|
|
|
|
|
<h2>Meta pages d'accueil</h2>
|
|
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
|
<li><a href="../commercial/commercial.html">Commercial</a></li>
|
2012-08-10 00:39:25 +02:00
|
|
|
|
<li><a href="../copyright/copyright.html">Copyright et Informations l<>gales</a></li>
|
2012-08-05 15:41:44 +02:00
|
|
|
|
<li><a href="../docs.html">Documentation</a></li>
|
|
|
|
|
<li><a href="../internal/internal.html">Interne</a></li>
|
|
|
|
|
<li><a href="../news/news.html">Nouvelles</a></li>
|
|
|
|
|
<li><a href="../platforms/">Plateformes</a></li>
|
|
|
|
|
<li><a href="../ports/index.html">Ports</a></li>
|
|
|
|
|
<li><a href="../projects/projects.html">Projets</a></li>
|
|
|
|
|
<li><a href="../releases/index.html">Information sur les versions</a></li>
|
|
|
|
|
<li><a href="../search/search.html">Recherche</a></li>
|
2012-08-10 00:39:25 +02:00
|
|
|
|
<li><a href="../security/security.html">S<EFBFBD>curit<EFBFBD></a></li>
|
2012-08-05 15:41:44 +02:00
|
|
|
|
<li><a href="../support.html">Support</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<hr noshade="noshade"/>
|
|
|
|
|
|
|
|
|
|
<h1>Index A-Z</h1>
|
|
|
|
|
|
|
|
|
|
<xsl:call-template name="html-index-toc"/>
|
|
|
|
|
|
|
|
|
|
<hr noshade="noshade"/>
|
|
|
|
|
|
|
|
|
|
<xsl:call-template name="html-index"/>
|
|
|
|
|
</xsl:template>
|
|
|
|
|
</xsl:stylesheet>
|