New set of translations.
fr/news/Makefile.inc: MFen 1.2 fr/news/Makefile: MFen 1.33 fr/news/press.xsl: MFen 1.3 fr/news/newsflash.xsl: MFen 1.7 fr/news/news-rdf.xsl: MFen 1.4 fr/news/includes.xsl: MFen 1.4 fr/news/press.xml: MFen 1.62 (incomplete translation) fr/news/news.xml: MFen 1.127 none of the original qnewsletter* files have a revision number. Approved by: gioria (mentor)
This commit is contained in:
parent
281c121748
commit
b88df93bd3
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=15219
18 changed files with 4726 additions and 0 deletions
59
fr/news/Makefile
Normal file
59
fr/news/Makefile
Normal file
|
@ -0,0 +1,59 @@
|
|||
# $FreeBSD$
|
||||
|
||||
# The FreeBSD French Documentation Project
|
||||
# Original revision: 1.33
|
||||
|
||||
.if exists(../Makefile.conf)
|
||||
.include "../Makefile.conf"
|
||||
.endif
|
||||
.if exists(../Makefile.inc)
|
||||
.include "../Makefile.inc"
|
||||
.endif
|
||||
|
||||
#DOCS+= press.sgml
|
||||
DOCS+= news.sgml
|
||||
#DOCS+= webchanges.sgml
|
||||
|
||||
# press releases
|
||||
DOCS+= pressreleases.sgml
|
||||
DOCS+= press-rel-1.sgml
|
||||
DOCS+= press-rel-2.sgml
|
||||
DOCS+= press-rel-3.sgml
|
||||
DOCS+= press-rel-4.sgml
|
||||
DOCS+= press-rel-5.sgml
|
||||
|
||||
# The yearly State of the Union address
|
||||
DOCS+= sou1999.sgml
|
||||
|
||||
INDEXLINK= news.html
|
||||
|
||||
## SUBDIR= 1996
|
||||
## SUBDIR+= 1997
|
||||
## SUBDIR+= 1998
|
||||
# SUBDIR+= 1999
|
||||
## SUBDIR+= 2000
|
||||
## SUBDIR+= 2001
|
||||
## SUBDIR+= status
|
||||
|
||||
DATA= newsflash.html news.rdf press.html
|
||||
CLEANFILES+= newsflash.html news.rdf press.html
|
||||
|
||||
newsflash.html: newsflash.xsl news.xml includes.xsl ../includes.xsl
|
||||
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
||||
${.CURDIR}/newsflash.xsl ${.CURDIR}/news.xml
|
||||
.if !defined(NO_TIDY)
|
||||
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
||||
.endif
|
||||
|
||||
news.rdf: news-rdf.xsl news.xml includes.xsl ../includes.xsl
|
||||
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
||||
${.CURDIR}/news-rdf.xsl ${.CURDIR}/news.xml
|
||||
|
||||
press.html: press.xsl press.xml includes.xsl ../includes.xsl
|
||||
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
||||
${.CURDIR}/press.xsl ${.CURDIR}/press.xml
|
||||
.if !defined(NO_TIDY)
|
||||
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
||||
.endif
|
||||
|
||||
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
7
fr/news/Makefile.inc
Normal file
7
fr/news/Makefile.inc
Normal file
|
@ -0,0 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
# The FreeBSD French Documentation Project
|
||||
# Original revision: 1.2
|
||||
|
||||
WEBBASE?= /data/news
|
||||
WEB_PREFIX?= ${.CURDIR}/../../..
|
31
fr/news/includes.xsl
Normal file
31
fr/news/includes.xsl
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!--
|
||||
The FreeBSD French Documentation Project
|
||||
Original revision: 1.4
|
||||
|
||||
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
|
||||
<xsl:variable name="newshome">
|
||||
<a href="{$base}/news/news.html">Accueil Nouvelles</a>
|
||||
</xsl:variable>
|
||||
|
||||
<!-- Generate a unique anchor for this event -->
|
||||
<xsl:template name="generate-event-anchor">
|
||||
<xsl:value-of select="ancestor::year/name"/>
|
||||
<xsl:value-of select="ancestor::month/name"/>
|
||||
<xsl:value-of select="ancestor::day/name"/>:<xsl:value-of select="count(preceding-sibling::event)"/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Generate a unique anchor for this story -->
|
||||
<xsl:template name="generate-story-anchor">
|
||||
<xsl:value-of select="ancestor::year/name"/>
|
||||
<xsl:value-of select="ancestor::month/name"/>:<xsl:text/>
|
||||
<xsl:value-of select="count(following-sibling::story)"/>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
53
fr/news/news-rdf.xsl
Normal file
53
fr/news/news-rdf.xsl
Normal file
|
@ -0,0 +1,53 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!--
|
||||
The FreeBSD French Documentation Project
|
||||
Original revision: 1.4
|
||||
|
||||
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
|
||||
<xsl:import href="includes.xsl"/>
|
||||
|
||||
<xsl:output method="xml" indent="yes"/>
|
||||
|
||||
<xsl:variable name="base" select="'..'"/>
|
||||
|
||||
<!-- Generate the main body of the RDF file -->
|
||||
<xsl:template match="news">
|
||||
<rdf:rdf xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://my.netscape.com/rdf/simple/0.9">
|
||||
|
||||
<channel>
|
||||
<title>Nouvelles du Projet FreeBSD</title>
|
||||
<link>http://www.FreeBSD.org/news/</link>
|
||||
<description>Nouvelles du Projet FreeBSD</description>
|
||||
</channel>
|
||||
|
||||
<!-- Only include the last 10 events -->
|
||||
<xsl:apply-templates select="descendant::event[position() <= 10]"/>
|
||||
|
||||
</rdf:rdf>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Generate the <item> elements and their content -->
|
||||
<xsl:template match="event">
|
||||
<item>
|
||||
<xsl:choose>
|
||||
<xsl:when test="count(child::title)">
|
||||
<title><xsl:value-of select="normalize-space(title)"/></title>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<title><xsl:value-of select="normalize-space(p)"/></title>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<link>http://www.FreeBSD.org/news/newsflash.html#<xsl:call-template name="generate-event-anchor"/></link>
|
||||
</item>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="name | date"/>
|
||||
</xsl:stylesheet>
|
792
fr/news/news.xml
Normal file
792
fr/news/news.xml
Normal file
|
@ -0,0 +1,792 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
|
||||
<!-- Simple schema for FreeBSD Project news.
|
||||
|
||||
Divide time in to <year>, <month>, and <day> elements, each of which
|
||||
has a <name>.
|
||||
|
||||
each <day> element contains one or more <event> elements.
|
||||
|
||||
Each <event> contains an optional <title>, and then a <p>. <p> elements
|
||||
can contain <a> anchors. Within the "href" attribute of the anchor
|
||||
$base will be replaced with the base URI necessary to reach the FreeBSD
|
||||
document root, and should always be used to start URLs at www.FreeBSD.org
|
||||
or one of the mirrors.
|
||||
|
||||
Use the <title> element if the <p> content is lengthy. When generating
|
||||
synopses of this information (e.g., for syndication using RDF files),
|
||||
the contents of <title> will be preferred over <p>.
|
||||
-->
|
||||
|
||||
<!--
|
||||
The FreeBSD French Documentation Project
|
||||
Original revision: 1.127
|
||||
|
||||
Version francaise : Francois TIFFREAU <dc@freebsd-fr.org>
|
||||
Version francaise (mise a jour) : 1.13 2002/08/22 11:03:57 eagle
|
||||
Version francaise (mise a jour) : Stephane Legrand <stephane@freebsd-fr.org>
|
||||
-->
|
||||
|
||||
<news>
|
||||
<cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
|
||||
<cvs:keyword name="freebsd">
|
||||
$FreeBSD$
|
||||
</cvs:keyword>
|
||||
</cvs:keywords>
|
||||
|
||||
<year>
|
||||
<name>2002</name>
|
||||
|
||||
<month>
|
||||
<name>Novembre</name>
|
||||
|
||||
<day>
|
||||
<name>18</name>
|
||||
<event>
|
||||
<title>La pré-version développeurs #2 de FreeBSD 5.0 est disponible</title>
|
||||
|
||||
<p>La seconde pré-version dé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é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é sur FreeBSD ! Consultez le <a
|
||||
href="http://www.FreeBSD.org/news/press-rel-6.html">communiqué 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étails. Consultez également <a
|
||||
href="$base/releases/4.7R/errata.html">l'errata</a>
|
||||
après installation pour connaître les dernières informations et/ou
|
||||
les problèmes de derniè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ût 2002</title>
|
||||
|
||||
<p>Le rapport de statut pour Juillet-Aoû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 à propos de USENIX ATC 2002 <a
|
||||
href="$base/events/2002/usenix-devsummit.html">
|
||||
La conférence des développeurs FreeBSD</a> est maintenant
|
||||
disponible.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>1</name>
|
||||
|
||||
<event>
|
||||
<title>Gel de la branche FreeBSD-STABLE en préparation de la 4.7</title>
|
||||
|
||||
<p>La branche FreeBSD-STABLE de l'arbre des sources est maintenant
|
||||
gelée en <a
|
||||
href="$base/releases/4.7R/schedule.html">préparation</a>
|
||||
de la sortie de FreeBSD 4.7. Cela signifie que toute nouvelle
|
||||
modification à l'arbre des sources de la branche -stable doit tout d'abord
|
||||
être approuvée par <a href="$base/releng/">l'équipe en charge des versions</a>.
|
||||
La date de sortie pré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û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étails. Consultez également <a
|
||||
href="$base/releases/4.6.2R/errata.html">l'errata</a>
|
||||
après installation pour connaître les dernières informations et/ou
|
||||
les problèmes de derniè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énéreusement
|
||||
donné 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é
|
||||
POSIX C99 </a>. Nous appré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ä</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étails. Consultez également <a
|
||||
href="$base/releases/4.6R/errata.html">l'errata</a>
|
||||
après installation pour connaître les dernières informations et/ou
|
||||
les problèmes de derniè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écrivent les pratiques
|
||||
recommandées d'utilisation des rapports de bogues de FreeBSD.</a></p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>18</name>
|
||||
|
||||
<event>
|
||||
<title>Rapport de Statut Février - Avril 2002</title>
|
||||
|
||||
<p>Le rapport de statut pour Fé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 été
|
||||
gelée en <a
|
||||
href="$base/releases/4.6R/schedule.html">préparation</a>
|
||||
de la version 4.6 de FreeBSD. Cela veut dire que les nouvelles
|
||||
modifications à la branche -stable doivent être approuvées au préalable par
|
||||
l'é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é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érifiez aussi l'
|
||||
<a href="$base/releases/5.0R/DP1/errata.html">
|
||||
errata</a> pour la liste des problè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é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 à jour du planning des versions</title>
|
||||
|
||||
<p>Une nouvelle zone du site de FreeBSD dédiée à
|
||||
<a href="$base/releng/index.html">la création des versions</a>
|
||||
a été créée. Cette nouvelle section contient des informations au
|
||||
sujet des futures versions de FreeBSD, un agenda spé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â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évrier</name>
|
||||
|
||||
<day>
|
||||
<name>25</name>
|
||||
|
||||
<event>
|
||||
<title>Rapport de statut Décembre 2001/Janvier 2002</title>
|
||||
|
||||
<p>Le rapport de statut de Dé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'équipe <a href="mailto:freebsd-gnome@FreeBSD.org">GNOME de FreeBSD</a> est fière
|
||||
de vous annoncer la nouvelle section du site FreeBSD.org dédiée aux différents aspects
|
||||
du GNOME Desktop ainsi que de son environnement de dé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 à contributions</title>
|
||||
|
||||
<p><a href="http://www.eurobsdcon2002.org/cfp.html">L'annonce et l'appel à contributions</a>
|
||||
pour la session 2002 du BSDCon Europe sont disponibles. Cette conférence se déroulera à Amsterdam,
|
||||
Pays-Bas, en Novembre 2002. Les personnes désirant présenter un article à la conférence devront
|
||||
soumettre un résumé 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étails. N'oubliez pas de consulter l'<a
|
||||
href="$base/releases/4.5R/errata.html">errata</a> après
|
||||
l'installation pour les informations de derniè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'équipe technique de FreeBSD 4.5 a préparé un
|
||||
<a href="$base/releases/4.5R/qa.html">guide de tests</a>
|
||||
pour la future version 4.5 de FreeBSD. Aidez nous à
|
||||
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éalisé un nouvel article qui explique comment
|
||||
configurer votre système pour utiliser le nouveau <a
|
||||
href="$base/doc/en_US.ISO8859-1/articles/euro/article.html">symbole
|
||||
Euro sur FreeBSD</a>.</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
</year>
|
||||
</news>
|
141
fr/news/newsflash.xsl
Normal file
141
fr/news/newsflash.xsl
Normal file
|
@ -0,0 +1,141 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!--
|
||||
The FreeBSD French Documentation Project
|
||||
Original revision: 1.7
|
||||
|
||||
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
|
||||
|
||||
<xsl:import href="../includes.xsl"/>
|
||||
<xsl:import href="includes.xsl"/>
|
||||
|
||||
|
||||
<xsl:variable name="base" select="'..'"/>
|
||||
<xsl:variable name="title" select="'Nouvelles FreeBSD'"/>
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:output type="html" encoding="iso-8859-1"/>
|
||||
|
||||
<xsl:template match="news">
|
||||
<html>
|
||||
|
||||
<xsl:copy-of select="$header1"/>
|
||||
|
||||
<body xsl:use-attribute-sets="att.body">
|
||||
|
||||
<xsl:copy-of select="$header2"/>
|
||||
|
||||
<!-- Notice how entity references in SGML become variable references
|
||||
in the stylesheet, and that the syntax for referring to variables
|
||||
inside an attribute is "{$variable}".
|
||||
|
||||
This is just dis-similar enough to Perl and the shell that you
|
||||
end up writing ${variable} all the time, and then scratch your
|
||||
head wondering why the stylesheet isn't working.-->
|
||||
|
||||
<!-- Also notice that because this is now XML and not SGML, empty
|
||||
elements, like IMG, must have a trailing "/" just inside the
|
||||
closing angle bracket, like this " ... />" -->
|
||||
<img src="{$base}/gifs/news.jpg" align="right" border="0" width="193"
|
||||
height="144" alt="Nouvelles FreeBSD"/>
|
||||
|
||||
<p>FreeBSD est un système d'exploitation en constante évolution. Se tenir informé
|
||||
des derniers développements peut devenir une corvée ! Pour rester à jour,
|
||||
consultez cette page régulièrement. Vous pouvez également
|
||||
vous inscrire à 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 à jour spécifiques à 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étaillée des versions passées, pré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écurité concernant FreeBSD, veuillez consulter la page
|
||||
<a href="{$base}/security/#adv">d'information sur la sécurité</a>.</p>
|
||||
|
||||
<xsl:apply-templates select="descendant::month"/>
|
||||
|
||||
<p>Anciennes annonces :
|
||||
<a href="2001/index.html">2001</a>,
|
||||
<a href="2000/index.html">2000</a>,
|
||||
<a href="1999/index.html">1999</a>,
|
||||
<a href="1998/index.html">1998</a>,
|
||||
<a href="1997/index.html">1997</a>,
|
||||
<a href="1996/index.html">1996</a></p>
|
||||
|
||||
<xsl:copy-of select="$newshome"/>
|
||||
<xsl:copy-of select="$footer"/>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Everything that follows are templates for the rest of the content -->
|
||||
|
||||
<xsl:template match="month">
|
||||
<h1><xsl:value-of select="name"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="ancestor::year/name"/></h1>
|
||||
|
||||
<ul>
|
||||
<xsl:apply-templates select="descendant::day"/>
|
||||
</ul>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="day">
|
||||
<xsl:apply-templates select="event"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="event">
|
||||
<li><p><a>
|
||||
<xsl:attribute name="name">
|
||||
<xsl:call-template name="generate-event-anchor"/>
|
||||
</xsl:attribute>
|
||||
</a>
|
||||
|
||||
<b><xsl:value-of select="ancestor::day/name"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="ancestor::month/name"/>,
|
||||
<xsl:value-of select="ancestor::year/name"/>:</b><xsl:text> </xsl:text>
|
||||
<xsl:apply-templates select="p"/>
|
||||
</p>
|
||||
|
||||
</li>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="date"/> <!-- Deliberately left blank -->
|
||||
|
||||
<!-- When the href attribute contains a '$base', expand it to the current
|
||||
value of the $base variable. -->
|
||||
|
||||
<!-- All your $base are belong to us. Ho ho ho -->
|
||||
<xsl:template match="a">
|
||||
<a><xsl:attribute name="href">
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains(@href, '$base')">
|
||||
<xsl:value-of select="concat(substring-before(@href, '$base'), $base, substring-after(@href, '$base'))"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="@href"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:attribute>
|
||||
<xsl:apply-templates/>
|
||||
</a>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
2595
fr/news/press.xml
Normal file
2595
fr/news/press.xml
Normal file
File diff suppressed because it is too large
Load diff
85
fr/news/press.xsl
Normal file
85
fr/news/press.xsl
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!--
|
||||
The FreeBSD French Documentation Project
|
||||
Original revision: 1.3
|
||||
|
||||
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
|
||||
|
||||
<xsl:import href="../includes.xsl"/>
|
||||
<xsl:import href="includes.xsl"/>
|
||||
|
||||
|
||||
<xsl:variable name="base" select="'..'"/>
|
||||
<xsl:variable name="title" select="'FreeBSD dans la Presse'"/>
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:output type="html" encoding="iso-8859-1"/>
|
||||
|
||||
<xsl:template match="press">
|
||||
<html>
|
||||
|
||||
<xsl:copy-of select="$header1"/>
|
||||
|
||||
<body xsl:use-attribute-sets="att.body">
|
||||
|
||||
<xsl:copy-of select="$header2"/>
|
||||
|
||||
<p>Si vous connaissez d'autres articles à propos de FreeBSD que nous n'avons pas
|
||||
indiqués ici, veuillez envoyer tous les détails à l'adresse
|
||||
<a href="mailto:doc@freebsd.org">doc@FreeBSD.org</a> afin que nous puissions
|
||||
les ajouter.</p>
|
||||
|
||||
<p>Vous pouvez é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>
|
94
fr/news/qnewsletter-1-1.html
Normal file
94
fr/news/qnewsletter-1-1.html
Normal file
|
@ -0,0 +1,94 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Bulletins d'informations Volume #1 Numé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é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éro #1<BR>
|
||||
Juin 1998<BR></P>
|
||||
<P></P>
|
||||
|
||||
|
||||
<UL>
|
||||
<LI><B>Nouvelles d'ordre général</B> :<BR>
|
||||
Jordan Hubbard, Poul-Henning Kamp, Justin Gibbs, Jonathan Bresler,
|
||||
David Greenman et d'autres responsables du projet FreeBSD assisteront à
|
||||
la conférence USENIX.
|
||||
Venez y assister. Plus d'information à : <A HREF="http://www.usenix.org/">http://www.usenix.org</A>
|
||||
du 15 au 19 Juin, New Orleans, Louisiane</LI>
|
||||
<LI><B>Télé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çon de ré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ème de fichiers</B> :<BR>
|
||||
Une version de développement de vinum, un gestionnaire de volume pour FreeBSD, est disponible.
|
||||
Il permet de répartir les volumes sur diffé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ès actif récemment.
|
||||
Des développeurs sont activement recherchés.
|
||||
Abonnez vous à la liste alpha@freebsd.org.
|
||||
La documentation ainsi que le PALCODE sont disponibles à :
|
||||
<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éléchargez Enlightenment :
|
||||
/usr/ports/x11/enlightenment
|
||||
Téléchargez aussi les thè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élé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ème</B> :<BR>
|
||||
Un outil d'administration système, à 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éveloppement.</LI>
|
||||
<LI><B>Installation de FreeBSD</B> :<BR>
|
||||
Retrouvez un guide d'installation pour débutant avec des captures d'é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é 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 édition,
|
||||
veuillez envoyer un e-mail à <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
|
||||
|
||||
<P></P>
|
||||
<P ALIGN="CENTER"> -Chris Coleman <chrisc@vmunix.com></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 © 1995-2000 Le Projet FreeBSD.
|
||||
Tous droits réservés. <BR>Dernière modification : 2000/06/15 01:30:04</ADDRESS></BODY>
|
||||
</HTML>
|
94
fr/news/qnewsletter-1-2.html
Normal file
94
fr/news/qnewsletter-1-2.html
Normal file
|
@ -0,0 +1,94 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Bulletins d'informations Volume #1 Numé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é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éro #2<BR>
|
||||
Juillet 1998<BR></P>
|
||||
<P></P>
|
||||
|
||||
|
||||
<UL>
|
||||
<LI><B>Nouvelles d'ordre géné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 à jour votre version de CVSup en version 15.4.
|
||||
CVSup est disponible à <A HREF="ftp://ftp.FreeBSD.org/pub/FreeBSD/development/CVSup/">ftp://ftp.FreeBSD.org/pub/FreeBSD/developmen/CVSup/</A></LI>
|
||||
<LI><B>Télé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émon de gestion/limitation de bande passante IP vient de sortir.
|
||||
Vous le trouverez à <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 à votre bibliothèque universitaire de commander le
|
||||
dernier livre de Greg Lehey.
|
||||
"The Complete FreeBSD", deuxième édition,
|
||||
publié 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 à 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ébergés par <A HREF="http://www.gisolutions.com/">http://www.gisolutions.com</A></LI>
|
||||
<LI><B>Sécurité sous FreeBSD</B>
|
||||
Avez vous lu l'article sur la sécurité 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ème d'authentification et d'autorisation expé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ème de fichiers distribués "Coda" vient de sortir</B>
|
||||
"Coda" est un système avancé de fichiers distribués comportant des caractéristiques
|
||||
comme la réplication de serveurs et les opé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é 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 édition,
|
||||
veuillez envoyer un e-mail à <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
|
||||
|
||||
<P></P>
|
||||
<P ALIGN="CENTER"> -Chris Coleman <chrisc@vmunix.com></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écé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 © 1995-2000 Le Projet FreeBSD.
|
||||
Tous droits réservés. <BR>Dernière modification : 2000/06/15 01:30:04</ADDRESS></BODY>
|
||||
</HTML>
|
112
fr/news/qnewsletter-1-3.html
Normal file
112
fr/news/qnewsletter-1-3.html
Normal file
|
@ -0,0 +1,112 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Bulletins d'informations Volume #1 Numé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é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éro #3<BR>
|
||||
Juillet 1998<BR></P>
|
||||
<P></P>
|
||||
|
||||
|
||||
<UL>
|
||||
<LI><B>Nouvelles d'ordre général :</B>
|
||||
La version 15.4.2 de CVSup, l'outil de distribution ré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ère version est la version 2.2.6-RELEASE. La version 2.2.7
|
||||
est prévue pour le 21 Juillet. La version 3.0 est pré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 à :
|
||||
<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éritable serveur de bases de donné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écrivant les fonctionnalités spécifiques à 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ème version alpha de vinum est disponible en téléchargement à
|
||||
<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é 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 édition,
|
||||
veuillez envoyer un e-mail à <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
|
||||
|
||||
<P></P>
|
||||
<P ALIGN="CENTER"> -Chris Coleman <chrisc@vmunix.com></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écé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 © 1995-2000 Le Projet FreeBSD.
|
||||
Tous droits réservés. <BR>Dernière modification : 2000/06/15 01:30:04</ADDRESS></BODY>
|
||||
</HTML>
|
118
fr/news/qnewsletter-1-4.html
Normal file
118
fr/news/qnewsletter-1-4.html
Normal file
|
@ -0,0 +1,118 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Bulletins d'informations Volume #1 Numé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é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éro #4<BR>
|
||||
Août 1998<BR></P>
|
||||
<P></P>
|
||||
|
||||
|
||||
<UL>
|
||||
<LI><B>Quelques informations sur les versions de FreeBSD :</B>
|
||||
La dernière version de FreeBSD est la 2.2.7-RELEASE. FreeBSD 2.2.8 est
|
||||
prévu pour le 15 novembre. FreeBSD 3.0 est prévu pour
|
||||
le 15 octobre.
|
||||
<P></P></LI>
|
||||
<LI><B>Annonce : OpenLDAP :</B>
|
||||
Le project OpenLDAP est heureux de vous annoncer la disponibilité de
|
||||
la version 1.0 de OpenLDAP.
|
||||
Ce logiciel est disponible en téléchargement à :
|
||||
<A HREF="http://www.OpenLDAP.org/download.html">http://www.OpenLDAP.org/download.html</A>
|
||||
ou par accès CVS anonyme à :
|
||||
<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élé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 électronique des BSD</B>
|
||||
Les fans de BSD ont leur magazine. Rejoignez les pour écrire un article
|
||||
ou tenir une rubrique.
|
||||
<A HREF="http://ezine.FreeBSD.org/">http://ezine.FreeBSD.org</A>
|
||||
La première édition sera disponible le 1er Septembre !!!! Voyez à :
|
||||
<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é sur FreeBSD. Plus de détails à
|
||||
<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é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é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écurité 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é !!! 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é 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 édition,
|
||||
veuillez envoyer un e-mail à <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
|
||||
|
||||
<P></P>
|
||||
<P ALIGN="CENTER"> -Chris Coleman <chrisc@vmunix.com></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écé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 © 1995-2000 Le Projet FreeBSD.
|
||||
Tous droits réservés. <BR>Dernière modification : 2000/04/04 09:41:50</ADDRESS></BODY>
|
||||
</HTML>
|
114
fr/news/qnewsletter-1-5.html
Normal file
114
fr/news/qnewsletter-1-5.html
Normal file
|
@ -0,0 +1,114 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Bulletins d'informations Volume #1 Numé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é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éro #5<BR>
|
||||
Septembre 1998<BR></P>
|
||||
<P></P>
|
||||
|
||||
|
||||
<UL>
|
||||
<LI><B>Informations sur les versions de FreeBSD</B> :
|
||||
La dernière version est la 2.2.7-RELEASE. FreeBSD 2.2.8 est
|
||||
prévu pour le 30 Novembre. FreeBSD 3.0 est prévu pour le
|
||||
15 Octobre. Commencez les bé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éliorations récentes</B> :
|
||||
CAM ("Common Access Method"), couche SCSI implémentée dans la version 3.0-Current.<BR>
|
||||
Perl5 est désormais inclu en standard dans la version 3.0-Current<BR>
|
||||
Support des disques durs IDE d'une capacité supérieure à 8 Go dans la version 2.2<BR>
|
||||
La version 3.0-CURRENT est maintenant en ELF !<BR>
|
||||
FreeBSD pour Alpha est dé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éléchargement sont sur :
|
||||
<A HREF="http://www.FreeBSD.org/java/">http://www.FreeBSD.org/java</A>
|
||||
<P></P></LI>
|
||||
<LI><B>Interface Uniformisée pour les Pilotes de périphé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é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épondre à : 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éveloppement intégré pour Unix avec colorisation de la syntaxe, qui
|
||||
est indépendant du langage utilisé et indé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èmes BSD : "Daemon News"</B> !
|
||||
N'oubliez pas de consulter le magazine en ligne sur les systèmes BSD réalisé par de nombreux
|
||||
membres de la communauté FreeBSD. Les articles doivent être envoyés avant le 15 de chaque mois
|
||||
et sont publié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étente, c'est le travail
|
||||
du système UNIX d'assurer une livraison fiable de la balle à l'endroit où vous avez pointé le
|
||||
pistolet (dans le cas présent, Monsieur Pied). (Terry)
|
||||
<P></P></LI>
|
||||
</UL>
|
||||
|
||||
|
||||
<P></P>
|
||||
<HR>
|
||||
Ceci est un bulletin d'information (au moins) mensuel, publié 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 édition,
|
||||
veuillez envoyer un e-mail à <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
|
||||
|
||||
<P></P>
|
||||
<P ALIGN="CENTER"> -Chris Coleman <chrisc@vmunix.com></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écé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 © 1995-2000 Le Projet FreeBSD.
|
||||
Tous droits réservés. <BR>Dernière modification : 2000/06/15 01:30:04</ADDRESS></BODY>
|
||||
</HTML>
|
91
fr/news/qnewsletter-1-6.html
Normal file
91
fr/news/qnewsletter-1-6.html
Normal file
|
@ -0,0 +1,91 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Bulletins d'informations Volume #1 Numé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é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é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è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évu pour le 30 Novembre.<P></P></LI>
|
||||
<LI><B>Nouvelles sur FreeBSD</B> : le 24 Octobre 1998, ftp.freebsd.org (c'est
|
||||
à 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ées en une seule journée établissant ainsi un nouveau record. Vous
|
||||
pouvez voir le précé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ées sur les diffé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é en version alpha du code source du dé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 à : graeme.brown@bt-sys.bt.co.uk,
|
||||
ballardie@dial.pipex.com <P></P></LI>
|
||||
<LI><B>Magazine en ligne sur les systè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é de contribuer financièrement à des projets de logiciels libres.<P></P></LI>
|
||||
</UL>
|
||||
|
||||
|
||||
<P></P>
|
||||
<HR>
|
||||
Ceci est un bulletin d'information (au moins) mensuel, publié 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 édition,
|
||||
veuillez envoyer un e-mail à <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
|
||||
|
||||
<P></P>
|
||||
<P ALIGN="CENTER"> -Chris Coleman <chrisc@vmunix.com></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écé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 © 1995-2000 Le Projet FreeBSD.
|
||||
Tous droits réservés. <BR>Dernière modification : 2000/06/15 01:30:04</ADDRESS></BODY>
|
||||
</HTML>
|
84
fr/news/qnewsletter-1-7.html
Normal file
84
fr/news/qnewsletter-1-7.html
Normal file
|
@ -0,0 +1,84 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Bulletins d'informations Volume #1 Numé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é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é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ès maintenant disponible.
|
||||
FreeBSD 3.0 est toujours disponible à 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é 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é 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 à utiliser et avec critères de recherche qui sera
|
||||
construite avec les informations donné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é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é 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 édition,
|
||||
veuillez envoyer un e-mail à <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
|
||||
|
||||
<P></P>
|
||||
<P ALIGN="CENTER"> -Chris Coleman <chrisc@vmunix.com></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écé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 © 1995-2000 Le Projet FreeBSD.
|
||||
Tous droits réservés. <BR>Dernière modification : 2000/06/15 01:30:04</ADDRESS></BODY>
|
||||
</HTML>
|
94
fr/news/qnewsletter-2-1.html
Normal file
94
fr/news/qnewsletter-2-1.html
Normal file
|
@ -0,0 +1,94 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Bulletins d'informations Volume #2 Numé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é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é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ésormais en mode maintenance (il n'y a plus de développement actif)<BR>
|
||||
FreeBSD 3.X est désormais la branche stable avec la version 3.1
|
||||
prévue pour le 15 Février 1999.<BR>
|
||||
FreeBSD 4.0 est désormais la version de développement sans aucune date de sortie prévue pour le moment.<BR>
|
||||
<P></P></LI>
|
||||
<LI><B>Nouvelles sur FreeBSD</B> :
|
||||
Greg Lehey a é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 é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é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é 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émentation de "IPsec" pleinement fonctionnelle pour FreeBSD 3.0-RELEASE.
|
||||
N'hésitez pas à rapporter les éventuels bugs à l'é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éro de Janvier de "Daemon News" met en vedette un nouveau personnage de bande dessinée BSD.
|
||||
Le numéro de Février mettra en co-vedette un démon fé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é 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 édition,
|
||||
veuillez envoyer un e-mail à <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
|
||||
|
||||
<P></P>
|
||||
<P ALIGN="CENTER"> -Chris Coleman <chrisc@vmunix.com></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écé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 © 1995-2000 Le Projet FreeBSD.
|
||||
Tous droits réservés. <BR>Dernière modification : 2000/06/15 01:30:04</ADDRESS></BODY>
|
||||
</HTML>
|
98
fr/news/qnewsletter-2-2.html
Normal file
98
fr/news/qnewsletter-2-2.html
Normal file
|
@ -0,0 +1,98 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Bulletins d'informations Volume #2 Numé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é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éro #2<BR>
|
||||
Fé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ésormais la version de développement sans aucune date de sortie pré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çoit l'idé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 être envoyés à l'adresse news@daemonnews.org
|
||||
Nous recherchons des articles concernant :<P> Les questions liées à la licence BSD (GPL versus Artistic versus BSD)<BR>
|
||||
La sécurité / la détection des intrusions<BR>
|
||||
Que faire après un crash / L'analyse des "core dump"<BR>
|
||||
Les débuts des systèmes BSD.</P><P> Si vous êtes intéressé pour écrire un article sur ces sujets, contactez:
|
||||
editors@daemonnews.org ou envoyez vos articles à :
|
||||
article@daemonnews.org</P>
|
||||
<P></P></LI>
|
||||
<LI><B>Netware</B>:
|
||||
Un client FreeBSD pour netware en version bé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è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è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é 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 édition,
|
||||
veuillez envoyer un e-mail à <A HREF="mailto:fbsd-book@vmunix.com">fbsd-book@vmunix.com</A></P>
|
||||
|
||||
<P></P>
|
||||
<P ALIGN="CENTER"> -Chris Coleman <chrisc@vmunix.com></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écédent</A>
|
||||
|
||||
<HR NOSHADE>
|
||||
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
|
||||
Copyright © 1995-2000 Le Projet FreeBSD.
|
||||
Tous droits réservés. <BR>Dernière modification : 2000/06/15 01:30:04</ADDRESS></BODY>
|
||||
</HTML>
|
64
fr/news/qnewsletter.html
Normal file
64
fr/news/qnewsletter.html
Normal file
|
@ -0,0 +1,64 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Bulletins d'informations FreeBSD</TITLE>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
|
||||
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Bulletins d'informations FreeBSD</FONT></H1><BR CLEAR="ALL">
|
||||
|
||||
|
||||
<MAP NAME="bar">
|
||||
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
|
||||
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
|
||||
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
|
||||
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
|
||||
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
|
||||
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
|
||||
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
|
||||
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
|
||||
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
|
||||
</MAP>
|
||||
|
||||
<P>Bulletins d'informations FreeBSD. Nouvelles du monde FreeBSD.</P>
|
||||
|
||||
|
||||
<A NAME="2000"></A>
|
||||
<H2>2000</H2>
|
||||
<UL>
|
||||
<LI><B>Septembre</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0009230128470.758-100000">Septembre 2000</A></LI>
|
||||
<LI><B>Juillet</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0008080027020.758-100000">Juillet 2000</A></LI>
|
||||
<LI><B>Juin</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0006201326440.758-100000">Juin 2000</A></LI>
|
||||
<LI><B>Mai</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0005230125390.758-100000">Mai 2000</A></LI>
|
||||
<LI><B>Février</B> <A HREF="http://docs.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0002091128370.51970-100000">Fé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évrier</B> <A HREF="qnewsletter-2-2.html">Volume #2 Numéro #2</A></LI>
|
||||
<LI><B>Janvier</B> <A HREF="qnewsletter-2-1.html">Volume #2 Numé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éro #7</A></LI>
|
||||
<LI><B>Octobre</B> <A HREF="qnewsletter-1-6.html">Volume #1 Numéro #6</A></LI>
|
||||
<LI><B>Septembre</B> <A HREF="qnewsletter-1-5.html">Volume #1 Numéro #5</A></LI>
|
||||
<LI><B>Août</B> <A HREF="qnewsletter-1-4.html">Volume #1 Numéro #4</A></LI>
|
||||
<LI><B>Juillet</B> <A HREF="qnewsletter-1-3.html">Volume #1 Numéro #3</A></LI>
|
||||
<LI><B>Juillet</B> <A HREF="qnewsletter-1-2.html">Volume #1 Numéro #2</A></LI>
|
||||
<LI><B>Juin</B> <A HREF="qnewsletter-1-1.html">Volume #1 Numé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 © 1995-2000 Le Projet FreeBSD.
|
||||
Tous droits réservés. <BR>Dernière modification : 2000/09/23 18:43:37</ADDRESS></BODY>
|
||||
</HTML>
|
Loading…
Reference in a new issue