Approved by:	doceng (implicit)
This commit is contained in:
Gabor Kovesdan 2012-08-27 11:43:27 +00:00
commit 763dee20eb
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/projects/sgml2xml/; revision=39459
33 changed files with 1936 additions and 274 deletions
de_DE.ISO8859-1
books
developers-handbook/x86
handbook/users
share/sgml
en_US.ISO8859-1
articles
books
dev-model
handbook
cutting-edge
mirrors
porters-handbook
htdocs
fr_FR.ISO8859-1/articles
ja_JP.eucJP
books/handbook/cutting-edge
share/sgml
share

View file

@ -384,7 +384,7 @@ etc...</programlisting>
</sect2>
<sect2 id="x86-where-return-values">
<title>Wo sind die Rückgabewerdet?</title>
<title>Wo sind die Rückgabewerde?</title>
<para>Leider gilt: Es kommt darauf an... Für die meisten
Systemaufrufe liegt er in <varname

View file

@ -493,7 +493,7 @@ Goodbye!
Benutzer gehört).</para>
</step>
<step>
<para>Entfernt eingegange E-Mails des Benutzers
<para>Entfernt eingegangene E-Mails des Benutzers
aus <filename>/var/mail</filename>.</para>
</step>
<step>

View file

@ -4,7 +4,7 @@
<!--
$FreeBSD$
$FreeBSDde$
basiert auf: r39290
basiert auf: r39424
-->
<!-- Simple schema for FreeBSD Project news.
@ -41,6 +41,31 @@
<month>
<name>8</name>
<day>
<name>23</name>
<event>
<title>&os;&nbsp;9.1-RC1 verf&#252;gbar</title>
<p>Der erste Release Candidate aus dem &os;-9.1-Releasezyklus
ist <a
href="&lists.stable;/2012-August/069233.html">verf&#252;gbar</a>.
ISO-Images f&#252;r die Architekturen amd64, i386, powerpc64 sowie
sparc64 sind inzwischen auf den meisten <a
href="&enbase;/doc/de_DE.ISO8859-1/books/handbook/mirrors-ftp.html">&os;
Spiegelservern</a> vorhanden.</p>
</event>
</day>
<day>
<name>21</name>
<event>
<p>Neuer Committer: <a
href="mailto:zont@FreeBSD.org">Andrey Zonov</a> (src)</p>
</event>
</day>
<day>
<name>1</name>

View file

@ -579,7 +579,7 @@
preferable.</para>
</sect3>
<sect3>
<sect3 id="subversion-primer-base-layout">
<title><literal>RELENG_*</literal> Branches and General
Layout</title>
@ -1155,7 +1155,7 @@
&prompt.user; <userinput>svn commit stable/8</userinput></screen>
</sect3>
<sect3>
<sect3 id="subversion-primer-merge">
<title>Merging with <acronym>SVN</acronym></title>
<para>This section deals with merging code from one branch to
@ -1445,6 +1445,38 @@ $target - head/$source:$P,$Q,$R</screen>
Subversion.</para>
</sect5>
<sect5>
<title>Practical Example</title>
<para>As an practical example, consider the following scenario:
The changes to <filename>netmap.4</filename> in r238987 is
to be merged from CURRENT to 9-STABLE. The file resides in
<filename class="directory">head/share/man/man4</filename> and
according to <xref linkend="subversion-primer-merge"/> this
is also where to do the merge. Note that in this example
all paths are relative to the top of the svn repository.
for more information on the directory layout, see
<xref linkend="subversion-primer-base-layout"/>.</para>
<para>The first step is to inspect the existing mergeinfo.</para>
<screen>&prompt.user; <userinput>svn propget svn:mergeinfo -R stable/9/share/man/man4</userinput></screen>
<para>Take a quick note of how it looks before moving on to the next
step; doing the actual merge:</para>
<screen>&prompt.user; <userinput>svn merge -c r238987 svn+ssh://svn.freebsd.org/base/head/share/man/man4 stable/9/share/man/man4</userinput>
--- Merging r238987 into 'stable/9/share/man/man4':
U stable/9/share/man/man4/netmap.4
--- Recording mergeinfo for merge of r238987 into
'stable/9/share/man/man4':
U stable/9/share/man/man4</screen>
<para>Check that the revision number of the merged revision
has been added. Once this is verified, the only thing left
is the actual commit.</para>
<screen>&prompt.user; <userinput>svn commit stable/9/share/man/man4</userinput></screen>
</sect5>
<sect5>
<title>Merging into the Kernel
(<filename class="directory">sys/</filename>)</title>

View file

@ -7278,6 +7278,11 @@
<email>Nick.Barnes@pobox.com</email></para>
</listitem>
<listitem>
<para>Nick Dewing
<email>ndewing@experts-exchange.com</email></para>
</listitem>
<listitem>
<para>Nick Handel
<email>nhandel@NeoSoft.com</email></para>

View file

@ -1615,6 +1615,10 @@
<para>&a.sephe;</para>
</listitem>
<listitem>
<para>&a.zont;</para>
</listitem>
<listitem>
<para>&a.az;</para>
</listitem>

View file

@ -2,6 +2,10 @@
<!-- $FreeBSD$ -->
<itemizedlist>
<listitem>
<para>&a.flz; (2008 - 2012)</para>
</listitem>
<listitem>
<para>&a.kris; (2001 - 2010)</para>
</listitem>
@ -38,6 +42,10 @@
<para>&a.steve; (2001 - 2004)</para>
</listitem>
<listitem>
<para>&a.ade; (2001 - 2002)</para>
</listitem>
<listitem>
<para>&a.asami; ( - 2001)</para>
</listitem>

View file

@ -2729,12 +2729,25 @@ ganglia:*:102:102::0:0:User &:/usr/local/ganglia:/bin/sh</screen>
<filename>/etc/.ssh/</filename>.</para>
</step>
<step>
<para>Add the following to <filename>/boot/loader.conf</filename>:<screen>
console="vidconsole,comconsole"</screen>
</para>
</step>
<step>
<para>Add the following to <filename>/etc/sysctl.conf</filename>:<screen>
kern.maxfiles=40000</screen>
</para>
</step>
<step>
<para>Make sure the following change is made to
<filename>/etc/ttys</filename>:<screen>
ttyu0 "/usr/libexec/getty std.9600" vt100 on secure</screen>
</para>
</step>
<step>
<para>TBA</para>
</step>
@ -2750,26 +2763,20 @@ kern.maxfiles=40000</screen>
<step>
<para>Create a <application>zfs</application> volume named
<filename>a</filename> and mount it on
<filename>/a</filename>.
<filename>/a</filename>:<screen>
# zpool create a mirror da1 da2 mirror da3 da4 mirror da5 da6 mirror da7 da8</screen>
</para>
</step>
<step>
<para><screen>
<para>Set up the base portbuild directory:<screen>
# mkdir -p /a/portbuild
# cd /a/portbuild
#
# chown portmgr:portmgr .
# chmod 775 .</screen>
</para>
</step>
<step>
<para>Create a <application>zfs</application> volume named
<filename>a/portbuild</filename> and mount it on
<filename>/a/portbuild</filename>.
</para>
</step>
<step>
<para>TBA</para>
</step>

View file

@ -205,11 +205,15 @@
</glossentry>
<glossentry>
<glossterm>repocopy</glossterm>
<glossterm>repocopy (obsolete)</glossterm>
<glossdef>
<para>The resolution of the problem report is dependent on a
repository copy, or repocopy, operation within the CVS
repository which is awaiting completion.</para>
<para>Given that all repositories now use Subversion, there is
no need for this state anymore. Subversion has native
support for copying and moving files.</para>
</glossdef>
</glossentry>

View file

@ -1165,7 +1165,7 @@
unresolved.
</para>
<para>
Hat currently held by: &a.gavin;.
Hat currently held by: &a.pgj;.
</para>
</section>

View file

@ -737,13 +737,11 @@ Fetching 133 new ports or files... done.</screen>
shipped with each release by maintaining a local copy of the
latest &os; Documentation Set.</para>
<sect2 id="csup-doc">
<title>Using CVSup to Update the Documentation</title>
<sect2 id="dsvn-doc">
<title>Using <application>Subversion</application> to Update the Documentation</title>
<para>The sources and the installed copy of the &os; documentation
can be updated with <application>CVSup</application>, using a
mechanism similar to the one employed for the base system
sources (c.f. <xref linkend="makeworld"/>). This section
<para>The &os; documentation sources can be obtained with
<application>Subversion</application>. This section
describes:</para>
<itemizedlist>
@ -756,7 +754,7 @@ Fetching 133 new ports or files... done.</screen>
<listitem>
<para>How to download a copy of the documentation source
at <filename class="directory">/usr/doc</filename>,
using <application>CVSup</application>.</para>
using <application>Subversion</application>.</para>
</listitem>
<listitem>
@ -776,7 +774,7 @@ Fetching 133 new ports or files... done.</screen>
</sect2>
<sect2 id="installing-documentation-toolchain">
<title>Installing CVSup and the Documentation Toolchain</title>
<title>Installing <application>Subversion</application> and the Documentation Toolchain</title>
<para>Rebuilding the &os; documentation from source requires a
fairly large collection of tools. These tools are not part of
@ -805,68 +803,34 @@ Fetching 133 new ports or files... done.</screen>
necessary.</para>
</note>
<para>For more information on installing and using
<application>CVSup</application>, see <link
linkend="cvsup">Using CVSup</link>.</para>
<para><application>Subversion</application> is installed with
the <filename role="package">textproc/docproj</filename>
port.</para>
</sect2>
<sect2 id="updating-documentation-sources">
<title>Updating the Documentation Sources</title>
<para>The <application>CVSup</application> utility can fetch a
clean copy of the documentation sources, using
the <filename>/usr/share/examples/cvsup/doc-supfile</filename>
file as a configuration template. The default update host is
set to a placeholder value in <filename>doc-supfile</filename>,
but &man.cvsup.1; accepts a host name through the command line,
so the documentation sources can be fetched from one of the
<application>CVSup</application> servers by typing:</para>
<para>The <application>Subversion</application> program can fetch a
clean copy of the documentation sources by typing:</para>
<screen>&prompt.root; <userinput>cvsup -h <replaceable>cvsup.FreeBSD.org</replaceable> -g -L 2 <filename>/usr/share/examples/cvsup/doc-supfile</filename></userinput></screen>
<para>Change <replaceable>cvsup.FreeBSD.org</replaceable> to the
nearest <application>CVSup</application> server. See <xref
linkend="cvsup-mirrors"/> for a complete listing of mirror
sites.</para>
<screen>&prompt.root; <userinput>svn checkout <literal>svn://svn.FreeBSD.org/doc/head</literal> <filename class="directory">/usr/doc</filename></userinput></screen>
<para>The initial download of the documentation sources may take a
while. Let it run until it completes.</para>
<para>Future updates of the documentation sources may be fetched
by running the same command.
The <application>CVSup</application> utility downloads and
copies only the updates since the last time it ran, so every run
of <application>CVSup</application> after the first complete run
should be pretty fast.</para>
by running:</para>
<screen>&prompt.root; <userinput>svn update <filename class="directory">/usr/doc</filename></userinput></screen>
<para>After checking out the sources, an alternative way of
updating the documentation is supported by the
<filename>Makefile</filename> of the <filename
class="directory">/usr/doc</filename> directory. By setting
<makevar>SUP_UPDATE</makevar>, <makevar>SUPHOST</makevar> and
<makevar>DOCSUPFILE</makevar> in the
<filename>/etc/make.conf</filename> file, it is possible to
run:</para>
class="directory">/usr/doc</filename> directory by running:</para>
<screen>&prompt.root; <userinput>cd /usr/doc</userinput>
&prompt.root; <userinput>make update</userinput></screen>
<para>A typical set of these &man.make.1; options
for <filename>/etc/make.conf</filename> is:</para>
<programlisting>SUP_UPDATE= yes
SUPHOST?= cvsup.freebsd.org
DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile</programlisting>
<note>
<para>Setting the <makevar>SUPHOST</makevar>
and <makevar>DOCSUPFILE</makevar> value
with <literal>?=</literal> permits overriding them in the
command-line of make. This is the recommended way of adding
options to <filename>make.conf</filename>, to avoid having to
edit the file every time a different option value has to be
tested.</para>
</note>
</sect2>
<sect2 id="updating-documentation-options">
@ -904,15 +868,6 @@ DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile</programlisting>
</listitem>
</varlistentry>
<varlistentry>
<term><makevar>SUPHOST</makevar></term>
<listitem>
<para>The hostname of the <application>CVSup</application>
server to use when updating.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><makevar>DOCDIR</makevar></term>
@ -948,15 +903,6 @@ DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile</programlisting>
<screen>&prompt.root; <userinput>cd /usr/doc</userinput>
&prompt.root; <userinput>make install clean</userinput></screen>
<para>If <filename>make.conf</filename> has been set up with the
correct <makevar>DOCSUPFILE</makevar>, <makevar>SUPHOST</makevar>
and <makevar>SUP_UPDATE</makevar> options, the install step may
be combined with an update of the documentation sources by
typing:</para>
<screen>&prompt.root; <userinput>cd /usr/doc</userinput>
&prompt.root; <userinput>make update install clean</userinput></screen>
<para>If an update of only a specific language is desired,
&man.make.1; can be invoked in a language specific subdirectory
of <filename class="directory">/usr/doc</filename>, i.e.:</para>
@ -998,7 +944,7 @@ DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile</programlisting>
though. Building the documentation sources requires a fairly
large collection of tools and utilities, the
<emphasis>documentation toolchain</emphasis>, a certain level of
familiarity with <application>CVS</application> and source
familiarity with <application>Subversion</application> and source
checkouts from a repository, and a few manual steps to build the
checked out sources. In this section, we describe an
alternative way of updating the installed copies of the &os;
@ -1130,7 +1076,7 @@ DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile</programlisting>
<note>
<para>Notice that the default target directory
differs from the directory used by the
<application>CVSup</application> method. This is
<application>Subversion</application> method. This is
because we are installing a port, and ports are
usually installed under the <filename
class="directory">/usr/local</filename> directory.

View file

@ -228,6 +228,108 @@
linkend="burncd"/>, burncd.</para>
</sect1>
<sect1 id="mirrors-svn">
<title>Subversion Sites</title>
<indexterm>
<primary>svn</primary>
</indexterm>
<para>As of July 2012, &os; uses
<ulink url="http://subversion.apache.org/">Subversion</ulink>
(<emphasis>svn</emphasis>) as the primary version control system
for storing all of &os;'s source code, documentation, and the
Ports Collection.</para>
<note>
<para>Subversion is generally a developer tool. Most users
should use
<link linkend="updating-upgrading-freebsdupdate">FreeBSD
Update</link> to update the &os; base system, and
<link linkend="updating-upgrading-portsnap">Portsnap</link>
to update the &os; Ports Collection.</para>
</note>
<para>The &os; svn mirror network is still in its early days, and
will likely change. Do not count on this list of mirrors being
static. In particular, the SSL certificates of the servers will
likely change at some point.</para>
<para>In Subversion, URLs are used to designate a repository,
taking the form of <literal>protocol://hostname/path</literal>.
Mirrors may support different protocols as specified below. The
first component of the path is the FreeBSD repository to access.
There are three different repositories, <literal>base</literal>
for the &os; Base system, <literal>ports</literal> for the
FreeBSD Ports Collection, and <literal>doc</literal> for the
FreeBSD Documentation. For example, the URL
<literal>svn://svn0.us-east.FreeBSD.org/ports/head/</literal>
specifies the main branch of the &os; ports repository on the
<hostid role="fqdn">svn0.us-east.FreeBSD.org</hostid> mirror,
using the svn protocol.</para>
<para>All mirrors carry all repositories.</para>
<para>The master &os; Subversion server,
<hostid role="fqdn">svn.FreeBSD.org</hostid>, is publicly
accessible, read-only. That may change in the future, so users
are encouraged to use one of the official mirrors. To view the
&os; Subversion repositories through a browser, use <ulink
url="http://svnweb.FreeBSD.org/">http://svnweb.FreeBSD.org/</ulink>.</para>
<informaltable>
<tgroup cols="4">
<colspec colwidth="3*"/>
<colspec colwidth="1*"/>
<colspec colwidth="2*"/>
<colspec colwidth="10*"/>
<thead>
<row>
<entry>Name</entry>
<entry>Protocols</entry>
<entry>Location</entry>
<entry>SSL fingerprint</entry>
</row>
</thead>
<tbody>
<row>
<entry><hostid
role="fqdn">svn0.us-west.FreeBSD.org</hostid></entry>
<entry>svn, <ulink
url="http://svn0.us-west.FreeBSD.org/base/">http</ulink>,
<ulink
url="https://svn0.us-west.FreeBSD.org/base/">https</ulink></entry>
<entry>USA, California</entry>
<entry>SHA1
<literal>79:35:8F:CA:6D:34:D9:30:44:D1:00:AF:33:4D:E6:11:44:4D:15:EC</literal></entry>
</row>
<row>
<entry><hostid
role="fqdn">svn0.us-east.FreeBSD.org</hostid></entry>
<entry>svn, <ulink
url="http://svn0.us-east.FreeBSD.org/base/">http</ulink>,
<ulink
url="https://svn0.us-east.FreeBSD.org/base/">https</ulink></entry>
<entry>USA, New Jersey</entry>
<entry>SHA1
<literal>06:D1:23:DE:5E:7A:F7:2B:7A:7E:74:95:5F:54:8D:5C:B0:D6:2E:8F</literal></entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect1>
<sect1 id="anoncvs">
<title>Anonymous CVS</title>

View file

@ -3453,6 +3453,56 @@ ALWAYS_KEEP_DISTFILES= yes
<filename>Makefile</filename>.</para>
</sect1>
<sect1 id="makefile-portscout">
<title><makevar>PORTSCOUT</makevar></title>
<para><application>Portscout</application> is an automated
distfile check utility for the &os;&nbsp;Ports Collection,
described in detail in
<xref linkend="distfile-survey"/>.</para>
<para>The <makevar>PORTSCOUT</makevar> variable defines
special conditions within which the
<application>Portscout</application> distfile
scanner should be restricted.</para>
<para>Situations where the <makevar>PORTSCOUT</makevar>
variable should be set include:</para>
<itemizedlist>
<listitem>
<para>When distfiles should be ignored, whether for
specific versions, or specific minor revisions. For
example, to exclude version
<replaceable>8.2</replaceable> from distfile version
checks because it is known to be broken, add:</para>
<programlisting>PORTSCOUT= ignore:8.2</programlisting>
</listitem>
<listitem>
<para>When specific versions or specific major and minor
revisions of a distfile should be checked. For
example, if only version
<replaceable>0.6.4</replaceable> should be monitored
because newer versions have compatablity issues with
&os;, add:</para>
<programlisting>PORTSCOUT= limit:^0\.6\.4</programlisting>
</listitem>
<listitem>
<para>When URLs listing the available versions differ
from the download URLs. For example, to limit
distfile version checks to the download page for the
<filename role="package">databases/pgtune</filename>
port, add:</para>
<programlisting>PORTSCOUT= site:http://pgfoundry.org/frs/?group_id=1000416</programlisting>
</listitem>
</itemizedlist>
</sect1>
<sect1 id="makefile-depend">
<title>Dependencies</title>

View file

@ -133,7 +133,6 @@
<li>&a.linimon; &lt;<a href="mailto:linimon@FreeBSD.org">linimon@FreeBSD.org</a>&gt;</li>
<li>&a.pav; &lt;<a href="mailto:pav@FreeBSD.org">pav@FreeBSD.org</a>&gt;</li>
<li>&a.itetcu; &lt;<a href="mailto:itetcu@FreeBSD.org">itetcu@FreeBSD.org</a>&gt;</li>
<li>&a.flz; &lt;<a href="mailto:flz@FreeBSD.org">flz@FreeBSD.org</a>&gt;</li>
<li>&a.miwi; &lt;<a href="mailto:miwi@FreeBSD.org">miwi@FreeBSD.org</a>&gt;</li>
</ul>
@ -244,8 +243,7 @@
<li>&a.philip; &lt;<a href="mailto:philip@FreeBSD.org">philip@FreeBSD.org</a>&gt;</li>
<li>&a.qingli; &lt;<a href="mailto:qingli@FreeBSD.org">qingli@FreeBSD.org</a>&gt;</li>
<li>&a.remko; &lt;<a href="mailto:remko@FreeBSD.org">remko@FreeBSD.org</a>&gt;</li>
<li>&a.rwatson; &lt;<a href="mailto:rwatson@FreeBSD.org">rwatson@FreeBSD.org</a>&gt;
(Core Team Liaison)</li>
<li>&a.rwatson; &lt;<a href="mailto:rwatson@FreeBSD.org">rwatson@FreeBSD.org</a>&gt;</li>
<li>&a.simon; &lt;<a href="mailto:simon@FreeBSD.org">simon@FreeBSD.org</a>&gt;
(Officer)</li>
<li>&a.stas; &lt;<a href="mailto:stas@FreeBSD.org">stas@FreeBSD.org</a>&gt;</li>

View file

@ -85,27 +85,27 @@
<tr>
<td>RC1</td>
<td>20&nbsp;July&nbsp;2012</td>
<td>-</td>
<td>23&nbsp;August&nbsp;2012</td>
<td>First release candidate.</td>
</tr>
<tr>
<td>RC2</td>
<td>3&nbsp;August&nbsp;2012</td>
<td>7&nbsp;September&nbsp;2012</td>
<td>-</td>
<td>Second release candidate.</td>
</tr>
<tr>
<td>RELEASE build</td>
<td>13&nbsp;August&nbsp;2012</td>
<td>14&nbsp;September&nbsp;2012</td>
<td>-</td>
<td>9.1-RELEASE built.</td>
</tr>
<tr>
<td>RELEASE announcement</td>
<td>17&nbsp;August&nbsp;2012</td>
<td>19&nbsp;September&nbsp;2012</td>
<td>-</td>
<td>9.1-RELEASE press release.</td>
</tr>

View file

@ -6,7 +6,8 @@
# Original revision: 1.3
#
SUBDIR = committers-guide
SUBDIR = building-products
SUBDIR+= committers-guide
SUBDIR+= contributing
SUBDIR+= contributing-ports
SUBDIR+= contributors

View file

@ -0,0 +1,20 @@
#
# $FreeBSD$
#
# Article: Building products using FreeBSD
DOC?= article
FORMATS?= html
INSTALL_COMPRESSED?= gz
INSTALL_ONLY_COMPRESSED?=
SRCS= article.sgml
IMAGES_EN= freebsd-branches.pic freebsd-organization.pic
URL_RELPREFIX?= ../../../..
DOC_PREFIX?= ${.CURDIR}/../../..
.include "${DOC_PREFIX}/share/mk/doc.project.mk"

File diff suppressed because it is too large Load diff

View file

@ -3,7 +3,7 @@
The FreeBSD Documentation Project
The FreeBSD Japanese Documentation Project
Original revision: r38879
Original revision: r39399
$FreeBSD$
-->
@ -751,13 +751,12 @@ Fetching 133 new ports or files... done.</screen>
最新の &os;
ドキュメントセットをローカルで維持する方法が用意されています。</para>
<sect2 id="csup-doc">
<title>CVSup を用いたドキュメントのアップデート方法</title>
<sect2 id="dsvn-doc">
<title><application>Subversion</application>
を用いたドキュメントのアップデート方法</title>
<para>&os; のドキュメントのソースやインストールされたドキュメントは、
ベースシステムのソースのアップデート
(<xref linkend="makeworld"/> を参照) と同様、
<application>CVSup</application> を用いてアップデートできます。
<para>&os; のドキュメントのソースは、
<application>Subversion</application> を用いて入手できます。
この節では以下について説明します。</para>
<itemizedlist>
@ -768,9 +767,10 @@ Fetching 133 new ports or files... done.</screen>
</listitem>
<listitem>
<para><application>CVSup</application> を用いて
<para><application>Subversion</application> を用いて、
ドキュメントのソースを
<filename class="directory">/usr/doc</filename>
ドキュメントのソースをダウンロードする方法。</para>
以下にダウンロードする方法。</para>
</listitem>
<listitem>
@ -788,12 +788,13 @@ Fetching 133 new ports or files... done.</screen>
</sect2>
<sect2 id="installing-documentation-toolchain">
<title>CVSup およびドキュメントツールチェインのインストール</title>
<title><application>Subversion</application>
およびドキュメントツールチェインのインストール</title>
<para>&os; のドキュメントをソースから再構築するには、
かなり大きなツールのコレクションが必要です。
これらのツールは多くのディスク容量を必要とし、また、
すべての &os; ユーザにとって有用というわけではないため
すべての &os; ユーザにとって有用というわけではないので
&os; ベースシステムの一部ではありません。
これらのツールは、&os;
のために新しいドキュメントを活発に執筆している方や、
@ -817,68 +818,36 @@ Fetching 133 new ports or files... done.</screen>
このツールをインストールしないことはとても賢明です。</para>
</note>
<para><application>CVSup</application>
のインストールおよび利用に関するさらなる情報は、<link
linkend="cvsup">CVSup を使う</link> の章をご覧ください。</para>
<para><filename role="package">textproc/docproj</filename>
をインストールすると、<application>Subversion</application>
もインストールされます。</para>
</sect2>
<sect2 id="updating-documentation-sources">
<title>ドキュメントのソースをアップデートする</title>
<para><application>CVSup</application> ユーティリティを使って、
ドキュメントのソースをダウンロードできます。
ここで <filename>/usr/share/examples/cvsup/doc-supfile</filename>
ファイルが設定のテンプレートです。
デフォルトのアップデートホストは <filename>doc-supfile</filename>
のプレースホルダの値で設定されていますが、
&man.cvsup.1; にコマンドラインでホスト名を指定することもできます。
<application>CVSup</application> サーバの
1 つからドキュメントのソースをダウンロードするには以下のように入力してください。</para>
<para>ドキュメントのソースは、
<application>Subversion</application>
プログラムを使ってダウンロードできます。
ダウンロードするには以下のように入力してください。</para>
<screen>&prompt.root; <userinput>cvsup -h <replaceable>cvsup.FreeBSD.org</replaceable> -g -L 2 <filename>/usr/share/examples/cvsup/doc-supfile</filename></userinput></screen>
<para>ここで <replaceable>cvsup.FreeBSD.org</replaceable> を最も近くの
<application>CVSup</application> サーバに置き換えてください。
ミラーサイトの完全な一覧については、<xref
linkend="cvsup-mirrors"/> をご覧ください。</para>
<screen>&prompt.root; <userinput>svn checkout <literal>svn://svn.FreeBSD.org/doc/head</literal> <filename class="directory">/usr/doc</filename></userinput></screen>
<para>最初にドキュメントのソースをダウンロードするには少し時間がかかります。
ダウンロードが終わるまでお待ちください。</para>
<para>将来ドキュメントのソースをアップデートするには、
同じコマンドを実行してください。<application>CVSup</application>
ユーティリティは最後に実行した時からのアップデートのみをダウンロードするので、
最初に <application>CVSup</application> を実行した後では、
コマンドの実行時間はかなり短くなります</para>
<para>ダウンロードしたドキュメントのソースをアップデートするには、
以下のコマンドを実行してください。</para>
<para>ソースを入手したら、ドキュメントのアップデートに、<filename
<screen>&prompt.root; <userinput>svn update <filename class="directory">/usr/doc</filename></userinput></screen>
<para>ソースを入手したら、<filename
class="directory">/usr/doc</filename> ディレクトリの
<filename>Makefile</filename> を使うこともできます。
<filename>/etc/make.conf</filename> ファイルの
<makevar>SUP_UPDATE</makevar>, <makevar>SUPHOST</makevar> および
<makevar>DOCSUPFILE</makevar> を設定すると、
以下を実行できるようになります。</para>
<filename>Makefile</filename> を使い、
以下のようにドキュメントをアップデートすることもできます。</para>
<screen>&prompt.root; <userinput>cd /usr/doc</userinput>
&prompt.root; <userinput>make update</userinput></screen>
<para>以下は、<filename>/etc/make.conf</filename> の &man.make.1;
オプションの典型的な例です。</para>
<programlisting>SUP_UPDATE= yes
SUPHOST?= cvsup.freebsd.org
DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile</programlisting>
<note>
<para><makevar>SUPHOST</makevar> および
<makevar>DOCSUPFILE</makevar> の値を
<literal>?=</literal> にすると、
make のコマンドラインからの上書きを許可します。
これは、さまざまなオプションの値をテストする場合に、
値ごとにファイルを編集することを避けられるため、
<filename>make.conf</filename>
にオプションを追加する方法として推奨されています。</para>
</note>
</sect2>
<sect2 id="updating-documentation-options">
@ -916,15 +885,6 @@ DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile</programlisting>
</listitem>
</varlistentry>
<varlistentry>
<term><makevar>SUPHOST</makevar></term>
<listitem>
<para>アップデート時に使う <application>CVSup</application>
サーバのホストネーム。</para>
</listitem>
</varlistentry>
<varlistentry>
<term><makevar>DOCDIR</makevar></term>
@ -958,15 +918,6 @@ DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile</programlisting>
<screen>&prompt.root; <userinput>cd /usr/doc</userinput>
&prompt.root; <userinput>make install clean</userinput></screen>
<para>もし、<filename>make.conf</filename> で
<makevar>DOCSUPFILE</makevar>, <makevar>SUPHOST</makevar> および
<makevar>SUP_UPDATE</makevar> オプションを適切に設定しているのであれば、
インストールのステップは、
以下のようにドキュメントのアップデート作業と統合できます。</para>
<screen>&prompt.root; <userinput>cd /usr/doc</userinput>
&prompt.root; <userinput>make update install clean</userinput></screen>
<para>もし、ある特定の言語のみをアップデートしたいのであれば、
<filename class="directory">/usr/doc</filename>
サブディレクトリで以下のように &man.make.1; を実行してください。</para>
@ -1009,7 +960,7 @@ DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile</programlisting>
ドキュメントをソースから構築するには、
かなり大きなツールとユーティリティから構成される
<emphasis>ドキュメンテーションツールチェイン</emphasis> が必要です。
また、<application>CVS</application>
また、<application>Subversion</application>
リポジトリからソースをチェックアウトし、
チェックアウトしたソースからドキュメントを手動で構築する方法について、
それなりに熟知している必要もあります。
@ -1147,7 +1098,7 @@ DOCSUPFILE?= /usr/share/examples/cvsup/doc-supfile</programlisting>
<note>
<para>デフォルトのターゲットディレクトリは、
<application>CVSup</application>
<application>Subversion</application>
を用いる方法とは異なります。
なぜならば、この節で説明をしている方法では
port を用いてインストールしており、

View file

@ -20,7 +20,7 @@
the contents of <title> will be preferred over <p>.
$FreeBSD$
Original revision: r39290
Original revision: r39436
-->
<news>
<cvs:keyword xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
@ -33,6 +33,29 @@
<month>
<name>8</name>
<day>
<name>23</name>
<event>
<title>&os; 9.1-RC1 公開</title>
<p>&os;-9.1 リリースサイクルの最初のリリース候補版が公開されました。
<a href="&url.doc.base;/books/handbook/mirrors-ftp.html">&os;
ミラーサイト</a> において、amd64, i386 および powerpc64
アーキテクチャの ISO イメージが <a
href="&lists.stable;/2012-August/069233.html">公開</a>
されています。</p>
</event>
</day>
<day>
<name>21</name>
<event>
<p>新コミッタ就任:
<a href="mailto:zont@FreeBSD.org">Andrey Zonov</a> (src)</p>
</event>
</day>
<day>
<name>1</name>

View file

@ -1,41 +1,41 @@
<!-- $FreeBSD$ -->
<!--
sh addkey.sh crees E1EBCAC4;
sh addkey.sh crees 1E12E96A;
-->
<programlisting role="pgpfingerprint"><![CDATA[
pub 2048R/E1EBCAC4 2011-06-11 [expires: 2012-06-10]
Key fingerprint = 2066 B855 E4B1 226A 8B4C B6E6 B084 92D1 E1EB CAC4
uid Chris Rees <crees@freebsd.org>
sub 2048R/FA45D5D6 2011-06-11 [expires: 2012-06-10]
pub 2048R/1E12E96A 2012-08-26
Key fingerprint = 8C57 BE3B D320 5FFC C4C3 C0B0 900F 45A6 1E12 E96A
uid Chris Rees <crees@FreeBSD.org>
sub 2048R/C10740CD 2012-08-26 [expires: 2013-08-26]
]]></programlisting>
<programlisting role="pgpkey"><![CDATA[
-----BEGIN PGP PUBLIC KEY BLOCK-----
mQENBE3zP7YBCADI9977L+dBZPFBuI436OF4Q4MtVao5W1AflipqTpvt3PwUvNlZ
1abmJFjglvOP8ilYEPyPjW7+E+r5/rGP6hce695AwrnU4fip5lCFyMUKKCQuSqDB
n9gbKPiZKY9oI8dqJEn8zehvkdujgzy7dC2WB+nL/sOe9dagMvEiIM60cR4JTnNu
pBePulRWX2p+GlSLbtrovOFChNGdwUhVIl869FOBWMrfMYRXIHwF88lBhzjm0zrL
pjZUIKbBzbJ+jN11A/MC2UaI2jEHgoFn35g6s8AmVKfYp3bv3t05Yuy/najRaoa7
qz7IZVnmqBbZlFL34ANIzNVlvyGYX6A01cAVABEBAAG0HkNocmlzIFJlZXMgPGNy
ZWVzQGZyZWVic2Qub3JnPokBPgQTAQIAKAUCTfM/tgIbAwUJAeEzgAYLCQgHAwIG
FQgCCQoLBBYCAwECHgECF4AACgkQsISS0eHrysRkgAf/QhvWrXPbdghpxWFJkO/E
L8A3CbJCyEUvTLs8JRM+I7g0kdDQH03uw23GMHSNvnn3loncFGavSx7035BeJ22b
oBmcVkjAKOoa0JPjGvrJiXlnCE8vxi0ed6O14WR7rZwN4WQftOY/pX+SOMgSU3wS
rnm1YNp49H0f5H24qXRrpAjrvdPgnzEkyFWv/VzADsruA+8N68ut3DLP2GKaYBus
GRvlGHMkt+rXgR1yNvQgwGikQ4wX+PhwqL58dz6Sp0SRikQnNba8ExSBWbd3Z3PD
WGDzJUj3h/TdEvlRsGecFviGdBms0EO9RlJVPa+EYYx8GOlj/NkKLwHVGKbC0PmC
V7kBDQRN8z+2AQgA2ItQ76DHBjDTfygxQcofK7jfI9JIe4zLHiQZSDs5452KTgp3
A1apSyI40HpujPPR7cbAwXdwrFy6lkCY1u+dqh/jkpcqKEmUoPbOBQEBylfTn3Ca
UZdilthppduRaHag5zJJiMOLBR38tM1enszIVU18BYttBVf/DEMEOyWAcSUDLk2R
ioZqRLQGSjSwAbCuHaOhPoVl14EOgPesk3SSAQm8h5eHsiBOMejuyuMi/qFkvbXT
ynUCNXYuw8i7xgWrP8YEn3GJFwLlZMwt+GYaCretXgL7Fp2Ytg9hLyfjK/ceiW7Y
oTuTCRgb85RuwWsofEhsS+nPQMX1G4UJmjzXqQARAQABiQElBBgBAgAPBQJN8z+2
AhsMBQkB4TOAAAoJELCEktHh68rEBugIALqhzu8BfqNxIVIROJSY1PcqFgMfDJac
Oax9dOTkCjZL+Yim/EprUY4YwuRt3RX2CcXBa9QQ/p4e40P63IyX6r3jSU0QRu7h
kLxSTn6l1tSYacskfumTQ8X8usByBIgpn/oRCTgM0Hl3QGZqR5EPGV4E1rzYsmie
LbGNsxX0BH6xe7uJz2DLe6bhqCxasiW0mz/WQMcPWRMAD63fcchkdelRi3AcmTkp
yeNUyIzr8jApA1SG5H6Z/xc+p5/vPj6uxbhCqXGXD5nKdMpX2zpmro2paM7oZNUJ
LB0OcxVcma6qTL8orNQz9fs0mT9XITzjC7P5CbCJ5mEgORR9XTFz658=
=7XI/
mQENBFA55DwBCADLmiSSORwcGwNoCi2X02jPmS2lcZXWp5uCtzx0ybPM65tIQAII
L5e8QzyrV+r/yyNdGJIKtl4ty69aVodQ6n6Xf2BGqmm/x6jlvg2BrJgNHYfAjkIV
tugkbwsMQxHkNmOlB+fURVPJk9xub4pz9kRRdtXJ3DiImQRw5XVe2ZvBXZuu2nOz
jw2zArEaBSLbjo1MlXWJvvuyA2ktaKcAjFyfz/VJ8M/RDbJdfYDB9Q78jrr4uwIM
lyWSWUD8RxAvbWw0My2tr1Nu9FDvsydbKygGnZ+7oo4zvqncGZ+0am6D3XSsOcaf
/bzB8pIGJ1hsSe9JHvYpLvnWCwP+AJtKTPwFABEBAAG0HkNocmlzIFJlZXMgPGNy
ZWVzQEZyZWVCU0Qub3JnPokBOAQTAQIAIgUCUDnkPAIbAwYLCQgHAwIGFQgCCQoL
BBYCAwECHgECF4AACgkQkA9Fph4S6WoK/gf/eghgBaGoxfXXbNZwZNIC0NUhISas
XVYnKNpKCojFl80ZGzI5mPAFUiQm6aMh3fSrzTIB1uxxd9T9A3KN5ghf9jjtOmpU
+uYEm1aW4wHYSWzKDfgfV3QlFOROBn02V8xc1XPaZr0pqBCSJ18BDVwsI8UG9odw
/vPrrcE/Gm3psKJRwaHVGTtvJYPZYB5dQM5XD0shvj7DDSdut5l7DGDGUhp6Q8R3
2iMkCSTbaJEQNMzUqoIIw/oPrgsVeNxG7zFrkxbdl4YLmuzy9nZhRPLZ7lWpoRrf
3lsvo7WktMEXiW+uAX23wKH3P0gSypcsJ/jbb0nfV1r13/8O8plXwo5Z9LkBDQRQ
OeTHAQgA5GzHZKoE3obEg4Ey/hW5xp/OvyQr9hruwwd5CSxendMJWlmwT9V4QTDl
RNtn6n37n70wJxjUHdDrr34ItKhWN0AGy71LKcGBrfMenSW2IugB06/kSik3ti2m
fVI9TJ/gTT4uSppM2MTMmRPw1YR9VOGvO3CED4NfVa4EajCUtMMoEVaFCk6hPhzs
pSLcnvN+DUVR00RwGQJveHObRCDR10olA0PrLn7hqU2XAlnCAnclSPLjj3pLH9hi
vWkoeXr8PKNC50yWqclyuTKo+HsUkanDLgfC9kq+ffLvebUayaYfGyYpBKcxzcBs
uLEJhbh26NBqVfp1q7fTnxvNMVMUnwARAQABiQElBBgBAgAPBQJQOeTHAhsMBQkB
4TOAAAoJEJAPRaYeEulqcrIH/iO/VQq5gLquEQfzFdIl0I2HIyey/bNpkhDLiLNv
xPVpflymH9c90fdEXUYrI1HSbYKuACRsiXhu+SaQ0uvfBZuPDQZ7XWweuPB8y+fe
s86MmAyFXGs8gLisYREnGyltNK3goX+FiZeXdMkE7u+FfFSgMgP02/Ki85F2hj7B
nFAyaERP9vCeK20dUKSXn+y7+xqbTZBg7Ic9krSNsi77IyuAQ11BMe+vQVVoEhGO
TdjgE2VJzDiS1FXcvFWh93f3AQ9yAUqkstHMzKAfkwqm4y3SFYCS1xK5YUszImAa
2T9qZkw+R7dFEM20OWtNiz6P80+BRw/KAL0PwDFCyU4MoC4=
=QoyM
-----END PGP PUBLIC KEY BLOCK-----
]]></programlisting>

View file

@ -1,52 +1,64 @@
<!-- $FreeBSD$ -->
<!--
sh addkey.sh dhn 65181EA0;
sh addkey.sh dhn F7CDCAA1;
-->
<programlisting role="pgpfingerprint"><![CDATA[
pub 1024D/65181EA0 2008-09-07 [expires: 2009-03-06]
Key fingerprint = D4DB A438 EB5E 1B26 C782 F969 820B 66B3 6518 1EA0
uid Dennis Herrmann (Vi veri universum vivus vici) <adox@mcx2.org>
sub 4096g/C003C5DD 2008-09-07 [expires: 2009-03-06]
pub 4096R/F7CDCAA1 2012-08-26
Key fingerprint = 0587 E730 68A6 2646 A991 505D CD9B 3A87 F7CD CAA1
uid Dennis 'dhn' Herrmann (Everybody wants to go to heaven, but nobody wants to die) <dhn@FreeBSD.org>
sub 4096R/0A6D554F 2012-08-26
]]></programlisting>
<programlisting role="pgpkey"><![CDATA[
-----BEGIN PGP PUBLIC KEY BLOCK-----
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
=b9AS
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
0JTFuwbvNUiIKGhuHbBvP3I=
=EizD
-----END PGP PUBLIC KEY BLOCK-----
]]></programlisting>

View file

@ -1841,3 +1841,8 @@
&pgpkey.sephe;
</sect2>
<sect2 id="pgpkey-zont">
<title>&a.zont;</title>
&pgpkey.zont;
</sect2>

View file

@ -390,6 +390,7 @@
<!ENTITY pgpkey.zack SYSTEM "zack.key">
<!ENTITY pgpkey.zi SYSTEM "zi.key">
<!ENTITY pgpkey.zml SYSTEM "zml.key">
<!ENTITY pgpkey.zont SYSTEM "zont.key">
<!ENTITY section.pgpkeys-core SYSTEM "pgpkeys-core.sgml">
<!ENTITY section.pgpkeys-developers SYSTEM "pgpkeys-developers.sgml">
<!ENTITY section.pgpkeys-officers SYSTEM "pgpkeys-officers.sgml">

98
share/pgpkeys/zont.key Normal file
View file

@ -0,0 +1,98 @@
<!-- $FreeBSD$ -->
<!--
sh addkey.sh zont E8A68B1C;
-->
<programlisting role="pgpfingerprint"><![CDATA[
pub 2048R/E8A68B1C 2012-08-17 [expires: 2016-08-17]
Key fingerprint = 3DFF AA2F C10A A979 2FB9 A764 F145 4BB6 E8A6 8B1C
uid Andrey Zonov <zont@FreeBSD.org>
uid Andrey Zonov <andrey@zonov.org>
sub 2048R/57FC2BD3 2012-08-17 [expires: 2016-08-17]
]]></programlisting>
<programlisting role="pgpkey"><![CDATA[
-----BEGIN PGP PUBLIC KEY BLOCK-----
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
+Is2qlWoT4cI+VuljBbdprk4
=ElkT
-----END PGP PUBLIC KEY BLOCK-----
]]></programlisting>

View file

@ -1403,3 +1403,5 @@
<!ENTITY a.zml "Zachary Loafman <email>zml@FreeBSD.org</email>">
<!ENTITY a.znerd "Ernst de Haan <email>znerd@FreeBSD.org</email>">
<!ENTITY a.zont "Andrey Zonov <email>zont@FreeBSD.org</email>">

View file

@ -223,6 +223,22 @@
</description>
</entry>
<entry id="CloudBT" category="australia">
<name>Cloud BT IT Support</name>
<url>http://www.it-support.com.au/</url>
<description>
Cloud BT provides IT support and other IT services to businesses in
Australia, including system maintenance, <a
href="http://www.it-support.com.au/data-recovery/">data
recovery</a>, and ongoing IT consulting. We also provide a range of
scalable cloud solutions to our business clients. In our day-to-day
operation we support numerous platforms including FreeBSD, Linux and
other Unix-based environments. Call us on 1300 737 205 or visit our
<a href="http://www.it-support.com.au/">website</a> for more
information.
</description>
</entry>
<entry id="Clue" category="namerica">
<name>Clue Computing, Inc.</name>
<url>http://www.clue.com/</url>
@ -1697,12 +1713,13 @@
<url>http://www.wirewalk.com/</url>
<description>
Wirewalk Technologies is a NYC based consulting company, with
offices in London, Moscow and Rome. We provide consulting solutions
for: FreeBSD, OpenBSD, Linux, Solaris, HPUX, AIX and Irix.
Programming solutions in: C, C++, Java, Perl, Oracle, MySQl etc.
Contact us: <a
href="mailto:sales@wirewalk.com">sales at wirewalk.com</a>,
646-827-9397.
strategic partnerships around the globe. We offer onsite and
remote consulting, and full integration services based on
FreeBSD, as well as OpenBSD, NetBSD, Linux, MacOS, Solaris.
Programming solutions in: C, C++, Java, Perl, PHP, Oracle,
MySQL, Postgresql, etc. Contact us via <a
href="mailto:sales@wirewalk.com">email</a> or call us under#
212-202-2613 or 917-217-7975.
</description>
</entry>
@ -2187,12 +2204,12 @@
<name>Fortuitous Technologies</name>
<url>http://fortuitous.com</url>
<description>
Fortuitous Technologies provides Capacity Planning, Performance
Tuning, and consulting services for FreeBSD, Linux, and Unix
systems worldwide. We cover Cluster, Grid, and Multi-tiered
systems of all types. Contact Fortuitous <a
href="http://fortuitous.com/en/contact.html">here</a> or by
telephone at (512) 351-7783.
Fortuitous Technologies provides Performance Tuning, Capacity
Planning, System Design, Network Design and security services
for FreeBSD, Linux, and Unix systems worldwide. We cover Cloud,
Grid, and Multi-tiered systems of all types. Contact us at <a
href="http://fortuitous.com">http://Fortuitous.com</a> for
further information.
</description>
</entry>

View file

@ -307,6 +307,23 @@
</description>
</entry>
<entry id="CloudSigma">
<name>CloudSigma</name>
<url>http://cloudsigma.com/en</url>
<description>
As a public cloud provider we pride ourselves on offering the
latest operating system releases via our public library of
instantly deployable images. FreeBSD is a popular distribution
and we have a loyal following of FreeBSD users. Especially as we
are one of the few public clouds that natively supports FreeBSD
without modification. We are very pleased to offer version 9.0
with a 7 day free trial as an ideal opportunity for new customers
to discover as well what the latest version has to offer. Please
visit our <a href="http://cloudsigma.com/en">website</a> to get
more information.
</description>
</entry>
<entry id="colocationamerica">
<name>Colocation America</name>
<url>http://www.colocationamerica.com/</url>

View file

@ -680,6 +680,7 @@ $FreeBSD$
<!ENTITY a.zi "Ryan Steinmetz">
<!ENTITY a.zml "Zachary Loafman">
<!ENTITY a.znerd "Ernst de Haan">
<!ENTITY a.zont "Andrey Zonov">
<!-- GNATS-only contributors -->
<!ENTITY a.vwe "Volker Werth">
@ -703,7 +704,7 @@ $FreeBSD$
<!ENTITY a.donations '&a.gjb;, &a.wilko;, &a.gahr;, &a.pgollucci;, &a.skreuzer;, &a.obrien;, &a.trhodes;, Daniel Seuffert, &a.rwatson;'>
<!-- FreeBSD Ports Manager Team -->
<!ENTITY a.portmgr '&a.tabthorpe;, &a.marcus;, &a.bapt;, &a.beat;, &a.erwin;, &a.linimon;, &a.pav;, &a.itetcu;, &a.flz;, &a.miwi;'>
<!ENTITY a.portmgr '&a.tabthorpe;, &a.marcus;, &a.bapt;, &a.beat;, &a.erwin;, &a.linimon;, &a.pav;, &a.itetcu;, &a.miwi;'>
<!-- FreeBSD Release Engineering Teams -->
<!ENTITY a.re.members '&a.kib;, &a.blackend;, &a.jpaetzel;, &a.hrs;, &a.kensmith;, &a.rwatson;, &a.bz;'>

View file

@ -33,6 +33,30 @@
<month>
<name>8</name>
<day>
<name>23</name>
<event>
<title>&os;&nbsp;9.1-RC1 Available</title>
<p>The first RC build for the &os;-9.1 release cycle is
now available. ISO images for the amd64, i386 and powerpc64
architectures are <a
href="&lists.stable;/2012-August/069233.html">available</a>
on most of our <a
href="&url.doc.base-en;/books/handbook/mirrors-ftp.html">&os;
mirror sites</a>.</p>
</event>
</day>
<day>
<name>21</name>
<event>
<p>New committer:
<a href="mailto:zont@FreeBSD.org">Andrey Zonov</a> (src)</p>
</event>
</day>
<day>
<name>1</name>

View file

@ -32,7 +32,7 @@
<!ENTITY beta.testing "INCLUDE">
<!ENTITY % beta.testing "INCLUDE">
<!ENTITY betarel.current '9.1'>
<!ENTITY betarel.vers 'BETA1'>
<!ENTITY betarel.vers 'RC1'>
<!ENTITY u.betarel.schedule '&base;/releases/&betarel.current;R/schedule.html'>
<!-- If we have a second release in the release cycle (e.g. 5.x and 6.y

View file

@ -925,6 +925,18 @@ The country codes are precise ISO3166 codes from, e.g.
</entry>
</country>
<country code="VE" name="Venezuela">
<entry id="bsd-ve">
<name>Grupo de Usuarios BSD de Venezuela</name>
<url>http://groups.google.com/group/bsd-ve/about</url>
<description>The Grupo de Usuarios BSD de Venezuela is a forum
for *BSD users in Venezuela. For more information please
contact the group admin <a
href="mailto:amijaresp@gmail.com">Alberto Mijares</a>.
</description>
</entry>
</country>
<country code="BR" name="Brazil">
<entry id="fugspbr">
<name>The Brazilian FreeBSD User Group (FUG-BR)</name>