New set of translations.

fr/news/Makefile.inc: MFen 1.2
fr/news/Makefile: MFen 1.33
fr/news/press.xsl: MFen 1.3
fr/news/newsflash.xsl: MFen 1.7
fr/news/news-rdf.xsl: MFen 1.4
fr/news/includes.xsl: MFen 1.4
fr/news/press.xml: MFen 1.62 (incomplete translation)
fr/news/news.xml: MFen 1.127

none of the original qnewsletter* files have a revision number.

Approved by:   gioria (mentor)
This commit is contained in:
Stephane Legrand 2002-12-08 16:45:35 +00:00
parent 281c121748
commit b88df93bd3
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=15219
18 changed files with 4726 additions and 0 deletions

59
fr/news/Makefile Normal file
View file

@ -0,0 +1,59 @@
# $FreeBSD$
# The FreeBSD French Documentation Project
# Original revision: 1.33
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif
#DOCS+= press.sgml
DOCS+= news.sgml
#DOCS+= webchanges.sgml
# press releases
DOCS+= pressreleases.sgml
DOCS+= press-rel-1.sgml
DOCS+= press-rel-2.sgml
DOCS+= press-rel-3.sgml
DOCS+= press-rel-4.sgml
DOCS+= press-rel-5.sgml
# The yearly State of the Union address
DOCS+= sou1999.sgml
INDEXLINK= news.html
## SUBDIR= 1996
## SUBDIR+= 1997
## SUBDIR+= 1998
# SUBDIR+= 1999
## SUBDIR+= 2000
## SUBDIR+= 2001
## SUBDIR+= status
DATA= newsflash.html news.rdf press.html
CLEANFILES+= newsflash.html news.rdf press.html
newsflash.html: newsflash.xsl news.xml includes.xsl ../includes.xsl
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
${.CURDIR}/newsflash.xsl ${.CURDIR}/news.xml
.if !defined(NO_TIDY)
-${TIDY} ${TIDYOPTS} ${.TARGET}
.endif
news.rdf: news-rdf.xsl news.xml includes.xsl ../includes.xsl
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
${.CURDIR}/news-rdf.xsl ${.CURDIR}/news.xml
press.html: press.xsl press.xml includes.xsl ../includes.xsl
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
${.CURDIR}/press.xsl ${.CURDIR}/press.xml
.if !defined(NO_TIDY)
-${TIDY} ${TIDYOPTS} ${.TARGET}
.endif
.include "${WEB_PREFIX}/share/mk/web.site.mk"

7
fr/news/Makefile.inc Normal file
View file

@ -0,0 +1,7 @@
# $FreeBSD$
# The FreeBSD French Documentation Project
# Original revision: 1.2
WEBBASE?= /data/news
WEB_PREFIX?= ${.CURDIR}/../../..

31
fr/news/includes.xsl Normal file
View file

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- $FreeBSD$ -->
<!--
The FreeBSD French Documentation Project
Original revision: 1.4
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:variable name="newshome">
<a href="{$base}/news/news.html">Accueil Nouvelles</a>
</xsl:variable>
<!-- Generate a unique anchor for this event -->
<xsl:template name="generate-event-anchor">
<xsl:value-of select="ancestor::year/name"/>
<xsl:value-of select="ancestor::month/name"/>
<xsl:value-of select="ancestor::day/name"/>:<xsl:value-of select="count(preceding-sibling::event)"/>
</xsl:template>
<!-- Generate a unique anchor for this story -->
<xsl:template name="generate-story-anchor">
<xsl:value-of select="ancestor::year/name"/>
<xsl:value-of select="ancestor::month/name"/>:<xsl:text/>
<xsl:value-of select="count(following-sibling::story)"/>
</xsl:template>
</xsl:stylesheet>

53
fr/news/news-rdf.xsl Normal file
View file

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- $FreeBSD$ -->
<!--
The FreeBSD French Documentation Project
Original revision: 1.4
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:import href="includes.xsl"/>
<xsl:output method="xml" indent="yes"/>
<xsl:variable name="base" select="'..'"/>
<!-- Generate the main body of the RDF file -->
<xsl:template match="news">
<rdf:rdf xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://my.netscape.com/rdf/simple/0.9">
<channel>
<title>Nouvelles du Projet FreeBSD</title>
<link>http://www.FreeBSD.org/news/</link>
<description>Nouvelles du Projet FreeBSD</description>
</channel>
<!-- Only include the last 10 events -->
<xsl:apply-templates select="descendant::event[position() &lt;= 10]"/>
</rdf:rdf>
</xsl:template>
<!-- Generate the <item> elements and their content -->
<xsl:template match="event">
<item>
<xsl:choose>
<xsl:when test="count(child::title)">
<title><xsl:value-of select="normalize-space(title)"/></title>
</xsl:when>
<xsl:otherwise>
<title><xsl:value-of select="normalize-space(p)"/></title>
</xsl:otherwise>
</xsl:choose>
<link>http://www.FreeBSD.org/news/newsflash.html#<xsl:call-template name="generate-event-anchor"/></link>
</item>
</xsl:template>
<xsl:template match="name | date"/>
</xsl:stylesheet>

792
fr/news/news.xml Normal file
View file

@ -0,0 +1,792 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Simple schema for FreeBSD Project news.
Divide time in to <year>, <month>, and <day> elements, each of which
has a <name>.
each <day> element contains one or more <event> elements.
Each <event> contains an optional <title>, and then a <p>. <p> elements
can contain <a> anchors. Within the "href" attribute of the anchor
$base will be replaced with the base URI necessary to reach the FreeBSD
document root, and should always be used to start URLs at www.FreeBSD.org
or one of the mirrors.
Use the <title> element if the <p> content is lengthy. When generating
synopses of this information (e.g., for syndication using RDF files),
the contents of <title> will be preferred over <p>.
-->
<!--
The FreeBSD French Documentation Project
Original revision: 1.127
Version francaise : Francois TIFFREAU <dc@freebsd-fr.org>
Version francaise (mise a jour) : 1.13 2002/08/22 11:03:57 eagle
Version francaise (mise a jour) : Stephane Legrand <stephane@freebsd-fr.org>
-->
<news>
<cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
<cvs:keyword name="freebsd">
$FreeBSD$
</cvs:keyword>
</cvs:keywords>
<year>
<name>2002</name>
<month>
<name>Novembre</name>
<day>
<name>18</name>
<event>
<title>La pr&#233;-version d&#233;veloppeurs #2 de FreeBSD 5.0 est disponible</title>
<p>La seconde pr&#233;-version d&#233;veloppeurs de 5.0-CURRENT est
<a href="$base/releases/5.0R/DP2/announce.html">maintenant
disponible</a>. Consultez les <a
href="$base/releases/5.0R/DP2/relnotes.html">notes de
version</a>, <a
href="$base/releases/5.0R/DP2/errata.html">l'errata</a> et
le nouveau <a
href="$base/releases/5.0R/DP2/early-adopter.html">Guide pour
les testeurs</a> pour plus d'informations.</p>
</event>
</day>
<day>
<name>7</name>
<event>
<p>nVidia sort des drivers Geforce pour FreeBSD ! Consultez le fichier <a
href="ftp://download.nvidia.com/freebsd/1.0-3203/README.txt">README</a>
pour plus d'informations.</p>
</event>
</day>
<day>
<name>1</name>
<event>
<p>Nouveau participant : <a
href="mailto:stephane@FreeBSD.org">St&#233;phane Legrand</a>
(Projet de Documentation)</p>
</event>
</day>
</month>
<month>
<name>Octobre</name>
<day>
<name>31</name>
<event>
<p>Le navigateur web Opera port&#233; sur FreeBSD ! Consultez le <a
href="http://www.FreeBSD.org/news/press-rel-6.html">communiqu&#233; de
presse</a> officiel pour plus d'informations.</p>
</event>
</day>
<day>
<name>22</name>
<event>
<p>Nouveau participant : <a
href="mailto:edwin@FreeBSD.org">Edwin Groothuis</a>
(Ports)</p>
</event>
</day>
<day>
<name>18</name>
<event>
<p>Nouveau participant : <a
href="mailto:arved@FreeBSD.org">Tilman Linneweh</a>
(Ports)</p>
</event>
</day>
<day>
<name>18</name>
<event>
<p>Nouveau participant : <a
href="mailto:daichi@FreeBSD.org">Daichi GOTO</a>
(Ports)</p>
</event>
<event>
<p>Nouveau participant : <a
href="mailto:maho@FreeBSD.org">Maho Nakata</a>
(Ports)</p>
</event>
</day>
<day>
<name>16</name>
<event>
<p>Nouveau participant : <a
href="mailto:adamw@FreeBSD.org">Adam Weinberger</a>
(Ports)</p>
</event>
</day>
<day>
<name>11</name>
<event>
<p>Nouveau participant : <a
href="mailto:cognet@FreeBSD.org">Olivier Houchard</a></p>
</event>
</day>
<day>
<name>10</name>
<event>
<title>FreeBSD 4.7-RELEASE est maintenant disponible</title>
<p><a href="$base/releases/4.7R/announce.html">FreeBSD
4.7-RELEASE</a> est sorti. Veuillez consulter la page <a
href="$base/releases/index.html">d'information sur les versions</a>
pour plus de d&#233;tails. Consultez &#233;galement <a
href="$base/releases/4.7R/errata.html">l'errata</a>
apr&#232;s installation pour conna&#238;tre les derni&#232;res informations et/ou
les probl&#232;mes de derni&#232;re minute concernant cette version 4.7.</p>
</event>
</day>
<day>
<name>9</name>
<event>
<p>Nouveau participant : <a
href="mailto:emoore@FreeBSD.org">Eric Moore</a></p>
</event>
</day>
<day>
<name>4</name>
<event>
<p>Nouveau participant : <a
href="mailto:mheinen@FreeBSD.org">Martin Heinen</a>
(Projet de Documentation)</p>
</event>
</day>
<day>
<name>3</name>
<event>
<title>Rapport de Statut Juillet 2002 - Ao&#251;t 2002</title>
<p>Le rapport de statut pour Juillet-Ao&#251;t est disponible; consultez la
<a href="$base/news/status/status.html">page web des rapports de statuts</a>
pour plus d'informations.</p>
</event>
</day>
</month>
<month>
<name>Septembre</name>
<day>
<name>10</name>
<event>
<p>Nouveau participant : <a
href="mailto:grehan@FreeBSD.org">Peter Grehan</a>
(PowerPC)</p>
</event>
</day>
<day>
<name>2</name>
<event>
<p>Notes &#224; propos de USENIX ATC 2002 <a
href="$base/events/2002/usenix-devsummit.html">
La conf&#233;rence des d&#233;veloppeurs FreeBSD</a> est maintenant
disponible.</p>
</event>
</day>
<day>
<name>1</name>
<event>
<title>Gel de la branche FreeBSD-STABLE en pr&#233;paration de la 4.7</title>
<p>La branche FreeBSD-STABLE de l'arbre des sources est maintenant
gel&#233;e en <a
href="$base/releases/4.7R/schedule.html">pr&#233;paration</a>
de la sortie de FreeBSD 4.7. Cela signifie que toute nouvelle
modification &#224; l'arbre des sources de la branche -stable doit tout d'abord
&#234;tre approuv&#233;e par <a href="$base/releng/">l'&#233;quipe en charge des versions</a>.
La date de sortie pr&#233;vue pour la 4.7 est le 1er Octobre 2002.</p>
</event>
<event>
<p>Nouveau participant : <a
href="mailto:davidxu@FreeBSD.org">David Xu</a>
(KSE)</p>
</event>
</day>
</month>
<month>
<name>Ao&#251;t</name>
<day>
<name>21</name>
<event>
<p>Nouveau participant: <a
href="mailto:obraun@FreeBSD.org">Oliver Braun</a>
(Ports)</p>
</event>
</day>
<day>
<name>20</name>
<event>
<p>Nouveau participant: <a
href="mailto:thomas@FreeBSD.org">Thomas Quinot</a></p>
</event>
</day>
<day>
<name>15</name>
<event>
<title>Mai 2002 - Juin 2002 Status Report</title>
<p>Le rapport de status du projet FreeBSD Mai-Juin 2002 est disponible; voyez la page
<a href="$base/news/status/status.html">Web sur les rapports de status</a>
pour plus d'information.</p>
</event>
<event>
<title>FreeBSD 4.6.2-RELEASE est maintenant disponible</title>
<p><a href="$base/releases/4.6.2R/announce.html">FreeBSD
4.6.2-RELEASE</a> est sorti. Veuillez consulter la page <a
href="$base/releases/index.html">d'information sur les versions</a>
pour plus de d&#233;tails. Consultez &#233;galement <a
href="$base/releases/4.6.2R/errata.html">l'errata</a>
apr&#232;s installation pour conna&#238;tre les derni&#232;res informations et/ou
les probl&#232;mes de derni&#232;re minute concernant cette version 4.6.2.</p>
</event>
<event>
<p>Nouveau participant: <a
href="mailto:seanc@FreeBSD.org">Sean Chittenden</a>
(Ports)</p>
</event>
</day>
<day>
<name>14</name>
<event>
<p>Nouveau participant: <a
href="mailto:leeym@FreeBSD.org">Yen-Ming Lee</a>
(Ports)</p>
</event>
</day>
<day>
<name>8</name>
<event>
<p>Nouveau participant: <a
href="mailto:jennifer@FreeBSD.org">Jennifer Jihui Yang</a></p>
</event>
</day>
<day>
<name>7</name>
<event>
<p>Nouveau participant: <a
href="mailto:njl@FreeBSD.org">Nate Lawson</a></p>
</event>
</day>
<day>
<name>1</name>
<event>
<title>L'Open Group fait un don au projet FreeBSD</title>
<p><a href="http://www.opengroup.org">L'Open Group</a> a g&#233;n&#233;reusement
donn&#233; plusieurs copies de livres et CD-ROM de "the Authorized Guide to The
Single UNIX Specification, Version 3" au
<a href="$base/projects/c99/index.html">Projet de conformit&#233;
POSIX C99 </a>. Nous appr&#233;cions ce don.</p>
</event>
</day>
</month>
<month>
<name>Juillet</name>
<day>
<name>19</name>
<event>
<p>Nouveau participant: <a
href="mailto:kan@FreeBSD.org">Alexander Kabaev</a></p>
</event>
</day>
<day>
<name>1</name>
<event>
<p>Nouveau participant: <a
href="mailto:johan@FreeBSD.org">Johan Karlsson</a></p>
</event>
</day>
</month>
<month>
<name>Juin</name>
<day>
<name>25</name>
<event>
<p>Nouveau participant : <a
href="mailto:perky@FreeBSD.org">Hye-Shik Chang</a>
(Ports)</p>
</event>
</day>
<day>
<name>18</name>
<event>
<p>Nouveau participant : <a
href="mailto:scop@FreeBSD.org">Ville Skytt&#228;</a>
(projets/cvsweb)</p>
</event>
</day>
<day>
<name>16</name>
<event>
<p>Nouveau participant : <a
href="mailto:blackend@FreeBSD.org">Marc Fonvieille</a>
(Projet de Documentation)</p>
</event>
</day>
<day>
<name>15</name>
<event>
<title>FreeBSD 4.6-RELEASE est disponible</title>
<p><a href="$base/releases/4.6R/announce.html">FreeBSD
4.6-RELEASE</a> est sorti. Veuillez consulter la page <a
href="$base/releases/index.html">d'information sur les versions</a>
pour plus de d&#233;tails. Consultez &#233;galement <a
href="$base/releases/4.6R/errata.html">l'errata</a>
apr&#232;s installation pour conna&#238;tre les derni&#232;res informations et/ou
les probl&#232;mes de derni&#232;re minute concernant cette version 4.6.</p>
</event>
</day>
<day>
<name>12</name>
<event>
<p>Nouveau participant : <a
href="mailto:alane@FreeBSD.org">Alan Eldridge</a>
(Ports)</p>
</event>
</day>
</month>
<month>
<name>Mai</name>
<day>
<name>23</name>
<event>
<title>Directives d'utilisation des rapports de bogues</title>
<p>The <a href="$base/doc/en/articles/pr-guidelines/article.html">
Ces directives d&#233;crivent les pratiques
recommand&#233;es d'utilisation des rapports de bogues de FreeBSD.</a></p>
</event>
</day>
<day>
<name>18</name>
<event>
<title>Rapport de Statut F&#233;vrier - Avril 2002</title>
<p>Le rapport de statut pour F&#233;vrier - Avril est disponible;
consultez la <a href="$base/news/status/status.html">
page web des rapports de statuts</a> pour plus d'informations.</p>
</event>
</day>
<day>
<name>16</name>
<event>
<p>Nouveau participant : <a
href="mailto:gordon@FreeBSD.org">Gordon Tetlow</a></p>
</event>
</day>
<day>
<name>7</name>
<event>
<p>Nouveau participant : <a
href="mailto:fanf@FreeBSD.org">Tony Finch</a></p>
</event>
</day>
<day>
<name>1</name>
<event>
<title>Gel de FreeBSD-STABLE en vue de la 4.6</title>
<p>La branche FreeBSD-STABLE a &#233;t&#233;
gel&#233;e en <a
href="$base/releases/4.6R/schedule.html">pr&#233;paration</a>
de la version 4.6 de FreeBSD. Cela veut dire que les nouvelles
modifications &#224; la branche -stable doivent &#234;tre approuv&#233;es au pr&#233;alable par
l'&#233;quipe en charge des versions (release engineering team). Cette version
sortira vers le 1er Juin 2002.</p>
</event>
</day>
</month>
<month>
<name>Avril</name>
<day>
<name>29</name>
<event>
<p>Nouveau participant : <a
href="mailto:ikob@FreeBSD.ORG">Katsushi Kobayashi</a></p>
</event>
</day>
<day>
<name>21</name>
<event>
<p>Nouveau participant : <a
href="mailto:anholt@FreeBSD.org">Eric Anholt</a></p>
</event>
</day>
<day>
<name>15</name>
<event>
<p>Nouveau participant : <a
href="mailto:mini@FreeBSD.org">Jonathan Mini</a></p>
</event>
</day>
<day>
<name>12</name>
<event>
<p>Nouveau participant : <a
href="mailto:tjr@FreeBSD.org">Tim Robbins</a></p>
</event>
</day>
<day>
<name>11</name>
<event>
<p>Nouveau participant : <a
href="mailto:glewis@FreeBSD.org">Greg Lewis</a>
(Ports)</p>
</event>
</day>
<day>
<name>8</name>
<event>
<title>FreeBSD 5.0 Developer Preview #1 est maintenant
disponible</title>
<p>Une version d&#233;veloppeur de 5.0-CURRENT est maintenant
<a href="$base/releases/5.0R/DP1/announce.html">disponible</a>.
Voyez les <a
href="$base/releases/5.0R/DP1/relnotes.html">notes de version
</a> pour plus d'informations. V&#233;rifiez aussi l'
<a href="$base/releases/5.0R/DP1/errata.html">
errata</a> pour la liste des probl&#232;mes connus.</p>
</event>
<event>
<p>Nouveau participant : <a
href="mailto:gerald@FreeBSD.org">Gerald Pfeifer</a>
(Ports)</p>
</event>
</day>
<day>
<name>5</name>
<event>
<p>Nouveau participant : <a
href="mailto:marcus@FreeBSD.org">Joe Marcus Clarke</a>
(Ports)</p>
</event>
</day>
<day>
<name>1</name>
<event>
<p>Nouveau participant : <a
href="mailto:nork@FreeBSD.org">Norikatsu Shigemura</a>
(Ports)</p>
</event>
</day>
</month>
<month>
<name>Mars</name>
<day>
<name>30</name>
<event>
<p>Le compte rendu du <a
href="$base/events/2002/bsdcon-devsummit.html">
Sommet des D&#233;veloppeurs FreeBSD</a> du BSDCon 2002
est disponible.</p>
</event>
</day>
<day>
<name>29</name>
<event>
<p>Nouveau participant : <a href="mailto:suz@FreeBSD.org">SUZUKI Shinsuke</a> (IPv6)</p>
</event>
</day>
<day>
<name>28</name>
<event>
<p>Nouveau participant : <a href="mailto:trhodes@FreeBSD.org">Tom Rhodes</a>
(Projet de Documentation)</p>
</event>
</day>
<day>
<name>19</name>
<event>
<p>Nouveau participant : <a
href="mailto:netchild@FreeBSD.org">Alexander Leidinger</a>
(Ports)</p>
</event>
</day>
<day>
<name>17</name>
<event>
<p>Nouveau participant : <a
href="mailto:ceri@FreeBSD.org">Ceri Davies</a> (Documentation)</p>
</event>
</day>
<day>
<name>12</name>
<event>
<title>Mise &#224; jour du planning des versions</title>
<p>Une nouvelle zone du site de FreeBSD d&#233;di&#233;e &#224;
<a href="$base/releng/index.html">la cr&#233;ation des versions</a>
a &#233;t&#233; cr&#233;&#233;e. Cette nouvelle section contient des informations au
sujet des futures versions de FreeBSD, un agenda sp&#233;cifique aux
versions FreeBSD 4.6 et 5.0, et plus encore.</p>
</event>
</day>
<day>
<name>9</name>
<event>
<title>FreeBSD supporte le multiprocesseur sur sparc64</title>
<p>FreeBSD fonctionne maintenant sur les machines multiprocesseurs
sparc64 gr&#226;ce aux efforts de <a href="mailto:jake@FreeBSD.org">Jake Burkholder</a>
et de <a href="mailto:tmm@FreeBSD.org">Thomas Moestl</a></p>
</event>
</day>
<day>
<name>3</name>
<event>
<p>Nouveau participant : <a
href="mailto:mux@FreeBSD.org">Maxime Henrion</a>
(VFS, SMP, ...)</p>
</event>
</day>
</month>
<month>
<name>F&#233;vrier</name>
<day>
<name>25</name>
<event>
<title>Rapport de statut D&#233;cembre 2001/Janvier 2002</title>
<p>Le rapport de statut de D&#233;cembre et de Janvier est disponible;
consultez la <a href="$base/news/status/status.html">
page web des rapports de statuts</a> pour plus d'informations.</p>
</event>
<event>
<p>Nouveau participant : <a
href="mailto:jmallett@FreeBSD.org">J.Mallett</a></p>
</event>
</day>
<day>
<name>18</name>
<event>
<p>Nouveau participant: <a
href="mailto:ticso@FreeBSD.org">Bernd Walter</a>
(Alpha)</p>
</event>
</day>
<day>
<name>11</name>
<event>
<title>Nouvelle section GNOME sur le site FreeBSD.org</title>
<p>L'&#233;quipe <a href="mailto:freebsd-gnome@FreeBSD.org">GNOME de FreeBSD</a> est fi&#232;re
de vous annoncer la nouvelle section du site FreeBSD.org d&#233;di&#233;e aux diff&#233;rents aspects
du GNOME Desktop ainsi que de son environnement de d&#233;veloppement sous FreeBSD.
<a href="$base/gnome/">Cliquez ici</a>
</p>
</event>
</day>
<day>
<name>7</name>
<event>
<p>Nouveau participant : <a
href="mailto:maxim@FreeBSD.org">Maxim Konovalov</a></p>
</event>
</day>
</month>
<month>
<name>Janvier</name>
<day>
<name>31</name>
<event>
<title>BSDCon Europe 2002 - Appel &#224; contributions</title>
<p><a href="http://www.eurobsdcon2002.org/cfp.html">L'annonce et l'appel &#224; contributions</a>
pour la session 2002 du BSDCon Europe sont disponibles. Cette conf&#233;rence se d&#233;roulera &#224; Amsterdam,
Pays-Bas, en Novembre 2002. Les personnes d&#233;sirant pr&#233;senter un article &#224; la conf&#233;rence devront
soumettre un r&#233;sum&#233; avant le 24 Juin 2002.</p>
</event>
</day>
<day>
<name>29</name>
<event>
<title>Sortie de la 4.5</title>
<p><a href="$base/releases/4.5R/announce.html">FreeBSD
4.5</a> est disponible. Merci de
consulter la page des <a href="$base/releases/index.html">informations sur les
versions</a> pour plus de d&#233;tails. N'oubliez pas de consulter l'<a
href="$base/releases/4.5R/errata.html">errata</a> apr&#232;s
l'installation pour les informations de derni&#232;res minutes au sujet de
la version 4.5.</p>
</event>
</day>
<day>
<name>12</name>
<event>
<title>Guide de tests disponible pour la future version 4.5.</title>
<p>L'&#233;quipe technique de FreeBSD 4.5 a pr&#233;par&#233; un
<a href="$base/releases/4.5R/qa.html">guide de tests</a>
pour la future version 4.5 de FreeBSD. Aidez nous &#224;
faire en sorte que FreeBSD 4.5 soit notre version la plus stable et la plus
performante que nous ayons jamais eu.</p>
</event>
</day>
<day>
<name>10</name>
<event>
<title>Nouveau guide : "Le symbole Euro sur FreeBSD"</title>
<p>Aaron Kaplan a r&#233;alis&#233; un nouvel article qui explique comment
configurer votre syst&#232;me pour utiliser le nouveau <a
href="$base/doc/en_US.ISO8859-1/articles/euro/article.html">symbole
Euro sur FreeBSD</a>.</p>
</event>
</day>
</month>
</year>
</news>

141
fr/news/newsflash.xsl Normal file
View file

@ -0,0 +1,141 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- $FreeBSD$ -->
<!--
The FreeBSD French Documentation Project
Original revision: 1.7
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
<xsl:import href="../includes.xsl"/>
<xsl:import href="includes.xsl"/>
<xsl:variable name="base" select="'..'"/>
<xsl:variable name="title" select="'Nouvelles FreeBSD'"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:output type="html" encoding="iso-8859-1"/>
<xsl:template match="news">
<html>
<xsl:copy-of select="$header1"/>
<body xsl:use-attribute-sets="att.body">
<xsl:copy-of select="$header2"/>
<!-- Notice how entity references in SGML become variable references
in the stylesheet, and that the syntax for referring to variables
inside an attribute is "{$variable}".
This is just dis-similar enough to Perl and the shell that you
end up writing ${variable} all the time, and then scratch your
head wondering why the stylesheet isn't working.-->
<!-- Also notice that because this is now XML and not SGML, empty
elements, like IMG, must have a trailing "/" just inside the
closing angle bracket, like this " ... />" -->
<img src="{$base}/gifs/news.jpg" align="right" border="0" width="193"
height="144" alt="Nouvelles FreeBSD"/>
<p>FreeBSD est un syst&#232;me d'exploitation en constante &#233;volution. Se tenir inform&#233;
des derniers d&#233;veloppements peut devenir une corv&#233;e ! Pour rester &#224; jour,
consultez cette page r&#233;guli&#232;rement. Vous pouvez &#233;galement
vous inscrire &#224; la liste de diffusion
<a href="{$base}/doc/en_US.ISO8859-1/books/handbook/eresources.html#ERESOURCES-MAIL">freebsd-announce</a>.</p>
<p>Les projets suivants ont leurs propres pages de nouvelles, vous pouvez les consulter
pour les mises &#224; jour sp&#233;cifiques &#224; ces projets.</p>
<ul>
<li><a href="{$base}/java/newsflash.html">Java sur FreeBSD</a></li>
<li><a href="http://freebsd.kde.org/">KDE sur FreeBSD</a></li>
<li><a href="{$base}/gnome/newsflash.html">GNOME sur FreeBSD</a></li>
</ul>
<p>Pour une description d&#233;taill&#233;e des versions pass&#233;es, pr&#233;sentes et futures,
consultez la page <strong><a href="{$base}/releases/index.html">d'information
sur les versions</a></strong>.</p>
<p>Pour les avis de s&#233;curit&#233; concernant FreeBSD, veuillez consulter la page
<a href="{$base}/security/#adv">d'information sur la s&#233;curit&#233;</a>.</p>
<xsl:apply-templates select="descendant::month"/>
<p>Anciennes annonces :
<a href="2001/index.html">2001</a>,
<a href="2000/index.html">2000</a>,
<a href="1999/index.html">1999</a>,
<a href="1998/index.html">1998</a>,
<a href="1997/index.html">1997</a>,
<a href="1996/index.html">1996</a></p>
<xsl:copy-of select="$newshome"/>
<xsl:copy-of select="$footer"/>
</body>
</html>
</xsl:template>
<!-- Everything that follows are templates for the rest of the content -->
<xsl:template match="month">
<h1><xsl:value-of select="name"/>
<xsl:text> </xsl:text>
<xsl:value-of select="ancestor::year/name"/></h1>
<ul>
<xsl:apply-templates select="descendant::day"/>
</ul>
</xsl:template>
<xsl:template match="day">
<xsl:apply-templates select="event"/>
</xsl:template>
<xsl:template match="event">
<li><p><a>
<xsl:attribute name="name">
<xsl:call-template name="generate-event-anchor"/>
</xsl:attribute>
</a>
<b><xsl:value-of select="ancestor::day/name"/>
<xsl:text> </xsl:text>
<xsl:value-of select="ancestor::month/name"/>,
<xsl:value-of select="ancestor::year/name"/>:</b><xsl:text> </xsl:text>
<xsl:apply-templates select="p"/>
</p>
</li>
</xsl:template>
<xsl:template match="date"/> <!-- Deliberately left blank -->
<!-- When the href attribute contains a '$base', expand it to the current
value of the $base variable. -->
<!-- All your $base are belong to us. Ho ho ho -->
<xsl:template match="a">
<a><xsl:attribute name="href">
<xsl:choose>
<xsl:when test="contains(@href, '$base')">
<xsl:value-of select="concat(substring-before(@href, '$base'), $base, substring-after(@href, '$base'))"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@href"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:apply-templates/>
</a>
</xsl:template>
</xsl:stylesheet>

2595
fr/news/press.xml Normal file

File diff suppressed because it is too large Load diff

85
fr/news/press.xsl Normal file
View file

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- $FreeBSD$ -->
<!--
The FreeBSD French Documentation Project
Original revision: 1.3
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
<xsl:import href="../includes.xsl"/>
<xsl:import href="includes.xsl"/>
<xsl:variable name="base" select="'..'"/>
<xsl:variable name="title" select="'FreeBSD dans la Presse'"/>
<xsl:variable name="date">
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
</xsl:variable>
<xsl:output type="html" encoding="iso-8859-1"/>
<xsl:template match="press">
<html>
<xsl:copy-of select="$header1"/>
<body xsl:use-attribute-sets="att.body">
<xsl:copy-of select="$header2"/>
<p>Si vous connaissez d'autres articles &#224; propos de FreeBSD que nous n'avons pas
indiqu&#233;s ici, veuillez envoyer tous les d&#233;tails &#224; l'adresse
<a href="mailto:doc@freebsd.org">doc@FreeBSD.org</a> afin que nous puissions
les ajouter.</p>
<p>Vous pouvez &#233;galement consulter la page <a href="{$base}/java/press.html">FreeBSD/Java
dans la Presse</a> pour des nouvelles sur le projet Java pour FreeBSD</p>
<xsl:apply-templates select="//month"/>
<xsl:copy-of select="$newshome"/>
<xsl:copy-of select="$footer"/>
</body>
</html>
</xsl:template>
<!-- Everything that follows are templates for the rest of the content -->
<xsl:template match="month">
<h1><xsl:value-of select="name"/>
<xsl:text> </xsl:text>
<xsl:value-of select="ancestor::year/name"/></h1>
<ul>
<xsl:apply-templates select="descendant::story"/>
</ul>
</xsl:template>
<xsl:template match="story">
<xsl:variable name="url"><xsl:value-of select="url"/></xsl:variable>
<xsl:variable name="site-url"><xsl:value-of
select="site-url"/></xsl:variable>
<li>
<a>
<xsl:attribute name="name">
<xsl:call-template name="generate-story-anchor"/>
</xsl:attribute>
</a>
<p><a href="{$url}"><b><xsl:value-of
select="name"/></b></a><br/>
<a href="{$site-url}"><xsl:value-of
select="site-name"/></a>, <xsl:value-of select="author"/><br/>
<xsl:copy-of select="p/child::node()"/>
</p>
</li>
</xsl:template>
</xsl:stylesheet>

View file

@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Bulletins d'informations Volume #1 Num&eacute;ro #1</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations Volume #1 Num&eacute;ro #1</FONT></H1><BR CLEAR="ALL">
<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>
<P ALIGN="CENTER"> Bulletins d'informations FreeBSD.<BR>
Des nouvelles du monde FreeBSD.<BR>
Volume #1 Num&eacute;ro #1<BR>
Juin 1998<BR></P>
<P></P>
<UL>
<LI><B>Nouvelles d'ordre g&eacute;n&eacute;ral</B> :<BR>
Jordan Hubbard, Poul-Henning Kamp, Justin Gibbs, Jonathan Bresler,
David Greenman et d'autres responsables du projet FreeBSD assisteront &agrave;
la conf&eacute;rence USENIX.
Venez y assister. Plus d'information &agrave; : <A HREF="http://www.usenix.org/">http://www.usenix.org</A>
du 15 au 19 Juin, New Orleans, Louisiane</LI>
<LI><B>T&eacute;l&eacute;chargez la lettre d'information Volume #2</B> :
<A HREF="ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/newsletter/issue2.pdf">ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/newsletter/issue2.pdf</A></LI>
<LI><B>Webmasters</B> :<BR>
Voyez l'article sur la fa&ccedil;on de r&eacute;partir la charge sur vos serveurs :
<A HREF="http://www.WebTechniques.com/features/1998/05/engelschall/engelschall.shtml">http://www.WebTechniques.com/features/1998/05/engelschall/engelschall.shtml</A></LI>
<LI><B>Gestion du syst&egrave;me de fichiers</B> :<BR>
Une version de d&eacute;veloppement de vinum, un gestionnaire de volume pour FreeBSD, est disponible.
Il permet de r&eacute;partir les volumes sur diff&eacute;rents disques ainsi que d'augmenter la taille des volumes.
Pour plus d'informations voyez : <A HREF="http://www.lemis.com/vinum.html">http://www.lemis.com/vinum.html.</A> </LI>
<LI><B>Portage de FreeBSD sur plateforme Alpha</B> :<BR>
Ce projet semble tr&egrave;s actif r&eacute;cemment.
Des d&eacute;veloppeurs sont activement recherch&eacute;s.
Abonnez vous &agrave; la liste alpha@freebsd.org.
La documentation ainsi que le PALCODE sont disponibles &agrave; :
<A HREF="ftp://ftp.digital.com/pub/Digital/info/semiconductor/literature/dsc-library.html">ftp://ftp.digital.com/pub/Digital/info/semiconductor/literature/dsc-library.html</A></LI>
<LI><B>X Window</B> :<BR>
T&eacute;l&eacute;chargez Enlightenment :
/usr/ports/x11/enlightenment
T&eacute;l&eacute;chargez aussi les th&egrave;mes pour Enlightenment :
<A HREF="http://www.rasterman.com/themes/printthemes.cgi">http://www.rasterman.com/themes/printthemes.cgi</A></LI>
<LI><B>Graphique/Design</B> :<BR>
T&eacute;l&eacute;chargez le paquetage "Blender" de Neo-Geo
<A HREF="ftp://ftp.FreeBSD.org/pub/FreeBSD/2.2.6-RELEASE/commerce/3D/Blender/">ftp://ftp.FreeBSD.org/pub/FreeBSD/2.2.6-RELEASE/commerce/3D/Blender/</A></LI>
<LI><B>Administration syst&egrave;me</B> :<BR>
Un outil d'administration syst&egrave;me, &agrave; travers un navigateur web, pour FreeBSD est disponible.
<A HREF="http://ourworld.compuserve.com/homepages/berend/FreEasy.html">http://ourworld.compuserve.com/homepages/berend/FreEasy.html</A><BR>
Un outil d'administration sous X-Windows est aussi disponible.
<A HREF="http://cam.grad.kiev.ua/~rssh/admin/admin.html">http://cam.grad.kiev.ua/~rssh/admin/admin.html</A> <BR>
Tous les deux fonctionnent correctement mais sont encore au stade de d&eacute;veloppement.</LI>
<LI><B>Installation de FreeBSD</B> :<BR>
Retrouvez un guide d'installation pour d&eacute;butant avec des captures d'&eacute;crans.
Consultez : <A HREF="http://www.vmunix.com/fbsd-book/install.phtml">http://www.vmunix.com/fbsd-book/install.phtml</A></LI>
</UL>
<P></P>
<HR>
Ceci est un bulletin d'information (au moins) mensuel, publi&eacute; uniquement par E-mail.
Les archives sont disponibles sur :
<A HREF="qnewsletter.html">http://www.FreeBSD.org/news/qnewsletter.html</A>
<P>Si vous souhaitez nous communiquer des informations pour la prochaine &eacute;dition,
veuillez envoyer un e-mail &agrave; <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
<P></P>
<P ALIGN="CENTER"> -Chris Coleman &lt;chrisc@vmunix.com&gt;</P>
<P></P>
<A HREF="news.html">Accueil Nouvelles</A>
| <A HREF="qnewsletter.html">Accueil Bulletins d'informations</A>
| <A HREF="qnewsletter-1-2.html">Bulletin suivant</A>
<HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
Copyright &copy; 1995-2000 Le Projet FreeBSD.
Tous droits r&eacute;serv&eacute;s. <BR>Derni&egrave;re modification : 2000/06/15 01:30:04</ADDRESS></BODY>
</HTML>

View file

@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Bulletins d'informations Volume #1 Num&eacute;ro #2</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations Volume #1 Num&eacute;ro #2</FONT></H1><BR CLEAR="ALL">
<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>
<P ALIGN="CENTER"> Bulletins d'informations FreeBSD.<BR>
Des nouvelles du monde FreeBSD.<BR>
Volume #1 Num&eacute;ro #2<BR>
Juillet 1998<BR></P>
<P></P>
<UL>
<LI><B>Nouvelles d'ordre g&eacute;n&eacute;ral :</B>
A l'intention des utilisateurs et des administrateurs des sites mirroirs CVSup. Si vous ne l'avez pas
encore fait, vous devez mettre &agrave; jour votre version de CVSup en version 15.4.
CVSup est disponible &agrave; <A HREF="ftp://ftp.FreeBSD.org/pub/FreeBSD/development/CVSup/">ftp://ftp.FreeBSD.org/pub/FreeBSD/developmen/CVSup/</A></LI>
<LI><B>T&eacute;l&eacute;chargez la lettre d'information Volume #2</B> :
<A HREF="ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/newsletter/issue2.pdf">ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/newsletter/issue2.pdf</A></LI>
<LI><B>Bande passante IP :</B>
ipltd - Un d&eacute;mon de gestion/limitation de bande passante IP vient de sortir.
Vous le trouverez &agrave; <A HREF="ftp://ftp.FreeBSD.org/pub/FreeBSD/incoming/ipltd_v2.01.tgz">ftp://ftp.FreeBSD.org/pub/FreeBSD/incoming/ipltd_v2.01.tgz</A></LI>
<LI><B>Freebsd-Advocacy :</B>
Demandez &agrave; votre biblioth&egrave;que universitaire de commander le
dernier livre de Greg Lehey.
"The Complete FreeBSD", deuxi&egrave;me &eacute;dition,
publi&eacute; par Walnut Creek CDROM. ISBN 1-57176-216-7
(<A HREF="http://www.cdrom.com/titles/os/bsdbook2.htm">http://www.cdrom.com/titles/os/bsdbook2.htm</A>)</LI>
<LI><B>Participez au sondage sur les logiciels libres.</B>
<A HREF="http://www.sun.com/sunworldonline/swol-06-1998/swol-06-readersurvey.html">http://www.sun.com/sunworldonline/swol-06-1998/swol-06-readersurvey.html</A></LI>
<LI><B>FreeBSD &agrave; Hollywood</B>
Allez voir ces sites fonctionnant sous FreeBSD/Apache :
<A HREF="http://www.volcano.com/">http://www.volcano.com</A>,
<A HREF="http://www.romeoandjuliet.com/">http://www.romeoandjuliet.com</A>,
<A HREF="http://www.speed2-cruisecontrol.com/">http://www.speed2-cruisecontrol.com</A>
Ils sont h&eacute;berg&eacute;s par <A HREF="http://www.gisolutions.com/">http://www.gisolutions.com</A></LI>
<LI><B>S&eacute;curit&eacute; sous FreeBSD</B>
Avez vous lu l'article sur la s&eacute;curit&eacute; et FreeBSD ?
<A HREF="http://www.samag.com/archive/0705/feature.html">http://www.samag.com/archive/0705/feature.html</A></LI>
<LI><B>Syst&egrave;me d'authentification et d'autorisation exp&eacute;rimental</B>
De nouvelles extensions pour le noyau FreeBSD viennent de sortir
<A HREF="http://www.watson.org/fbsd-hardening/tokens/">http://www.watson.org/fbsd-hardening/tokens/</A></LI>
<LI><B>Le concours du plus beau bureau !</B>
<A HREF="http://www.FreeBSD.org/~xcontest/">http://www.FreeBSD.org/~xcontest</A> Vous pouvez gagner des prix fabuleux !</LI>
<LI><B>La version 4.6.0 du syst&egrave;me de fichiers distribu&eacute;s "Coda" vient de sortir</B>
"Coda" est un syst&egrave;me avanc&eacute; de fichiers distribu&eacute;s comportant des caract&eacute;ristiques
comme la r&eacute;plication de serveurs et les op&eacute;rations "off-line" pour les portables
<A HREF="http://www.coda.cs.cmu.edu/">http://www.coda.cs.cmu.edu</A></LI>
<LI><B>Vous avez besoin d'aide pour poser une question sur FreeBSD ?</B>
<A HREF="http://www.aei.ca/~malartre/how-to-ask-en.html">http://www.aei.ca/~malartre/how-to-ask-en.html</A> (English)
<A HREF="http://www.aei.ca/~malartre/how-to-ask-fr.html">http://www.aei.ca/~malartre/how-to-ask-fr.html</A> (French)</LI>
</UL>
<P></P>
<HR>
Ceci est un bulletin d'information (au moins) mensuel, publi&eacute; uniquement par E-mail.
Les archives sont disponibles sur :
<A HREF="qnewsletter.html">http://www.FreeBSD.org/news/qnewsletter.html</A>
<P>Si vous souhaitez nous communiquer des informations pour la prochaine &eacute;dition,
veuillez envoyer un e-mail &agrave; <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
<P></P>
<P ALIGN="CENTER"> -Chris Coleman &lt;chrisc@vmunix.com&gt;</P>
<P></P>
<A HREF="news.html">Accueil Nouvelles</A>
| <A HREF="qnewsletter.html">Accueil Bulletins d'informations</A>
<BR><A HREF="qnewsletter-1-1.html">Bulletin pr&eacute;c&eacute;dent</A> |
<A HREF="qnewsletter-1-3.html">Bulletin suivant</A>
<HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
Copyright &copy; 1995-2000 Le Projet FreeBSD.
Tous droits r&eacute;serv&eacute;s. <BR>Derni&egrave;re modification : 2000/06/15 01:30:04</ADDRESS></BODY>
</HTML>

View file

@ -0,0 +1,112 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Bulletins d'informations Volume #1 Num&eacute;ro #3</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations Volume #1 Num&eacute;ro #3</FONT></H1><BR CLEAR="ALL">
<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>
<P ALIGN="CENTER"> Bulletins d'informations FreeBSD.<BR>
Des nouvelles du monde FreeBSD.<BR>
Volume #1 Num&eacute;ro #3<BR>
Juillet 1998<BR></P>
<P></P>
<UL>
<LI><B>Nouvelles d'ordre g&eacute;n&eacute;ral :</B>
La version 15.4.2 de CVSup, l'outil de distribution r&eacute;seau des sources
CVS, vient de sortir
<A HREF="ftp://ftp.FreeBSD.org/pub/FreeBSD/CVSup/">ftp://ftp.FreeBSD.org/pub/FreeBSD/CVSup/</A>
<P></P></LI>
<LI><B>Quelques informations sur les versions de FreeBSD :</B>
La derni&egrave;re version est la version 2.2.6-RELEASE. La version 2.2.7
est pr&eacute;vue pour le 21 Juillet. La version 3.0 est pr&eacute;vue pour
le 15 octobre.
<P></P></LI>
<LI><B>Extension Microsoft Front Page :</B>
Front Page ne fonctionnera pas sans les extensions Front Page.
<A HREF="http://dailynews.yahoo.com/headlines/technology/wired/story.html?s=z/reuters">http://dailynews.yahoo.com/headlines/technology/wired/story.html?s=z/reuters</A>
/980707/wired/stories/microsoft_1.html (en une seule ligne)
Les extensions Front Page sont disponibles &agrave; :
<A HREF="http://www.rtr.com/fpsupport/SERK/default.htm">http://www.rtr.com/fpsupport/SERK/default.htm</A>
<A HREF="http://www.rtr.com/fpsupport/fp98license.htm">http://www.rtr.com/fpsupport/fp98license.htm</A>
<P></P></LI>
<LI><B>FreeBSD-Advocacy :</B>
<A HREF="http://editorials.freshmeat.net/jordan980713/">http://editorials.freshmeat.net/jordan980713/</A>
<P></P></LI>
<LI><B>Le concours du plus beau bureau !</B>
<A HREF="http://www.FreeBSD.org/~xcontest/">http://www.FreeBSD.org/~xcontest</A> Vous pouvez gagner des prix fabuleux !
<P></P></LI>
<LI><B>Nouveaux produits commerciaux pour FreeBSD :</B>
FunnelWeb 2.0:
Article : <A HREF="http://biz.yahoo.com/bw/980707/active_con_1.html">http://biz.yahoo.com/bw/980707/active_con_1.html</A>
Site web : <A HREF="http://www.activeconcepts.com/">http://www.activeconcepts.com</A><P>
SOLID SERVER :
SOLID Server est un v&eacute;ritable serveur de bases de donn&eacute;es pour les
applications critiques.
<A HREF="http://www.solidtech.com/market/products/">http://www.solidtech.com/market/products/</A></P>
<P></P></LI>
<LI><B>FreeBSD HOW-TO :</B>
Comment installer un serveur Intranet avec FreeBSD
<A HREF="http://www1.tpgi.com.au/users/eirvine/freebsd/hermione.html">http://www1.tpgi.com.au/users/eirvine/freebsd/hermione.html</A>
<P>
Manual de instalacion de FreeBSD
<A HREF="http://www.es.FreeBSD.org/es/docs/instalacion/index.htm">http://www.es.FreeBSD.org/es/docs/instalacion/index.htm</A></P>
<P></P></LI>
<LI><B>Projet de portage de FreeBSD sur plate-forme Sparc :</B>
Les manuels de programmation pour les processeurs sun4m et sun4u sont disponibles en ligne.
<A HREF="http://www.sun.com/microelectronics/table.html">http://www.sun.com/microelectronics/table.html</A><BR>
Les manuels utilisateurs d&eacute;crivant les fonctionnalit&eacute;s sp&eacute;cifiques &agrave; l'architecture UltraSPARC se trouvent ici
<A HREF="http://www.sun.com/microelectronics/UltraSPARC-I/">http://www.sun.com/microelectronics/UltraSPARC-I/</A><BR>
<P></P></LI>
<LI><B>Portage de FreeBSD sur plateforme Alpha :</B>
<A HREF="../alpha/alpha.html">http://www.FreeBSD.org/alpha/alpha.html</A>
<P></P></LI>
<LI><B>Logiciels RAID et FreeBSD :</B>
La quatri&egrave;me version alpha de vinum est disponible en t&eacute;l&eacute;chargement &agrave;
<A HREF="ftp://ftp.lemis.com/pub/vinum/vinumdist-11Jul.tar.gz">ftp://ftp.lemis.com/pub/vinum/vinumdist-11Jul.tar.gz</A>
<P></P></LI>
<LI><B>Les nouvelles en ligne sur FreeBSD.</B>
<A HREF="http://freebsd-online.ml.org/">http://freebsd-online.ml.org/</A></LI>
</UL>
<P></P>
<HR>
Ceci est un bulletin d'information (au moins) mensuel, publi&eacute; uniquement par E-mail.
Les archives sont disponibles sur :
<A HREF="qnewsletter.html">http://www.FreeBSD.org/news/qnewsletter.html</A>
<P>Si vous souhaitez nous communiquer des informations pour la prochaine &eacute;dition,
veuillez envoyer un e-mail &agrave; <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
<P></P>
<P ALIGN="CENTER"> -Chris Coleman &lt;chrisc@vmunix.com&gt;</P>
<P></P>
<A HREF="news.html">Accueil Nouvelles</A>
| <A HREF="qnewsletter.html">Accueil Bulletins d'informations</A>
<BR><A HREF="qnewsletter-1-2.html">Bulletin pr&eacute;c&eacute;dent</A> |
<A HREF="qnewsletter-1-4.html">Bulletin suivant</A>
<HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
Copyright &copy; 1995-2000 Le Projet FreeBSD.
Tous droits r&eacute;serv&eacute;s. <BR>Derni&egrave;re modification : 2000/06/15 01:30:04</ADDRESS></BODY>
</HTML>

View file

@ -0,0 +1,118 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Bulletins d'informations Volume #1 Num&eacute;ro #4</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations Volume #1 Num&eacute;ro #4</FONT></H1><BR CLEAR="ALL">
<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>
<P ALIGN="CENTER"> Bulletins d'informations FreeBSD.<BR>
Des nouvelles du monde FreeBSD.<BR>
Volume #1 Num&eacute;ro #4<BR>
Ao&ucirc;t 1998<BR></P>
<P></P>
<UL>
<LI><B>Quelques informations sur les versions de FreeBSD :</B>
La derni&egrave;re version de FreeBSD est la 2.2.7-RELEASE. FreeBSD 2.2.8 est
pr&eacute;vu pour le 15 novembre. FreeBSD 3.0 est pr&eacute;vu pour
le 15 octobre.
<P></P></LI>
<LI><B>Annonce : OpenLDAP :</B>
Le project OpenLDAP est heureux de vous annoncer la disponibilit&eacute; de
la version 1.0 de OpenLDAP.
Ce logiciel est disponible en t&eacute;l&eacute;chargement &agrave; :
<A HREF="http://www.OpenLDAP.org/download.html">http://www.OpenLDAP.org/download.html</A>
ou par acc&egrave;s CVS anonyme &agrave; :
<A HREF="http://www.OpenLDAP.org/repo.html">http://www.OpenLDAP.org/repo.html</A>
<P></P></LI>
<LI><B>PicoBSD</B>:
PicoBSD 0.4 est disponible !
<A HREF="http://www.FreeBSD.org/~picobsd/">http://www.FreeBSD.org/~picobsd/</A>
Pour le t&eacute;l&eacute;charger :
<A HREF="http://www.FreeBSD.org/~picobsd/picobsd/">http://www.FreeBSD.org/~picobsd/picobsd/</A>
<P></P></LI>
<LI><B>FreeBSD-Advocacy :</B>
Walnut Creek contre Microsoft.
<A HREF="http://www.crl.com/wccdromrcd.html">http://www.crl.com/wccdromrcd.html</A>
<P></P></LI>
<LI><B>FreeBSD : solide comme un roc.</B>
<A HREF="http://www.zdnet.co.uk/athome/misc/toot/output/57.html">http://www.zdnet.co.uk/athome/misc/toot/output/57.html</A>
<P></P></LI>
<LI><B>Daemon News : le magazine &eacute;lectronique des BSD</B>
Les fans de BSD ont leur magazine. Rejoignez les pour &eacute;crire un article
ou tenir une rubrique.
<A HREF="http://ezine.FreeBSD.org/">http://ezine.FreeBSD.org</A>
La premi&egrave;re &eacute;dition sera disponible le 1er Septembre !!!! Voyez &agrave; :
<A HREF="http://www.daemonnews.org/">http://www.daemonnews.org</A>
<P></P></LI>
<LI><B>Produits commerciaux : </B>
"Citadel", un coupe-feu ("firewall") et routeur VPN
bas&eacute; sur FreeBSD. Plus de d&eacute;tails &agrave;
<A HREF="http://www.cdsec.com/">http://www.cdsec.com</A>
<P></P></LI>
<LI><B>Equalizer V2.0 :</B>
Equalizer est un outil de r&eacute;partition de charge et de gestion de cluster.
<A HREF="http://www.coyotepoint.com/cp_products.shtml">http://www.coyotepoint.com/cp_products.shtml</A>
<P></P></LI>
<LI><B>FreeQualizer V2.0-b4 :</B>
FreeQualizer est une version de d&eacute;veloppement gratuite de Equalizer pour FreeBSD 2.2.6
<A HREF="http://www.coyotepoint.com/freequalizer.shtml">http://www.coyotepoint.com/freequalizer.shtml</A>
<P></P></LI>
<LI><B>FreeBSD HOW-TO :</B>
En portugais :
<A HREF="http://www.geocities.com/SiliconValley/Sector/8050/">http://www.geocities.com/SiliconValley/Sector/8050/</A>
<P></P></LI>
<LI><B>FreeBSD pour les utilisateurs Linux :</B>
<A HREF="http://freebsd.stanford.edu/FreeBSD/linux.html">http://freebsd.stanford.edu/FreeBSD/linux.html</A>
<P></P></LI>
<LI><B>La s&eacute;curit&eacute; sous FreeBSD :</B>
<A HREF="http://www.best.com/~jkb/howto.txt">http://www.best.com/~jkb/howto.txt</A>
<P></P></LI>
<LI><B>Les pages de ressources sur UNIX :</B>
La page d'index des ressources pour UNIX :
<A HREF="http://unix.cyberscript.net/">http://unix.cyberscript.net/</A>
FreeBSD-Online : (Son addresse a chang&eacute; !!! Voici la nouvelle adresse.)
<A HREF="http://freebsd.unixhelp.org/">http://freebsd.unixhelp.org/</A>
<P></P></LI>
</UL>
<P></P>
<HR>
Ceci est un bulletin d'information (au moins) mensuel, publi&eacute; uniquement par E-mail.
Les archives sont disponibles sur :
<A HREF="qnewsletter.html">http://www.FreeBSD.org/news/qnewsletter.html</A>
<P>Si vous souhaitez nous communiquer des informations pour la prochaine &eacute;dition,
veuillez envoyer un e-mail &agrave; <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
<P></P>
<P ALIGN="CENTER"> -Chris Coleman &lt;chrisc@vmunix.com&gt;</P>
<P></P>
<A HREF="news.html">Accueil Nouvelles</A>
| <A HREF="qnewsletter.html">Accueil Bulletins d'informations</A>
| <A HREF="qnewsletter-1-3.html">Bulletin pr&eacute;c&eacute;dent</A>
| <A HREF="qnewsletter-1-5.html">Bulletin suivant</A>
<HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
Copyright &copy; 1995-2000 Le Projet FreeBSD.
Tous droits r&eacute;serv&eacute;s. <BR>Derni&egrave;re modification : 2000/04/04 09:41:50</ADDRESS></BODY>
</HTML>

View file

@ -0,0 +1,114 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Bulletins d'informations Volume #1 Num&eacute;ro #5</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations Volume #1 Num&eacute;ro #5</FONT></H1><BR CLEAR="ALL">
<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>
<P ALIGN="CENTER"> Bulletins d'informations FreeBSD.<BR>
Des nouvelles du monde FreeBSD.<BR>
Volume #1 Num&eacute;ro #5<BR>
Septembre 1998<BR></P>
<P></P>
<UL>
<LI><B>Informations sur les versions de FreeBSD</B> :
La derni&egrave;re version est la 2.2.7-RELEASE. FreeBSD 2.2.8 est
pr&eacute;vu pour le 30 Novembre. FreeBSD 3.0 est pr&eacute;vu pour le
15 Octobre. Commencez les b&eacute;ta tests !!!
<P></P></LI>
<LI><B>Article sur FreeBSD</B> :
<A HREF="http://www.zdnet.com/sr/stories/issue/0,4537,349576,00.html ">http://www.zdnet.com/sr/stories/issue/0,4537,349576,00.html </A>
<P></P></LI>
<LI><B>Am&eacute;liorations r&eacute;centes</B> :
CAM ("Common Access Method"), couche SCSI impl&eacute;ment&eacute;e dans la version 3.0-Current.<BR>
Perl5 est d&eacute;sormais inclu en standard dans la version 3.0-Current<BR>
Support des disques durs IDE d'une capacit&eacute; sup&eacute;rieure &agrave; 8 Go dans la version 2.2<BR>
La version 3.0-CURRENT est maintenant en ELF !<BR>
FreeBSD pour Alpha est d&eacute;sormais autonome - le noyau et le "make world" fonctionnent !<BR>
<P></P></LI>
<LI><B>Nouvelle version du JDK pour FreeBSD</B> :
Toutes les informations concernant son t&eacute;l&eacute;chargement sont sur :
<A HREF="http://www.FreeBSD.org/java/">http://www.FreeBSD.org/java</A>
<P></P></LI>
<LI><B>Interface Uniformis&eacute;e pour les Pilotes de p&eacute;riph&eacute;riques ("Uniform Driver Interface" - UDI)</B> :
<A HREF="http://www.sco.com/udi/">http://www.sco.com/udi</A>
<A HREF="ftp://ftp.cup.hp.com/pub/hp_stds/udi/docs.html">ftp://ftp.cup.hp.com/pub/hp_stds/udi/docs.html</A>
<A HREF="http://www.infoworld.com/cgi-bin/displayStory.pl?980916.ecminer.htm">http://www.infoworld.com/cgi-bin/displayStory.pl?980916.ecminer.htm</A>
<A HREF="http://www.intel.com/pressroom/archive/releases/Cn091698.htm">http://www.intel.com/pressroom/archive/releases/Cn091698.htm</A>
<A HREF="ftp://ftp.cup.hp.com/pub/hp_stds/udi/Postscript/rules.ps.Z">ftp://ftp.cup.hp.com/pub/hp_stds/udi/Postscript/rules.ps.Z</A>
<P></P></LI>
<LI><B>Pilote pour carte Ethernet RealTek 8139</B> : des testeurs sont demand&eacute;s.
<A HREF="http://www.FreeBSD.org/~wpaul/RealTek/3.0/">http://www.FreeBSD.org/~wpaul/RealTek/3.0</A> source pour FreeBSD 3.0
<A HREF="http://www.FreeBSD.org/~wpaul/RealTek/2.2/">http://www.FreeBSD.org/~wpaul/RealTek/2.2</A> source pour FreeBSD 2.2.x
R&eacute;pondre &agrave; : wpaul@skynet.ctr.columbia.edu.
<P></P></LI>
<LI><B>ThunderLAN Ethernet driver</B> (popular in Compaq machines) : Testers Wanted.
<A HREF="http://www.FreeBSD.org/~wpaul/ThunderLAN/3.0/">http://www.FreeBSD.org/~wpaul/ThunderLAN/3.0</A> source for FreeBSD 3.0
<A HREF="http://www.FreeBSD.org/~wpaul/ThunderLAN/2.2/">http://www.FreeBSD.org/~wpaul/ThunderLAN/2.2</A> source for FreeBSD 2.2.x
Reply to: wpaul@skynet.ctr.columbia.edu.
<P></P></LI>
<LI><B>Produits commerciaux pour FreeBSD</B> :
Emerging Technologies, Inc.
Cartes ISA et PCI "Sync" pour FreeBSD
<A HREF="http://www.etinc.com/">http://www.etinc.com</A>
Gestionnaire de bande passante
<A HREF="http://www.etinc.com/bwmgr.htm">http://www.etinc.com/bwmgr.htm</A><BR>
Acadix Software Systems :
APE est un environnement de d&eacute;veloppement int&eacute;gr&eacute; pour Unix avec colorisation de la syntaxe, qui
est ind&eacute;pendant du langage utilis&eacute; et ind&eacute;pendant du type de terminal.
<A HREF="http://www.execpc.com/~acadix/">http://www.execpc.com/~acadix</A>
<P></P></LI>
<LI><B>Magazine en ligne sur les syst&egrave;mes BSD : "Daemon News"</B> !
N'oubliez pas de consulter le magazine en ligne sur les syst&egrave;mes BSD r&eacute;alis&eacute; par de nombreux
membres de la communaut&eacute; FreeBSD. Les articles doivent &ecirc;tre envoy&eacute;s avant le 15 de chaque mois
et sont publi&eacute;s le 1er du mois suivant. Tous les auteurs sont les bienvenus.
<A HREF="http://www.daemonnews.org/">http://www.daemonnews.org/</A>
<P></P></LI>
<LI><B>Citation</B> :
Si vous pointez un pistolet en direction de votre pied et que vous appuyez sur la d&eacute;tente, c'est le travail
du syst&egrave;me UNIX d'assurer une livraison fiable de la balle &agrave; l'endroit o&ugrave; vous avez point&eacute; le
pistolet (dans le cas pr&eacute;sent, Monsieur Pied). (Terry)
<P></P></LI>
</UL>
<P></P>
<HR>
Ceci est un bulletin d'information (au moins) mensuel, publi&eacute; uniquement par E-mail.
Les archives sont disponibles sur :
<A HREF="qnewsletter.html">http://www.FreeBSD.org/news/qnewsletter.html</A>
<P>Si vous souhaitez nous communiquer des informations pour la prochaine &eacute;dition,
veuillez envoyer un e-mail &agrave; <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
<P></P>
<P ALIGN="CENTER"> -Chris Coleman &lt;chrisc@vmunix.com&gt;</P>
<P></P>
<A HREF="news.html">Accueil Nouvelles</A>
| <A HREF="qnewsletter.html">Accueil Bulletins d'informations</A>
| <A HREF="qnewsletter-1-4.html">Bulletin pr&eacute;c&eacute;dent</A>
| <A HREF="qnewsletter-1-6.html">Bulletin suivant</A>
<HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
Copyright &copy; 1995-2000 Le Projet FreeBSD.
Tous droits r&eacute;serv&eacute;s. <BR>Derni&egrave;re modification : 2000/06/15 01:30:04</ADDRESS></BODY>
</HTML>

View file

@ -0,0 +1,91 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Bulletins d'informations Volume #1 Num&eacute;ro #6</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations Volume #1 Num&eacute;ro #6</FONT></H1><BR CLEAR="ALL">
<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>
<P ALIGN="CENTER"> Bulletins d'informations FreeBSD.<BR>
Des nouvelles du monde FreeBSD.<BR>
Volume #1 Num&eacute;ro #6<BR>
Octobre 1998<BR></P>
<P></P>
<UL>
<LI><B>Informations sur les versions de FreeBSD</B> : FreeBSD 3.0-RELEASE est sorti ! :-) Commandez
votre copie d&egrave;s aujourd'hui sur : <A HREF="http://www.cdrom.com/">http://www.cdrom.com</A>
La version stable est actuellement la 2.2.7-RELEASE, FreeBSD 2.2.8 est
pr&eacute;vu pour le 30 Novembre.<P></P></LI>
<LI><B>Nouvelles sur FreeBSD</B> : le 24 Octobre 1998, ftp.freebsd.org (c'est
&agrave; dire ftp.cdrom.com), un P6/200 avec un 1Go de RAM et un demi Teraoctets de disques en
RAID-5, a servi 724Go de donn&eacute;es en une seule journ&eacute;e &eacute;tablissant ainsi un nouveau record. Vous
pouvez voir le pr&eacute;c&eacute;dent record sur : <A HREF="http://www.crl.com/wccdromrcd.html">http://www.crl.com/wccdromrcd.html</A>
<P></P></LI>
<LI><B>FreeBSD Advocacy</B>:
<BR>
<A HREF="http://www.unix-vs-nt.org/">http://www.unix-vs-nt.org/</A>,<BR>
<A HREF="http://www.dvl-software.com/freebsd/">http://www.dvl-software.com/freebsd/</A>, <BR>
<A HREF="http://www.cnet.com/Content/Reviews/Compare/AltOS/ss04.html">http://www.cnet.com/Content/Reviews/Compare/AltOS/ss04.html</A>, <BR>
<A HREF="http://www.irish-times.com/irish%2Dtimes/paper/1998/1012/cmp2.html">http://www.irish-times.com/irish%2Dtimes/paper/1998/1012/cmp2.html</A>
<P></P></LI>
<LI><B>Base de donn&eacute;es sur les diff&eacute;rentes versions de FreeBSD</B> : <A HREF="http://www.itworks.com.au/~gavin/FBSDsites.php3">http://www.itworks.com.au/~gavin/FBSDsites.php3</A>
<P></P></LI>
<LI><B>Produits commerciaux pour FreeBSD</B> : vous pouvez allez regarder sur
Zeus (<A HREF="http://www.zeus.co.uk/">http://www.zeus.co.uk/</A>).
Tous leurs serveurs sont disponibles pour FreeBSD
<P></P></LI>
<LI><B>Tony Ballardie et les laboratoires BT, Royaume-Uni</B> sont heureux de
vous annoncer la disponibilit&eacute; en version alpha du code source du d&eacute;mon de routage multicast
"cbtd" ("Core Based Trees") ainsi que les patches pour les noyaux de
FreeBSD 2.2.[67]. L'adresse FTP est <A HREF="ftp://ftp.labs.bt.com/Internet-Research/cbt-2.0.tar.gz">ftp://ftp.labs.bt.com/Internet-Research/cbt-2.0.tar.gz</A>
Vous pouvez envoyer vos commentaires &agrave; : graeme.brown@bt-sys.bt.co.uk,
ballardie@dial.pipex.com <P></P></LI>
<LI><B>Magazine en ligne sur les syst&egrave;mes BSD</B> : Le magazine "DaemonNews" a besoin de volontaires pour
mettre en forme le texte des articles en HTML. E-mail : <A HREF="mailto:editors@daemonnews.org">editors@daemonnews.org</A>,
Articles : <A HREF="mailto:article@daemonnews.org">article@daemonnews.org</A>
<P></P></LI>
<LI><B>De l'argent pour les projets de logiciels libres</B> : Le "Free Software
Bazaar" sur <A HREF="http://visar.csustan.edu/bazaar/">http://visar.csustan.edu/bazaar/</A>
donne la possibilit&eacute; de contribuer financi&egrave;rement &agrave; des projets de logiciels libres.<P></P></LI>
</UL>
<P></P>
<HR>
Ceci est un bulletin d'information (au moins) mensuel, publi&eacute; uniquement par E-mail.
Les archives sont disponibles sur :
<A HREF="qnewsletter.html">http://www.FreeBSD.org/news/qnewsletter.html</A>
<P>Si vous souhaitez nous communiquer des informations pour la prochaine &eacute;dition,
veuillez envoyer un e-mail &agrave; <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
<P></P>
<P ALIGN="CENTER"> -Chris Coleman &lt;chrisc@vmunix.com&gt;</P>
<P></P>
<A HREF="news.html">Accueil Nouvelles</A>
| <A HREF="qnewsletter.html">Accueil Bulletins d'informations</A>
| <A HREF="qnewsletter-1-5.html">Bulletin pr&eacute;c&eacute;dent</A>
| <A HREF="qnewsletter-1-7.html">Bulletin suivant</A>
<HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
Copyright &copy; 1995-2000 Le Projet FreeBSD.
Tous droits r&eacute;serv&eacute;s. <BR>Derni&egrave;re modification : 2000/06/15 01:30:04</ADDRESS></BODY>
</HTML>

View file

@ -0,0 +1,84 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Bulletins d'informations Volume #1 Num&eacute;ro #7</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations Volume #1 Num&eacute;ro #7</FONT></H1><BR CLEAR="ALL">
<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>
<P ALIGN="CENTER"> Bulletins d'informations FreeBSD.<BR>
Des nouvelles du monde FreeBSD.<BR>
Volume #1 Num&eacute;ro #7<BR>
Novembre 1998<BR></P>
<P></P>
<UL>
<LI><B>Informations sur les versions de FreeBSD :</B>
FreeBSD 2.2.8 est d&egrave;s maintenant disponible.
FreeBSD 3.0 est toujours disponible &agrave; l'achat.
<A HREF="http://www.cdrom.com/">http://www.cdrom.com/</A>
<P></P></LI>
<LI><B>Nouvelles sur FreeBSD :</B>
Les BSD largement utilis&eacute; en tant que serveurs Web et autres.
<A HREF="http://www.hzo.cubenet.de/ioscount/">http://www.hzo.cubenet.de/ioscount/</A>
<P></P></LI>
<LI>FreeBSD mentionn&eacute; dans le <B>rapport "Comdex".</B>
<A HREF="http://linuxtoday.net/stories/1005.html">http://linuxtoday.net/stories/1005.html</A>
<P></P></LI>
<LI><B>FreeBSD Advocacy :</B>
Une base de ressources simple &agrave; utiliser et avec crit&egrave;res de recherche qui sera
construite avec les informations donn&eacute;es par les utilisateurs :
<A HREF="http://www.freebsdrocks.com/">http://www.freebsdrocks.com/</A>
<P></P></LI>
<LI><B>XFree86-3.3.3</B> est disponible !
<A HREF="http://www.xfree86.org/">http://www.xfree86.org/</A>
<P></P></LI>
<LI><B>Sortie de SANE version 1.0</B>
<A HREF="http://www.mostang.com/sane/">http://www.mostang.com/sane/</A>
<P></P></LI>
<LI><B>Sortie de FreeBSD JDK 1.1.7</B>
<A HREF="http://www.FreeBSD.org/java/">http://www.FreeBSD.org/java/</A>
<P></P></LI>
<LI>N'oubliez pas de lire le dernier num&eacute;ro de <B>"Daemon News"</B>.
<A HREF="http://www.daemonnews.org/">http://www.daemonnews.org/</A>
<P></P></LI>
</UL>
<P></P>
<HR>
Ceci est un bulletin d'information (au moins) mensuel, publi&eacute; uniquement par E-mail.
Les archives sont disponibles sur :
<A HREF="qnewsletter.html">http://www.FreeBSD.org/news/qnewsletter.html</A>
<P>Si vous souhaitez nous communiquer des informations pour la prochaine &eacute;dition,
veuillez envoyer un e-mail &agrave; <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
<P></P>
<P ALIGN="CENTER"> -Chris Coleman &lt;chrisc@vmunix.com&gt;</P>
<P></P>
<A HREF="news.html">Accueil Nouvelles</A>
| <A HREF="qnewsletter.html">Accueil Bulletins d'informations</A>
| <A HREF="qnewsletter-1-6.html">Bulletin pr&eacute;c&eacute;dent</A>
| <A HREF="qnewsletter-2-1.html">Bulletin suivant</A>
<HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
Copyright &copy; 1995-2000 Le Projet FreeBSD.
Tous droits r&eacute;serv&eacute;s. <BR>Derni&egrave;re modification : 2000/06/15 01:30:04</ADDRESS></BODY>
</HTML>

View file

@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Bulletins d'informations Volume #2 Num&eacute;ro #1</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations Volume #2 Num&eacute;ro #1</FONT></H1><BR CLEAR="ALL">
<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>
<P ALIGN="CENTER"> Bulletins d'informations FreeBSD.<BR>
Des nouvelles du monde FreeBSD.<BR>
Volume #2 Num&eacute;ro #1<BR>
Janvier 1999<BR></P>
<P></P>
<UL>
<LI><B>Informations sur les versions de FreeBSD</B> :
FreeBSD 2.2.X est d&eacute;sormais en mode maintenance (il n'y a plus de d&eacute;veloppement actif)<BR>
FreeBSD 3.X est d&eacute;sormais la branche stable avec la version 3.1
pr&eacute;vue pour le 15 F&eacute;vrier 1999.<BR>
FreeBSD 4.0 est d&eacute;sormais la version de d&eacute;veloppement sans aucune date de sortie pr&eacute;vue pour le moment.<BR>
<P></P></LI>
<LI><B>Nouvelles sur FreeBSD</B> :
Greg Lehey a &eacute;crit un article dans "Sunworld".
<A HREF="http://www.sunworld.com/swol-01-1999/swol-01-bsd.html">http://www.sunworld.com/swol-01-1999/swol-01-bsd.html</A><P>
Sean Eric Fagan a &eacute;crit un article dans "LINUX JOURNAL"
<A HREF="http://www.linuxjournal.com/issue57/2515.html">http://www.linuxjournal.com/issue57/2515.html</A></P>
<P></P></LI>
<LI><B>FreeBSD Advocacy</B> :
FreeBSD a d&eacute;sormais son propre magasine en ligne :
<A HREF="http://www.freebsdzine.org">http://www.freebsdzine.org</A>
<P></P></LI>
<LI><B>Liste des Groupes d'Utilisateurs de FreeBSD</B>
<A HREF="http://www.dsinw.com/~hamellr/freebsd/ug.html/">http://www.dsinw.com/~hamellr/freebsd/ug.html/</A>
<P></P></LI>
<LI><B>FreeBSD est cit&eacute; dans</B>
<A HREF="http://helix.nature.com/webmatters/tomog.html">http://helix.nature.com/webmatters/tomog.html</A>
<P></P></LI>
<LI><B>IPsec</B>
Le kit "IPsec" de KAME pour FreeBSD 3.0-RELEASE est disponible.
Ce kit fourni une impl&eacute;mentation de "IPsec" pleinement fonctionnelle pour FreeBSD 3.0-RELEASE.
N'h&eacute;sitez pas &agrave; rapporter les &eacute;ventuels bugs &agrave; l'&eacute;quipe de KAME via la base de bugs GNATS de KAME
(n'utilisez pas le GNAT de FreeBSD). Merci.
<A HREF="ftp://ftp.kame.net/pub/kame/snap/kame-ipsec-19990104-fbsd30-snap.tgz">ftp://ftp.kame.net/pub/kame/snap/kame-ipsec-19990104-fbsd30-snap.tgz</A>
<P></P></LI>
<LI><B>Les guides</B> :
Guide pour les cartes sons
<A HREF="http://www.neosoft.com/~conrads/awepnp-freebsd.txt">http://www.neosoft.com/~conrads/awepnp-freebsd.txt</A>
<P></P></LI>
<LI><B>Le bestiaire BSD</B> :
Le num&eacute;ro de Janvier de "Daemon News" met en vedette un nouveau personnage de bande dessin&eacute;e BSD.
Le num&eacute;ro de F&eacute;vrier mettra en co-vedette un d&eacute;mon f&eacute;minin.
<A HREF="http://www.daemonnews.org/">http://www.daemonnews.org/</A>
<P></P></LI>
</UL>
<P></P>
<HR>
Ceci est un bulletin d'information (au moins) mensuel, publi&eacute; uniquement par E-mail.
Les archives sont disponibles sur :
<A HREF="qnewsletter.html">http://www.FreeBSD.org/news/qnewsletter.html</A>
<P>Si vous souhaitez nous communiquer des informations pour la prochaine &eacute;dition,
veuillez envoyer un e-mail &agrave; <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
<P></P>
<P ALIGN="CENTER"> -Chris Coleman &lt;chrisc@vmunix.com&gt;</P>
<P></P>
<A HREF="news.html">Accueil Nouvelles</A>
| <A HREF="qnewsletter.html">Accueil Bulletins d'informations</A>
| <A HREF="qnewsletter-1-7.html">Bulletin pr&eacute;c&eacute;dent</A>
<A HREF="qnewsletter-2-2.html">Bulletin suivant</A>
<HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
Copyright &copy; 1995-2000 Le Projet FreeBSD.
Tous droits r&eacute;serv&eacute;s. <BR>Derni&egrave;re modification : 2000/06/15 01:30:04</ADDRESS></BODY>
</HTML>

View file

@ -0,0 +1,98 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Bulletins d'informations Volume #2 Num&eacute;ro #2</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations Volume #2 Num&eacute;ro #2</FONT></H1><BR CLEAR="ALL">
<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>
<P ALIGN="CENTER"> Bulletins d'informations FreeBSD.<BR>
Des nouvelles du monde FreeBSD.<BR>
Volume #2 Num&eacute;ro #2<BR>
F&eacute;vrier 1999<BR></P>
<P></P>
<UL>
<LI><B>Informations sur les versions de FreeBSD</B> :
FreeBSD 3.1 est disponible chez Walnut Creek CDROM<BR>
FreeBSD 4.0 est d&eacute;sormais la version de d&eacute;veloppement sans aucune date de sortie pr&eacute;vue pour le moment.<BR>
<P></P></LI>
<LI><B>Nouvelles sur FreeBSD</B> :
<A HREF="http://lwn.net/1999/features/ACInterview/">http://lwn.net/1999/features/ACInterview/</A>
<A HREF="http://advisor.gartner.com/n_inbox/hotcontent/hc_2121999_3.html">http://advisor.gartner.com/n_inbox/hotcontent/hc_2121999_3.html</A>
<P></P></LI>
<LI><B>FreeBSD Advocacy</B> :
Gateway Computers con&ccedil;oit l'id&eacute;e de livrer FreeBSD avec certains de
leurs serveurs. Si vous souhaitez acheter un ordinateur Gateway avec
FreeBSD, contactez :
<PRE> Fritz Fitzgibbons
fitzgfri@gateway.com
425.803.1947
1.877.803.1947 (Toll Free)
</PRE>
et dites lui que vous le contactez de la part de Chris Coleman.
<P></P></LI>
<LI><B>Daemon News</B> :
Les articles peuvent maintenant &ecirc;tre envoy&eacute;s &agrave; l'adresse news@daemonnews.org
Nous recherchons des articles concernant :<P> Les questions li&eacute;es &agrave; la licence BSD (GPL versus Artistic versus BSD)<BR>
La s&eacute;curit&eacute; / la d&eacute;tection des intrusions<BR>
Que faire apr&egrave;s un crash / L'analyse des "core dump"<BR>
Les d&eacute;buts des syst&egrave;mes BSD.</P><P> Si vous &ecirc;tes int&eacute;ress&eacute; pour &eacute;crire un article sur ces sujets, contactez:
editors@daemonnews.org ou envoyez vos articles &agrave; :
article@daemonnews.org</P>
<P></P></LI>
<LI><B>Netware</B>:
Un client FreeBSD pour netware en version b&eacute;ta est disponible
<A HREF="ftp://ftp.butya.kz/pub/nwlib/ncplib.tar.gz">ftp://ftp.butya.kz/pub/nwlib/ncplib.tar.gz</A>
<P></P></LI>
<LI><B>Ressources sur les OS</B> :
Une page web sur les syst&egrave;mes d'exploitation
<A HREF="http://www.skylab.org/~sabre/os/index.html">http://www.skylab.org/~sabre/os/index.html</A>
<P></P></LI>
<LI><B>CVSup</B>:
CVSup 16.0 est disponible :
<A HREF="ftp://ftp.FreeBSD.org/pub/FreeBSD/development/CVSup/">ftp://ftp.FreeBSD.org/pub/FreeBSD/development/CVSup/</A>
<A HREF="http://www.polstra.com/projects/freeware/CVSup/">http://www.polstra.com/projects/freeware/CVSup/</A>
<P></P></LI>
<LI><B>Gestionnaire d'administration syst&egrave;me pour FreeBSD</B> : Version 1.6
<A HREF="http://homepage.esoterica.pt/~jardim/Index.html">http://homepage.esoterica.pt/~jardim/Index.html</A>
<P></P></LI>
</UL>
<P></P>
<HR>
Ceci est un bulletin d'information (au moins) mensuel, publi&eacute; uniquement par E-mail.
Les archives sont disponibles sur :
<A HREF="qnewsletter.html">http://www.FreeBSD.org/news/qnewsletter.html</A>
<P>Si vous souhaitez nous communiquer des informations pour la prochaine &eacute;dition,
veuillez envoyer un e-mail &agrave; <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
<P></P>
<P ALIGN="CENTER"> -Chris Coleman &lt;chrisc@vmunix.com&gt;</P>
<P></P>
<A HREF="news.html">Accueil Nouvelles</A>
| <A HREF="qnewsletter.html">Accueil Bulletins d'informations</A>
| <A HREF="qnewsletter-2-1.html">Bulletin pr&eacute;c&eacute;dent</A>
<HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
Copyright &copy; 1995-2000 Le Projet FreeBSD.
Tous droits r&eacute;serv&eacute;s. <BR>Derni&egrave;re modification : 2000/06/15 01:30:04</ADDRESS></BODY>
</HTML>

64
fr/news/qnewsletter.html Normal file
View file

@ -0,0 +1,64 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Bulletins d'informations FreeBSD</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations FreeBSD</FONT></H1><BR CLEAR="ALL">
<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>
<P>Bulletins d'informations FreeBSD. Nouvelles du monde FreeBSD.</P>
<A NAME="2000"></A>
<H2>2000</H2>
<UL>
<LI><B>Septembre</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0009230128470.758-100000">Septembre 2000</A></LI>
<LI><B>Juillet</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0008080027020.758-100000">Juillet 2000</A></LI>
<LI><B>Juin</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0006201326440.758-100000">Juin 2000</A></LI>
<LI><B>Mai</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0005230125390.758-100000">Mai 2000</A></LI>
<LI><B>F&eacute;vrier</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0002091128370.51970-100000">F&eacute;vrier 2000</A></LI>
<LI><B>Janvier</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.10.10001061641530.13075-100000">Janvier 2000</A></LI>
</UL>
<A NAME="1999"></A>
<H2>1999</H2>
<UL>
<LI><B>Novembre</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.10.9911180000250.3973-100000">Novembre 1999</A></LI>
<LI><B>Septembre</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.10.9909212219200.9410-100000">Septembre 1999</A></LI>
<LI><B>Juin</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.10.9907021037450.5808-100000">Mai - Juin</A></LI>
<LI><B>Avril</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.10.9904180324030.24935-100000">Mars - Avril</A></LI>
<LI><B>F&eacute;vrier</B> <A HREF="qnewsletter-2-2.html">Volume #2 Num&eacute;ro #2</A></LI>
<LI><B>Janvier</B> <A HREF="qnewsletter-2-1.html">Volume #2 Num&eacute;ro #1</A></LI>
</UL>
<A NAME="1998"></A>
<H2>1998</H2>
<UL>
<LI><B>Novembre</B> <A HREF="qnewsletter-1-7.html">Volume #1 Num&eacute;ro #7</A></LI>
<LI><B>Octobre</B> <A HREF="qnewsletter-1-6.html">Volume #1 Num&eacute;ro #6</A></LI>
<LI><B>Septembre</B> <A HREF="qnewsletter-1-5.html">Volume #1 Num&eacute;ro #5</A></LI>
<LI><B>Ao&ucirc;t</B> <A HREF="qnewsletter-1-4.html">Volume #1 Num&eacute;ro #4</A></LI>
<LI><B>Juillet</B> <A HREF="qnewsletter-1-3.html">Volume #1 Num&eacute;ro #3</A></LI>
<LI><B>Juillet</B> <A HREF="qnewsletter-1-2.html">Volume #1 Num&eacute;ro #2</A></LI>
<LI><B>Juin</B> <A HREF="qnewsletter-1-1.html">Volume #1 Num&eacute;ro #1</A></LI>
</UL>
<A HREF="news.html">Accueil Nouvelles</A>
<HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
Copyright &copy; 1995-2000 Le Projet FreeBSD.
Tous droits r&eacute;serv&eacute;s. <BR>Derni&egrave;re modification : 2000/09/23 18:43:37</ADDRESS></BODY>
</HTML>