diff --git a/fr/news/Makefile b/fr/news/Makefile
new file mode 100644
index 0000000000..6aeb4bb189
--- /dev/null
+++ b/fr/news/Makefile
@@ -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"
diff --git a/fr/news/Makefile.inc b/fr/news/Makefile.inc
new file mode 100644
index 0000000000..ae23a589af
--- /dev/null
+++ b/fr/news/Makefile.inc
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+# The FreeBSD French Documentation Project
+# Original revision: 1.2
+
+WEBBASE?=	/data/news
+WEB_PREFIX?=	${.CURDIR}/../../..
diff --git a/fr/news/includes.xsl b/fr/news/includes.xsl
new file mode 100644
index 0000000000..66a8aa4f4a
--- /dev/null
+++ b/fr/news/includes.xsl
@@ -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>
diff --git a/fr/news/news-rdf.xsl b/fr/news/news-rdf.xsl
new file mode 100644
index 0000000000..1585475bcf
--- /dev/null
+++ b/fr/news/news-rdf.xsl
@@ -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>
diff --git a/fr/news/news.xml b/fr/news/news.xml
new file mode 100644
index 0000000000..284e820a17
--- /dev/null
+++ b/fr/news/news.xml
@@ -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>
diff --git a/fr/news/newsflash.xsl b/fr/news/newsflash.xsl
new file mode 100644
index 0000000000..6f20d64482
--- /dev/null
+++ b/fr/news/newsflash.xsl
@@ -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>
diff --git a/fr/news/press.xml b/fr/news/press.xml
new file mode 100644
index 0000000000..3a36aa75bf
--- /dev/null
+++ b/fr/news/press.xml
@@ -0,0 +1,2595 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!-- 
+ COMMITTERS PLEASE NOTE: 
+    News articles referenced in this file are also to be archived under 
+    "freefall:/c/www/bsddocs/press/". 
+-->
+
+<!-- 
+   The FreeBSD French Documentation Project
+   Original revision: 0.0 (traduction incomplete depuis la version originale 1.62)
+   
+   Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
+-->
+
+<press>
+  <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>Octobre</name>
+
+      <story>
+        <name>"Opera Software" sort une version pour FreeBSD</name>
+        <url>http://www.opera.com/pressreleases/en/2002/10/31/b/</url>
+        <site-name>Opera Software</site-name>
+        <site-url>http://www.opera.com/</site-url>
+        <date>31 Octobre 2002</date>
+        <author>Communiqu&#233; de presse de "Opera Software"</author>
+        <p>"Opera Software" a le plaisir d'annoncer la premi&#232;re version "officielle"
+          du port FreeBSD de son logiciel.</p>
+      </story>
+
+      <story>
+        <name>Lecture de DVD sous FreeBSD</name>
+        <url>http://www.onlamp.com/pub/a/bsd/2002/10/03/FreeBSD_Basics.html</url>
+        <site-name>OnLamp.com</site-name>
+        <site-url>http://www.onlamp.com/</site-url>
+        <date>03 Octobre 2002</date>
+        <author>Dru Lavigne</author>
+        <p>Dru Lavigne se plonge dans le monde de la lecture des DVD sous FreeBSD.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>Septembre</name>
+      
+      <story>
+        <name>Les BSDs : sophistiqu&#233;s, puissants et (le plus souvent)
+          gratuits</name>
+        <url>http://www.extremetech.com/article2/0,3973,555451,00.asp</url>
+        <site-name>Extreme Tech</site-name>
+        <site-url>http://www.extremetech.com/</site-url>
+        <date>26 Septembre 2002</date>
+        <author>Brett Glass</author>
+        <p>Un article sur l'historique et la culture des projets BSD.</p>
+      </story>
+
+      <story>
+        <name>Utilisation du son sous FreeBSD</name>
+        <url>http://www.onlamp.com/pub/a/bsd/2002/09/19/FreeBSD_Basics.html</url>
+        <site-name>OnLamp.com</site-name>
+        <site-url>http://www.onlamp.com/</site-url>
+        <date>19 Septembre 2002</date>
+	<author>Dru Lavigne</author>
+        <p>Dru Lavigne d&#233;crit le processus de configuration du son sur un
+          poste de travail multim&#233;dia FreeBSD.</p>
+      </story>
+
+      <story>
+        <name>BSD, un OS pour l'entreprise ? Et bien, oui</name>
+        <url>http://www.itworld.com/nl/unix_insider/09172002/</url>
+        <site-name>ITworld.com</site-name>
+        <site-url>http://www.itworld.com/</site-url>
+        <date>17 Septembre 2002</date>
+	<author>UNIX dans l'entreprise</author>
+        <p>Un court entretien avec Michael Lucas (un participant actif de FreeBSD) sur l'utilisation des BSD en entreprise.</p>
+      </story>
+
+      <story>
+        <name>Transformer FreeBSD en station multim&#233;dia</name>
+        <url>http://www.onlamp.com/pub/a/bsd/2002/09/05/FreeBSD_Basics.html</url>
+        <site-name>OnLamp.com</site-name>
+        <site-url>http://www.onlamp.com/</site-url>
+        <date>5 Septembre 2002</date>
+        <author>Dru Lavigne</author>
+        <p>Dru Lavigne explique comment cr&#233;er un poste de travail multim&#233;dia avec FreeBSD.</p>
+      </story>
+    </month>
+    <month>
+      <name>Ao&#251;t</name>
+      <story>
+        <name>A la poursuite de Linux</name>
+        <url>http://www.infoworld.com/articles/fe/xml/02/08/12/020812fefreebsd.xml</url>
+        <site-name>InfoWorld</site-name>
+        <site-url>http://www.infoworld.com/</site-url>
+        <date>9 Ao&#251;t 2002</date>
+        <author>Maggie Biggs</author>
+        <p>Maggie Biggs s'int&#233;resse au futur FreeBSD 5.0 et 
+           d&#233;couvre que ce syst&#232;me d'exploitation open-source s'est consid&#233;rablement am&#233;lior&#233;
+           en ce qui concerne les outils et applications disponibles ainsi que sur la
+           s&#233;curit&#233;.</p>
+      </story>
+    </month>
+    <month>
+      <name>Juin</name>
+
+      <story>
+        <name>Interview avec Jordan Hubbard</name>
+        <url>http://kerneltrap.org/node.php?id=278</url>
+        <site-name>Kerneltrap</site-name>
+        <site-url>http://kerneltrap.org/</site-url>
+        <date>20 Juin 2002</date>
+        <author>Jeremy Andrews</author>
+        <p>Kerneltrap s'entretient avec Jordan Hubbard, un des cr&#233;ateurs
+          de FreeBSD, et actuellement directeur du projet Darwin de Apple.</p>
+      </story>
+
+    </month>
+
+    <month>
+      <name>Mai</name>
+      
+      <story>
+        <name>Multi-Boot FreeBSD et FreeBSD</name>
+        <url>http://www.onlamp.com/pub/a/bsd/2002/05/09/Big_Scary_Daemons.html</url>
+	<site-name>OnLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>16 Mai 2002</date>
+	<author>Michael Lucas</author>
+	<p>Michael Lucas d&#233;crit comment une machine peut &#234;tre configur&#233;e en multi-boot avec
+          FreeBSD -CURRENT et -STABLE.</p>
+      </story>
+
+    </month>
+
+    <month>
+      <name>Avril</name>
+      
+      <story>
+	<name>Jordan Hubbard quitte l'&#233;quipe dirigeante de FreeBSD</name>
+	<url>http://daily.daemonnews.org/view_story.php3?story_id=2837</url>
+	<site-name>Daemon News</site-name>
+	<site-url>http://www.daemonnews.org/</site-url>
+	<date>29 Avril 2002</date>
+	<author>Gregory Sutter</author>
+	<p>Jordan Hubbard, co-fondateur de FreeBSD, quitte l'&#233;quipe dirigeante.</p>
+      </story>
+
+      <story>
+        <name>Technologie &#224; la Carte</name>
+        <url>http://www.byte.com/documents/s=7145/byt1019082849618/</url>
+        <site-name>Byte</site-name>
+        <site-url>http://www.byte.com/</site-url>
+        <date>22 Avril 2002</date>
+        <author>Bill Nicholls</author>
+        <p>Un article sur FreeBSD 4.5 avec mention de la &quot;pr&#233;-version 
+          d&#233;veloppeurs&quot; de FreeBSD 5.0.</p>
+      </story>
+
+      <story>
+	<name>Tester FreeBSD-Current</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2002/04/18/Big_Scary_Daemons.html</url>
+	<site-name>OnLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>18 Avril 2002</date>
+	<author>Michael Lucas</author>
+	<p>Le committer Michael Lucas donne un aper&#231;u de la premi&#232;re pr&#233;-version
+         destin&#233;e aux d&#233;veloppeurs de FreeBSD 5.0.</p>
+      </story>
+
+      <story>
+        <name>Connexion IPv6 avec FreeBSD</name>
+        <url>http://www.linuxorbit.com/modules.php?op=modload&amp;name=Sections&amp;file=index&amp;req=viewarticle&amp;artid=524</url>
+        <site-name>Linux Orbit</site-name>
+        <site-url>http://www.linuxorbit.com/</site-url>
+        <date>18 Avril 2002</date>
+        <author>David LeCount</author>
+        <p>Comment utiliser freenet6 de la collection des ports pour r&#233;aliser un tunnel IPv6 sous IPv4.
+        </p>
+      </story>
+
+      <story>
+        <name>Paniques syst&#232;me, deuxi&#232;me partie : R&#233;paration et D&#233;boguage</name>
+        <url>http://www.onlamp.com/pub/a/bsd/2002/04/04/Big_Scary_Daemons.html</url>
+        <site-name>OnLamp.com</site-name>
+        <site-url>http://www.onlamp.com/</site-url>
+        <date>04 Avril 2002</date>
+        <author>Michael Lucas</author>
+        <p>Michael Lucas d&#233;crit quoi faire lorsqu'une panique syst&#232;me
+          survient. C'est la seconde partie de l'article; <a 
+            href="http://www.onlamp.com/pub/a/bsd/2002/03/21/Big_Scary_Daemons.html">
+          la partie 1</a> d&#233;crivait comment pr&#233;parer un syst&#232;me FreeBSD &#224; g&#233;rer les 
+          paniques.</p>
+      </story>
+
+      <story>
+        <name>Configurer un point d'acc&#232;s FreeBSD pour votre r&#233;seau sans fil</name>
+        <url>http://www.samag.com/documents/s=7121/sam0205a/sam0205a.htm</url>
+        <site-name>Sys Admin Magazine</site-name>
+        <site-url>http://www.samag.com/</site-url>
+        <date>Avril 2002</date>
+        <author>Michael S. DeGraw-Bertsch</author>
+        <p>Des instructions pour configurer de mani&#232;re s&#233;curis&#233;e un PC sous FreeBSD en tant que passerelle
+          entre un r&#233;seau 802.11b et un r&#233;seau cabl&#233; traditionnel.</p>
+      </story>
+
+      <story>
+        <name>D&#233;faillance d'une campagne anti-Unix</name>
+        <url>http://www.infoworld.com/articles/hn/xml/02/04/01/020401hnunixcamp.xml</url>
+        <site-name>InfoWorld</site-name>
+        <site-url>http://www.infoworld.com/</site-url>
+        <date>01 Avril 2002</date>
+        <author>Matt Berger</author>
+        <p>Reportages de InfoWorld sur l'utilisation de FreeBSD pour un serveur web cr&#233;&#233; 
+          &#224; l'occasion d'une campagne publicitaire "remarquable".</p>
+      </story>
+    </month>
+
+    <month>
+      <name>Mars</name>
+
+      <story>
+	<name>Un guide multim&#233;dia pour FreeBSD</name>
+	<url>http://www.examnotes.net/forums/default.php?ind=122</url>
+	<site-name>ExamNotes.net</site-name>
+	<site-url>http://www.examnotes.net/</site-url>
+	<date>30 Mars 2002</date>
+	<author>Tracey J. Rosenblath</author>
+	<p>Comment configurer et utiliser le support audio sous FreeBSD.</p>
+      </story>
+
+      <story>
+	<name>Paniques syst&#232;me, premi&#232;re partie : Se pr&#233;parer pour le pire</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2002/03/21/Big_Scary_Daemons.html</url>
+	<site-name>OnLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>21 Mars 2002</date>
+	<author>Michael Lucas</author>
+	<p>Pr&#233;parer un syst&#232;me FreeBSD &#224; g&#233;rer une panique syst&#232;me.</p>
+      </story>
+
+
+      <story>
+        <name>Comprendre CVSup, le montage des p&#233;riph&#233;riques, les ports et le syst&#232;me d'initialisations sous
+          FreeBSD</name>
+        <url>http://www.osnews.com/story.php?news_id=818</url>
+        <site-name>OS News</site-name>
+        <site-url>http://www.osnews.com/</site-url>
+        <date>19 Mars 2002</date>
+        <author>Nathan Mace</author>
+        <p>Un article pour configurer et maintenir une installation
+          FreeBSD.</p>
+      </story>
+
+      <story>
+        <name>Vous voulez une alternative &#224; Windows ? Essayez BSD</name>
+        <url>http://zdnet.com.com/2100-1107-863169.html</url>
+        <site-name>ZDNet</site-name>
+        <site-url>http://www.zdnet.com/</site-url>
+        <date>19 Mars 2002</date>
+        <author>Stephan Somogyi</author>
+        <p>Une introduction non-technique &#224; la famille BSD (except&#233; BSD/OS).</p>
+      </story>
+
+      <story>
+	<name>Find : seconde partie</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2002/03/14/FreeBSD_Basics.html</url>
+	<site-name>OnLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>14 Mars 2002</date>
+	<author>Dru Lavigne</author>
+	<p>A la recherche de vos fichiers avec la commande <tt>find</tt>.</p>
+      </story>
+
+      <story>
+        <name>Construire un firewall sur CD Bootable</name>
+        <url>http://www.bsdtoday.com/2002/March/Features646.html</url>
+        <site-name>BSD Today</site-name>
+        <site-url>http://www.bsdtoday.com/</site-url>
+        <date>8 Mars 2002</date>
+        <author>Etienne de Bruin</author>
+        <p>Des instructions pour construire un syst&#232;me FreeBSD qui
+	  d&#233;marre depuis un CD-ROM. Son utilisation en tant que firewall est mentionn&#233;.</p>
+      </story>
+
+    </month>
+
+    <month>
+      <name>F&#233;vrier</name>
+
+      <story>
+	<name>IPv6 rencontre FreeBSD</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2002/02/22/ipv6.html</url>
+	<site-name>OnLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>22 F&#233;vrier 2002</date>
+	<author>Mike DeGraw-Bertsch</author>
+	<p>Un aper&#231;u de la configuration IPv6 sous FreeBSD.</p>
+      </story>
+
+      <story>
+	<name>Retrouver les choses sous Unix</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2002/02/21/FreeBSD_Basics.html</url>
+	<site-name>OnLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>21 F&#233;vrier 2002</date>
+	<author>Dru Lavigne</author>
+	<p>S'initier &#224; la commande <tt>find</tt>.</p>
+      </story>
+
+      <story>
+	<name>Comprendre NFS</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2002/02/14/Big_Scary_Daemons.html</url>
+	<site-name>OnLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>14 F&#233;vrier 2002</date>
+	<author>Michael Lucas</author>
+	<p>Utiliser NFS sous FreeBSD.</p>
+      </story>
+
+    </month>
+
+    <month>
+      <name>Janvier</name>
+
+      <story>
+	<name>Comment devenir un membre actif ("committer") de FreeBSD</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2002/01/31/Big_Scary_Daemons.html</url>
+	<site-name>OnLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>31 Janvier 2002</date>
+	<author>Michael Lucas</author>
+	<p>Michael d&#233;taille le processus pour devenir un committer FreeBSD.</p>
+      </story>
+
+      <story>
+        <name>FreeBSD Week: Migrating from Linux to FreeBSD</name>
+        <url>http://www.osnews.com/story.php?news_id=580</url>
+        <site-name>OS News</site-name>
+        <site-url>http://www.osnews.com/</site-url>
+        <date>31 January 2002</date>
+        <author>Nathan Mace</author>
+        <p>A guide for users migrating from Linux to FreeBSD.</p>
+      </story>
+
+      <story>
+        <name>FreeBSD Week: Interview with Robert Watson</name>
+        <url>http://www.osnews.com/story.php?news_id=572</url>
+        <site-name>OS News</site-name>
+        <site-url>http://www.osnews.com/</site-url>
+        <date>29 January 2002</date>
+        <author>Eugenia Loli-Queru</author>
+        <p>An interview with Robert Watson, member of FreeBSD's core
+          and security on the upcoming FreeBSD 4.5 and FreeBSD 5.0
+          releases.</p>
+      </story>
+          
+      <story>
+	<name>American Megatrends Inc. Releases Latest Version of StorTrends NAS Software</name>
+	<url>http://biz.yahoo.com/bw/020123/232287_1.html</url>
+	<site-name>Yahoo! Finance</site-name>
+	<site-url>http://biz.yahoo.com/</site-url>
+	<date>23 January 2002</date>
+	<author>AMI Press Release</author>
+	<p><a href="http://www.ami.com/">American Megatrends</a> Inc. announced the release of
+          StoreTrends(tm) NAS software version 1.1, which is based on
+          FreeBSD.</p>
+      </story>
+
+      <story>
+	<name>Contributing to BSD</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2002/01/17/Big_Scary_Daemons.html</url>
+	<site-name>ONLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>17 January 2002</date>
+	<author>Michael Lucas</author>
+	<p>Michael Lucas shows what it takes for non-coders to contribute to
+	  BSD.</p>
+      </story>
+
+      <story>
+	<name>A basic guide to securing FreeBSD 4.x-STABLE</name>
+	<url>http://draenor.org/securebsd/secure.txt</url>
+	<site-name>draenor.org</site-name>
+	<site-url>http://draenor.org/</site-url>
+	<date>17 January 2002</date>
+	<author>Marc Silver</author>
+	<p>This article is for system administrators. It explains
+	  how to configure and maintain a FreeBSD system for high
+	  security.</p>
+      </story>
+
+      <story>
+        <name>FreeBSD to change hands</name>
+        <url>http://dailynews.yahoo.com/h/cn/20020114/tc/freebsd_to_change_hands_1.html</url>
+        <site-name>Yahoo News</site-name>
+        <site-url>http://dailynews.yahoo.com/</site-url>
+        <date>14 January 2002</date>
+        <author>Stephen Shankland CNET</author>
+        <p><a href="http://www.windriver.com/">Wind River Systems</a>
+          announces the transfer of its FreeBSD assets to the
+          <a href="http://www.freebsdmall.com/">FreeBSD Mall</a>.</p>
+      </story>
+
+      <story>
+        <name>Kerneltrap Interview with Matt Dillon</name>
+        <url>http://kerneltrap.com/article.php?sid=459</url>
+        <site-name>Kerneltrap</site-name>
+        <site-url>http://kerneltrap.com/</site-url>
+        <date>02 January 2002</date>
+        <author>Jeremy Andrews</author>
+        <p>Kerneltrap interviews Matt Dillon, one of FreeBSD's key
+          developers.</p>
+      </story>
+    </month>
+  </year>
+
+  <year>
+    <name>2001</name>
+
+    <month>
+      <name>December</name>
+
+      <story>
+	<name>Microsoft Hotmail still runs on U**x</name>
+	<url>http://www.theregister.co.uk/content/28/23348.html</url>
+	<site-name>The Register</site-name>
+	<site-url>http://www.theregister.co.uk/</site-url>
+	<date>12 December 2001</date>
+	<author>Andrew Orlowski</author>
+	<p>Nearly four years after it was acquired by Microsoft,
+	  and in spite of a well-publicized effort to migrate it to
+	  Windows and IIS, <a href="http://hotmail.com/">Hotmail</a>
+	  is still partly based on FreeBSD and Apache.</p>
+      </story>
+
+      <story>
+	<name>Keeping Your Options Open: FreeBSD as a Workstation for UNIX Newbies</name>
+
+	<url>http://www.osnews.com/printer.php?news_id=392</url>
+	<site-name>OS News</site-name>
+	<site-url>http://www.osnews.com/</site-url>
+	<date>12 December 2001</date>
+	<author>Eugenia Loli-Queru</author>
+	<p>An article discussing FreeBSD as an workstation OS for new Unix users.</p>
+      </story>
+
+    </month>
+
+    <month>
+      <name>November</name>
+
+      <story>
+        <name>Cleaning Up Ports</name>
+	
+	<url>http://www.onlamp.com/pub/a/bsd/2001/11/29/Big_Scary_Daemons.html</url>
+	<site-name>OnLamp</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>29 November 2001</date>
+	<author>Michael Lucas</author>
+	<p>A brief introduction to <tt>portupgrade</tt>.</p>
+      </story>
+
+      <story>
+        <name>Stable SMB</name>
+	
+	<url>http://www.onlamp.com/pub/a/bsd/2001/11/15/Big_Scary_Daemons.html</url>
+	<site-name>OnLamp</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>15 November 2001</date>
+	<author>Michael Lucas</author>
+	<p>A short article on accessing a Windows(R) share from a 
+	  FreeBSD workstation.</p>
+      </story>
+
+      <story>
+	<name>FreeBSD Versus Linux Revisited</name>
+
+	<url>http://www.byte.com/documents/s=1794/byt20011107s0001/1112_moshe.html</url>
+	<site-name>Byte</site-name>
+	<site-url>http://www.byte.com/</site-url>
+	<date>12 November 2001</date>
+	<author>Moshe Bar</author>
+	<p>Byte's Moshe Bar does a comparison, through informal
+	  benchmarks, of FreeBSD 4.3 to Linux 2.4.10 running
+	  sendmail, procmail, MySQL, and Apache.  The emphasis of
+	  the article is examination of the newly rewritten VM
+	  system in Linux, so the tests are conducted with only
+	  512 MB of RAM.
+	</p>
+      </story>
+    </month>
+
+    <month>
+      <name>October</name>
+
+      <story>
+	<name>The Big *BSD Interview</name>
+	<url>http://www.osnews.com/printer.php?news_id=153</url>
+	<site-name>OS News</site-name>
+	<site-url>http://www.osnews.com/</site-url>
+	<date>08 October 2001</date>
+	<author>Eugenia Loli-Queru</author>
+        <p>An interview with Matt Dillon, a key developer in 
+	  FreeBSD on the upcoming features in FreeBSD 5.0.</p>
+      </story>
+
+    </month>
+
+    <month>
+      <name>September</name>
+
+      <story>
+	<name>Running Windows applications on FreeBSD</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2001/09/21/FreeBSD_Basics.html</url>
+	<site-name>OnLamp</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>21 September 2001</date>
+	<author>Dru Lavigne</author>
+	<p>A short article on running Windows(R) applications under WINE
+	  in FreeBSD.</p>
+      </story>
+
+      <story>
+        <name>Dealing with Full Disks</name>
+        <url>http://www.onlamp.com/pub/a/bsd/2001/09/27/Big_Scary_Daemons.html</url>
+        <site-name>OnLamp</site-name>
+        <site-url>http://www.onlamp.com/</site-url>
+        <date>27 September 2001</date>
+        <author>Michael Lucas</author>
+        <p>A short article on dealing with the all too common full
+          disk.</p>
+      </story>
+
+      <story>
+	<name>Ripping MP3s</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2001/09/13/Big_Scary_Daemons.html</url>
+	<site-name>OnLamp</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>13 September 2001</date>
+	<author>Michael Lucas</author>
+	<p>A short article on ripping CDs on FreeBSD.</p>
+      </story>
+
+    </month>
+
+    <month>
+      <name>August</name>
+
+      <story>
+        <name>CVS Mirror</name>
+        <url>http://www.onlamp.com/pub/a/bsd/2001/08/30/Big_Scary_Daemons.html</url>
+        <site-name>Onlamp</site-name>
+        <site-url>http://www.onlamp.com/</site-url>
+        <date>30 August 2001</date>
+        <author>Michael Lucas</author>
+        <p>How to mirror the FreeBSD CVS repository.</p>
+      </story>
+
+      <story>
+	<name>CVSup Infrastructure</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2001/08/16/Big_Scary_Daemons.html</url>
+	<site-name>OnLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>16 August 2001</date>
+	<author>Michael Lucas</author>
+  	<p>An article on FreeBSD's CVSup infrastructure used to distribute
+	  its source code worldwide.</p>
+      </story>
+
+      <story>
+	<name>An Interview with Jordan Hubbard</name>
+
+	<url>http://www.workingmac.com/article/32.wm</url>
+
+	<site-name>Working Mac</site-name>
+	<site-url>http://www.workingmac.com/</site-url>
+
+	<date>16 August 2001</date>
+
+	<author>pairNetworks</author>
+
+	<p>An short interview with Jordan Hubbard, one of the founders of the
+	  FreeBSD project.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>July</name>
+
+      <story>
+	<name>NAI Labs Announces DARPA-Funded FreeBSD Security
+	  Initiative</name>
+	
+	<url>http://opensource.nailabs.com/news/20010709-cboss.html</url>
+	
+	<site-name>NAI Labs</site-name>
+	<site-url>http://www.nailabs.com/</site-url>
+
+	<author>NAI Labs Press Release</author>
+  
+	<p>NAI Labs, a division of Network Associates, Inc., announced a $1.2
+	  million contract awarded by the U.S. Navy's Space and Warfare Systems
+	  Command to develop security extensions to the Open Source FreeBSD
+	  operating system.</p>
+      </story>
+    </month>
+    
+    <month>
+      <name>June</name>
+
+      <story>
+	<name>Controlling User Logins</name>
+	<url>http://www.onlamp.com/pub/a/bsd/2001/06/28/Big_Scary_Daemons.html</url>
+	<site-name>OnLamp.com</site-name>
+	<site-url>http://www.onlamp.com/</site-url>
+	<date>28 June 2001</date>
+	<author>Michael Lucas</author>
+	<p>An article describing the ways to control user access to your
+	  FreeBSD system.</p>
+      </story>
+
+      <story>
+	<name>Microsoft's FreeBSD Move Aimed At Next Generation Of 
+	  Developers</name>
+	
+	<url>http://www.crn.com/sections/BreakingNews/breakingnews.asp?ArticleID=27727</url>
+
+	<site-name>CRN</site-name>
+	<site-url>http://www.crn.com/</site-url>
+
+	<date>27 June 2001</date>
+	
+	<author>Paula Rooney</author>
+  
+	<p>A report on Microsoft's venture to port its C# programming language
+	  to FreeBSD.</p>
+      </story>
+    
+      <story>
+	<name>BSD guru to guide Apple on Unix</name>
+
+	<url>http://www.macworld.co.uk/news/main_news.cfm?NewsID=3092</url>
+
+	<site-name>Mac World</site-name>
+	<site-url>http://www.macworld.co.uk/</site-url>
+	<date>26 June 2001</date>
+	<author>Macworld (UK) staff</author>
+  
+	<p>Apple (<a href="http://www.apple.com/">http://www.apple.com/</a>) 
+	  has recruited FreeBSD founder Jordan Hubbard to its team, in a bid 
+	  to steer its Mac OS X BSD (Berkeley Software Distribution)
+	  efforts.</p>
+      </story>
+    
+      <story>
+	<name>Microsoft Uses Open-Source Code Despite Denying Use of Such
+	Software</name>
+
+	<site-name>Wall Street Journal</site-name>
+	<site-url>http://www.wsj.com/</site-url>
+	<date>18 June 2001</date>
+	<author>Lee Gomes</author>
+	
+	<p>An article which states that open-source software connected with
+	  the FreeBSD operating system is used in several places deep inside
+	  several versions of Microsoft's Windows software, and on numerous
+	  server computers that manage major functions at Microsoft's free
+	  e-mail service, <a href="http://www.hotmail.com/">Hotmail</a>.</p>
+      </story>
+
+      <story>
+	<name>In your face! MS open source attacks backfire</name>
+	<url>http://zdnet.com.com/2100-11-530056.html</url>
+	<site-name>ZDNet</site-name>
+	<site-url>http://www.zdnet.com/</site-url>
+	<date>14 June 2001</date>
+	<author>Lee Gomes</author>
+
+	<p>A report on the backfiring of the Microsoft effort to vilify
+	 open source software.</p>
+      </story>
+
+    </month>
+
+    <month>
+      <name>February</name>
+
+      <story>
+	<name>For Servers: Linux 2.4 vs. FreeBSD 4.1.1</name>
+
+	<url>http://www.byte.com/documents/s=558/BYT20010130S0010/</url>
+	<site-name>Byte</site-name>
+	<site-url>http://www.byte.com/</site-url>
+	<date>05 February 2001</date>
+	<author>Moshe Bar</author>
+
+	<p>BYTE's Linux guru finds himself wondering why he isn't running
+	  FreeBSD --- a comparision (with informal benchmarks) of FreeBSD
+	  4.1.1 and a Linux based distribution running the v2.4.0 Linux
+	  kernel.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>January</name>
+      
+      <story>
+	<name>Is FreeBSD a Superior Server Platform to Linux?</name>
+
+	<url>http://www.webtechniques.com/archives/2001/01/infrrevu/</url>
+	<site-name>Web Techniques</site-name>
+	<site-url>http://www.webtechniques.com/</site-url>
+	<date>January 2001</date>
+	<author>Nathan Boeger</author>
+	  
+	<p>A reviewer finds FreeBSD 4.1 to be better suited for web
+	  serving than a Red Hat Linux distribution.</p>
+      </story>
+	
+      <story>
+	<name>A Roundtable on BSD, Security, and Quality</name>
+	  
+	<url>http://www.ddj.com/documents/s=865/ddj0165a/</url>
+	<site-name>Dr Dobbs Journal</site-name>
+	<site-url>http://www.ddj.com/</site-url>
+	<date>January 2001</date>
+	<author>Jack J. Woehr</author>
+	  
+	<p>A report from a roundtable at the recent USENIX Security
+	  Symposium 2000, involving several prominent developers in the
+	  BSD world.</p>
+      </story>
+    </month>
+  </year>
+
+  <year>
+    <name>2000</name>
+
+    <month>
+      <name>November</name>
+      
+      <story>
+	<name>Open-sourcing the Apple</name>
+	
+	<url>http://www.salon.com/tech/review/2000/11/17/hubbard_osx/index.html</url>
+	<site-name>Salon Magazine</site-name>
+	<site-url>http://www.salon.com/</site-url>
+	<date>17 November 2000</date>
+	<author>Jordan Hubbard</author>
+	
+	<p>A geek's appraisal of the Apple OS X from Jordan Hubbard, one
+	  of the lead developers on the FreeBSD project.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>October</name>
+
+      <story>
+	<name>BSD OSs Offer Unix Alternatives to Linux</name>
+	<url>http://www.byte.com/documents/BYT20000927S0001/</url>
+	<site-name>BYTE</site-name>
+	<site-url>http://www.byte.com/</site-url>
+	<date>02 October 2000</date>
+	<author>Bill Nicholls</author>
+
+	<p>This column gives an overview of the different versions of BSD,
+	  with links for more information.</p>
+      </story>
+    </month>
+    
+    <month>
+      <name>September</name>
+    
+      <story>
+	<name>INTERNET'S BUSIEST OPENSOURCE SOFTWARE ARCHIVE SETS NEW DOWNLOAD
+	  RECORD</name>
+
+	<url>http://www.terasolutions.com/pr092900.html</url>
+	<site-name>TeraSolutions</site-name>
+	<site-url>http://www.terasolutions.com/</site-url>
+	<date>29 September 2000</date>
+	<author>TeraSolutions Press Release</author>
+
+	<p>TeraSolutions, Inc. and Lightning Internet Services announce that
+	  the OpenSource archive at <a href="ftp://ftp.freesoftware.com/">
+	    ftp.freesoftware.com</a> has surpassed the download milestone of
+	  two trillion bytes per day from a single server machine.</p>
+      </story>
+
+      <story>
+	<name>BSD Tricks: MFS</name>
+
+	<url>http://www.onlamp.com/pub/a/bsd/2000/09/07/Big_Scary_Daemons.html</url>
+        <site-name>ONLamp.com</site-name>
+        <site-url>http://www.onlamp.com/</site-url>
+	<date>07 September 2000</date>
+	<author>Michael Lucas</author>
+
+	<p>A short article on using the FreeBSD Memory Filesystem.</p>
+      </story>
+
+      <story>
+	<name>TRUSTING BSD - Ultra-High Security for FreeBSD</name>
+
+	<url>http://www.ispworld.com/bw/sep/Unix_Flavor.htm</url>
+	<site-name>ISPworld</site-name>
+	<site-url>http://www.ispworld.com/</site-url>
+	<date>September 2000</date>
+	<author>Jeffrey Carl</author>
+
+	<p>An interview with Robert Watson, one of the lead developers in the
+	  <a href="http://www.trustedbsd.org/">TrustedBSD</a> project.</p>
+      </story>
+    </month>
+    
+    <month>
+      <name>August</name>
+    
+      <story>
+	<name>More FreeBSD Comics</name>
+
+	<url>http://ars.userfriendly.org/cartoons/?id=20000807&amp;mode=classic</url>
+	<site-name>User Friendly the Comic Strip</site-name>
+	<site-url>http://www.userfriendly.org/</site-url>
+	<date>7 August 2000</date>
+	<author>Illiad</author>
+
+	<p>See also the comics for the 
+	  <a href="http://ars.userfriendly.org/cartoons/?id=20000808&amp;mode=classic">8th</a>,
+	  <a href="http://ars.userfriendly.org/cartoons/?id=20000809&amp;mode=classic">9th</a>, 
+	  <a href="http://ars.userfriendly.org/cartoons/?id=20000810&amp;mode=classic">10th</a>, 
+	  <a href="http://ars.userfriendly.org/cartoons/?id=20000811&amp;mode=classic">11th</a>,
+	  and <a href="http://ars.userfriendly.org/cartoons/?id=20000812&amp;mode=classic">12th</a>.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>June</name>
+
+      <story>
+	<name>The State of the Daemon</name>
+	
+	<url>http://www.unixreview.com/documents/s=1247/urm0006c/</url>
+	<site-name>Unix Review</site-name>
+	<site-url>http://www.unixreview.com/</site-url>
+	<date>07 June 2000</date>
+	<author>Michael Lucas</author>
+	
+	<p>An informative article on BSD, and where it is going.</p>
+      </story>
+
+      <story>
+	<name>Server Goliaths Turn to Appliance Servers</name>
+
+	<url>http://sw.expert.com/news/SE.N1.JUN.00.pdf</url>
+	<site-name>Server/Workstation Expert</site-name>
+	<site-url>http://sw.expert.com/</site-url>
+	<date>June 2000</date>
+	<author>Adam Darby</author>
+	  
+	<p>An article evaluating various commercial OSes that contains a
+	  blurb about BSDI and FreeBSD.</p>
+      </story>
+
+      <story>
+	<name>FreeBSD: Serving the World</name>
+
+	<url>http://www.osopinion.com/Opinions/JamesHoward/JamesHoward1.html</url>
+	<site-name>osOpinion</site-name>
+	<site-url>http://www.osopinion.com/</site-url>
+	<date>June 2000</date>
+	<author>James Howard</author>
+
+	<p>With the recent hype surrounding open source software, an
+	  important project has gone unnoticed in the media. This project,
+	  FreeBSD, aims to create a rock-solid UNIX clone based on the 4BSD
+	  work from the University of California at Berkeley.</p>
+      </story>
+    </month>
+    
+    <month>
+      <name>May</name>
+
+      <story>
+	<name>Riding the Web Wave</name>
+
+	<url>http://www.sfgate.com/cgi-bin/article.cgi?file=/chronicle/archive/2000/05/29/BU20648.DTL</url>
+	<site-name>SFGate</site-name>
+	<site-url>http://www.sfgate.com/</site-url>
+	<date>29 May 2000</date>
+	<author>Henry Norr</author>
+
+	<p>FreeBSD, a relatively unknown operating system is playing a big
+	  role on the Internet.</p>
+      </story>
+
+      <story>
+	<name>BSD Unix: Power to the people, from the code</name>
+
+	<url>http://www.salon.com/tech/fsp/2000/05/16/chapter_2_part_one/index.html</url>
+	<site-name>Salon</site-name>
+	<site-url>http://www.salon.com/</site-url>
+	<date>16 May 2000</date>
+	<author>Andrew Leonard</author>
+
+	<p>How Berkeley hackers built the Net's most fabled free operating
+	  system on the ashes of the '60s---and then lost the lead to
+	  Linux.</p>
+      </story>
+
+      <story>
+	<name>Install FreeBSD 4.0 in seven easy steps</name>
+
+	<url>http://www.techrepublic.com/article.jhtml?id=r00220000516eje01.htm</url>
+	<site-name>TechRepublic</site-name>
+	<site-url>http://www.techrepublic.com/</site-url>
+	<date>16 May 2000</date>
+	<author>Dru Lavigne</author>
+	
+	<p>A short guide to installing FreeBSD 4.0.</p>
+      </story>
+    
+      <story>
+	<name>Partial Reunification May Give BSD New Visibility</name>
+
+	<url>http://www.computerworld.com/home/print.nsf/all/000508DC8A</url>
+	<site-name>ComputerWorld</site-name>
+	<site-url>http://www.computerworld.com/</site-url>
+	<date>8 May 2000</date>
+	<author>Dominique Deckmyn</author>
+
+	<p>Compares the merged Walnut Creek/BSDI OS offering to Linux.</p>
+      </story>
+
+      <story>
+	<name>Developers using open-source software behind bosses'
+	  backs</name>
+
+	<url>http://www.cnn.com/2000/TECH/computing/05/05/open.source.smugglers.idg/index.html</url>
+	<site-name>CNN</site-name>
+	<site-url>http://www.cnn.com/</site-url>
+	<date>5 May 2000</date>
+	<author>Peter Wayner</author>
+	
+	<p>Open-source software sometimes provides a better solution than
+	  expensive commerical, closed software.</p>
+      </story>
+
+      <story>
+	<name>FreeBSD 4.0 Now Includes PolyServe's High Availability
+	  Clustering &amp; Load Balancing Software</name>
+
+	<url>http://biz.yahoo.com/bw/000501/ca_polyser_1.html</url>
+	<site-name>PolyServe</site-name>
+	<site-url>http://www.polyserve.com/</site-url>
+	<date>1 May 2000</date>
+	<author>PolyServe Press Release</author>
+
+	<p>PolyServe, a provider of software-based, distributed server
+	  clustering technology, announced co-marketing agreement with FreeBSD,
+	  Inc. to ship PolyServe's Understudy (TM) software program with all
+	  new versions of FreeBSD 4.0 operating system software.</p>
+      </story>
+
+      <story>
+	<name>BSDI Getting the Word Out</name>
+
+	<url>http://webserver.expert.com/news/5.5/n5.shtml</url>
+	<site-name>WebServer Online</site-name>
+	<site-url>http://webserver.expert.com/</site-url>
+	<date>May 2000</date>
+	<author>Alexandra Barrett</author>
+
+	<p>Talks of the lack of awareness in the market of the strengths of
+	  the BSD operating system and of the plans afoot to change this.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>April</name>
+      
+      <story>
+	<name>The New BSDI to Offer Technical Support for the FreeBSD
+	  Operating System</name>
+	  
+	<url>http://www.bsdi.com/press/20000418.mhtml</url>
+	<site-name>BSDi</site-name>
+	<site-url>http://www.bsdi.com/</site-url>
+	<date>18 April 2000</date>
+	<author>BSDi Press Release</author>
+
+	<p>BSDi will be offering technical support contracts for FreeBSD 
+	  beginning in May 2000.</p>
+      </story>
+
+      <story>
+	<name>Commentary: BSD sleight of hand</name>
+
+	<url>http://www.zdnet.com/zdnn/stories/news/0,4586,2507538,00.html</url>
+	<site-name>ZD Net News</site-name>
+	<site-url>http://www.zdnet.com/</site-url>
+	<date>4 April 2000</date>
+	<author>Stephan Somogyi</author>
+	
+	<p>Commentary on the BSDI/FreeBSD merger.</p>
+      </story>
+      
+      <story>
+	  <name>FreeBSD 3.4 Review, Part 2: Adopting the Daemon</name>
+	
+	<url>http://www.32bitsonline.com/article.php3?file=issues/200004/freebsd2e&amp;page=1</url>
+	<site-name>32BitsOnline.com</site-name>
+	<site-url>http://www.32bitsonline.com/</site-url>
+	<date>April 2000</date>
+	<author>Clifford Smith</author>
+
+	<p>The second part of a review of FreeBSD v3.4.</p>
+      </story>
+    </month>
+    
+    <month>
+      <name>March</name>
+          
+      <story>
+	<name>The legend of BSD</name>
+	
+	<url>http://www.sfbg.com/SFLife/34/26/tech.html</url>
+	<site-name>sf life</site-name>
+	<site-url>http://www.sfbg.com/</site-url>
+	<date>29 March 2000</date>
+	<author>Annalee Newitz</author>
+
+	<p>An interview with three BSD veterans on the past and future of
+	  BSD.</p>
+      </story>
+    
+      <story>
+	<name>Bostic on the BSD tradition</name>
+
+	<url>http://www.oreillynet.com/pub/a/bsd/2000/03/24/bostic.html</url>
+	<site-name>O'Reilly Network</site-name>
+	<site-url>http://www.oreillynet.com/</site-url>
+	<date>24 March 2000</date>
+	<author>Dale Dougherty</author>
+
+	<p>An interview with BSD veteran Keith Bostic on the BSDI/FreeBSD
+	merger.  ``BSD has always had the best technology'', says Keith.</p>
+      </story>
+
+      <story>
+	<name>Customizing the FreeBSD Kernel</name>
+
+	<url>http://www.linuxworld.com/linuxworld/lw-2000-03/lw-03-freebsd_p.html</url>
+	<site-name>LinuxWorld</site-name>
+	<site-url>http://www.linuxworld.com/</site-url>
+	<date>March 2000</date>
+	<author>Michael Lucas</author>
+
+	<p>Michael Lucas presents a guide to customizing the FreeBSD kernel, 
+	  written for the Linux oriented.</p>
+      </story>
+
+      <story>
+	<name>FreeBSD for the SVR4/Linux Administrator</name>
+	
+	<url>http://www.samag.com/archive/0903/feature.shtml</url>
+	<site-name>SysAdmin</site-name>
+	<site-url>http://www.samag.com/</site-url>
+	<date>March 2000</date>
+	<author>Michael Lucas</author>
+
+	<p>This article attempts to give a System V or Linux administrator 
+	  a basic grounding in FreeBSD configuration and usage.</p>
+      </story>
+
+      <story>
+	<name>FreeBSD Ports and Packages System Explained</name>
+
+	<url>http://www.32bitsonline.com/article.php3?file=issues/200003/bsdports&amp;page=1</url>
+	<site-name>32BitsOnline</site-name>
+	<site-url>http://www.32bitsonline.com/</site-url>
+	<date>March 2000</date>
+	<author>Bill Swingle</author>
+
+	<p>A good description of the FreeBSD Ports collection.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>February</name>
+          
+      <story>
+	<name>Business Lessons From Online Porn</name>
+
+	<url>http://www.upside.com/texis/mvm/print-it?id=38adbbff0&amp;t=/texis/mvm/news/news</url>
+	<site-name>Upside</site-name>
+	<site-url>http://www.upside.com/</site-url>
+	<date>21 February 2000</date>
+	<author>Richard A. Glidewell</author>
+
+	<p>Praise for FreeBSD from this article: ``FreeBSD is the system of
+	  choice because it is fast, stable, and can handle large volumes of
+	  traffic.''</p>
+      </story>
+
+      <story>
+	<name>Crazed Ferrets in a Berkeley Shower</name>
+
+	<url>http://www.linux.com/articles.phtml?aid=7125</url>
+	<site-name>Linux.com</site-name>
+	<site-url>http://www.linux.com/</site-url>
+	<date>10 February 2000</date>
+	<author>Michael Lucas</author>
+
+	<p>An article on the BSD License.</p>
+      </story>
+
+      <story>
+	<name>Three Unixlike systems may be better than Linux</name>
+
+	<url>http://www.computerworld.com/cwi/story/0,1199,NAV47_STO41147,00.html</url>
+	<site-name>ComputerWorld</site-name>
+	<site-url>http://www.computerworld.com/</site-url>
+	<date>7 February 2000</date>
+	<author>Simson L. Garfinkel</author>
+
+	<p>Promotes the BSD OSes as better alternatives to Linux
+	  in the areas of performance, reliability and security.</p>
+      </story>
+    
+      <story>
+	<name>Buddying up to BSD: Part Five - FreeBSD Continued</name>
+
+	<url>http://www.linux.com/featured_articles/20000208/275/</url>
+	<site-name>Linux.com</site-name>
+	<site-url>http://www.linux.com/</site-url>
+	<date>8 February 2000</date>
+	<author>Matt Michie</author>
+
+	<p>A Linux user writes about his experiences with the FreeBSD ports
+	  system.</p>
+      </story>
+    
+      <story>
+	<name>Review of FreeBSD 3.4</name>
+
+	<url>http://www.32bitsonline.com/article.php3?file=issues/200002/fbsd34&amp;page=1</url>
+	<site-name>32BitsOnline.com</site-name>
+	<site-url>http://www.32bitsonline.com/</site-url>
+	<date>February 2000</date>
+	<author>Clifford Smith</author>
+
+	<p>A review of FreeBSD 3.4.</p>
+      </story>
+    
+      <story>
+	<name>FreeBSD 4.0 And Beyond</name>
+
+	<url>http://www.boardwatch.com/mag/2000/feb/bwm79.html</url>
+	<site-name>Boardwatch</site-name>
+	<site-url>http://www.boardwatch.com/</site-url>
+	<date>February 2000</date>
+	<author>Jeffrey Carl</author>
+
+	<p>A Jordan Hubbard Interview on Improvements, New Platforms and
+	  What's to Come.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>January</name>
+
+      <story>
+	<name>Buddying up to BSD: Part Four - FreeBSD</name>
+
+	<url>http://www.linux.com/featured_articles/20000126/270/</url>
+	<site-name>Linux.com</site-name>
+	<site-url>http://www.linux.com/</site-url>
+	<date>26 January 2000</date>
+	<author>Matt Michie</author>
+
+	<p>A Linux user writes about his experiences with FreeBSD.</p>
+      </story>
+
+      <story>
+	<name>Debunking Open-Source Myths: Origins and Players</name>
+
+	<url>http://www.gartnerweb.com/public/static/hotc/hc00085832.html</url>
+	<site-name>Gartner Group</site-name>
+	<site-url>http://www.gartnerweb.com/</site-url>
+	<date>18 January 2000</date>
+	<author>N. Drakos and M. Driver</author>
+
+	<p>A report that looks at and debunks some of the myths associated with
+	  Open Source development.</p>
+      </story>
+    
+      <story>
+	<name>Linux Scales Enterprise Wall</name>
+
+	<url>http://www.techweb.com/wire/story/TWB20000114S0013</url>
+	<site-name>TechWeb</site-name>
+	<site-url>http://www.techweb.com/</site-url>
+	<date>14 January 2000</date>
+	<author>Mitch Wagner</author>
+	
+	<p>About 17 percent of enterprises plan to deploy FreeBSD or Linux
+	  as a primary platform for e-commerce within two years.</p>
+      </story>
+    
+      <story>
+	<name>Jobs announces new MacOS, becomes 'iCEO'</name>
+
+	<url>http://cnn.com/2000/TECH/computing/01/05/macworld.keynote/index.html</url>
+	<site-name>CNN</site-name>
+	<site-url>http://cnn.com/</site-url>
+	<date>5 January 2000</date>
+	<author>CNN news article</author>
+
+	<p>Steve Jobs' Macworld Expo keynote speech mentions FreeBSD as one of
+	  the components in the new Darwin OS from Apple.</p>
+      </story>
+    
+      <story>
+	<name>Mac OS X</name>
+
+	<url>http://www.apple.com/macosx/inside.html</url>
+	<site-name>Apple Inc.</site-name>
+	<site-url>http://www.apple.com/</site-url>
+	<date>January 2000</date>
+	<author>Apple communication</author>
+
+	<p>In an article on the next generation Darwin OS,  Apple Inc., refers
+	  to FreeBSD as one of the ``most acclaimed OS projects of the modern
+	  era.''</p>
+      </story>
+
+      <story>
+	<name>Linux under FreeBSD</name>
+
+	<url>http://www.samag.com/documents/s=1169/sam0001b/</url>
+	<site-name>SysAdmin</site-name>
+	<site-url>http://www.samag.com/</site-url>
+	<date>January 2000</date>
+	<author>Michael Lucas</author>
+
+	<p>FreeBSD has several options for using software from other platforms
+	  such as Linux.  This article examines Linux emulation under
+	  FreeBSD.</p>
+      </story>
+    </month>
+  </year>
+
+  <year>
+    <name>1999</name>
+
+    <month>
+      <name>December</name>
+
+      <story>
+	<name>Freei.Net Doubles Service Speed With Intel(R) Server
+	  Platforms</name>
+
+	<url>http://biz.yahoo.com/prnews/991215/wa_freei_d_1.html</url>
+	<site-name>Freei.Net</site-name>
+	<site-url>http://www.freei.net</site-url>
+	<date>15 December 1999</date>
+	<author>Freei.Net Press Release</author>
+
+	<p>Freei.Net is purchasing hundreds of Intel's LB440GX 2U Rack Server 
+	  Platforms as the Internet service provider continues to experience 
+	  explosive growth in its subscriber base. ``The LB440GX flawlessly 
+	  supports our FreeBSD operating system,'' said Steve Bourg,
+	  Freei.Net's Chief Technical Officer.</p>
+      </story>
+
+      <story>
+	<name>FreeBSD 3.3. Robust OS well suited for Internet/Intranet
+	  Deployment</name>
+	
+	<url>http://www.data.com/features/1206a.html</url>
+	<site-name>Data Communications Online</site-name>
+	<site-url>http://www.data.com/</site-url>
+	<date>December 1999</date>
+
+	<author>Juha Saarinen</author>
+
+	<p>Linux administrator turns to FreeBSD and finds it impressive.</p>
+      </story>
+    </month>
+    
+    <month>
+      <name>November</name>
+    
+      <story>
+	<name>FreeBSD at COMDEX</name>
+
+	<url>http://slashdot.org/article.pl?sid=99/11/21/1430208&amp;mode=nocomment</url>
+	<site-name>Slashdot</site-name>
+	<site-url>http://slashdot.org/</site-url>
+	<date>21 November 1999</date>
+	<author>Brett Glass</author>
+	
+	<p><a href="mailto:brett@lariat.org">Brett Glass</a> sent this message
+	  to the FreeBSD -chat mailing list, about his experiences and
+	  perceptions at COMDEX.  Of particular interest are the problems he
+	  had trying to get vendors to support the BSDs and Linux.</p>
+      </story>
+
+      <story>
+	<name>Who controls free software?</name>
+
+	<url>http://www.salon.com/tech/feature/1999/11/18/red_hat/index.html</url>
+	<site-name>Salon Magazine</site-name>
+	<site-url>http://www.salon.com/</site-url>
+	<date>18 November 1999</date>
+	<author>Andrew Leonard</author>
+
+	<p>Discusses <a href="http://www.redhat.com/">RedHat</a>'s acquisition
+	  of <a href="http://www.cygnus.com/">Cygnus</a>, quotes 
+	  <a href="mailto:jkh@FreeBSD.org">Jordan Hubbard</a> at length, and 
+	  mentions FreeBSD.</p>
+      </story>
+
+      <story>
+	<name>The Darwinist: Darwin for x86?</name>
+
+	<url>http://macweek.zdnet.com/1999/11/14/darwinist.html</url>
+	<site-name>MacWeek</site-name>
+	<site-url>http://macweek.zdnet.com/</site-url>
+	<date>15 November 1999</date>
+	<author>Stephan Somogyi</author>
+
+	<p>A report on Wilfredo Sanchez's session on FreeBSD and the Apple
+	  Darwin project at the first FreeBSDCon.</p>
+      </story>
+
+      <story>
+	<name>Bob Frankenberg's breaking Windows</name>
+
+	<url>http://cbs.marketwatch.com/archive/19991108/news/current/soapbox.htx?source=blq/yhoo&amp;dist=yhoo</url>
+	<site-name>CBS MarketWatch</site-name>
+	<site-url>http://cbs.marketwatch.com/</site-url>
+	<date>8 November 1999</date>
+	<author>Michael Tarsala</author>
+
+	<p>In an interview with CBS MarketWatch, Bob Frankenberg, ex-CEO of 
+	  <a href="http://www.novell.com/">Novell</a>, praises
+	  FreeBSD for doing ``an exceptionally good job''.   FreeBSD is 
+	  used in his current company, 
+	  <a href="http://www.encanto.com/">Encanto</a>.</p>
+      </story>
+
+      <story>
+	<name>Applix and Walnut Creek Partner to Provide Applixware Office for
+	  the FreeBSD Operating System</name>
+
+	<url>http://www.applix.com/releases/99-11-03_applixware_office_for_freebsd_os.cfm</url>
+	<site-name>Applix Inc.</site-name>
+	<site-url>http://www.applix.com/</site-url>
+	<date>3 November 1999</date>
+	<author>Applix Inc. press release</author>
+
+	<p>Walnut Creek will distribute Applixware Office v4.4.2 in their
+	  FreeBSD 3.3 Power Desktop product.  In addition, Walnut Creek will
+	  bundle <a href="http://www.applixware.org/">Applix'SHELF</a>, a
+	  visual open-source application development toolset and runtime
+	  environment with FreeBSD.</p>
+      </story>
+
+      <story>
+	<name>LinuxWorld report on FreeBSDCon 99</name>
+
+	<url>http://www.linuxworld.com/linuxworld/lw-1999-10/lw-10-bsd_p.html</url>
+	<site-name>LinuxWorld</site-name>
+	<site-url>http://www.linuxworld.com/</site-url>
+	<date>1 November 1999</date>
+	<author>Vicki Brown</author>
+	
+	<p>October 17, 1999 marked a milestone in the history of FreeBSD -- the
+	  first FreeBSD conference was held in the city where it all began.</p>
+      </story>
+
+      <story>
+	<name>FreeBSDCon'99: Fans of Linux's lesser-known sibling gather for
+	  the first time</name>
+
+	<url>http://cnn.com/TECH/computing/9911/01/freebsd.con99.idg/index.html</url>
+	<site-name>CNN</site-name>
+	<site-url>http://cnn.com/</site-url>
+	<date>1 November 1999</date>
+	<author>Vicki Brown</author>
+
+	<p>Repost of IDG article about FreeBSDCon '99.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>October</name>
+    
+      <story>
+	<name>ServerWatch's Review of FreeBSD</name>
+
+	<url>http://serverwatch.internet.com/reviews/platform-freebsd.html</url>
+	<site-name>ServerWatch</site-name>
+	<site-url>http://serverwatch.internet.com/</site-url>
+	<date>25 October 1999</date>
+	<author>Kevin Reichard</author>
+	
+	<p>FreeBSD v3.2 is as close to the perfect Internet server operating
+	  system as it comes.</p>
+      </story>
+
+      <story>
+	<name>Grass Roots Daemocracy</name>
+
+	<url>http://www.upside.com/texis/mvm/story?id=380d3cf90&amp;src=yahoo</url>
+	<site-name>Upside</site-name>
+	<site-url>http://www.upside.com/</site-url>
+	<date>20 October 1999</date>
+	<author>Sam Williams</author>
+	
+	<p>A report from the first annual FreeBSDCon held in Berkeley,
+	  California.</p>
+      </story>
+    
+      <story>
+	<name>ENTERA DELIVERS FreeBSD STREAMING SERVER SUPPORTING
+	  QUICKTIME</name>
+
+	<url>http://www.entera.com/news/pressreleases/1004elsabsd.html</url>
+	<site-name>Entera</site-name>
+	<site-url>http://www.entera.com/</site-url>
+	<date>04 October 1999</date>
+	<author>Entera Press Release</author>
+
+	<p>Entera announces a <a href="http://www.streamingserver.org/">free, 
+	    standards-based RTSP/RTP server</a> to stream QuickTime from a 
+	  FreeBSD platform.</p>
+      </story>
+    
+      <story>
+	<name>Open Source Software Development as a Special Type of Academic
+	  Research</name>
+
+	<url>http://www.firstmonday.dk/issues/issue4_10/bezroukov/index.html</url>
+	<site-name>First Monday</site-name>
+	<site-url>http://www.firstmonday.dk/</site-url>
+	<date>October 1999</date>
+	<author>Nikolai Bezroukov</author>
+
+	<p>This paper tries to explore links between open source software 
+	  development and academic research as a better paradigm for OSS 
+	  development.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>September</name>
+    
+      <story>
+	<name></name>
+	<url></url>
+	<site-name>The Boston Globe</site-name>
+	<site-url>http://www.boston.com/</site-url>
+	<date>16 September 1999</date>
+	<p>Claims that the operating systems based on BSD are more reliable
+	  and secure. <i>(requires registration with The Boston Globe prior to
+	    viewing)</i></p>
+      </story>
+
+      <story>
+	<name>Beyond Linux, Free Systems Help Build The Web</name>
+
+	<url>http://dowjones.wsj.com/n/SB936961814325017645-d-main-c1.html</url>
+	<site-name>Wall Street Journal</site-name>
+	<site-url>http://dowjones.wsj.com/</site-url>
+	<date>10 September 1999</date>
+	<author>Lee Gomes</author>
+
+	<p>An introduction to the BSD family of free operating systems.</p>
+      </story>
+
+      <story>
+	<name>Maintaining Patch Levels with Open Source BSDs</name>
+
+	<url>http://www.samag.com/archive/0809/feature.shtml</url>
+	<site-name>SysAdmin</site-name>
+	<site-url>http://www.samag.com/</site-url>
+	<date>September 1999</date>
+	<author>Michael Lucas</author>
+
+	<p>Focusses on the BSD development model and the ease of keeping
+	  upto-date with tools like sup and CVSup.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>August</name>
+
+      <story>
+	<name>Out of Linux limelight, devil gets its due</name>
+
+	<url>http://web.boston.com/technology/packages/opensource/linux_limelight.shtml</url>
+	<site-name>Boston Globe</site-name>
+	<site-url>http://web.boston.com/</site-url>
+	<date>12 August 1999</date>
+	<author>Hiawatha Bray</author>
+
+	<p>A short (but not very accurate) introduction to FreeBSD for people
+	  who have heard about Linux.</p>
+      </story>
+
+      <story>
+	<name>Reporter's notebook: Hackers on holiday</name>
+
+	<url>http://www.cnn.com/TECH/computing/9908/11/hacker.hols.idg/index.html</url>
+	<site-name>CNN</site-name>
+	<site-url>http://www.cnn.com/</site-url>
+	<date>11 August 1999</date>
+	<author>Ann Harrison</author>
+
+	<p>CNN reports that the winner during the &quot;Linux Death
+	  Match&quot; at the Chaos Computer Camp in Germany used FreeBSD tools
+	  to win out over Linux attackers.  More details are available at 
+	  <a href="http://www.42.org/~sec/Berichte/199908Camp/index.en.html#match">http://www.42.org/~sec/Berichte/199908Camp/index.en.html#match</a>.</p>
+      </story>
+
+      <story>
+	<name>More FreeBSD Comics</name>
+
+	<url>http://www.userfriendly.org/cartoons/archives/99aug/19990803.html</url>
+	<site-name>User Friendly the
+	  Comic Strip</site-name>
+	<site-url>http://www.userfriendly.org/</site-url>
+	<date>3 August 1999</date>
+	<author>Illiad</author>
+
+	<p>See also the comics for the
+	  <a href="http://www.userfriendly.org/cartoons/archives/99aug/19990804.html">
+	    4th</a> and the 
+	  <a href="http://www.userfriendly.org/cartoons/archives/99aug/19990805.html">
+	    5th</a>.</p>
+      </story>
+
+      <story>
+	<name>World's Biggest Internet Search Engine Goes Online</name>
+
+	<url>http://www.fast.no/company/press/twbs02081999.html</url>
+	<site-name>Fast Search &amp; Transfer</site-name>
+	<site-url>http://web.fast.no/</site-url>
+	<date>02 August 1999</date>
+	<author>FAST Press Release</author>
+
+	<p>Said to be the largest search engine on the Internet, 
+	  <a href="http://www.alltheweb.com/">FAST Web Search</a>
+	  <a href="http://www-new.fast.no/faq/faqfastwebsearch.html#Hardware">
+	    uses the FreeBSD operating system</a>.</p>
+      </story>
+
+      <story>
+	<name>Duke Computer Scientists Exceed &quot;Gigabit&quot; Data
+	  Processing Speeds With Internet Software</name>
+
+	<url>http://www.sciencedaily.com/releases/1999/08/990802072727.htm</url>
+	<site-name>Science Daily Magazine</site-name>
+	<site-url>http://www.sciencedaily.com/</site-url>
+	<date>02 August 1999</date>
+	<author>Duke University press release</author>
+
+	<p>Using FreeBSD, Duke University computer science researchers have 
+	  developed a system for communication at speeds higher than one 
+	  billion bits per second in a local area network of personal
+	  computers. More details can be found at the 
+	  <a href="http://www.cs.duke.edu/ari/trapeze">Trapeze project</a> web 
+	  site.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>July</name>
+
+      <story>
+	<name>WORLDS LARGEST INDEPENDENT IPP HITS NEW MILESTONE</name>
+
+	<url>http://www.pair.com/pair/press/19990727.html</url>
+	<site-name>Pair Networks</site-name>
+	<site-url>http://www.pair.com/</site-url>
+	<date>27 July 1999</date>
+	<author>pair Networks press release</author>
+
+	<p>pair Networks, Inc., the World's largest independently owned and
+	  operated paid hosting service, today announced that it has surpassed
+	  the 60,000 Web site milestone.  Their web servers in their
+	  state-of-the-art data center house more than 2 Terabytes of storage,
+	  and deliver up to 100 million hits per day to site visitors.  pair
+	  uses FreeBSD in order to ensure maximum uptime and reliability.</p>
+      </story>
+
+      <story>
+	<name>Free OS? It' s as easy as BSD</name>
+
+	<url>http://www.techwebuk.com/story/TUK19990726S0029</url>
+	<site-name>TechWeb UK</site-name>
+	<site-url>http://www.techwebuk.com/</site-url>
+	<date>26 July 1999</date>
+	<author>Peter McGarvey</author>
+	
+	<p>Network manager Peter McGarvey writes about his experience with
+	  a number of varieties of Unix.  He sums up: <i>FreeBSD is the 
+	    greatest</i>.</p>
+      </story>
+    
+      <story>
+	<name>BSD a better OS than Linux?</name>
+
+	<url>http://www.zdnet.com/zdnn/stories/news/0,4586,2299366,00.html</url>
+	<site-name>ZD Net News</site-name>
+	<site-url>http://www.zdnet.com/</site-url>
+	<date>22 July 1999</date>
+	<author>Bob Sullivan</author>
+
+	<p>BSD is the software behind the world's most popular Web site and the
+	  world's most popular FTP site.</p>
+      </story>
+
+      <story>
+	<name>The Net's stealth operating system</name>
+
+	<url>http://www.msnbc.com/news/292376.asp</url>
+	<site-name>MSNBC</site-name>
+	<site-url>http://www.msnbc.com/</site-url>
+	<date>21 July 1999</date>
+	<author>Bob Sullivan</author>
+
+	<p>BSD powers some of the biggest sites, and its users are among 
+	  the most jealous of Linux.</p>
+      </story>
+
+      <story>
+	<name>Embed Together: The Case For BSD In Network Appliances</name>
+
+	<url>http://www.performancecomputing.com/features/9906of2.shtml</url>
+	<site-name>Performance Computing</site-name>
+	<site-url>http://www.performancecomputing.com/</site-url>
+	<date>2 July 1999</date>
+	<author>Kevin Rose and Charles Davidson</author>
+
+	<p>Underlines the advantages of BSD for the embedded device market.
+	  Mentions <a href="http://www.FreeBSD.org/~picobsd/">picoBSD</a>.</p>
+      </story>
+    </month>
+    
+    <month>
+      <name>June</name>
+
+      <story>
+	<name>Radio interview: Linux and FreeBSD</name>
+	<url>http://ebs.tamu.edu/kamu-fm/gig-24jun99.ram</url>
+	<site-name>GigABytes Radio Talk Show</site-name>
+	<site-url>http://cis.tamu.edu/news/gigabytes/index.html</site-url>
+	<date>June 1999</date>
+	<author>Chris DiBona and Jordan Hubbard</author>
+
+	<p>Chris DiBona of VA Research and Jordan Hubbard of the FreeBSD
+	Project give their views on Linux and FreeBSD.</p>
+      </story>
+
+      <story>
+	<name>Thin Servers</name>
+
+	<url>http://www.ntsystems.com/db_area/archive/1999/9906/306r1.shtml</url>
+	<site-name>Windows NT Systems</site-name>
+	<site-url>http://www.ntsystems.com/</site-url>
+	<date>June 1999</date>
+	<author>Ted Drude</author>
+	
+	<p>A survey of thin servers, featuring products using FreeBSD as
+	  their internal operating system.</p>
+      </story>
+    
+      <story>
+	<name>Information Technology and the Internet in Co-operation
+	  Ireland</name>
+
+	<url>http://www.pcc.ie/net/ci.html</url>
+	<site-name>Public Communications Centre, 
+	  Ireland</site-name>
+	<site-url>http://www.pcc.ie/</site-url>
+	<date>June 1999</date>
+	<author>Interview with Michael Doyle</author>
+	
+	<p>Michael Doyle, system administrator for 
+	  <a href="http://www.co-operation-ireland.ie">Co-operation
+	    Ireland</a> roots for FreeBSD in this interview.  Michael is using
+	  FreeBSD and <a href="http://www.postgresql.org">PostgreSQL</a> as
+	  a cost-effective and ultra-reliable solution for his
+	  organization's I.T. needs.</p>
+      </story>
+
+      <story>
+	<name>GPL and BSD: explication and comparison</name>
+
+	<url>http://www.32bitsonline.com/article.php3?file=issues/199906/gplbsd&amp;page=1</url>
+	<site-name>32BitsOnline</site-name>
+	<site-url>http://www.32bitsonline.com/</site-url>
+	<date>June 1999</date>
+	<author>Rob Bos</author>
+
+	<p>An article comparing BSD and GPL style licenses.</p>
+      </story>
+
+      <story>
+	<name>CmdrTaco on Slashdot Sale</name>
+	<url>http://www.wired.com/news/news/business/story/20483.html</url>
+	<site-name>Wired Business News</site-name>
+	<site-url>http://www.wired.com/</site-url>
+	<date>29 June 1999</date>
+	<author>Leander Kahney</author>
+
+	<p>In an interview with Wired News, Rob Malda, founder of
+	  <a href="http://slashdot.org/">Slashdot</a>, says that he would now
+	  like to spend some more time reporting on FreeBSD.</p>
+      </story>
+
+      <story>
+	<name>Server Platforms - FreeBSD Review</name>
+
+	<url>http://serverwatch.internet.com/reviews/platform-freebsd.html</url>
+	<site-name>ServerWatch</site-name>
+	<site-url>http://serverwatch.internet.com/</site-url>
+	<date>17 June 1999</date>
+	<author>Kevin Reichard</author>
+
+	<p>FreeBSD: Is it the perfect Internet server operating system? As
+	  close as it comes.</p>
+      </story>
+
+      <story>
+	<name>Yes! There is intelligent life beyond Linux</name>
+
+	<url>http://www.networkweek.com/openwindow/story/NWW19990611S0005</url>
+	<site-name>Network Week Online</site-name>
+	<site-url>http://www.networkweek.com/</site-url>
+	<date>16 June 1999</date>
+	<author>David Cartwright</author>
+
+	<p>It looks like Unix, it tastes like Unix but it isn't Unix. It's
+	  FreeBSD!</p>
+      </story>
+    </month>
+
+    <month>
+      <name>May</name>
+    
+      <story>
+	<name>Silicon Carny: Why I run FreeBSD</name>
+
+	<url>http://www.sunworld.com/sunworldonline/swol-05-1999/swol-05-silicon.html</url>
+	<site-name>SunWorld</site-name>
+	<site-url>http://www.sunworld.com/</site-url>
+	<date>May 1999</date>
+	<author>Rich Morin</author>
+
+	<p>Rich Morin explains why FreeBSD is the superior OS for him.</p>
+      </story>
+
+      <story>
+	<name>INTERNET'S BUSIEST SOFTWARE ARCHIVE REACHES NEW DOWNLOAD
+	  MILESTONE</name>
+
+	<url>http://www.wccdrom.com/press/wcarchive_milestone.phtml</url>
+	<site-name>Walnut Creek CDROM</site-name>
+	<site-url>http://www.wccdrom.com/</site-url>
+	<date>26 May 1999</date>
+	<author>David Greenman</author>
+
+	<p>Walnut Creek CDROM, Inc. announces that their popular software 
+	  archive at ftp://ftp.cdrom.com has surpassed the one trillion bytes 
+	  (one terabyte) milestone of files downloaded per day from a single 
+	  server machine.</p>
+      </story>
+
+      <story>
+	<name>Bye-Bye, Windows</name>
+
+	<url>http://home.cnet.com/category/0-3709-7-284910.html</url>
+	<site-name>CNet</site-name>
+	<site-url>http://home.cnet.com</site-url>
+	<date>24 May 1999</date>
+	<author>Christopher Lindquist</author>
+
+	<p>Reviews alternative PC operating systems.  Includes a 
+	  <a href="http://home.cnet.com/category/topic/0,10000,0-3709-7-285083,00.html">review of FreeBSD 3.2</a>.</p>
+      </story>
+
+      <story>
+	<name>Gnome is no Windows dwarf</name>
+
+	<url>http://news.bbc.co.uk/hi/english/sci/tech/newsid_321000/321433.stm</url>
+	<site-name>BBC</site-name>
+	<site-url>http://bbc.co.uk/</site-url>
+	<date>20 May 1999</date>
+	<author>Chris Nuttall</author>
+
+	<p>Article on Gnome and the Open Source movement.  Mentions
+	  FreeBSD.</p>
+      </story>
+    
+      <story>
+	<name>OS Also-Rans</name>
+
+	<url>http://www.pioneerplanet.com/reprints/051799tech.htm</url>
+	<site-name>Pioneer Planet</site-name>
+	<site-url>http://www.pioneerplanet.com</site-url>
+	<date>17 May 1999</date>
+	<author>JULIO OJEDA-ZAPATA</author>
+
+	<p>A short article introducing a few alternative OSes, including
+	  FreeBSD and OpenBSD.  Aimed at the general public.</p>
+      </story>
+
+      <story>
+	<name>Micron Electronics NetFRAME chosen for Internet's busiest
+	  site</name>
+
+	<url>http://www.wccdrom.com/press/micron.phtml</url>
+	<site-name>Walnut Creek CDROM</site-name>
+	<site-url>http://www.wccdrom.com/</site-url>
+	<date>4 May 1999</date>
+	<author>David Greenman</author>
+
+	<p>During its first full day of operation, the new NetFRAME 9201 server
+	  set a new all-time one day download record of 969GB
+	  of files, surpassing the previous record set last year of
+	  873GB/day.</p>
+      </story>
+
+      <story>
+	<name>The other open-source OS: FreeBSD</name>
+
+	<url>http://www.zdnet.com/pcweek/stories/news/0,4153,400844,00.html</url>
+	<site-name>ZD Net</site-name>
+	<site-url>http://www.zdnet.com/</site-url>
+	<date>3 May 1999</date>
+	<author>Anne Chen</author>
+
+	<p>Examples of FreeBSD deployment in the real world and why some 
+	  technology officers find it attractive.</p>
+      </story>
+    </month>    
+
+    <month>
+      <name>April</name>
+
+      <story>
+	<name>Open-Source Software: Power to the People</name>
+
+	<url>http://www.data.com/issue/990407/open.html</url>
+	<site-name>Data Communications</site-name>
+	<site-url>http://www.data.com</site-url>
+	<date>April 1999</date>
+	<author>Lee Bruno</author>
+
+	<p>Linux and BSD Unix are starting to show up on more and more 
+	  corporate servers, running alongside or even replacing Netware 
+	  and Windows NT.</p>
+      </story>
+
+      <story>
+	<name>XML: Complete XML Development System Integrated with 
+	  FreeBSD</name>
+	<url>http://advocacy.FreeBSD.org/stories/pr_xml.html</url>
+	<site-name>FreeBSD Advocacy</site-name>
+	<site-url>http://advocacy.FreeBSD.org/</site-url>
+	<date>29 April 1999</date>
+	<author>Jordan Hubbard</author>
+
+	<p>Included with FreeBSD 3.1 is a complete, integrated SGML/XML 
+	  development system that installs with a simple, easy to use 
+	  command sequence.</p>
+      </story>
+
+      <story>
+	<name>Inktomi Announces Traffic Server 3.0</name>
+
+	<url>http://www.inktomi.com/new/press/ts3.html</url>
+	<site-name>Inktomi</site-name>
+	<site-url>http://www.inktomi.com</site-url>
+	<date>26 April 1999</date>
+	<author>Inktomi press release</author>
+
+	<p>FreeBSD is a supported operating system for a new version of 
+	  Inktomi's carrier-class network cache platform.</p>
+      </story>
+
+      <story>
+	<name>The Matrix: FreeBSD Used to Generate Special Effects</name>
+
+	<url>http://advocacy.FreeBSD.org/stories/pr_matrix.html</url>
+	<site-name>FreeBSD Advocacy</site-name>
+	<site-url>http://advocacy.FreeBSD.org/</site-url>
+	<date>22 April 1999</date>
+	<author>Jordan Hubbard</author>
+
+	<p>Dual-Processor FreeBSD systems were used to generate a large 
+	  number of special effects in the cutting edge Warner Brothers film, 
+	  <i>The Matrix</i>.</p>
+      </story>
+
+      <story>
+	<name>Let's Get More Educated About FreeBSD</name>
+
+	<url>http://www.osopinion.com/Opinions/PrestonWiley/PrestonWiley1.html</url>
+	<site-name>osOpinion</site-name>
+	<site-url>http://www.osopinion.com/</site-url>
+	<date>20 April 1999</date>
+	<author>Preston S. Wiley</author>
+
+	<p>A system administrator shares his views on FreeBSD.</p>
+      </story>
+    
+      <story>
+	<name>The Oldest Free OS</name>
+	<url>http://www.zdnet.com/sr/stories/column/0,4712,398025,00.html</url>
+	<site-name>ZD Net</site-name>
+	<site-url>http://www.zdnet.com</site-url>
+	<date>15 April 1999</date>
+	<author>Steven J. Vaughan-Nichols</author>
+
+	<p>What are the oldest free operating systems around?  The answer is
+	  the Berkeley Software Distribution (BSD) Unix variants.</p>
+      </story>
+
+      <story>
+	<name>FreeBSD wants a place in the sun</name>
+
+	<url>http://www.upside.com/texis/mvm/down_the_toilet?id=3714d4820</url>
+	<site-name>Upside</site-name>
+	<site-url>http://www.upside.com</site-url>
+	<date>13 April 1999</date>
+	<author>Sam Williams</author>
+
+	<p>Introduces FreeBSD to Linux users.</p>
+      </story>
+    
+      <story>
+	<name>FreeBSD Offers a Sound Open Source Alternative</name>
+
+	<url>http://www.internetworld.com/print/current/webdev/19990412-freebsd.html</url>
+	<site-name>Internet World</site-name>
+	<site-url>http://www.internetworld.com</site-url>
+	<date>12 April 1999</date>
+	<author>James C. Luh</author>
+
+	<p>Outside technical circles, many remain unaware of viable choices
+	  for internet servers---like the FreeBSD operating system that drives
+	  Web servers for such high-profile names as Yahoo and Best Internet
+	  Communications (now part of Verio).</p>
+      </story>
+
+      <story>
+	<name>Serious FTP: Behind the scenes of Walnut Creek CDROM</name>
+
+	<url>http://cnn.com/TECH/computing/9904/08/cdrom.idg/index.html</url>
+	<site-name>CNN</site-name>
+	<site-url>http://cnn.com</site-url>
+	<date>8 April 1999</date>
+	<author>Rich Morin</author>
+
+	<p>A description of the Walnut Creek CDROM setup.
+	  The article is also available from
+	  <a href="http://www.sunworld.com/swol-04-1999/swol-04-silicon.html">
+	    SunWorld</a>.</p>
+      </story>
+
+      <story>
+	<name>Thin Servers: Off-the-Shelf Internet Help</name>
+
+	<url>http://www.techweb.com/se/directlink.cgi?DAT19990407S0024</url>
+	<site-name>TechWeb</site-name>
+	<site-url>http://www.techweb.com/</site-url>
+	<date>7 April 1999</date>
+	<author>Christine Zimmerman</author>
+
+	<p>Discusses thin-servers, including six built using an embedded
+	  FreeBSD kernel.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>March</name>
+
+      <story>
+	<name>A FreeBSD Comic Strip</name>
+
+	<url>http://www.userfriendly.org/cartoons/archives/99mar/19990320.html</url>
+	<site-name>User Friendly the Comic Strip</site-name>
+	<site-url>http://www.userfriendly.org/</site-url>
+	<date>20 March 1999</date>
+	<author>Illiad</author>
+
+	<p>See also the serial from the 
+	  <a href="http://www.userfriendly.org/cartoons/archives/99mar/19990322.html">22nd</a>,
+	  <a href="http://www.userfriendly.org/cartoons/archives/99mar/19990323.html">23rd</a>,
+	  <a href="http://www.userfriendly.org/cartoons/archives/99mar/19990324.html">24th</a>,
+	  <a href="http://www.userfriendly.org/cartoons/archives/99mar/19990325.html">25th</a>,
+	  <a href="http://www.userfriendly.org/cartoons/archives/99mar/19990326.html">26th</a>, and
+	  <a href="http://www.userfriendly.org/cartoons/archives/99mar/19990327.html">27th</a> of March, 1999.</p>
+      </story>
+
+      <story>
+	<name>Rising support for BSD</name>
+
+	<url>http://www.it.fairfax.com.au/990316/openline1.html</url>
+	<site-name>Fairfax IT News</site-name>
+	<site-url>http://www.it.fairfax.com.au</site-url>
+	<date>16 March 1999</date>
+	<author>Nathan Cochrane</author>
+
+	<p>Columnist Nathan Cochrane talks about the BSD family of open
+	  source operating systems.</p>
+      </story>
+
+      <story>
+	<name>Whence the Source: Untangling the Open Source/Free Software
+	  Debate</name>
+
+	<url>http://opensource.oreilly.com/news/scoville_0399.html</url>
+	<site-name>O'Reilly Open Source</site-name>
+	<site-url>http://opensource.oreilly.com</site-url>
+	<date>5 March 1999</date>
+	<author>Thomas Scoville</author>
+
+	<p>An article on the open-source / free-software debate.  Mentions 
+	  Berkeley Unix as one of the early successes of shared source code 
+	  collaboration.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>February</name>
+
+      <story>
+	<name>LWN interviews Alan Cox</name>
+
+	<url>http://lwn.net/1999/features/ACInterview/</url>
+	<site-name>Linux Weekly News</site-name>
+	<site-url>http://lwn.net/</site-url>
+	<date>February 1999</date>
+
+	<p>There is a small but interesting FreeBSD mention in LWN in an
+	  interview with Linux's Alan Cox.</p>
+      </story>
+
+      <story>
+	<site-name>The Economist</site-name>
+	<site-url>http://www.economist.com</site-url>
+
+	<date>20 February 1999</date>
+
+	<p>Software that has been developed by thousands of volunteers and is
+	  given away is often better than the stuff for sale. <i>Note</i>: The
+	  article is no longer available online without registration.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>January</name>
+    
+      <story>
+	<name>Twenty Years of Berkeley Unix</name>
+
+	<url>http://www.oreilly.com/catalog/opensources/book/kirkmck.html</url>
+	<site-name>O'Reilly and Associates</site-name>
+	<site-url>http://www.oreilly.com</site-url>
+	<date>January 1999</date>
+	<author>Marshall Kirk McKusick</author>
+
+	<p>A short history of Berkeley Unix.</p>
+      </story>
+
+      <story>
+	<name>WWWsmith: Installation and Configuration of FreeBSD</name>
+
+	<url>http://www.linuxjournal.com/issue57/2515.html</url>
+	<site-name>LINUX JOURNAL</site-name>
+	<site-url>http://www.linuxjournal.com/</site-url>
+	<date>January 1999</date>
+	<author>Sean Eric Fagan</author>
+
+	<p>Here is how to set up a web server using another freely available
+	  operating system, FreeBSD, a high performance, mature, Unix-like
+	  system.</p>
+      </story>
+
+      <story>
+	<name>The return of BSD - What are the BSD flavors and why might you
+	  use them?</name>
+
+	<url>http://www.sunworld.com/swol-01-1999/swol-01-bsd.html</url>
+	<site-name>SunWorld</site-name>
+	<site-url>http://www.sunworld.com/</site-url>
+	<date>January 1999</date>
+	<author>Greg Lehey</author>
+
+	<p>Introduces the modern BSD OSes to the general public.</p>
+      </story>
+
+      <story>
+	<site-name>GartnerGroup</site-name>
+	<site-url>http://www.gartner.com/</site-url>
+	<date>18 January 1999</date>
+
+	<p>While finished thin servers should be optimized in both hardware
+	  and software for the task at hand, who says the software and hardware
+	  must come from the same developer? This Perspective examines the
+	  emerging trend in the OEM market of divorcing the software layer from
+	  the hardware layer. Many operating systems are vying to be the OS of
+	  choice for thin servers. This document examines this issue in detail,
+	  particularly the differences between Linux and FreeBSD, the current
+	  de facto leaders in the market. <i>Note</i>: The article is no
+	  longer available online without registration.</p>
+      </story>
+
+      <story>
+	<name>Nature Web Matters: Internet tomography</name>
+
+	<url>http://helix.nature.com/webmatters/tomog/tomog.html</url>
+	<site-name>Nature</site-name>
+	<site-url>http://www.nature.com/</site-url>
+	<date>7 January 1999</date>
+	<author>K.C. Claffy, Tracie Monk &amp; Daniel McRobb, UCSD/CAIDA,
+	  USA.</author>
+	
+	<p>The article describes a network management tool built on FreeBSD
+	  that has even used network connections to www.FreeBSD.org for
+	  performing network research.</p>
+      </story>
+    </month>
+  </year>
+
+  <year>
+    <name>1998</name>
+
+    <month>
+      <name>December</name>
+
+      <story>
+	<name>The story on FreeBSD</name>
+
+	<url>http://www.linuxworld.com/linuxworld/lw-1998-12/lw-12-freebsd.html</url>
+	<site-name>LinuxWorld</site-name>
+	<site-url>http://www.linuxworld.com/</site-url>
+	<date>December 1998</date>
+	<author>Cameron Laird and Kathryn Soraiz</author>
+
+	<p>This issue has a good article on FreeBSD and why it's worth a look
+	  by Linux folks.</p>
+      </story>
+    </month>
+    
+    <month>
+      <name>November</name>
+    
+      <story>
+	<name>The Open-Source Revolution</name>
+
+	<url>http://www.edventure.com/release1/1198.html</url>
+	<site-name>RELEASE 1.0</site-name>
+	<site-url>http://www.edventure.com/release1/</site-url>
+	<date>November 1998</date>
+	<author>Tim O'Reilly, with an introduction by Esther Dyson</author>
+
+	<p>A brief, business oriented introduction to the open source
+	  community.</p>
+      </story>
+    
+      <story>
+	<name>Report from Comdex--Walnut Creek CDROM, FreeBSD and
+	  Slackware</name>
+
+	<url>http://www.linuxtoday.com/stories/1005.html</url>
+	<site-name>Linux Today</site-name>
+	<site-url>http://www.linuxtoday.com/</site-url>
+	<date>20 November 1998</date>
+	<author>Dwight Johnson</author>
+
+	<p>There is a good report on the Walnut Creek booth and FreeBSD at
+	  the Linux Today website.  The first half of the report is on
+	  Slackware Linux, the second half is on FreeBSD.</p>
+      </story>
+
+      <story>
+	<name>Ellison plans hardware, bashes Bill</name>
+
+	<url>http://www.news.com/News/Item/0,4,28816,00.html</url>
+	<site-name>CNET News.com</site-name>
+	<site-url>http://www.news.com/</site-url>
+	<date>16 November 1998</date>
+	<author>Tim Clark</author>
+
+	<p>Larry Ellison talking about their new dedicated Oracle servers,
+	  mentions FreeBSD as one of a list of candidate OSes for the
+	  platform.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>October</name>
+    
+      <story>
+	<name>Linux/etc, The other free Unixes, part 2 of 2</name>
+
+	<url>http://www.computerbits.com/archive/19981000/lnx9810.htm</url>
+	<site-name>Computer Bits</site-name>
+	<site-url>http://www.computerbits.com/</site-url>
+	<date>October 1998</date>
+	<author>Terry Griffin</author>
+
+	<p>Continuation of an earlier column reviewing freely available 
+	  Unix like operating systems.</p>
+      </story>
+
+      <story>
+	<name>What Is FreeBSD?</name>
+
+	<url>http://www.performance-computing.com/features/9810of1.shtml</url>
+	<site-name>Performance Computing</site-name>
+	<site-url>http://www.performance-computing.com/</site-url>
+	<date>October 1998</date>
+	<author>Jordan K. Hubbard</author>
+
+	<p>An introduction to FreeBSD, and where it stands with respect to
+	  the other free OSes.</p>
+      </story>
+    
+      <story>
+	<name>Unix back in the fight with NT</name>
+
+	<url>http://www.mercurycenter.com/business/center/unix102798.htm</url>
+	<site-name>Mercury Center</site-name>
+	<site-url>http://www.mercurycenter.com/</site-url>
+	<date>26 October 1998</date>
+	<author>Miguel Helft</author>
+
+	<p>An article touting the stability and power of the Unix platform 
+	  over NT.</p>
+      </story>
+
+      <story>
+	<name>A No-Cost NOS</name>
+
+	<url>http://www.zdnet.com/pcmag/pclabs/nettools/1718/bench1.html</url>
+	<site-name>ZDNet</site-name>
+	<site-url>http://www.zdnet.com/</site-url>
+	<date>20 October 1998</date>
+	<author>Ryan Snedegar</author>
+	
+	<p>Ryan Snedegar reviews FreeBSD 2.2.7 and finds its web-serving
+	  performance to be better than Windows NT.</p>
+      </story>
+
+      <story>
+	<name>Open Code Frees Up The Net</name>
+
+	<url>http://www.zdnet.com/intweek/stories/prtarchivestory/0,4356,361668,00.HTML</url>
+	<site-name>Inter@ctive Week</site-name>
+	<site-url>http://www.zdnet.com/intweek/</site-url>
+	<date>19 October 1998</date>
+	<author>Charles Babcock</author>
+
+	<p>About why customers prefer open source software like Linux, FreeBSD,
+	  Perl and TCL to proprietary alternatives.</p>
+      </story>
+
+      <story>
+	<name>It's only free Unix - but I like it</name>
+
+	<url>http://www.ireland.com/newspaper/computimes/1998/1012/cmp2.htm</url>
+	<site-name>The Irish Times</site-name>
+	<site-url>http://www.irish-times.com/</site-url>
+	<date>12 October 1998</date>
+	<author>David Malone</author>
+      </story>
+    </month>
+    
+    <month>
+      <name>September</name>
+
+      <story>
+	<name>Linux/etc, The other free Unixes, part 1 of 2</name>
+
+	<url>http://www.computerbits.com/archive/19980900/lnx9809.htm</url>
+	<site-name>Computer Bits</site-name>
+	<site-url>http://www.computerbits.com/</site-url>
+	<date>September 1998</date>
+	<author>Terry Griffin</author>
+
+	<p>Briefly reviews the BSD Unix heritage.</p>
+      </story>
+
+      <story>
+	<name>Communications &amp; Networking: Asynchronous Communications
+	  Using select and poll</name>
+	
+	<url>http://www.ddj.com/articles/1998/9809/9809e/9809e.htm</url>
+	<site-name>Dr. Dobb's Journal</site-name>
+	<site-url>http://www.ddj.com/</site-url>
+	<date>September 1998</date>
+	<author>Sean Eric Fagan</author>
+
+	<p>On how to use FreeBSD's
+	  <tt><a href="http://www.FreeBSD.org/cgi/man.cgi?select">select(2)</a></tt>
+	  and
+	  <tt><a href="http://www.FreeBSD.org/cgi/man.cgi?poll">poll(2)</a></tt>
+	  system calls.</p>
+      </story>
+
+      <story>
+	<name>Quality Unix for FREE</name>
+
+	<url>http://www.zdnet.com/sr/stories/issue/0,4537,349576,00.html</url>
+	<site-name>Sm@rt Reseller Online</site-name>
+	<site-url>http://www.zdnet.com/sr/</site-url>
+	<date>7 September 1998</date>
+	<author>Brett Glass</author>
+
+	<p>A short introduction to FreeBSD 2.2.7.</p>
+      </story>
+    </month>
+    
+    <month>
+      <name>August</name>
+
+      <story>
+	<name>Hack raises flags about small ISPs</name>
+
+	<url>http://www.news.com/News/Item/0,4,25526,00.html</url>
+	<site-name>News.com: Tech News First</site-name>
+	<site-url>http://www.news.com/</site-url>
+	<date>21 August 1998</date>
+	<author>Jim Hu, Staff Writer, CNET NEWS.COM</author>
+
+	<p>Desire for better security has led some ISPs to deploy FreeBSD on
+	  their servers.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>July</name>
+
+      <story>
+	<name>Walnut Creek CDROM, One of the Largest Public FTP Archives in
+	  the World, Sets Traffic Record Using FreeBSD and Colocating on CRL's
+	  High-Speed Internet Network</name>
+
+	<url>http://www.crl.com/wccdromrcd.html</url>
+	<site-name>CRL Network Services</site-name>
+	<site-url>http://www.crl.com/</site-url>
+	<date>30 July 1998</date>
+	<author>CRL Press Release</author>
+      </story>
+
+      <story>
+	<name>Pulling on one end of the rope</name>
+
+	<url></url>
+	<site-name>( freshmeat )</site-name>
+	<site-url>http://www.freshmeat.net/</site-url>
+	<date>13 July 1998</date>
+	<author>Jordan K. Hubbard</author>
+
+	<p>Jordan compares the past of Unix with the future of Linux, outlining
+	  possible similarities and describing faults that could be
+	  prevented.</p>
+      </story>
+    </month>    
+
+    <month>
+      <name>June</name>
+
+      <story>
+	<name>Nader urges Windows probe</name>
+
+	<url>http://www.news.com/News/Item/0,4,23145,00.html</url>
+	<site-name>CNET News.com</site-name>
+	<site-url>http://www.news.com/</site-url>
+	<date>14 June 1998</date>
+	<author>Jeff Pelline</author>
+
+	<p>Consumer-rights advocate Ralph Nader mentions FreeBSD by name.</p>
+      </story>
+
+      <story>
+	<name>Stone's Throw, Issue Fourteen: Home of the Brave, Land of the
+	  FreeBSD</name>
+
+	<url>http://RhapsodyOS.com/editorial/stone/ST00014.html</url>
+	<site-name>RhapsodyOS</site-name>
+	<site-url>http://RhapsodyOS.com/</site-url>
+	<date>10 June 1998</date>
+	<author>Andrew Stone</author>
+      </story>
+    </month>
+    
+    <month>
+      <name>May</name>
+
+      <story>
+	<name>Load Balancing Your Web Site</name>
+
+	<url>http://www.WebTechniques.com/features/1998/05/engelschall/engelschall.shtml</url>
+	<site-name>Web Techniques Magazine</site-name>
+	<site-url>http://www.WebTechniques.com/</site-url>
+	<date>May 1998</date>
+	<author>Ralf S.Engelschall</author>
+
+	<p>Practical approaches to distributing HTTP traffic at your site.  
+	  Includes a section on performance tuning Apache under FreeBSD.</p>
+      </story>
+      
+      <story>
+	<name>Is NT paranoid or is Unix out to get it?</name>
+
+	<url>http://www.ncworldmag.com/ncworld/ncw-05-1998/ncw-05-nextten.html</url>
+	<site-name>NC World</site-name>
+	<site-url>http://www.ncworldmag.com/</site-url>
+	<date>May 1998</date>
+	<author>Nicholas Petreley</author>
+      </story>
+
+      <story>
+	<name>Security Tools in FreeBSD</name>
+
+	<url>http://www.samag.com/archive/0705/feature.shtml</url>
+	<site-name>SysAdmin</site-name>
+	<site-url>http://www.samag.com/</site-url>
+	<date>May 1998</date>
+	<author>Guy Helmer</author>
+      </story>
+
+      <story>
+	<name>Free Unix: Do You Get What You Pay For?</name>
+
+	<url>http://advisor.gartner.com/inbox/articles/ihl2_6398.html</url>
+	<site-name>GartnerGroup</site-name>
+	<site-url>http://www.gartner.com/</site-url>
+	<date>4 May 1998</date>
+	<author>G. Weiss</author>
+      </story>
+    </month>
+
+    <month>
+      <name>April</name>
+
+      <story>
+	<name>The new Unix alters NT's orbit</name>
+
+	<url>http://www.ncworldmag.com/ncworld/ncw-04-1998/ncw-04-nextten.html</url>
+	<site-name>NC World</site-name>
+	<site-url>http://www.ncworldmag.com/</site-url>
+	<date>April 1998</date>
+	<author>Nicholas Petreley</author>
+      </story>
+
+      <story>
+	<name>Who's Serving Who?</name>
+
+	<url>http://www.dv.com/magazine/1998/0498/johnson0498.html</url>
+	<site-name>DV Live Magazine</site-name>
+	<site-url>http://www.dv.com/</site-url>
+	<date>April 98</date>
+	<author>Nels Johnson</author>
+
+	<p>For smaller companies and web sites, a FreeBSD and Apache on an 
+	  Intel (PC) architecture machine is more than sufficient.</p>
+      </story>
+    </month>
+
+    <month>
+      <name>March</name>
+
+      <story>
+	<name>Searching for the next Windows NT</name>
+	<url>http://www.ncworldmag.com/ncworld/ncw-03-1998/ncw-03-nextten.html</url>
+	<site-name>NC World</site-name>
+	<site-url>http://www.ncworldmag.com/</site-url>
+	<date>March 1998</date>
+	<author>Nicholas Petreley</author>
+      </story>
+
+      <story>
+	<name>Benchmarking and Software Testing: Tracing BSD System
+	  Calls</name>
+
+	<url>http://www.ddj.com/ddj/1998/1998_03/index.htm</url>
+	<site-name>Dr. Dobb's Journal</site-name>
+	<site-url>http://www.ddj.com/</site-url>
+	<date>March 1998</date>
+	<author>Sean Eric Fagan</author>
+
+	<p><i>Note</i>: the article is not available online.</p>
+      </story>
+      
+      <story>
+	<name>Five alternative operating systems reviewed</name>
+
+	<url>http://www.cnet.com/Content/Reviews/Compare/AltOS/</url>
+	<site-name>CNET</site-name>
+	<site-url>http://www.cnet.com/</site-url>
+	<date>25 March 1998</date>
+	<author>Cormac Foster</author>
+      </story>
+    </month>    
+
+    <month>
+      <name>February</name>
+    
+      <story>
+	<name>Source code for the masses</name>
+
+	<url>http://www.news.com/SpecialFeatures/0,5,18652,00.html</url>
+	<site-name>News.com</site-name>
+	<site-url>http://www.news.com</site-url>
+	<date>2 February 1998</date>
+	<author>Alex Lash</author>
+      </story>
+    </month>
+  </year>
+
+  <year>
+    <name>1997</name>
+
+    <month>
+      <name>August</name>
+      
+      <story>
+	<name>The Network Community</name>
+
+	<url>http://www.computerbits.com/archive/9708/lan9708.htm</url>
+	<site-name>Computer Bits Online</site-name>
+	<site-url>http://www.computerbits.com/</site-url>
+	<date>August 1997</date>
+	<author>Ted Mittelstaedt</author>
+      </story>
+    </month>
+
+    <month>
+      <name>May</name>
+
+      <story>
+	<name>The Politics of NC Computing According to Oracle</name>
+
+	<url>http://www.ncworldmag.com/ncworld/ncw-05-1997/ncw-05-analysis.html</url>
+	<site-name>NC World</site-name>
+	<site-url>http://www.ncworldmag.com/</site-url>
+	<date>May 1997</date>
+	<author>Rawn Shaw</author>
+      </story>
+    </month>
+  </year>
+
+  <year>
+    <name>1996</name>
+
+    <month>
+      <name>November</name>
+
+      <story>
+	<name>Assorted Security Tips for UNIX</name>
+
+	<url>http://www.samag.com/documents/s=1211/sam9611d/</url>
+	<site-name>SysAdmin</site-name>
+	<site-url>http://www.samag.com/</site-url>
+	<date>November 1996</date>
+	<author>Arthur Donkers</author>
+
+	<p>A collection of tips and tricks to secure your internal
+	  network.</p>
+	</story>
+    </month>
+  </year>
+</press>
+
+    
+
diff --git a/fr/news/press.xsl b/fr/news/press.xsl
new file mode 100644
index 0000000000..ecf245fcf9
--- /dev/null
+++ b/fr/news/press.xsl
@@ -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>
diff --git a/fr/news/qnewsletter-1-1.html b/fr/news/qnewsletter-1-1.html
new file mode 100644
index 0000000000..f2f357a08e
--- /dev/null
+++ b/fr/news/qnewsletter-1-1.html
@@ -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>
diff --git a/fr/news/qnewsletter-1-2.html b/fr/news/qnewsletter-1-2.html
new file mode 100644
index 0000000000..94d2dbbade
--- /dev/null
+++ b/fr/news/qnewsletter-1-2.html
@@ -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>
diff --git a/fr/news/qnewsletter-1-3.html b/fr/news/qnewsletter-1-3.html
new file mode 100644
index 0000000000..2db4fe48e1
--- /dev/null
+++ b/fr/news/qnewsletter-1-3.html
@@ -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>
diff --git a/fr/news/qnewsletter-1-4.html b/fr/news/qnewsletter-1-4.html
new file mode 100644
index 0000000000..9198347a68
--- /dev/null
+++ b/fr/news/qnewsletter-1-4.html
@@ -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>
diff --git a/fr/news/qnewsletter-1-5.html b/fr/news/qnewsletter-1-5.html
new file mode 100644
index 0000000000..2b2882fd22
--- /dev/null
+++ b/fr/news/qnewsletter-1-5.html
@@ -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>
diff --git a/fr/news/qnewsletter-1-6.html b/fr/news/qnewsletter-1-6.html
new file mode 100644
index 0000000000..2ffb71ddc8
--- /dev/null
+++ b/fr/news/qnewsletter-1-6.html
@@ -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>
diff --git a/fr/news/qnewsletter-1-7.html b/fr/news/qnewsletter-1-7.html
new file mode 100644
index 0000000000..3acd24711d
--- /dev/null
+++ b/fr/news/qnewsletter-1-7.html
@@ -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>
diff --git a/fr/news/qnewsletter-2-1.html b/fr/news/qnewsletter-2-1.html
new file mode 100644
index 0000000000..0a81ed5b11
--- /dev/null
+++ b/fr/news/qnewsletter-2-1.html
@@ -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>
diff --git a/fr/news/qnewsletter-2-2.html b/fr/news/qnewsletter-2-2.html
new file mode 100644
index 0000000000..6bc66d13c3
--- /dev/null
+++ b/fr/news/qnewsletter-2-2.html
@@ -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>
diff --git a/fr/news/qnewsletter.html b/fr/news/qnewsletter.html
new file mode 100644
index 0000000000..7507148596
--- /dev/null
+++ b/fr/news/qnewsletter.html
@@ -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>