- Move includes.nav*.sgml to share/sgml/navibar.ent and
<lang>/share/sgml/navibar.l10n.ent.
- Move includes.sgml and includes.xsl to
share/sgml/common.ent, share/sgml/header.ent, <lang>/share/sgml/l10n.ent,
and <lang>/share/sgml/header.l10n.ent.
- Move most of XSLT libraries to share/sgml/*.xsl and
<lang>/share/sgml/*.xsl.
- Move news.xml and other *.xml files for the similar purpose
to share/sgml/*.xml and <lang>/share/sgml/*.xml.
- Switch to use a custom DTD for HTML document. Now we use
"-//FreeBSD//DTD HTML 4.01 Transitional-Based Extension", which is
HTML 4.01 + some entities previously pulled via
"<!ENTITY % includes SYSTEM "includes.sgml"> %includes;" line.
The location of entity file will be resolved by using catalog file.
- Add DOCTYPE declearation to XML documents. This makes the followings
possible:
* Use of &foo; entities for SGML in an XML file instead of defining
{$foo} as the same content.
* &symbolic; entities for Latin characters.
- Duplicated information between SGML and XML, or English and
translated doc, has been removed as much as possible.
116 lines
3.6 KiB
XML
116 lines
3.6 KiB
XML
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
|
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
|
<!ENTITY base "../..">
|
|
<!ENTITY email "freebsd-ia64">
|
|
<!ENTITY title "FreeBSD/ia64 Project">
|
|
<!ENTITY % navinclude.developers "INCLUDE">
|
|
]>
|
|
<!--
|
|
The FreeBSD Documentation Project
|
|
The FreeBSD French Documentation Project
|
|
|
|
Original revision: 1.4
|
|
-->
|
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
|
|
|
<xsl:variable name="date" select="'$FreeBSD: www/fr/platforms/ia64/index.xsl,v 1.3 2006/02/03 11:54:54 blackend Exp $'"/>
|
|
|
|
<xsl:output doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
encoding="iso-8859-1" method="html"/>
|
|
|
|
<xsl:template match="/">
|
|
<html>
|
|
&header1;
|
|
<body>
|
|
|
|
<div id="CONTAINERWRAP">
|
|
<div id="CONTAINER">
|
|
&header2;
|
|
|
|
<div id="CONTENT">
|
|
<div id="SIDEWRAP">
|
|
&nav;
|
|
</div> <!-- SIDEWRAP -->
|
|
|
|
<div id="CONTENTWRAP">
|
|
&header3;
|
|
|
|
<img align="right" alt="McKinley die" src="&enbase;/platforms/ia64/mckinley-die.png"/>
|
|
|
|
<p>Rechercher dans les archives de la liste de diffusion
|
|
freebsd-ia64:</p>
|
|
|
|
<form action="http://www.FreeBSD.org/cgi/search.cgi" method="get">
|
|
<input name="words" size="50" type="text"/>
|
|
<input name="max" type="hidden" value="25"/>
|
|
<input name="source" type="hidden" value="freebsd-ia64"/>
|
|
<input type="submit" value="Go"/>
|
|
</form>
|
|
|
|
<h3><a name="toc">Table des matières</a></h3>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="#intro">Introduction</a>
|
|
</li>
|
|
<li>
|
|
<a href="#status">Statut actuel</a>
|
|
</li>
|
|
<li>
|
|
<a href="todo.html">Ce qu'il reste à faire</a>
|
|
</li>
|
|
<li>
|
|
<a href="machines.html">Liste matériels</a>
|
|
</li>
|
|
<li>
|
|
<a href="refs.html">Références</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<h3><a name="intro">Introduction</a></h3>
|
|
|
|
<p>Les pages du projet FreeBSD/ia64 contiennent des
|
|
informations au sujet du port FreeBSD sur l'architecture
|
|
IA-64 de Intel; connue sous le nom de "Famille de
|
|
Processeurs Intel Itanium®" (IPF). Tout comme le
|
|
port lui-même, ces pages sont en constante
|
|
évolution.</p>
|
|
|
|
<h3><a name="status">Statut actuel</a></h3>
|
|
|
|
<p>Le port ia64 est encore considéré comme
|
|
plateforme de niveau 2. En résumé, cela veut
|
|
dire qu'elle n'est pas entièrement supportée
|
|
par notre officier de sécurité, par les
|
|
ingénieurs de versions ni par les mainteneurs de
|
|
l'ensemble des outils de compilation. Dans la pratique,
|
|
toutefois, la distinction entre une plateforme de niveau
|
|
1 (entièrement supportée) et une plateforme de
|
|
niveau 2 n'est pas aussi stricte qu'il n'y paraît.
|
|
En bien des aspects, le port ia64 est une plateforme de
|
|
niveau 1.
|
|
<br/>
|
|
Du point de vue d'un développeur, il y a un
|
|
avantage dans le fait que le port ia64 soit une
|
|
plateforme de niveau 2 pendant encore quelque temps.
|
|
Nous prévoyons toujours plusieurs changements
|
|
importants au niveau de l'ABI et devoir maintenir une
|
|
compatibilité aussi tôt dans la vie du port
|
|
ne serait pas très pratique.</p>
|
|
</div> <!-- CONTENTWRAP -->
|
|
|
|
<br class="clearboth" />
|
|
</div> <!-- CONTENT -->
|
|
|
|
<div id="FOOTER">
|
|
©right;<br />
|
|
&date;
|
|
</div> <!-- FOOTER -->
|
|
</div> <!-- CONTAINER -->
|
|
</div> <!-- CONTAINERWRAP -->
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|