From owner-svn-doc-all@FreeBSD.ORG Sun Jun 3 05:58:25 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C098106564A; Sun, 3 Jun 2012 05:58:25 +0000 (UTC) (envelope-from bjk@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 00BF38FC17; Sun, 3 Jun 2012 05:58:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q535wOtB025870; Sun, 3 Jun 2012 05:58:24 GMT (envelope-from bjk@freebsd.org) Received: from localhost (bjk@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) with ESMTP id q535wOWx025867; Sun, 3 Jun 2012 05:58:24 GMT (envelope-from bjk@freebsd.org) X-Authentication-Warning: freefall.freebsd.org: bjk owned process doing -bs Date: Sun, 3 Jun 2012 05:58:24 +0000 (UTC) From: Benjamin Kaduk To: Benedict Reuschling In-Reply-To: <201206022143.q52LhBiJ015607@svn.freebsd.org> Message-ID: References: <201206022143.q52LhBiJ015607@svn.freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-doc-head@freebsd.org, zeising@daemonic.se, svn-doc-all@freebsd.org, doc-committers@freebsd.org Subject: Re: svn commit: r38967 - head/en_US.ISO8859-1/books/handbook/config X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2012 05:58:25 -0000 On Sat, 2 Jun 2012, Benedict Reuschling wrote: > Author: bcr > Date: Sat Jun 2 21:43:10 2012 > New Revision: 38967 > URL: http://svn.freebsd.org/changeset/doc/38967 > > Log: > This change adds much more information about syslogd and newsyslog > than we had before in the configuration chapter. It describes how > the system logger can be configured, the rationale behind it and > the most important field that the user should edit. > > PR: docs/168305 > Submitted by: Niclas Zeising (zeising daemonic se) > Reviewed by: wblock@, myself > > Modified: > head/en_US.ISO8859-1/books/handbook/config/chapter.sgml > > Modified: head/en_US.ISO8859-1/books/handbook/config/chapter.sgml > ============================================================================== > --- head/en_US.ISO8859-1/books/handbook/config/chapter.sgml Sat Jun 2 19:28:33 2012 (r38966) > +++ head/en_US.ISO8859-1/books/handbook/config/chapter.sgml Sat Jun 2 21:43:10 2012 (r38967) > @@ -1415,6 +1415,303 @@ ifconfig_fxp0_alias7="inet 202.0.75.20 n [...] > + > + Configuring the system logger > + <application>syslogd</application> > + > + system logging > + syslog > + syslogd > + > + System logging is an important aspect of system > + administration. It is used both to detect hardware and software > + issues and errors in the system, as well as playing a very > + important role in security auditing and incident response. The tense seems to change in the middle of this sentence (that is, "playing" does not really match up to anything. I would probably s/, as well as playing/; it also plays/ . > + System daemons without a controlling terminal also usually log > + information to a system logging facility or other log > + file. > + [...] > + > + Configuring &man.syslogd.8; is quite straight > + forward. The configuration file contains one line per action, > + and the syntax for each line is a selector field followed by > + an action field. The syntax of the selector field is > + facility.level and this will match Should the '.' be ? I think I would like s/ and this/, which/ . > + log messages from facility at level > + level or higher. It is also > + possible to add an optional comparison flag before the level > + to specify more precisely what is logged. Multiple > + selector fields can be used for the same action, and are > + separated with a semicolon (;). Using > + * will match everything. Hmm, okay, maybe the '.' should remain if there is also the '*' form. > + The action field denotes where to send the log message, > + such as a file or a remote log host. As an example, here is > + the default syslog.conf from &os;: > + > + # $&os;$ > +# > +# Spaces ARE valid field separators in this file. However, > +# other *nix-like systems still insist on using tabs as field > +# separators. If you are sharing this file between systems, you > +# may want to use only tabs as field separators here. > +# Consult the &man.syslog.conf.5; manpage. > +*.err;kern.warning;auth.notice;mail.crit /dev/console > +*.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err /var/log/messages > +security.* /var/log/security > +auth.info;authpriv.info /var/log/auth.log > +mail.info /var/log/maillog > +lpr.info /var/log/lpd-errs > +ftp.info /var/log/xferlog > +cron.* /var/log/cron > +*.=debug /var/log/debug.log > +*.emerg * > +# uncomment this to log all writes to /dev/console to /var/log/console.log > +#console.info /var/log/console.log > +# uncomment this to enable logging of all log messages to /var/log/all.log > +# touch /var/log/all.log and chmod it to mode 600 before it will work > +#*.* /var/log/all.log Or wait, does '*' not actually match everything and '*.*' is needed? > +# uncomment this to enable logging to a remote loghost named loghost > +#*.* @loghost > +# uncomment these if you're running inn > +# news.crit /var/log/news/news.crit > +# news.err /var/log/news/news.err > +# news.notice /var/log/news/news.notice > +!ppp > +*.* /var/log/ppp.log > +!* > + > + > + > + Match all messages with a level of > + err or higher, as well as > + kern.warning, > + auth.notice and > + mail.crit, and sends these log messages Another tense mismatch; 'Match'/'sends' do not agree; I would prefer to go with 'send'. > + to the console (/dev/console). > + > + > + > + Match all messages from the mail > + facility at level info or above, and > + logs the messages to Likewise here, just "log" would be fine. > + /var/log/maillog. > + > + > + > + This line uses a comparison flag, = > + to only match messages at level debug, > + and logs them in and here. > + /var/log/debug.log. > + [...] > + > + For more information about the different levels and > + facilities, refer to &man.syslog.3; and &man.syslogd.8;. > + For more information about syslog.conf, > + its syntax and more advanced usage examples, see Someone mentioned an Oxford comma? > + &man.syslog.conf.5; and + linkend="network-syslogd">. > + > + > + > + Log management and rotation with > + <application>newsyslog</application> > + > + newsyslog > + newsyslog.conf > + log rotation > + log management > + > + Log files tend to grow quickly and accumulate steadily. > + This leads to the files being full of less immediately useful > + information, as well as filling up the hard drive. To > + mitigate this, log management comes into play. In &os;, > + &man.newsyslog.8; is the tool used to manage log files. This > + program is used to periodically rotate and compress log files, > + as well as optionally create missing log files and signal > + programs when log files are moved. The log files do not > + necessarily have to come from syslog, &man.newsyslog.8; works I think this might be better as a semicolon. -Ben > + with any logs written from any program. It is important to > + note that newsyslog is normally run from > + &man.cron.8; and is not a system daemon. In the default > + configuration it is run every hour. > + From owner-svn-doc-all@FreeBSD.ORG Sun Jun 3 10:50:54 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 88C021065781; Sun, 3 Jun 2012 10:50:53 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 70BB88FC19; Sun, 3 Jun 2012 10:50:53 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q53Aorlv056397; Sun, 3 Jun 2012 10:50:53 GMT (envelope-from bcr@svn.freebsd.org) Received: (from bcr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q53Aorbo056395; Sun, 3 Jun 2012 10:50:53 GMT (envelope-from bcr@svn.freebsd.org) Message-Id: <201206031050.q53Aorbo056395@svn.freebsd.org> From: Benedict Reuschling Date: Sun, 3 Jun 2012 10:50:53 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38968 - head/share/sgml X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2012 10:50:54 -0000 Author: bcr Date: Sun Jun 3 10:50:52 2012 New Revision: 38968 URL: http://svn.freebsd.org/changeset/doc/38968 Log: Update a comment about staff.sgml which has been retired in r18983. Discovered by: gjb Modified: head/share/sgml/developers.ent Modified: head/share/sgml/developers.ent ============================================================================== --- head/share/sgml/developers.ent Sat Jun 2 21:43:10 2012 (r38967) +++ head/share/sgml/developers.ent Sun Jun 3 10:50:52 2012 (r38968) @@ -688,8 +688,7 @@ $FreeBSD$ - + From owner-svn-doc-all@FreeBSD.ORG Sun Jun 3 12:01:24 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A9D11065674; Sun, 3 Jun 2012 12:01:24 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 755038FC0A; Sun, 3 Jun 2012 12:01:24 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q53C1OfI059901; Sun, 3 Jun 2012 12:01:24 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q53C1OMO059899; Sun, 3 Jun 2012 12:01:24 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206031201.q53C1OMO059899@svn.freebsd.org> From: Isabell Long Date: Sun, 3 Jun 2012 12:01:24 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38969 - head/en_US.ISO8859-1/htdocs/multimedia X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2012 12:01:24 -0000 Author: issyl0 Date: Sun Jun 3 12:01:23 2012 New Revision: 38969 URL: http://svn.freebsd.org/changeset/doc/38969 Log: - Fix two broken links in the multimedia section of the website. - Add a $FreeBSD$ tag to keep SVN happy. Submitted by: db Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml Modified: head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml Sun Jun 3 10:50:52 2012 (r38968) +++ head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml Sun Jun 3 12:01:23 2012 (r38969) @@ -1,4 +1,5 @@ + + + + BSDCan-2012 Photos - Friday + http://www.db.net/gallery/BSDCan/BSDCan_2012_day_1/ + + Photos taken during the Conference on Friday at BSDCan 2012 in Ottawa + by Diane Bruce. + + + 2012,bsdcan,bsdcan2012,photos,diane bruce + + + + BSDCan-2012 Photos - Saturday + http://www.db.net/gallery/BSDCan/BSDCan_2012_day_2/ + + Photos taken during both the DevSummit and Conference on Saturday at + BSDCan 2012 in Ottawa by Diane Bruce. + + + 2012,bsdcan,bsdcan2012,photos,diane bruce + + + + BSDCan-2012 Photos - Saturday + https://plus.google.com/photos/117117406211143183805/albums/5742469737904181073?banner=pwa&authkey=COK7-ca5-N--TQ + + Photos taken during both the DevSummit and Conference on Saturday at + BSDCan 2012 in Ottawa by Benedict Reuschling. + + + 2012,bsdcan,bsdcan2012,photos,benedict reuschling + + + + BSDCan-2012 Photos - Developers summit and conference + http://gallery.keltia.net/v/voyages/conferences/bsdcan-2012/devsummit/ + + Photos taken during both the DevSummit and Conference on Saturday at + BSDCan 2012 in Ottawa by Ollivier Robert. + + + 2012,bsdcan,bsdcan2012,photos,ollivier robert + From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 02:27:27 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8FFEB106564A; Mon, 4 Jun 2012 02:27:27 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 77B2D8FC1C; Mon, 4 Jun 2012 02:27:27 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q542RROC099103; Mon, 4 Jun 2012 02:27:27 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q542RRGw099101; Mon, 4 Jun 2012 02:27:27 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201206040227.q542RRGw099101@svn.freebsd.org> From: Hiroki Sato Date: Mon, 4 Jun 2012 02:27:27 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38973 - head/en_US.ISO8859-1/htdocs/multimedia X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 02:27:27 -0000 Author: hrs Date: Mon Jun 4 02:27:26 2012 New Revision: 38973 URL: http://svn.freebsd.org/changeset/doc/38973 Log: - Fix handling in . - Fix counting of the number of tags for font-size: property in the tag list. Modified: head/en_US.ISO8859-1/htdocs/multimedia/multimedia.pl Modified: head/en_US.ISO8859-1/htdocs/multimedia/multimedia.pl ============================================================================== --- head/en_US.ISO8859-1/htdocs/multimedia/multimedia.pl Sun Jun 3 19:52:21 2012 (r38972) +++ head/en_US.ISO8859-1/htdocs/multimedia/multimedia.pl Mon Jun 4 02:27:26 2012 (r38973) @@ -83,7 +83,7 @@ sub xml_start { $items[$ci]{fc}++; } - if ($treeindex == 3 && + if (($treeindex == 3 || $treeindex == 5) && $element eq "tags") { $tag = ""; } @@ -98,6 +98,11 @@ sub xml_end { @{$items[$ci]{tags}} = split(/,/, $tag); addtags($tag); } + if ($treeindex == 5 && + $element eq "tags") { + @{$items[$ci]{files}{$items[$ci]{fc}}{tags}} = split(/,/, $tag); + addtags($tag); + } $values[$treeindex] = (); $treeindex--; @@ -179,9 +184,7 @@ sub xml_char { return; } if ($tree[5] eq "tags") { - @{$items[$ci]{files}{$items[$ci]{fc}}{tags}} = split(/,/, $value); - addtags($value); - addtags("", $items[$ci]{tags}); + $tag .= $value; return; } goto error; @@ -432,7 +435,7 @@ sub print_htmlitem { } my $size = 20; my $c = 0; - foreach my $tag (sort size(keys(%tags))) { + foreach my $tag (sort size keys(%tags)) { my $ftag = $tag; $ftag =~ s/ /_/g; print $fhtml "$tag\n"; From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 02:48:57 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9A90106564A; Mon, 4 Jun 2012 02:48:57 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AB9018FC19; Mon, 4 Jun 2012 02:48:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q542mvEw000118; Mon, 4 Jun 2012 02:48:57 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q542mve4000116; Mon, 4 Jun 2012 02:48:57 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201206040248.q542mve4000116@svn.freebsd.org> From: Hiroki Sato Date: Mon, 4 Jun 2012 02:48:57 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38974 - head/share/tools X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 02:48:57 -0000 Author: hrs Date: Mon Jun 4 02:48:57 2012 New Revision: 38974 URL: http://svn.freebsd.org/changeset/doc/38974 Log: Sync with the latest version on www.FreeBSD.org. Modified: head/share/tools/webupdate Modified: head/share/tools/webupdate ============================================================================== --- head/share/tools/webupdate Mon Jun 4 02:27:26 2012 (r38973) +++ head/share/tools/webupdate Mon Jun 4 02:48:57 2012 (r38974) @@ -47,12 +47,15 @@ DEFAULT_PATH=/bin:/usr/bin:/usr/local/bi DEFAULT_CVSROOT=/home/ncvs; DEFAULT_SVNROOT=svn://svn.FreeBSD.org/doc/head DEFAULT_BUILDDIR=/usr/local/www/build; -DEFAULT_LOGDIR=/usr/local/www/build/log; +#DEFAULT_LOGDIR=/usr/local/www/build/log; +DEFAULT_LOGDIR=/usr/local/www/logs/build; DEFAULT_DESTDIR=/usr/local/www; -DEFAULT_LOGFILE=log.make.`date '+%d.%H'`; +DEFAULT_LOGFILE=webbuild.log DEFAULT_BUILDARGS=''; DEFAULT_INSTARGS=''; DEFAULT_WEBMAILTO=freebsd-doc; +#DEFAULT_WEBMAILTO=simon; +#DEFAULT_WEBMAILTO=hrs; # # Variable setup. @@ -98,16 +101,21 @@ fi umask 002 cd $BUILDDIR || exit 1; +# We use newsyslog now... mkdir -p $LOGDIR -rm -f $LOGFILE 2>/dev/null; -touch $LOGFILE; +#rm -f $LOGFILE 2>/dev/null; +#touch $LOGFILE; + +buildstart=`date +%s` +echo Build started `date` >> ${LOGFILE} # XXX If one of the directories in $subtrees doesn't exist, *all* of # them will be wiped and checked out again. This should only happen # if something went terribly wrong, or if there's a new entry in # $subtrees, so I (dd) don't plan on fixing it; there's no sense in # optimizing something that should only happen twice a year (if that). -cond="X`date '+%u'` = X7 `echo $subtrees | sed -E 's/([^ ]*)/-o ! -d \1/g'`"; +#cond="X`date '+%u'` = X7 `echo $subtrees | sed -E 's/([^ ]*)/-o ! -d \1/g'`"; +cond="-e $BUILDDIR/fullbuild.flag `echo $subtrees | sed -E 's/([^ ]*)/-o ! -d \1/g'`"; if [ $cond ]; then # Remove the old copies. rm -Rf $subtrees 2>/dev/null; @@ -122,7 +130,9 @@ if [ $cond ]; then $LOGFILE 2>&1 || exit 2; cvs -qR checkout -Pd relnotes/man4 src/share/man/man4 >> \ $LOGFILE 2>&1 || exit 2; + rm -f $BUILDDIR/fullbuild.flag else + svn cleanup head >> $LOGFILE 2>&1 || exit 2; svn update head >> $LOGFILE 2>&1 || exit 2; cvs -qR update -dP $subtrees >> $LOGFILE 2>&1 || exit 2; fi @@ -138,7 +148,12 @@ time make ${BUILDARGS} all >> $LOGFILE 2 mail -s "FreeBSD web build failed on `hostname`" $WEBMAILTO; exit 3) || exit 3; -gzip -f $LOGFILE -find $LOGDIR -mtime +60 -print0 | perl -n0e unlink +# simon@ 20110116 - for now we use newsyslog... +#gzip -f $LOGFILE +#find $LOGDIR -mtime +60 -print0 | perl -n0e unlink + +buildstop=`date +%s` +buildd=$(($buildstop - $buildstart)) +echo "Build ended `date` (${buildd}s)" >> ${LOGFILE} exit 0; From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 14:28:10 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D52F10657A3; Mon, 4 Jun 2012 14:28:10 +0000 (UTC) (envelope-from mjg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EC87F8FC22; Mon, 4 Jun 2012 14:28:09 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54ES9fd046630; Mon, 4 Jun 2012 14:28:09 GMT (envelope-from mjg@svn.freebsd.org) Received: (from mjg@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54ES9cS046628; Mon, 4 Jun 2012 14:28:09 GMT (envelope-from mjg@svn.freebsd.org) Message-Id: <201206041428.q54ES9cS046628@svn.freebsd.org> From: Mateusz Guzik Date: Mon, 4 Jun 2012 14:28:09 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38975 - head/en_US.ISO8859-1/share/sgml X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 14:28:10 -0000 Author: mjg (src committer) Date: Mon Jun 4 14:28:09 2012 New Revision: 38975 URL: http://svn.freebsd.org/changeset/doc/38975 Log: Add my author entity. Approved by: trasz (mentor) Modified: head/en_US.ISO8859-1/share/sgml/authors.ent Modified: head/en_US.ISO8859-1/share/sgml/authors.ent ============================================================================== --- head/en_US.ISO8859-1/share/sgml/authors.ent Mon Jun 4 02:48:57 2012 (r38974) +++ head/en_US.ISO8859-1/share/sgml/authors.ent Mon Jun 4 14:28:09 2012 (r38975) @@ -866,6 +866,8 @@ mjacob@FreeBSD.org"> +mjg@FreeBSD.org"> + mks@FreeBSD.org"> mlaier@FreeBSD.org"> From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 14:34:47 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5544106564A; Mon, 4 Jun 2012 14:34:47 +0000 (UTC) (envelope-from mjg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B0A428FC14; Mon, 4 Jun 2012 14:34:47 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54EYlDT046969; Mon, 4 Jun 2012 14:34:47 GMT (envelope-from mjg@svn.freebsd.org) Received: (from mjg@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54EYlcH046967; Mon, 4 Jun 2012 14:34:47 GMT (envelope-from mjg@svn.freebsd.org) Message-Id: <201206041434.q54EYlcH046967@svn.freebsd.org> From: Mateusz Guzik Date: Mon, 4 Jun 2012 14:34:47 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38976 - head/share/sgml X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 14:34:47 -0000 Author: mjg (src committer) Date: Mon Jun 4 14:34:47 2012 New Revision: 38976 URL: http://svn.freebsd.org/changeset/doc/38976 Log: Add my entity. Approved by: trasz (mentor) Modified: head/share/sgml/developers.ent Modified: head/share/sgml/developers.ent ============================================================================== --- head/share/sgml/developers.ent Mon Jun 4 14:28:09 2012 (r38975) +++ head/share/sgml/developers.ent Mon Jun 4 14:34:47 2012 (r38976) @@ -418,6 +418,7 @@ $FreeBSD$ + From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 14:36:36 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BE55106566B; Mon, 4 Jun 2012 14:36:36 +0000 (UTC) (envelope-from mjg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 374658FC1B; Mon, 4 Jun 2012 14:36:36 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54EaapH047095; Mon, 4 Jun 2012 14:36:36 GMT (envelope-from mjg@svn.freebsd.org) Received: (from mjg@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54Eaa1t047093; Mon, 4 Jun 2012 14:36:36 GMT (envelope-from mjg@svn.freebsd.org) Message-Id: <201206041436.q54Eaa1t047093@svn.freebsd.org> From: Mateusz Guzik Date: Mon, 4 Jun 2012 14:36:36 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38977 - head/en_US.ISO8859-1/articles/contributors X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 14:36:36 -0000 Author: mjg (src committer) Date: Mon Jun 4 14:36:35 2012 New Revision: 38977 URL: http://svn.freebsd.org/changeset/doc/38977 Log: Add myself to the committers list. Approved by: trasz (mentor) Modified: head/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml Modified: head/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml ============================================================================== --- head/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml Mon Jun 4 14:34:47 2012 (r38976) +++ head/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml Mon Jun 4 14:36:35 2012 (r38977) @@ -491,6 +491,10 @@ + &a.mjg; + + + &a.randi; From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 14:38:39 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34B781065675; Mon, 4 Jun 2012 14:38:39 +0000 (UTC) (envelope-from mjg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2089D8FC17; Mon, 4 Jun 2012 14:38:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54EccgG047226; Mon, 4 Jun 2012 14:38:38 GMT (envelope-from mjg@svn.freebsd.org) Received: (from mjg@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54Eccgv047224; Mon, 4 Jun 2012 14:38:38 GMT (envelope-from mjg@svn.freebsd.org) Message-Id: <201206041438.q54Eccgv047224@svn.freebsd.org> From: Mateusz Guzik Date: Mon, 4 Jun 2012 14:38:38 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38978 - head/share/sgml X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 14:38:39 -0000 Author: mjg (src committer) Date: Mon Jun 4 14:38:38 2012 New Revision: 38978 URL: http://svn.freebsd.org/changeset/doc/38978 Log: Announce myself as a new src committer. Approved by: trasz (mentor) Modified: head/share/sgml/news.xml Modified: head/share/sgml/news.xml ============================================================================== --- head/share/sgml/news.xml Mon Jun 4 14:36:35 2012 (r38977) +++ head/share/sgml/news.xml Mon Jun 4 14:38:38 2012 (r38978) @@ -33,6 +33,18 @@ 2012 + 6 + + 4 + + +

New committer: + Mateusz Guzik (src)

+
+
+
+ + 5 30 From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 14:49:18 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 81A661065686; Mon, 4 Jun 2012 14:49:18 +0000 (UTC) (envelope-from mjg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6D1378FC08; Mon, 4 Jun 2012 14:49:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54EnIOU047739; Mon, 4 Jun 2012 14:49:18 GMT (envelope-from mjg@svn.freebsd.org) Received: (from mjg@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54EnIZj047736; Mon, 4 Jun 2012 14:49:18 GMT (envelope-from mjg@svn.freebsd.org) Message-Id: <201206041449.q54EnIZj047736@svn.freebsd.org> From: Mateusz Guzik Date: Mon, 4 Jun 2012 14:49:18 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38979 - head/share/pgpkeys X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 14:49:18 -0000 Author: mjg (src committer) Date: Mon Jun 4 14:49:17 2012 New Revision: 38979 URL: http://svn.freebsd.org/changeset/doc/38979 Log: Add my PGP key. Approved by: trasz (mentor) Added: head/share/pgpkeys/mjg.key (contents, props changed) Modified: head/share/pgpkeys/pgpkeys-developers.sgml head/share/pgpkeys/pgpkeys.ent Added: head/share/pgpkeys/mjg.key ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/share/pgpkeys/mjg.key Mon Jun 4 14:49:17 2012 (r38979) @@ -0,0 +1,41 @@ + + + +sub 2048R/EA19FE8D 2012-06-03 +]]> + Modified: head/share/pgpkeys/pgpkeys-developers.sgml ============================================================================== --- head/share/pgpkeys/pgpkeys-developers.sgml Mon Jun 4 14:38:38 2012 (r38978) +++ head/share/pgpkeys/pgpkeys-developers.sgml Mon Jun 4 14:49:17 2012 (r38979) @@ -551,6 +551,11 @@ &pgpkey.jmg;
+ + &a.mjg; + &pgpkey.mjg; + + &a.dannyboy; &pgpkey.dannyboy; Modified: head/share/pgpkeys/pgpkeys.ent ============================================================================== --- head/share/pgpkeys/pgpkeys.ent Mon Jun 4 14:38:38 2012 (r38978) +++ head/share/pgpkeys/pgpkeys.ent Mon Jun 4 14:49:17 2012 (r38979) @@ -237,6 +237,7 @@ + From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 14:56:06 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B57FB106566B; Mon, 4 Jun 2012 14:56:06 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9FA348FC1A; Mon, 4 Jun 2012 14:56:06 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54Eu62p048067; Mon, 4 Jun 2012 14:56:06 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54Eu6Y5048065; Mon, 4 Jun 2012 14:56:06 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201206041456.q54Eu6Y5048065@svn.freebsd.org> From: Gabor Kovesdan Date: Mon, 4 Jun 2012 14:56:06 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38980 - head/en_US.ISO8859-1/htdocs/internal X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 14:56:06 -0000 Author: gabor Date: Mon Jun 4 14:56:06 2012 New Revision: 38980 URL: http://svn.freebsd.org/changeset/doc/38980 Log: Update the doceng charter to reflect reality: - doceng@ is not new at all - clarify two types of doc commit bits - doc is now in SVN - remove stating translators will be added to doceng@ since this text has been there for a long time but it never has been a criterion when inviting members - voting deadline is 2 weeks (however, it is a worst case) for doceng since there are only four members and we need representative numbers for a vote - style fixes With hat: doceng Modified: head/en_US.ISO8859-1/htdocs/internal/doceng.sgml Modified: head/en_US.ISO8859-1/htdocs/internal/doceng.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/internal/doceng.sgml Mon Jun 4 14:49:17 2012 (r38979) +++ head/en_US.ISO8859-1/htdocs/internal/doceng.sgml Mon Jun 4 14:56:06 2012 (r38980) @@ -8,13 +8,18 @@ &header; -

The doceng@ team is a new body to handle some of the meta-project +

The doceng@ team is a body to handle some of the meta-project issues associated with the FreeBSD Documentation Project. The main - responsibilities of this team are :

+ responsibilities of this team are:

    -
  • To grant approval for new doc/, www/, release documentation, and - manual page committers.
  • +
  • To grant approval for new documentation committers. Documentation + includes articles and books, website pages, manual pages, release + notes and translations of the above. There are two kinds of + doc commit bits: translator commit bit, which is limited to + translations in a particular language and full commit bit, which + is only granted to aspirants, who have shown enough English + writing skills.
  • To maintain the doc project primer, which documents best practices for the FreeBSD Documentation Project.
  • @@ -27,7 +32,7 @@
  • To ensure that the generated documentation (PDF, HTML, etc.) on the Web site and FTP site are up to date with respect to the - versions of the documents in the CVS tree. This includes making + versions of the documents in the SVN tree. This includes making sure the Web site build is functioning correctly, and also involves working with the admin team to ensure that the primary Web server has all of the requisite software installed @@ -46,7 +51,7 @@ the FreeBSD Web site and documentation.
-

It is specifically noted here that doceng@ is *not* a conflict +

It is specifically noted here that doceng@ is not a conflict resolution body for the FreeBSD Documentation Project. Discussion and consensus on the freebsd-doc mailing list is how the project has conducted itself, and how it is expected to conduct itself in the @@ -56,16 +61,16 @@ future.

The current members of this team are Glen Barber, Marc Fonvieille, Gábor Kövesdán, and Hiroki Sato. -It is expected that the membership of this list will increase -as additional members from the various translation teams are added.

New Doc Committers

New doc committers are approved by doceng@ with a vote through email -and a 1 week timeout. A committer is approved if at least 1 doceng@ +and a two week timeout. A committer is approved if at least one doceng@ member votes yes, and no doceng@ members vote no. -core@ is CCed on the message to accounts@ about the new account. +When a commit bit proposal is accepted, doceng@ sends out an +acceptance email to the mentor and the new committer with core@ +and accounts@ CC'ed.

Idle Doc Committers

From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 15:02:07 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B87EC10656E6; Mon, 4 Jun 2012 15:02:07 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A3CC58FC14; Mon, 4 Jun 2012 15:02:07 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54F27Xg048399; Mon, 4 Jun 2012 15:02:07 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54F27sO048397; Mon, 4 Jun 2012 15:02:07 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201206041502.q54F27sO048397@svn.freebsd.org> From: Gabor Kovesdan Date: Mon, 4 Jun 2012 15:02:07 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38981 - head/en_US.ISO8859-1/htdocs/internal X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 15:02:07 -0000 Author: gabor Date: Mon Jun 4 15:02:07 2012 New Revision: 38981 URL: http://svn.freebsd.org/changeset/doc/38981 Log: - Clarify that timeout for doceng vote is 14 days - Reword a bit With hat: doceng Modified: head/en_US.ISO8859-1/htdocs/internal/new-account.sgml Modified: head/en_US.ISO8859-1/htdocs/internal/new-account.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/internal/new-account.sgml Mon Jun 4 14:56:06 2012 (r38980) +++ head/en_US.ISO8859-1/htdocs/internal/new-account.sgml Mon Jun 4 15:02:07 2012 (r38981) @@ -35,10 +35,10 @@

You will get ACK after the message is seen, and core@, doceng@ and portmgr@ - will give you a response in <= 7 days. For them, timeout is set - at 7 days. - If voting finishes earlier then the nominator/nominee are informed - earlier.

+ will give you a response after voting is finished or when the timeout is hit. + The timeout for core@ and portmgr@ is set to 7 days while for doceng@ it is + 14 days, however, as indicated, this is just a worst case and team members + may finish voting earlier.

Authorizing A New Account

From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 16:08:26 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70403106564A; Mon, 4 Jun 2012 16:08:26 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4269C8FC14; Mon, 4 Jun 2012 16:08:26 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54G8Qej051420; Mon, 4 Jun 2012 16:08:26 GMT (envelope-from bcr@svn.freebsd.org) Received: (from bcr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54G8QgP051419; Mon, 4 Jun 2012 16:08:26 GMT (envelope-from bcr@svn.freebsd.org) Message-Id: <201206041608.q54G8QgP051419@svn.freebsd.org> From: Benedict Reuschling Date: Mon, 4 Jun 2012 16:08:26 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38982 - head/en_US.ISO8859-1/books/handbook/staff X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 16:08:26 -0000 Author: bcr Date: Mon Jun 4 16:08:25 2012 New Revision: 38982 URL: http://svn.freebsd.org/changeset/doc/38982 Log: Delete an empty and unused directory from the handbook tree. The contents of that directory were moved into a separate article over ten years ago, see [1]. [1] http://www.freebsd.org/cgi/cvsweb.cgi/doc/en_US.ISO8859-1/books/handbook/staff/Attic/chapter.sgml Deleted: head/en_US.ISO8859-1/books/handbook/staff/ From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 16:18:30 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B78D8106566B; Mon, 4 Jun 2012 16:18:30 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A2BF38FC1D; Mon, 4 Jun 2012 16:18:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54GIU3p051961; Mon, 4 Jun 2012 16:18:30 GMT (envelope-from bcr@svn.freebsd.org) Received: (from bcr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54GIUhT051959; Mon, 4 Jun 2012 16:18:30 GMT (envelope-from bcr@svn.freebsd.org) Message-Id: <201206041618.q54GIUhT051959@svn.freebsd.org> From: Benedict Reuschling Date: Mon, 4 Jun 2012 16:18:30 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38983 - head/en_US.ISO8859-1/books/handbook/config X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 16:18:30 -0000 Author: bcr Date: Mon Jun 4 16:18:30 2012 New Revision: 38983 URL: http://svn.freebsd.org/changeset/doc/38983 Log: Fix a comma splice by making two separate (shorter) sentences out of a long one. Submitted by: bjk Modified: head/en_US.ISO8859-1/books/handbook/config/chapter.sgml Modified: head/en_US.ISO8859-1/books/handbook/config/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/config/chapter.sgml Mon Jun 4 16:08:25 2012 (r38982) +++ head/en_US.ISO8859-1/books/handbook/config/chapter.sgml Mon Jun 4 16:18:30 2012 (r38983) @@ -1435,7 +1435,7 @@ ifconfig_fxp0_alias7="inet 202.0.75.20 n System logging is an important aspect of system administration. It is used both to detect hardware and software - issues and errors in the system, it also plays a very + issues and errors in the system. It also plays a very important role in security auditing and incident response. System daemons without a controlling terminal also usually log information to a system logging facility or other log From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 17:20:59 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7913D1065672; Mon, 4 Jun 2012 17:20:59 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 64E7B8FC0C; Mon, 4 Jun 2012 17:20:59 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54HKxsN054907; Mon, 4 Jun 2012 17:20:59 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54HKxfs054905; Mon, 4 Jun 2012 17:20:59 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201206041720.q54HKxfs054905@svn.freebsd.org> From: Rene Ladan Date: Mon, 4 Jun 2012 17:20:59 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38984 - head/nl_NL.ISO8859-1/htdocs X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 17:20:59 -0000 Author: rene Date: Mon Jun 4 17:20:58 2012 New Revision: 38984 URL: http://svn.freebsd.org/changeset/doc/38984 Log: MFen 38826 -> 38962 Obtained from: the FreeBSD Dutch Documentation Project Modified: head/nl_NL.ISO8859-1/htdocs/administration.sgml Modified: head/nl_NL.ISO8859-1/htdocs/administration.sgml ============================================================================== --- head/nl_NL.ISO8859-1/htdocs/administration.sgml Mon Jun 4 16:18:30 2012 (r38983) +++ head/nl_NL.ISO8859-1/htdocs/administration.sgml Mon Jun 4 17:20:58 2012 (r38984) @@ -7,7 +7,7 @@ &header; @@ -102,10 +102,10 @@ Documentatiebeheerteam in meer detail.

&os; Portbeheerteam From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 17:42:19 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7BBA106564A; Mon, 4 Jun 2012 17:42:19 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B28A88FC08; Mon, 4 Jun 2012 17:42:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54HgJ84055928; Mon, 4 Jun 2012 17:42:19 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54HgJ24055926; Mon, 4 Jun 2012 17:42:19 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201206041742.q54HgJ24055926@svn.freebsd.org> From: Gabor Kovesdan Date: Mon, 4 Jun 2012 17:42:19 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38985 - head/en_US.ISO8859-1/articles/committers-guide X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 17:42:19 -0000 Author: gabor Date: Mon Jun 4 17:42:19 2012 New Revision: 38985 URL: http://svn.freebsd.org/changeset/doc/38985 Log: - Simon is the current Security Officer Modified: head/en_US.ISO8859-1/articles/committers-guide/article.sgml Modified: head/en_US.ISO8859-1/articles/committers-guide/article.sgml ============================================================================== --- head/en_US.ISO8859-1/articles/committers-guide/article.sgml Mon Jun 4 17:20:58 2012 (r38984) +++ head/en_US.ISO8859-1/articles/committers-guide/article.sgml Mon Jun 4 17:42:19 2012 (r38985) @@ -3277,10 +3277,10 @@ $target - head/$source:$P,$Q,$R - &a.cperciva; + &a.simon; - Colin is the + Simon is the FreeBSD Security Officer and oversees the &a.security-officer;. From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 17:45:42 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9103A106564A; Mon, 4 Jun 2012 17:45:42 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7D4478FC14; Mon, 4 Jun 2012 17:45:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54HjgK1056114; Mon, 4 Jun 2012 17:45:42 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54HjfbT056112; Mon, 4 Jun 2012 17:45:41 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201206041745.q54HjfbT056112@svn.freebsd.org> From: Gabor Kovesdan Date: Mon, 4 Jun 2012 17:45:41 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38986 - head/en_US.ISO8859-1/htdocs X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 17:45:42 -0000 Author: gabor Date: Mon Jun 4 17:45:41 2012 New Revision: 38986 URL: http://svn.freebsd.org/changeset/doc/38986 Log: - Simon is the Security Officer (I don't know if there's a Deputy Security Officer) Modified: head/en_US.ISO8859-1/htdocs/administration.sgml Modified: head/en_US.ISO8859-1/htdocs/administration.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/administration.sgml Mon Jun 4 17:42:19 2012 (r38985) +++ head/en_US.ISO8859-1/htdocs/administration.sgml Mon Jun 4 17:45:41 2012 (r38986) @@ -232,8 +232,7 @@ From owner-svn-doc-all@FreeBSD.ORG Mon Jun 4 21:33:43 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C0221065677; Mon, 4 Jun 2012 21:33:43 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 462E48FC14; Mon, 4 Jun 2012 21:33:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q54LXgP7067604; Mon, 4 Jun 2012 21:33:42 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q54LXgCE067602; Mon, 4 Jun 2012 21:33:42 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201206042133.q54LXgCE067602@svn.freebsd.org> From: Rene Ladan Date: Mon, 4 Jun 2012 21:33:42 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38987 - head/nl_NL.ISO8859-1/share/tools/checkupdate X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2012 21:33:43 -0000 Author: rene Date: Mon Jun 4 21:33:42 2012 New Revision: 38987 URL: http://svn.freebsd.org/changeset/doc/38987 Log: Re-add myself to the people receiving Dutch translation update mails. Modified: head/nl_NL.ISO8859-1/share/tools/checkupdate/notify Modified: head/nl_NL.ISO8859-1/share/tools/checkupdate/notify ============================================================================== --- head/nl_NL.ISO8859-1/share/tools/checkupdate/notify Mon Jun 4 17:45:41 2012 (r38986) +++ head/nl_NL.ISO8859-1/share/tools/checkupdate/notify Mon Jun 4 21:33:42 2012 (r38987) @@ -3,3 +3,4 @@ # Add your address (relative to FreeBSD.org) here if you want to receive # periodic translation checks for this language remko +rene From owner-svn-doc-all@FreeBSD.ORG Tue Jun 5 10:23:05 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B911E106566B; Tue, 5 Jun 2012 10:23:05 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A3ED28FC08; Tue, 5 Jun 2012 10:23:05 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q55AN56u004373; Tue, 5 Jun 2012 10:23:05 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q55AN5a6004371; Tue, 5 Jun 2012 10:23:05 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201206051023.q55AN5a6004371@svn.freebsd.org> From: Carlo Strub Date: Tue, 5 Jun 2012 10:23:05 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38988 - head/share/pgpkeys X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2012 10:23:05 -0000 Author: cs (ports committer) Date: Tue Jun 5 10:23:05 2012 New Revision: 38988 URL: http://svn.freebsd.org/changeset/doc/38988 Log: Change my GPG key Modified: head/share/pgpkeys/cs.key Modified: head/share/pgpkeys/cs.key ============================================================================== --- head/share/pgpkeys/cs.key Mon Jun 4 21:33:42 2012 (r38987) +++ head/share/pgpkeys/cs.key Tue Jun 5 10:23:05 2012 (r38988) @@ -1,88 +1,74 @@ -uid Carlo Strub -sub 4096R/648E9F32 2011-06-29 [expires: 2012-06-28] +pub 4096R/48C0D3F8 2012-06-05 [expires: 2017-06-04] + Key fingerprint = A2DD 6235 93E4 6520 1AF9 2B14 E925 8207 48C0 D3F8 +uid Carlo Strub +sub 4096R/99AC2A67 2012-06-05 [expires: 2017-06-04] ]]> From owner-svn-doc-all@FreeBSD.ORG Tue Jun 5 17:36:44 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D9B510657AD; Tue, 5 Jun 2012 17:36:44 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 183DC8FC0C; Tue, 5 Jun 2012 17:36:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q55Hah2j033602; Tue, 5 Jun 2012 17:36:43 GMT (envelope-from bcr@svn.freebsd.org) Received: (from bcr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q55HahIw033600; Tue, 5 Jun 2012 17:36:43 GMT (envelope-from bcr@svn.freebsd.org) Message-Id: <201206051736.q55HahIw033600@svn.freebsd.org> From: Benedict Reuschling Date: Tue, 5 Jun 2012 17:36:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38989 - head/en_US.ISO8859-1/articles/version-guide X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2012 17:36:44 -0000 Author: bcr Date: Tue Jun 5 17:36:43 2012 New Revision: 38989 URL: http://svn.freebsd.org/changeset/doc/38989 Log: Correctly close a para tag. Found by: tabthorpe Modified: head/en_US.ISO8859-1/articles/version-guide/article.sgml Modified: head/en_US.ISO8859-1/articles/version-guide/article.sgml ============================================================================== --- head/en_US.ISO8859-1/articles/version-guide/article.sgml Tue Jun 5 10:23:05 2012 (r38988) +++ head/en_US.ISO8859-1/articles/version-guide/article.sgml Tue Jun 5 17:36:43 2012 (r38989) @@ -343,7 +343,7 @@ - Will you be installing from source, or from binaries? + Will you be installing from source, or from binaries? From owner-svn-doc-all@FreeBSD.ORG Tue Jun 5 18:07:30 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EDDB1065740; Tue, 5 Jun 2012 18:07:30 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5975E8FC14; Tue, 5 Jun 2012 18:07:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q55I7UDC035355; Tue, 5 Jun 2012 18:07:30 GMT (envelope-from bcr@svn.freebsd.org) Received: (from bcr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q55I7UUN035353; Tue, 5 Jun 2012 18:07:30 GMT (envelope-from bcr@svn.freebsd.org) Message-Id: <201206051807.q55I7UUN035353@svn.freebsd.org> From: Benedict Reuschling Date: Tue, 5 Jun 2012 18:07:30 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38990 - head/de_DE.ISO8859-1/articles/version-guide X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2012 18:07:30 -0000 Author: bcr Date: Tue Jun 5 18:07:29 2012 New Revision: 38990 URL: http://svn.freebsd.org/changeset/doc/38990 Log: MFen r38989: Fix a closing para tag correctly. Additionally, adjust headers to track the SVN revision now. Modified: head/de_DE.ISO8859-1/articles/version-guide/article.sgml Modified: head/de_DE.ISO8859-1/articles/version-guide/article.sgml ============================================================================== --- head/de_DE.ISO8859-1/articles/version-guide/article.sgml Tue Jun 5 17:36:43 2012 (r38989) +++ head/de_DE.ISO8859-1/articles/version-guide/article.sgml Tue Jun 5 18:07:29 2012 (r38990) @@ -2,8 +2,8 @@ The FreeBSD German Documentation Project $FreeBSD$ - $FreeBSDde: de-docproj/articles/version-guide/article.sgml,v 1.8 2012/03/25 13:48:02 bcr Exp $ - basiert auf: 1.16 + $FreeBSDde$ + basiert auf: r38989 --> Wollen Sie Ihr System aus dem Quellcode installieren oder - bevorzugen Sie eine Binärinstallation? + bevorzugen Sie eine Binärinstallation? From owner-svn-doc-all@FreeBSD.ORG Tue Jun 5 20:54:14 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3260E1065670; Tue, 5 Jun 2012 20:54:14 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1C5448FC08; Tue, 5 Jun 2012 20:54:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q55KsDDK043762; Tue, 5 Jun 2012 20:54:13 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q55KsDGS043760; Tue, 5 Jun 2012 20:54:13 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206052054.q55KsDGS043760@svn.freebsd.org> From: Isabell Long Date: Tue, 5 Jun 2012 20:54:13 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38991 - head/en_US.ISO8859-1/htdocs/marketing X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jun 2012 20:54:14 -0000 Author: issyl0 Date: Tue Jun 5 20:54:13 2012 New Revision: 38991 URL: http://svn.freebsd.org/changeset/doc/38991 Log: Remove obviously outdated links to marketing materials on the website. Submitted by: db Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/htdocs/marketing/index.sgml Modified: head/en_US.ISO8859-1/htdocs/marketing/index.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/marketing/index.sgml Tue Jun 5 18:07:29 2012 (r38990) +++ head/en_US.ISO8859-1/htdocs/marketing/index.sgml Tue Jun 5 20:54:13 2012 (r38991) @@ -52,11 +52,6 @@ in the Enterprise, an Introduction for Linux Users, Murray Stokely (Open Source Forum, Moscow) -
  • 2 September 2004, Enhancements - in the FreeBSD 5.3 Network Stack, Andre Opperman (SUCON - 04)
  • -
  • 18 September 2002, FreeBSD Release Engineering, Murray Stokely (Japan Unix Society)
  • @@ -81,13 +76,10 @@ + @@ -6162,13 +6202,6 @@ - - AsiaBSDCon 2008 Photos - http://www.paeps.cx/gallery/AsiaBSDCon_2008/index.html - AsiaBSDCon 2008 Photos by Philip Paeps - asiabsdcon,asiabsdcon2008,photos,philip paeps - - AsiaBSDCon 2008 Paper List From owner-svn-doc-all@FreeBSD.ORG Wed Jun 6 03:23:09 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C0F4106566B; Wed, 6 Jun 2012 03:23:09 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 76AFF8FC08; Wed, 6 Jun 2012 03:23:09 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q563N9NQ065416; Wed, 6 Jun 2012 03:23:09 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q563N9DP065414; Wed, 6 Jun 2012 03:23:09 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201206060323.q563N9DP065414@svn.freebsd.org> From: Eitan Adler Date: Wed, 6 Jun 2012 03:23:09 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38993 - head/en_US.ISO8859-1/books/porters-handbook X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2012 03:23:09 -0000 Author: eadler (src,ports committer) Date: Wed Jun 6 03:23:08 2012 New Revision: 38993 URL: http://svn.freebsd.org/changeset/doc/38993 Log: Add some explanation about how to allow "multi" options to permit zero selections PR: docs/168675 Submitted by: crees Reviewed by: Bryan Drewery Approved by: bcr Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.sgml Wed Jun 6 02:06:20 2012 (r38992) +++ head/en_US.ISO8859-1/books/porters-handbook/book.sgml Wed Jun 6 03:23:08 2012 (r38993) @@ -4286,6 +4286,21 @@ OPTIONS_SINGLE_SG1= OPT3 OPT4OPTIONS_MULTI= MG1 OPTIONS_MULTI_MG1= OPT5 OPT6 + OPTIONS_MULTI and + OPTIONS_SINGLE can also allow zero + choices by including the group in + OPTIONS_DEFINE: + + OPTIONS_DEFINE= MG1 +OPTIONS_MULTI= MG1 +OPTIONS_MULTI_MG1= OPT5 OPT6 + + This group then requires at least one + OPTION from MG1 + only if the new MG1 + OPTION is selected. Experimentation + is encouraged to ensure that this is understood. + OPTIONS are unset by default, unless they are listed in OPTIONS_DEFAULT: From owner-svn-doc-all@FreeBSD.ORG Wed Jun 6 10:31:15 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D67641065673; Wed, 6 Jun 2012 10:31:15 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B74458FC1D; Wed, 6 Jun 2012 10:31:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q56AVFhd007461; Wed, 6 Jun 2012 10:31:15 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q56AVFwD007459; Wed, 6 Jun 2012 10:31:15 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206061031.q56AVFwD007459@svn.freebsd.org> From: Isabell Long Date: Wed, 6 Jun 2012 10:31:15 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38994 - head/en_US.ISO8859-1/htdocs/multimedia X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2012 10:31:15 -0000 Author: issyl0 Date: Wed Jun 6 10:31:15 2012 New Revision: 38994 URL: http://svn.freebsd.org/changeset/doc/38994 Log: Replace some dead links with working ones in the multimedia section of the website. PR: docs/168752 Submitted by: db Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml Modified: head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml Wed Jun 6 03:23:08 2012 (r38993) +++ head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml Wed Jun 6 10:31:15 2012 (r38994) @@ -9403,54 +9403,9 @@ - OpenFest 2005 Videos - Various videos of OpenFest 2005 (Bulgarian) - http://archive2005.openfest.org/Video/BSDCon/ - openfest,openfest2005,presentation - - http://archive2005.openfest.org/Video/BSDCon/ - - 01_FreeBSD_Jails-Deyan_Dyankov.avi - 13 Mb - FreeBSD Jails - Deyan Dyankov - freebsd,jail,avi,deyan dyankov - - - 02_Embedding_BSD_Ivo_Vachkov.avi - 345 Mb - Embedding BSD - Ivo Vachkov - embedded systems,avi,ivo vachkov - - - 03-QoS,etc_with_OpenBSD_pf-Mihail_Paunov.avi - 501 Mb - QoS etc with OpenBSD pf - openbsd,qos,pf,avi,mihail paunov - - - 04-Route_and_firewall_redundancy_using_CARP_and_pfsync-Atanas_Bachvarov.avi - 153 Mb - Route and firewall redundancy using CARP and pfsync - Atanas Bachvarov - carp,pfsync,avi,atanas bachvarov - - - 05-Official_Bulgarian_FreeBSD_Mirror-Dimiter_Vasilev.avi - 411 Mb - Official Bulgarian FreeBSD Mirror - Dimiter Vasilev - freebsd,mirror,avi,dimiter vasilev - - - 06-DIY_FreeBSD_Port-Peter_Pentchev.avi - 326 Mb - DIY FreeBSD Port - freebsd,ports,avi,peter pentchev - - - - Discussion - What's cooking for FreeBSD 7.0? Discussion - What's cooking for FreeBSD 7.0? (Bulgarian) - http://openfest.org/program2007/ + http://openfest.org/archive/openfest-2007/ openfest,openfest2007,discussion,freebsd,freebsd7 @@ -9492,7 +9447,7 @@ Willow Vachkov - FreeBSD and the new network and transport protocols (IPv6 and SCTP) Willow Vachkov - FreeBSD and the new network and transport protocols (IPv6 and SCTP) (Bulgarian) - http://openfest.org/program2007/ + http://openfest.org/archive/openfest-2007/ openfest,openfest2007,presentation,freebsd,ipv6,sctp,willow vanchkov @@ -9520,7 +9475,7 @@ Nikolai Denev - FreeBSD goes Zettabyte Nikolai Denev - FreeBSD goes Zettabyte (Bulgarian) - http://openfest.org/program2007/ + http://openfest.org/archive/openfest-2007/ openfest,openfest2007,presentation,freebsd,zettabyte,nikolai denev @@ -9534,7 +9489,7 @@ Vasil Dimov - The FreeBSD ports collection - tips and tricks Vasil Dimov - The FreeBSD ports collection - tips and tricks (Bulgarian) - http://openfest.org/program2007/ + http://openfest.org/archive/openfest-2007/ openfest,openfest2007,presentation,freebsd,ports collection,vasil dimov @@ -9617,7 +9572,7 @@ oarc,presentation,radio,diane bruce - http://www.oarc.net/hamradio_on_freebsd.pdf + http://www.oarc.net/presentations/hamradio_on_freebsd.pdf 23 pages PDF file mp3 @@ -9697,7 +9652,7 @@ --> NetBSD. More CPUs than Linux. + BSD ports/packages. - http://www.berklix.com/free/talk/presentations/export/3_netbsd_marc/ + http://www.berklix.com/free/talk/faraday/presentations/source/3_netbsd_marc/ From the talks with subject "Free Alternatives To Microsoft" comes "NetBSD. More CPUs than Linux. + From owner-svn-doc-all@FreeBSD.ORG Wed Jun 6 11:40:22 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 766D310656EB; Wed, 6 Jun 2012 11:40:22 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 61A348FC23; Wed, 6 Jun 2012 11:40:22 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q56BeMse011239; Wed, 6 Jun 2012 11:40:22 GMT (envelope-from ryusuke@svn.freebsd.org) Received: (from ryusuke@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q56BeMRl011237; Wed, 6 Jun 2012 11:40:22 GMT (envelope-from ryusuke@svn.freebsd.org) Message-Id: <201206061140.q56BeMRl011237@svn.freebsd.org> From: Ryusuke SUZUKI Date: Wed, 6 Jun 2012 11:40:22 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38995 - head/ja_JP.eucJP/share/sgml X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2012 11:40:22 -0000 Author: ryusuke Date: Wed Jun 6 11:40:21 2012 New Revision: 38995 URL: http://svn.freebsd.org/changeset/doc/38995 Log: - Merge the following from the English version: r38953 -> r38978 head/ja_JP.eucJP/share/sgml/news.xml Modified: head/ja_JP.eucJP/share/sgml/news.xml Modified: head/ja_JP.eucJP/share/sgml/news.xml ============================================================================== --- head/ja_JP.eucJP/share/sgml/news.xml Wed Jun 6 10:31:15 2012 (r38994) +++ head/ja_JP.eucJP/share/sgml/news.xml Wed Jun 6 11:40:21 2012 (r38995) @@ -20,7 +20,7 @@ the contents of will be preferred over <p>. $FreeBSD$ - Original revision: r38953 + Original revision: r38978 --> <news> <cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0"> @@ -33,6 +33,18 @@ <name>2012</name> <month> + <name>6</name> + <day> + <name>4</name> + + <event> + <p>ߥå׽Ǥ: + <a href="mailto:mjg@FreeBSD.org">Mateusz Guzik</a> (src)</p> + </event> + </day> + </month> + + <month> <name>5</name> <day> <name>30</name> From owner-svn-doc-all@FreeBSD.ORG Wed Jun 6 13:01:15 2012 Return-Path: <owner-svn-doc-all@FreeBSD.ORG> Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 39C54106597D; Wed, 6 Jun 2012 13:01:15 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9AD198FC12; Wed, 6 Jun 2012 13:01:12 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q56D1Cp1015640; Wed, 6 Jun 2012 13:01:12 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q56D1Cph015637; Wed, 6 Jun 2012 13:01:12 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206061301.q56D1Cph015637@svn.freebsd.org> From: Isabell Long <issyl0@FreeBSD.org> Date: Wed, 6 Jun 2012 13:01:12 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38996 - head/en_US.ISO8859-1/htdocs/advocacy X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" <svn-doc-all.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-doc-all> List-Post: <mailto:svn-doc-all@freebsd.org> List-Help: <mailto:svn-doc-all-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Wed, 06 Jun 2012 13:01:15 -0000 Author: issyl0 Date: Wed Jun 6 13:01:11 2012 New Revision: 38996 URL: http://svn.freebsd.org/changeset/doc/38996 Log: - Remove an out-of-date reference to the Halloween letter on the website's advocacy page. - Remove letter.sgml itself. - Remove references to letter.sgml from the advocacy directory's Makefile. Discussed with: gavin Approved by: gabor (mentor) Deleted: head/en_US.ISO8859-1/htdocs/advocacy/letter.sgml Modified: head/en_US.ISO8859-1/htdocs/advocacy/Makefile head/en_US.ISO8859-1/htdocs/advocacy/index.sgml Modified: head/en_US.ISO8859-1/htdocs/advocacy/Makefile ============================================================================== --- head/en_US.ISO8859-1/htdocs/advocacy/Makefile Wed Jun 6 11:40:21 2012 (r38995) +++ head/en_US.ISO8859-1/htdocs/advocacy/Makefile Wed Jun 6 13:01:11 2012 (r38996) @@ -11,6 +11,5 @@ DOCS= index.sgml DOCS+= myths.sgml -DOCS+= letter.sgml .include "${DOC_PREFIX}/share/mk/web.site.mk" Modified: head/en_US.ISO8859-1/htdocs/advocacy/index.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/advocacy/index.sgml Wed Jun 6 11:40:21 2012 (r38995) +++ head/en_US.ISO8859-1/htdocs/advocacy/index.sgml Wed Jun 6 13:01:11 2012 (r38996) @@ -29,13 +29,6 @@ <p>Describes and debunks some of the myths that surround the *BSD projects.</p></li> - <li><p><a href="letter.html">On Advocating FreeBSD and the - Halloween memo</a></p> - - <p>Jordan Hubbard's response to the infamous Halloween memo, posted to - the FreeBSD-Advocacy mailing list (and republished with his - permission).</p> - </li> <li><p><a href="&base;/news/press.html">FreeBSD in the Press</a></p> From owner-svn-doc-all@FreeBSD.ORG Wed Jun 6 13:11:47 2012 Return-Path: <owner-svn-doc-all@FreeBSD.ORG> Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A45551065672; Wed, 6 Jun 2012 13:11:47 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8F69A8FC1C; Wed, 6 Jun 2012 13:11:47 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q56DBla7016144; Wed, 6 Jun 2012 13:11:47 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q56DBluL016142; Wed, 6 Jun 2012 13:11:47 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201206061311.q56DBluL016142@svn.freebsd.org> From: Glen Barber <gjb@FreeBSD.org> Date: Wed, 6 Jun 2012 13:11:47 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38997 - head/en_US.ISO8859-1/htdocs/advocacy X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" <svn-doc-all.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-doc-all> List-Post: <mailto:svn-doc-all@freebsd.org> List-Help: <mailto:svn-doc-all-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Wed, 06 Jun 2012 13:11:47 -0000 Author: gjb Date: Wed Jun 6 13:11:47 2012 New Revision: 38997 URL: http://svn.freebsd.org/changeset/doc/38997 Log: Remove a stray </li> to fix build. Modified: head/en_US.ISO8859-1/htdocs/advocacy/index.sgml Modified: head/en_US.ISO8859-1/htdocs/advocacy/index.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/advocacy/index.sgml Wed Jun 6 13:01:11 2012 (r38996) +++ head/en_US.ISO8859-1/htdocs/advocacy/index.sgml Wed Jun 6 13:11:47 2012 (r38997) @@ -29,7 +29,6 @@ <p>Describes and debunks some of the myths that surround the *BSD projects.</p></li> - </li> <li><p><a href="&base;/news/press.html">FreeBSD in the Press</a></p> <p>Contains many links to articles that have appeared which mention From owner-svn-doc-all@FreeBSD.ORG Wed Jun 6 13:15:18 2012 Return-Path: <owner-svn-doc-all@FreeBSD.ORG> Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71F001065688; Wed, 6 Jun 2012 13:15:18 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5D1C68FC0C; Wed, 6 Jun 2012 13:15:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q56DFIXt016336; Wed, 6 Jun 2012 13:15:18 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q56DFIeB016334; Wed, 6 Jun 2012 13:15:18 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201206061315.q56DFIeB016334@svn.freebsd.org> From: Glen Barber <gjb@FreeBSD.org> Date: Wed, 6 Jun 2012 13:15:18 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38998 - head/en_US.ISO8859-1/htdocs/internal X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" <svn-doc-all.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-doc-all> List-Post: <mailto:svn-doc-all@freebsd.org> List-Help: <mailto:svn-doc-all-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Wed, 06 Jun 2012 13:15:18 -0000 Author: gjb Date: Wed Jun 6 13:15:17 2012 New Revision: 38998 URL: http://svn.freebsd.org/changeset/doc/38998 Log: We have a a.doceng macro, so let's use it somewhere. :) Submitted by: ryusuke Modified: head/en_US.ISO8859-1/htdocs/internal/doceng.sgml Modified: head/en_US.ISO8859-1/htdocs/internal/doceng.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/internal/doceng.sgml Wed Jun 6 13:11:47 2012 (r38997) +++ head/en_US.ISO8859-1/htdocs/internal/doceng.sgml Wed Jun 6 13:15:17 2012 (r38998) @@ -59,8 +59,7 @@ future.</p> <h2>Current Membership</h2> -The current members of this team are Glen Barber, Marc -Fonvieille, Gábor Kövesdán, and Hiroki Sato. +The current members of this team are &a.doceng;. <h2>New Doc Committers</h2> From owner-svn-doc-all@FreeBSD.ORG Wed Jun 6 15:57:58 2012 Return-Path: <owner-svn-doc-all@FreeBSD.ORG> Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DD07106564A; Wed, 6 Jun 2012 15:57:58 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E2B1F8FC14; Wed, 6 Jun 2012 15:57:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q56FvvLM023706; Wed, 6 Jun 2012 15:57:57 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q56FvvRI023704; Wed, 6 Jun 2012 15:57:57 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206061557.q56FvvRI023704@svn.freebsd.org> From: Isabell Long <issyl0@FreeBSD.org> Date: Wed, 6 Jun 2012 15:57:57 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38999 - head/share/sgml X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" <svn-doc-all.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-doc-all> List-Post: <mailto:svn-doc-all@freebsd.org> List-Help: <mailto:svn-doc-all-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Wed, 06 Jun 2012 15:57:58 -0000 Author: issyl0 Date: Wed Jun 6 15:57:57 2012 New Revision: 38999 URL: http://svn.freebsd.org/changeset/doc/38999 Log: - Remove non-existent usergroups from the list on the page. - Change the web address for the Ottawa-Carleton Unix Users Group. Submitted by: db Approved by: gabor (mentor) Modified: head/share/sgml/usergroups.xml Modified: head/share/sgml/usergroups.xml ============================================================================== --- head/share/sgml/usergroups.xml Wed Jun 6 13:15:17 2012 (r38998) +++ head/share/sgml/usergroups.xml Wed Jun 6 15:57:57 2012 (r38999) @@ -101,19 +101,6 @@ The country codes are precise ISO3166 co <continent name="Europe"> <country code="AT" name="Austria"> - <entry id="bsdgraz"> - <name>Grazer BSD Stammtisch</name> - <url>http://graz.bsdstammtisch.at</url> - - <description>The "Grazer BSD Stammtisch" is a - german-language oriented user group with members living in or - near Graz/Austria. We usually meet once per month to discuss - BSD related topics. For more information please visit our - <a href="http://graz.bsdstammtisch.at">website</a> or our <a - href="http://www.facebook.com/group.php?gid=131025030253771">Facebook page</a>. - </description> - </entry> - <entry id="bsdwien"> <name>Wiener BSD Stammtisch</name> <url>http://wien.bsdstammtisch.at/</url> @@ -783,43 +770,6 @@ The country codes are precise ISO3166 co </description> </entry> - <entry id="gubug"> - <name>Greater Utah BSD Users Group (GUBUG)</name> - <url>http://www.gubug.org</url> - <description>The Greater Utah BSD Users Group (GUBUG), formerly - known as SLLUG-BUG, and affiliated with the Salt Lake Linux Users - Group, is based in Salt Lake City, Utah. We welcome users of - FreeBSD, OpenBSD, NetBSD or even Unix or Linux. - </description> - </entry> - - <entry id="freebsd-mke"> - <name>FreeBSD-Milwaukee</name> - <url>http://www.sol.net/freebsd-mke</url> - <description>FreeBSD-Milwaukee Wisconsin meets occasionally and - has a mailing list: <a href="mailto:freebsd-mke-l@ns.sol.net"> - freebsd-mke-l@ns.sol.net</a> send e-mail to <a - href="mailto:freebsd-mke-l-request@ns.sol.net"> - freebsd-mke-l-request@ns.sol.net</a> to subscribe. - </description> - </entry> - - <entry id="uhacc"> - <name>Unix Hobbyists' Administrators' & Coders' Club</name> - <url>http://uhacc.org</url> - <description> - U.H.A.C.C. is a fellowship of individuals united by a common - interest in UNIX® or Linux systems and open technologies. At - meetings you may find beginners and pros alike discussing system - setup, networking, configuration, free/open source software, - coding, tech culture, politics, upcoming events, games, or any - other topic under the sun that pertains to operating "that" kind - of system. You can also find us applying what we learn each week - in the form of diverse and interesting tech and development - projects, all using UNIX® or Linux platforms. - </description> - </entry> - <entry id="su3g"> <name>The Southern Utah Unix Users Group (SU3G)</name> <url>http://www.su3g.org</url> @@ -884,19 +834,6 @@ The country codes are precise ISO3166 co </description> </entry> - <entry id="norcalfulua"> - <name>Northern California Free Unix & Linux Users Association</name> - <url>http://norcalfulua.ning.com/</url> - <description>Northern California Free Unix & Linux Users Association's - (NORCALFULUA) goal is to assist members with Unix-Like Operating Systems - and spreading their use around the Northern California Region. - For more information on how to assist in this endeavor please visit the - <a href="http://norcalfulua.ning.com">Northern California Free Unix & - Linux Users Association</a> website or contact us by - <a href="mailto:norcalfulua@gmail.com">email</a>. - </description> - </entry> - </country> <country code="CA" name="Canada"> @@ -924,11 +861,11 @@ The country codes are precise ISO3166 co <entry id="ottawa"> <name>Ottawa-Carleton Unix Users Group</name> - <url>http://www.ocuug.on.ca/</url> - <description>The Ottawa Unix Users Group is a small group of + <url>http://www.ocbug.ca/</url> + <description>We are a small group of hobbyists, users, authors, sysadmins, and hackers that meet monthly to discuss the latest topics in a very informal setting. Check our - <a href="http://listserv.storm.ca/mailman/listinfo/ocuug">mailing list</a> + <a href="http://mail.ocbug.ca/mailman/listinfo/ocbug_ocbug.ca">mailing list</a> for the latest information. Located in Ottawa, Ontario. </description> From owner-svn-doc-all@FreeBSD.ORG Wed Jun 6 16:42:57 2012 Return-Path: <owner-svn-doc-all@FreeBSD.ORG> Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C3AA9106564A; Wed, 6 Jun 2012 16:42:57 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AE9BE8FC08; Wed, 6 Jun 2012 16:42:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q56Ggvob025890; Wed, 6 Jun 2012 16:42:57 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q56GgvuK025888; Wed, 6 Jun 2012 16:42:57 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206061642.q56GgvuK025888@svn.freebsd.org> From: Isabell Long <issyl0@FreeBSD.org> Date: Wed, 6 Jun 2012 16:42:57 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39000 - head/en_US.ISO8859-1/htdocs/projects X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" <svn-doc-all.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-doc-all> List-Post: <mailto:svn-doc-all@freebsd.org> List-Help: <mailto:svn-doc-all-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Wed, 06 Jun 2012 16:42:57 -0000 Author: issyl0 Date: Wed Jun 6 16:42:57 2012 New Revision: 39000 URL: http://svn.freebsd.org/changeset/doc/39000 Log: Fix a broken link on the projects page of the website. PR: docs/168757 Submitted by: db Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/htdocs/projects/projects.sgml Modified: head/en_US.ISO8859-1/htdocs/projects/projects.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/projects/projects.sgml Wed Jun 6 15:57:57 2012 (r38999) +++ head/en_US.ISO8859-1/htdocs/projects/projects.sgml Wed Jun 6 16:42:57 2012 (r39000) @@ -252,7 +252,7 @@ also tracks the progress of drivers towa <li><a name="deviceframework" href="http://people.FreeBSD.org/~dfr/devices.html"> A New Device Framework for FreeBSD</a></li> -<li><a name="atm" href="http://www.ccrc.wustl.edu/pub/chuck/tech/bsdatm/bsdatm.html"> BSD ATM: implementation of ATM internetworking under 4.4BSD</a>: +<li><a name="atm" href="http://chuck.cranor.org/p/bsdatm.pdf"> BSD ATM: implementation of ATM internetworking under 4.4BSD</a>: New computer applications in areas such as multimedia, imaging, and distributed computing demand high levels of performance from computer networks. ATM-based networking solutions provide one From owner-svn-doc-all@FreeBSD.ORG Wed Jun 6 17:05:35 2012 Return-Path: <owner-svn-doc-all@FreeBSD.ORG> Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E7ED1065670; Wed, 6 Jun 2012 17:05:35 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8A1E68FC0C; Wed, 6 Jun 2012 17:05:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q56H5Zni027002; Wed, 6 Jun 2012 17:05:35 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q56H5ZOs027000; Wed, 6 Jun 2012 17:05:35 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201206061705.q56H5ZOs027000@svn.freebsd.org> From: Glen Barber <gjb@FreeBSD.org> Date: Wed, 6 Jun 2012 17:05:35 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39001 - head/share/sgml X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" <svn-doc-all.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-doc-all> List-Post: <mailto:svn-doc-all@freebsd.org> List-Help: <mailto:svn-doc-all-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Wed, 06 Jun 2012 17:05:35 -0000 Author: gjb Date: Wed Jun 6 17:05:35 2012 New Revision: 39001 URL: http://svn.freebsd.org/changeset/doc/39001 Log: Link to an article at Phoronix by Michael Larabel about the Netflix Open Connect content distribution system using FreeBSD, not Linux. Modified: head/share/sgml/press.xml Modified: head/share/sgml/press.xml ============================================================================== --- head/share/sgml/press.xml Wed Jun 6 16:42:57 2012 (r39000) +++ head/share/sgml/press.xml Wed Jun 6 17:05:35 2012 (r39001) @@ -17,6 +17,23 @@ <name>2012</name> <month> + <name>6</name> + + <story> + <name>Netflix Open Connect Network: FreeBSD, Not Linux</name> + <url>http://www.phoronix.com/scan.php?page=news_item&px=MTExNDM</url> + <site-name>phoronix</site-name> + <site-url>http://www.phoronix.com</site-url> + <date>6 June 2012</date> + <author>Michael Larabel</author> + <p>This week Netflix announced their Open Connect Network as + their own open CDN (Content Distribution Network), but + rather than using Linux as the base for this open-source + platform, they decided to use FreeBSD.</p> + </story> + </month> + + <month> <name>5</name> <story> From owner-svn-doc-all@FreeBSD.ORG Thu Jun 7 03:53:47 2012 Return-Path: <owner-svn-doc-all@FreeBSD.ORG> Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CA4A106566B; Thu, 7 Jun 2012 03:53:47 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1EA338FC0A; Thu, 7 Jun 2012 03:53:47 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q573rkOD057204; Thu, 7 Jun 2012 03:53:46 GMT (envelope-from ganbold@svn.freebsd.org) Received: (from ganbold@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q573rkxv057200; Thu, 7 Jun 2012 03:53:46 GMT (envelope-from ganbold@svn.freebsd.org) Message-Id: <201206070353.q573rkxv057200@svn.freebsd.org> From: Ganbold Tsagaankhuu <ganbold@FreeBSD.org> Date: Thu, 7 Jun 2012 03:53:46 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39002 - in head/mn_MN.UTF-8/books/handbook: advanced-networking disks mirrors X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" <svn-doc-all.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-doc-all> List-Post: <mailto:svn-doc-all@freebsd.org> List-Help: <mailto:svn-doc-all-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-doc-all>, <mailto:svn-doc-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Thu, 07 Jun 2012 03:53:47 -0000 Author: ganbold Date: Thu Jun 7 03:53:46 2012 New Revision: 39002 URL: http://svn.freebsd.org/changeset/doc/39002 Log: MFen: Resync with the English version of the handbook Obtained from: FreeBSD Mongolian Documentation project Modified: head/mn_MN.UTF-8/books/handbook/advanced-networking/chapter.sgml head/mn_MN.UTF-8/books/handbook/disks/chapter.sgml head/mn_MN.UTF-8/books/handbook/mirrors/chapter.sgml Modified: head/mn_MN.UTF-8/books/handbook/advanced-networking/chapter.sgml ============================================================================== --- head/mn_MN.UTF-8/books/handbook/advanced-networking/chapter.sgml Wed Jun 6 17:05:35 2012 (r39001) +++ head/mn_MN.UTF-8/books/handbook/advanced-networking/chapter.sgml Thu Jun 7 03:53:46 2012 (r39002) @@ -1,7 +1,7 @@ <!-- The FreeBSD Mongolian Documentation Project - Original revision 1.446 + Original revision 38927 $FreeBSD$ --> Modified: head/mn_MN.UTF-8/books/handbook/disks/chapter.sgml ============================================================================== --- head/mn_MN.UTF-8/books/handbook/disks/chapter.sgml Wed Jun 6 17:05:35 2012 (r39001) +++ head/mn_MN.UTF-8/books/handbook/disks/chapter.sgml Thu Jun 7 03:53:46 2012 (r39002) @@ -1,7 +1,7 @@ <!-- The FreeBSD Mongolian Documentation Project - Original revision 1.316 + Original revision 38941 $FreeBSD$ --> @@ -2422,7 +2422,7 @@ sa0(ncr1:4:0): Logical unit is in proce <title><application>ssh</application>-ээр <envar>RSH</envar> тохируулан <command>dump</command>-г ашиглах нь - &prompt.root; RSH=/usr/bin/ssh /sbin/dump -0uan -f targetuser@targetmachine.example.com:/dev/sa0 /usr + &prompt.root; env RSH=/usr/bin/ssh /sbin/dump -0uan -f targetuser@targetmachine.example.com:/dev/sa0 /usr Modified: head/mn_MN.UTF-8/books/handbook/mirrors/chapter.sgml ============================================================================== --- head/mn_MN.UTF-8/books/handbook/mirrors/chapter.sgml Wed Jun 6 17:05:35 2012 (r39001) +++ head/mn_MN.UTF-8/books/handbook/mirrors/chapter.sgml Thu Jun 7 03:53:46 2012 (r39002) @@ -1,7 +1,7 @@ @@ -362,6 +362,7 @@ SSH2 HostKey: 1024 e8:3b:29:7b:ca:9f:ac:e9:45:cb:c8:17:ae:9b:eb:55 /etc/ssh/ssh_host_dsa_key.pub
    + CVS нь &os;-ийн хэзээ нэгэн цагт байсан (эсвэл зарим тохиолдолд ирээдүйд байх) From owner-svn-doc-all@FreeBSD.ORG Thu Jun 7 05:47:13 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BBAB5106564A; Thu, 7 Jun 2012 05:47:13 +0000 (UTC) (envelope-from ganbold@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A4BBD8FC18; Thu, 7 Jun 2012 05:47:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q575lDi0063267; Thu, 7 Jun 2012 05:47:13 GMT (envelope-from ganbold@svn.freebsd.org) Received: (from ganbold@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q575lDE8063265; Thu, 7 Jun 2012 05:47:13 GMT (envelope-from ganbold@svn.freebsd.org) Message-Id: <201206070547.q575lDE8063265@svn.freebsd.org> From: Ganbold Tsagaankhuu Date: Thu, 7 Jun 2012 05:47:13 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39003 - head/mn_MN.UTF-8/books/handbook/config X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2012 05:47:13 -0000 Author: ganbold Date: Thu Jun 7 05:47:13 2012 New Revision: 39003 URL: http://svn.freebsd.org/changeset/doc/39003 Log: MFen: Resync with the English version of the handbook Obtained from: FreeBSD Mongolian Documentation project Modified: head/mn_MN.UTF-8/books/handbook/config/chapter.sgml Modified: head/mn_MN.UTF-8/books/handbook/config/chapter.sgml ============================================================================== --- head/mn_MN.UTF-8/books/handbook/config/chapter.sgml Thu Jun 7 03:53:46 2012 (r39002) +++ head/mn_MN.UTF-8/books/handbook/config/chapter.sgml Thu Jun 7 05:47:13 2012 (r39003) @@ -1,7 +1,7 @@ @@ -1319,6 +1319,305 @@ ifconfig_fxp0_alias7="inet 202.0.75.20 n + + + + + Никлас + Зайсинг + Хувь нэмэр болгон оруулсан + + + + + Системийн лог хийгч + <application>syslogd</application>-г тохируулах нь + + system logging + syslog + syslogd + + Систем лог хийх нь системийг удирдахад чухал зүйл юм. + Үүнийг тоног төхөөрөмж болоод програм хангамжийн асуудлууд, мөн + систем дэх алдаануудыг олж илрүүлэхэд хэрэглэдэг. + Аюулгүй байдлын аудит хийх болон аливаа учралд хариу үзүүлэхэд + бас маш чухал үүрэг гүйцэтгэдэг. Хяналтын терминалгүй + системийн демонууд мэдээллийг системийн лог хийгч рүү эсвэл + бусад лог файл руу ихэвчлэн бас лог хийдэг. + + Энэ хэсэгт &os; системийн лог хийгч &man.syslogd.8;-г + хэрхэн тохируулж ашиглах талаар болон логийг багасгах ба + &man.newsyslog.8; ашиглан лог удирдах талаар хэлэлцэх болно. + Локал машин дээр syslogd-г тохируулж + ашиглах талаар анхаарах болно. Тусдаа лог хост ашиглах талаарх + нэмэлт тохиргооны тухай дэлгэрэнгүйг + хэсгээс үзнэ үү. + + + <application>syslogd</application> ашиглах нь + + &os;-н &man.syslogd.8;-н анхдагч тохиргоо ачаалах үед + эхэлдэг. Үүнийг /etc/rc.conf дахь + syslogd_enable хувьсагчаар хянадаг. + &man.syslogd.8;-н ажиллагаанд нөлөөлдөг програмын хэд хэдэн + аргументууд байдаг. Тэдгээрийг өөрчлөхийн тулд + /etc/rc.conf дахь + syslogd_flags-г ашиглана. + Аргументуудын талаар дэлгэрэнгүйг + &man.syslogd.8;-оос, &man.rc.conf.5; ба + болон хэсгээс + /etc/rc.conf ба &man.rc.8; дэд системийн + талаар дэлгэрэнгүйг үзнэ үү. + + + + <application>syslogd</application>-г тохируулах нь + + syslog.conf + + Тохиргооны файл нь анхдагчаар + /etc/syslog.conf бөгөөд + логуудыг хүлээж авсныхаа дараа хэрхэн яаж + ажиллахыг хянадаг. Ирж байгаа үйл явдлуудтай + ажиллахыг хянах хэд хэдэн параметрүүд байдаг бөгөөд + тэдгээрээс хамгийн хялбар нь + facility ба + level юм. Хэрэгсэл нь + цөм эсвэл демон гэх мэт аль дэд систем логийг үүсгэснийг + тайлбарлах бөгөөд түвшин нь учирсан үйл явдлын хор + хөнөөлийг тайлбарладаг. Энэ нь логийг өөр лог файлууд + рүү өгөх эсвэл хаях зэргээр тохиргоо болон түвшингээс хамааруулан + хийх боломжтой болгодог. Лог илгээсэн програм болон алсаас лог + хийж байгаа тохиолдолд лог үйл явц үүсгэж байгаа машины хостын + нэрээс хамаарч арга хэмжээ авах боломж бас байдаг. + + &man.syslogd.8;-г тохируулах нь хялбар байдаг. + Тохиргооны файл нь хийх үйлдэл бүрийн хувьд нэг мөртэй + байх бөгөөд мөр бүрийн синтакс нь сонголтын талбар болон + арга хэмжээний талбараас тогтоно. Сонголтын талбарын + синтакс нь facility.level байх + бөгөөд facility буюу хэрэгслээс + ирж байгаа логуудыг level + түвшинд буюу түүнээс дээш түвшинд авах тохиргоо юм. + Мөн нэмэлтээр юу лог хийхийг илүү нарийн зааж өгөхийн тулд + харьцуулах флагийг түвшингийн өмнө нэмж өгөх бас боломжтой. + Адил үйлдэлд олон сонголтын талбарыг ашиглаж болох бөгөөд + тэдгээрийг цэг таслалаар (;) тусгаарладаг. + *-г ашиглавал бүгдийг гэсэн утгатай. + Арга хэмжээний талбар нь файл эсвэл алсын лог хост зэрэг + хаашаа логийг илгээхийг зааж өгдөг. Жишээ нь энд + &os;-н анхдагч syslog.conf байна: + + # $&os;$ +# +# Spaces ARE valid field separators in this file. However, +# other *nix-like systems still insist on using tabs as field +# separators. If you are sharing this file between systems, you +# may want to use only tabs as field separators here. +# Consult the &man.syslog.conf.5; manpage. +*.err;kern.warning;auth.notice;mail.crit /dev/console +*.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err /var/log/messages +security.* /var/log/security +auth.info;authpriv.info /var/log/auth.log +mail.info /var/log/maillog +lpr.info /var/log/lpd-errs +ftp.info /var/log/xferlog +cron.* /var/log/cron +*.=debug /var/log/debug.log +*.emerg * +# uncomment this to log all writes to /dev/console to /var/log/console.log +#console.info /var/log/console.log +# uncomment this to enable logging of all log messages to /var/log/all.log +# touch /var/log/all.log and chmod it to mode 600 before it will work +#*.* /var/log/all.log +# uncomment this to enable logging to a remote loghost named loghost +#*.* @loghost +# uncomment these if you're running inn +# news.crit /var/log/news/news.crit +# news.err /var/log/news/news.err +# news.notice /var/log/news/news.notice +!ppp +*.* /var/log/ppp.log +!* + + + + + err болон түүнээс дээш, мөн + kern.warning, + auth.notice ба + mail.crit түвшний бүх мэдээллийг + лог хийж эдгээр мэдээллийг консол (/dev/console) + руу гаргах. + + + + mail хэрэгслийн info + буюу түүнээс дээш түвшний бүх мэдээллийг барьж логийг + /var/log/maillog руу авах. + + + + Энэ мөр нь = буюу харьцуулах + флагийг ашиглаж байгаа бөгөөд debug түвшний + мэдээллийг авч /var/log/debug.log руу + бичихийг заана. + + + + Энд програмыг хэрхэн заах + талаар жишээг харуулсан байна. Энэ нь програмыг зааж + өгсөн тэр програмын хувьд ажиллах тийм дүрэм бий + болгоно. Энэ тохиолдлын хувьд энэ мөр болон түүний + дараах нь зөвхөн ppp-с гарах бүх + мэдээллийг /var/log/ppp.log + файл руу авч байна. + + + + Энэ жишээ нь олон түвшин болон дэд системүүд байгааг + харуулж байна. Түвшингүүд нь хамгийн чухлаас бага руу + жагсаагдсан байна: emerg, alert, + crit, err, + warning, notice, + info ба debug. + + Хэрэгслүүд нь ямар нэг дараалалгүйгээр дараах байна: + auth, authpriv, + console, cron, + daemon, ftp, + kern, lpr, + mail, mark, + news, security, + syslog, user, + uucp ба local0-с + local7 хүртэл байна. Өөр үйлдлийн + системүүдийн хувьд өөр хэрэгслүүд байж болохыг + анхаараарай. + + Эдгээрийг мэдсэний дараа notice + болон түүнээс дээш түвшинд янз бүрийн демонгоос + гарч байгаа бүгдийг /var/log/daemon.log руу лог + хийх тохиргооны мөрийг /etc/syslog.conf руу + нэмэх нь хялбар байх болно. Дараахийг нэмэхэд л болно: + + daemon.notice /var/log/daemon.log + + Түвшингүүд болон хэрэгслүүдийн талаарх дэлгэрэнгүй + мэдээллийг &man.syslog.3; ба &man.syslogd.8;-с үзнэ үү. + syslog.conf болон түүний синтакс, + илүү нарийн тохиргоо бүхий жишээнүүдийн талаар дэлгэрэнгүйг + &man.syslog.conf.5; ба -с үзнэ үү. + + + + Лог удирдах ба + <application>newsyslog</application> ашиглан багасгах + + newsyslog + newsyslog.conf + log rotation + log management + + Лог файлууд нь хурдан томорч аажмаар нэмэгдэх нь элбэг + байдаг. Энэ нь тийм ч чухал биш мэдээллээр файл болон хатуу + дискийг дүүргэхэд хүргэдэг. Үүнийг арилгахын тулд логийн + удирдлагыг ашигладаг. &os;-д &man.newsyslog.8; ашиглан + лог файлуудыг удирддаг. Энэ програм нь тодорхой давтамжтайгаар + лог файлуудын хэмжээг багасгаж архивлах болон байхгүй болсон + лог файлуудыг үүсгэх, лог файлуудыг зөөх үед дохио өгөх зэрэгт + ашиглагддаг. Лог файлууд нь заавал syslog-с гарсан байх + шаардлагагүй байдаг. &man.newsyslog.8; нь дурын програмаас + гарсан дурын логтой ажиллаж чаддаг. newsyslog-г + &man.cron.8;-с ихэвчлэн ажиллуулдаг бөгөөд системийн демон + биш гэдгийг санах хэрэгтэй. Анхдагч тохиргоогоор цаг бүр + ажиллахаар тохируулагдсан байдаг. + + + + <application>newsyslog</application>-г тохируулах + + Ямар арга хэмжээ авахыг мэдэхийн тулд + &man.newsyslog.8; анхдагчаар /etc/newsyslog.conf + тохиргооны файлыг уншдаг. Энэ тохиргооны файл нь + &man.newsyslog.8; удирддаг файл бүрийн + хувьд нэг мөрийг агуулсан байдаг. Мөр бүр нь файлын + эзэн, зөвшөөрлүүд, файлын хэмжээг хэзээ багасгаж арвивлах болон + логийг багасгахад (шахалт гэх мэт) нөлөөлөх нэмэлт флагууд ба + логийг хэзээ багасгахыг хэлэх програмуудыг заадаг. + Жишээ нь энд &os; дээрх анхдагч тохиргоо байна: + + # configuration file for newsyslog +# $&os;$ +# +# Entries which do not specify the '/pid_file' field will cause the +# syslogd process to be signalled when that log file is rotated. This +# action is only appropriate for log files which are written to by the +# syslogd process (ie, files listed in /etc/syslog.conf). If there +# is no process which needs to be signalled when a given log file is +# rotated, then the entry for that file should include the 'N' flag. +# +# The 'flags' field is one or more of the letters: BCDGJNUXZ or a '-'. +# +# Note: some sites will want to select more restrictive protections than the +# defaults. In particular, it may be desirable to switch many of the 644 +# entries to 640 or 600. For example, some sites will consider the +# contents of maillog, messages, and lpd-errs to be confidential. In the +# future, these defaults may change to more conservative ones. +# +# logfilename [owner:group] mode count size when flags [/pid_file] [sig_num] +/var/log/all.log 600 7 * @T00 J +/var/log/amd.log 644 7 100 * J +/var/log/auth.log 600 7 100 @0101T JC +/var/log/console.log 600 5 100 * J +/var/log/cron 600 3 100 * JC +/var/log/daily.log 640 7 * @T00 JN +/var/log/debug.log 600 7 100 * JC +/var/log/init.log 644 3 100 * J +/var/log/kerberos.log 600 7 100 * J +/var/log/lpd-errs 644 7 100 * JC +/var/log/maillog 640 7 * @T00 JC +/var/log/messages 644 5 100 @0101T JC +/var/log/monthly.log 640 12 * $M1D0 JN +/var/log/pflog 600 3 100 * JB /var/run/pflogd.pid +/var/log/ppp.log root:network 640 3 100 * JC +/var/log/security 600 10 100 * JC +/var/log/sendmail.st 640 10 * 168 B +/var/log/utx.log 644 3 * @01T05 B +/var/log/weekly.log 640 5 1 $W6D0 JN +/var/log/xferlog 600 7 100 * JC + + Мөр бүр багасгах файлын нэрээс эхэлдэг бөгөөд + үүний дараа багасгасан болон шинээр үүссэн файлуудын + эзэн болон бүлэг нэмэлтээр байж болно. + Дараагийн талбар mode нь файлуудын + горим бөгөөд count нь багасгасан файл + хэдийг үлдээхийг зааж өгдөг. size ба + when талбарууд нь файлыг хэзээ + багасгахыг newsyslog-д хэлж өгнө. + Лог файлыг size талбарт зааснаас том болсон + үед эсвэл when талбарт заасан хугацаа + өнгөрсөн үед багасгадаг. * нь энэ + талбарыг орхино гэсэн утгатай. + flags талбар нь багасгасан + файлыг хэрхэн шахах эсвэл байхгүй байгаа лог файлыг + үүсгэх зэрэг заавруудыг &man.newsyslog.8;-д өгдөг. + Хамгийн сүүлийн хоёр талбар нь нэмэлт бөгөөд процессын + PID-file болон + сигналын дугаарыг зааж файлыг багасгах үед тухайн процесс руу + илгээх сигналыг зааж өгдөг. Бүх талбарууд, флагууд болон багасгах + хугацааг хэрхэн зааж өгөх талаарх дэлгэрэнгүй + мэдээллийг &man.newsyslog.conf.5;-с үзнэ үү. + newsyslog нь cron-с + ажилладаг бөгөөд &man.cron.8;-ы ажиллах давтамжаас + илүү олон ажиллах боложмгүй гэдгийг санаарай. + + + + Тохиргооны Файлууд @@ -1491,101 +1790,6 @@ nameserver 147.11.100.30 - - Бүртгэлийн файлын тохиргоо - - бүртгэлийн файлууд - - - <filename>syslog.conf</filename> - - syslog.conf - - syslog.conf нь &man.syslogd.8; - програмын тохиргооны файл юм. Энэ нь ямар төрлийн syslog - мэдээллүүд яг аль бүртгэлийн файлд бүртгэгдэхийг заадаг. - - # $&os;$ -# -# Spaces ARE valid field separators in this file. However, -# other *nix-like systems still insist on using tabs as field -# separators. If you are sharing this file between systems, you -# may want to use only tabs as field separators here. -# Consult the syslog.conf(5) manual page. -*.err;kern.debug;auth.notice;mail.crit /dev/console -*.notice;kern.debug;lpr.info;mail.crit;news.err /var/log/messages -security.* /var/log/security -mail.info /var/log/maillog -lpr.info /var/log/lpd-errs -cron.* /var/log/cron -*.err root -*.notice;news.err root -*.alert root -*.emerg * -# uncomment this to log all writes to /dev/console to /var/log/console.log -#console.info /var/log/console.log -# uncomment this to enable logging of all log messages to /var/log/all.log -#*.* /var/log/all.log -# uncomment this to enable logging to a remote log host named loghost -#*.* @loghost -# uncomment these if you're running inn -# news.crit /var/log/news/news.crit -# news.err /var/log/news/news.err -# news.notice /var/log/news/news.notice -!startslip -*.* /var/log/slip.log -!ppp -*.* /var/log/ppp.log - - Дэлгэрэнгүй мэдээллийн талаар &man.syslog.conf.5; гарын авлагын хуудаснаас - зөвлөгөө авна уу. - - - - <filename>newsyslog.conf</filename> - - newsyslog.conf - - newsyslog.conf нь ихэнхдээ &man.cron.8; хуваарилан - цагаар ажиллуулдаг &man.newsyslog.8;-д зориулагдсан тохиргоо юм. &man.newsyslog.8; - нь хэзээ бүртгэлийн файлууд архивлагдах эсвэл дахин зохицуулагдахыг тодорхойлдог. - logfile нь logfile.0 уруу, - logfile.0 нь logfile.1 - шилжих гэх зэргээр зохицуулагддаг. Бүртгэлийн файлууд өөрөөр &man.gzip.1; - хэлбэрээр logfile.0.gz, logfile.1.gz - гэх зэргээр нэрлэгдэн архивлагдаж болно. - - newsyslog.conf нь аль бүртгэлийн файлууд удирдагдах, - хичнээн нь хадгалагдах болон хэзээ тэдгээрт хүрэхийг зааж өгдөг. Бүртгэлийн файлууд нь - тодорхой хэмжээнд хүрэх үед болон эсвэл тодорхой цаг/огнооны давтамжтайгаар зохицуулагддаг ба/эсвэл - архивлагддаг. - - # configuration file for newsyslog -# $&os;$ -# -# filename [owner:group] mode count size when [ZB] [/pid_file] [sig_num] -/var/log/cron 600 3 100 * Z -/var/log/amd.log 644 7 100 * Z -/var/log/kerberos.log 644 7 100 * Z -/var/log/lpd-errs 644 7 100 * Z -/var/log/maillog 644 7 * @T00 Z -/var/log/sendmail.st 644 10 * 168 B -/var/log/messages 644 5 100 * Z -/var/log/all.log 600 7 * @T00 Z -/var/log/slip.log 600 3 100 * Z -/var/log/ppp.log 600 3 100 * Z -/var/log/security 600 10 100 * Z -/var/log/wtmp 644 3 * @01T05 B -/var/log/daily.log 640 7 * @T00 Z -/var/log/weekly.log 640 5 1 $W6D0 Z -/var/log/monthly.log 640 12 * $M1D0 Z -/var/log/console.log 640 5 100 * Z - - Дэлгэрэнгүй мэдээллийн талаар &man.newsyslog.8; гарын авлагын хуудаснаас - зөвлөгөө авна уу. - - - <filename>sysctl.conf</filename> From owner-svn-doc-all@FreeBSD.ORG Thu Jun 7 08:31:43 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C521B1065673; Thu, 7 Jun 2012 08:31:43 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AFFEF8FC22; Thu, 7 Jun 2012 08:31:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q578VhwC070632; Thu, 7 Jun 2012 08:31:43 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q578Vhki070630; Thu, 7 Jun 2012 08:31:43 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206070831.q578Vhki070630@svn.freebsd.org> From: Isabell Long Date: Thu, 7 Jun 2012 08:31:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39004 - head/en_US.ISO8859-1/htdocs/advocacy X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2012 08:31:43 -0000 Author: issyl0 Date: Thu Jun 7 08:31:43 2012 New Revision: 39004 URL: http://svn.freebsd.org/changeset/doc/39004 Log: Remove a dead link from the myths page of the advocacy section of the website. PR: docs/168753 Submitted by: db Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/htdocs/advocacy/myths.sgml Modified: head/en_US.ISO8859-1/htdocs/advocacy/myths.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/advocacy/myths.sgml Thu Jun 7 05:47:13 2012 (r39003) +++ head/en_US.ISO8859-1/htdocs/advocacy/myths.sgml Thu Jun 7 08:31:43 2012 (r39004) @@ -178,11 +178,6 @@ storage. It is also a part of the FreeBSD source tree, see /usr/src/tools/tools/nanobsd.

    -
  • TinyBSD is - a set of tools made up of shell scripts - designed to allow easy development of Embedded Systems based - on FreeBSD 5.X and 6.X.

  • -
  • ThinBSD is a small FreeBSD based boot image that allows a standard PC to act as a diskless thin client for a Microsoft Windows RDP server or From owner-svn-doc-all@FreeBSD.ORG Thu Jun 7 09:13:01 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BDB510656D8; Thu, 7 Jun 2012 09:13:01 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1C6998FC0A; Thu, 7 Jun 2012 09:13:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q579D0ZS072972; Thu, 7 Jun 2012 09:13:00 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q579D0BH072968; Thu, 7 Jun 2012 09:13:00 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206070913.q579D0BH072968@svn.freebsd.org> From: Isabell Long Date: Thu, 7 Jun 2012 09:13:00 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39005 - in head: fr_FR.ISO8859-1/htdocs/advocacy zh_CN.GB2312/htdocs/advocacy X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2012 09:13:01 -0000 Author: issyl0 Date: Thu Jun 7 09:13:00 2012 New Revision: 39005 URL: http://svn.freebsd.org/changeset/doc/39005 Log: - Remove out-of-date references to the Halloween letter on the zh_CN and fr_FR advocacy pages of the website. - Remove letter.sgml itself in zh_CN. - Remove references to letter.sgml from the advocacy directory's Makefile in zh_CN. Approved by: blackend, delphij, gabor (mentor) Deleted: head/zh_CN.GB2312/htdocs/advocacy/letter.sgml Modified: head/fr_FR.ISO8859-1/htdocs/advocacy/index.sgml head/zh_CN.GB2312/htdocs/advocacy/Makefile head/zh_CN.GB2312/htdocs/advocacy/index.sgml Modified: head/fr_FR.ISO8859-1/htdocs/advocacy/index.sgml ============================================================================== --- head/fr_FR.ISO8859-1/htdocs/advocacy/index.sgml Thu Jun 7 08:31:43 2012 (r39004) +++ head/fr_FR.ISO8859-1/htdocs/advocacy/index.sgml Thu Jun 7 09:13:00 2012 (r39005) @@ -36,14 +36,6 @@

    Décrit et démonte certains des mythes qui entourent les projets *BSD.

  • -
  • L'évangélisation de FreeBSD et le - mémo Halloween

    - -

    La réponse de Jordan Hubbard à l'infamant mémo Halloween, postée sur - la liste de diffusion FreeBSD-Advocacy (et reprise avec la - permission de l'auteur).

    - -
  • FreeBSD dans la Presse

    Contient de nombreux liens sur des articles publiés et qui mentionnent Modified: head/zh_CN.GB2312/htdocs/advocacy/Makefile ============================================================================== --- head/zh_CN.GB2312/htdocs/advocacy/Makefile Thu Jun 7 08:31:43 2012 (r39004) +++ head/zh_CN.GB2312/htdocs/advocacy/Makefile Thu Jun 7 09:13:00 2012 (r39005) @@ -11,6 +11,5 @@ DOCS= index.sgml DOCS+= myths.sgml -DOCS+= letter.sgml .include "${DOC_PREFIX}/share/mk/web.site.mk" Modified: head/zh_CN.GB2312/htdocs/advocacy/index.sgml ============================================================================== --- head/zh_CN.GB2312/htdocs/advocacy/index.sgml Thu Jun 7 08:31:43 2012 (r39004) +++ head/zh_CN.GB2312/htdocs/advocacy/index.sgml Thu Jun 7 09:13:00 2012 (r39005) @@ -30,12 +30,6 @@

    ܲһЩ *BSD Ŀ˼

  • -
  • ڴٽ FreeBSD ʥڱ¼

    - -

    Jordan Hubbard ڷ FreeBSD-Advocacy ʼбģ - ʥڱ¼ĻӦ (ڵõȨ֮ ڴٴη)

    - -
  • ý屨е FreeBSD

    ṩᵽ FreeBSD ý屨µӡ

  • From owner-svn-doc-all@FreeBSD.ORG Thu Jun 7 09:52:45 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D31710656B5; Thu, 7 Jun 2012 09:52:45 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 473F38FC12; Thu, 7 Jun 2012 09:52:45 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q579qjsw075080; Thu, 7 Jun 2012 09:52:45 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q579qjZO075078; Thu, 7 Jun 2012 09:52:45 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206070952.q579qjZO075078@svn.freebsd.org> From: Isabell Long Date: Thu, 7 Jun 2012 09:52:45 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39006 - head/en_US.ISO8859-1/htdocs/donations X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2012 09:52:45 -0000 Author: issyl0 Date: Thu Jun 7 09:52:44 2012 New Revision: 39006 URL: http://svn.freebsd.org/changeset/doc/39006 Log: Fix a dead link on the donors page of the website. PR: docs/168772 Submitted by: db Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/htdocs/donations/donors.sgml Modified: head/en_US.ISO8859-1/htdocs/donations/donors.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/donations/donors.sgml Thu Jun 7 09:13:00 2012 (r39005) +++ head/en_US.ISO8859-1/htdocs/donations/donors.sgml Thu Jun 7 09:52:44 2012 (r39006) @@ -2190,7 +2190,7 @@ hrs - UltraSPARC laptop + UltraSPARC laptop ru Received From owner-svn-doc-all@FreeBSD.ORG Thu Jun 7 12:48:43 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DCA141065672; Thu, 7 Jun 2012 12:48:43 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C734D8FC0A; Thu, 7 Jun 2012 12:48:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q57CmhjF088731; Thu, 7 Jun 2012 12:48:43 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q57CmhCb088729; Thu, 7 Jun 2012 12:48:43 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201206071248.q57CmhCb088729@svn.freebsd.org> From: Warren Block Date: Thu, 7 Jun 2012 12:48:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39007 - head/share/sgml X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2012 12:48:44 -0000 Author: wblock Date: Thu Jun 7 12:48:43 2012 New Revision: 39007 URL: http://svn.freebsd.org/changeset/doc/39007 Log: Add an entity for gnop(8). Reviewed by: gjb Modified: head/share/sgml/man-refs.ent Modified: head/share/sgml/man-refs.ent ============================================================================== --- head/share/sgml/man-refs.ent Thu Jun 7 09:52:44 2012 (r39006) +++ head/share/sgml/man-refs.ent Thu Jun 7 12:48:43 2012 (r39007) @@ -4,7 +4,7 @@ "_" is not a valid character in an entity name, so use "." instead. This runs the risk that two manual pages, one for "foo_bar" and one - for "foo.bar" would exist. Hopefully the chance of this is + for "foo.bar" would exist. Hopefully the chance of this is sufficiently small that it is not an issue. If the manual page does not belong to the base system, you have to @@ -4340,6 +4340,7 @@ + From owner-svn-doc-all@FreeBSD.ORG Thu Jun 7 14:03:38 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38CA110656AE; Thu, 7 Jun 2012 14:03:38 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0B33D8FC0C; Thu, 7 Jun 2012 14:03:38 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q57E3bKG092170; Thu, 7 Jun 2012 14:03:37 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q57E3bwa092168; Thu, 7 Jun 2012 14:03:37 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206071403.q57E3bwa092168@svn.freebsd.org> From: Isabell Long Date: Thu, 7 Jun 2012 14:03:37 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39008 - head/en_US.ISO8859-1/htdocs/advocacy X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2012 14:03:38 -0000 Author: issyl0 Date: Thu Jun 7 14:03:37 2012 New Revision: 39008 URL: http://svn.freebsd.org/changeset/doc/39008 Log: Add the mention of TinyBSD back into myths.sgml again (after removing it in doc commit 39004 because of a broken link) due to the link in the TinyBSD README having been updated in src commit 236707. Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/htdocs/advocacy/myths.sgml Modified: head/en_US.ISO8859-1/htdocs/advocacy/myths.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/advocacy/myths.sgml Thu Jun 7 12:48:43 2012 (r39007) +++ head/en_US.ISO8859-1/htdocs/advocacy/myths.sgml Thu Jun 7 14:03:37 2012 (r39008) @@ -178,6 +178,11 @@ storage. It is also a part of the FreeBSD source tree, see /usr/src/tools/tools/nanobsd.

    +
  • TinyBSD is + a set of tools made up of shell scripts designed to allow easy + development of Embedded Systems based on FreeBSD 5.x and + 6.x.

  • +
  • ThinBSD is a small FreeBSD based boot image that allows a standard PC to act as a diskless thin client for a Microsoft Windows RDP server or From owner-svn-doc-all@FreeBSD.ORG Fri Jun 8 08:35:33 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 54AD2106566B; Fri, 8 Jun 2012 08:35:33 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 354428FC16; Fri, 8 Jun 2012 08:35:33 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q588ZXrJ043358; Fri, 8 Jun 2012 08:35:33 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q588ZXoX043356; Fri, 8 Jun 2012 08:35:33 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201206080835.q588ZXoX043356@svn.freebsd.org> From: Carlo Strub Date: Fri, 8 Jun 2012 08:35:33 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39009 - head/share/pgpkeys X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2012 08:35:33 -0000 Author: cs (ports committer) Date: Fri Jun 8 08:35:32 2012 New Revision: 39009 URL: http://svn.freebsd.org/changeset/doc/39009 Log: Update my pgp keys Modified: head/share/pgpkeys/cs.key Modified: head/share/pgpkeys/cs.key ============================================================================== --- head/share/pgpkeys/cs.key Thu Jun 7 14:03:37 2012 (r39008) +++ head/share/pgpkeys/cs.key Fri Jun 8 08:35:32 2012 (r39009) @@ -1,12 +1,17 @@ sub 4096R/99AC2A67 2012-06-05 [expires: 2017-06-04] + +pub 4096R/2C23E493 2012-06-08 [expires: 2017-06-07] + Key fingerprint = 26E0 89EA B9BE 5FC5 D740 CBB4 EABC 7343 2C23 E493 +uid Carlo Strub (Mail) +sub 4096R/DF86FD3E 2012-06-08 [expires: 2017-06-07] ]]> From owner-svn-doc-all@FreeBSD.ORG Fri Jun 8 15:05:46 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4605C106566B; Fri, 8 Jun 2012 15:05:46 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 307FF8FC1D; Fri, 8 Jun 2012 15:05:46 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q58F5kG4066582; Fri, 8 Jun 2012 15:05:46 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q58F5jwR066580; Fri, 8 Jun 2012 15:05:45 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206081505.q58F5jwR066580@svn.freebsd.org> From: Isabell Long Date: Fri, 8 Jun 2012 15:05:45 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39010 - head/en_US.ISO8859-1/books/handbook/ppp-and-slip X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2012 15:05:46 -0000 Author: issyl0 Date: Fri Jun 8 15:05:45 2012 New Revision: 39010 URL: http://svn.freebsd.org/changeset/doc/39010 Log: Add a note to a handbook chapter about the mpd.conf example only working for mpd version 4. PR: docs/168421 Submitted by: Alessandro Chia (al.chia at yahoo dot de) Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml Modified: head/en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml Fri Jun 8 08:35:32 2012 (r39009) +++ head/en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml Fri Jun 8 15:05:45 2012 (r39010) @@ -2344,6 +2344,11 @@ ppp_profile="adsl" is spread over two files, first the mpd.conf: + + This example of the mpd.conf file + only works with mpd 4.x. + + default: load adsl From owner-svn-doc-all@FreeBSD.ORG Fri Jun 8 23:13:17 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE4D71065672; Fri, 8 Jun 2012 23:13:17 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B6C6E8FC14; Fri, 8 Jun 2012 23:13:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q58NDH81091377; Fri, 8 Jun 2012 23:13:17 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q58NDHjZ091375; Fri, 8 Jun 2012 23:13:17 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206082313.q58NDHjZ091375@svn.freebsd.org> From: Isabell Long Date: Fri, 8 Jun 2012 23:13:17 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39011 - head/es_ES.ISO8859-1/htdocs/projects X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2012 23:13:17 -0000 Author: issyl0 Date: Fri Jun 8 23:13:17 2012 New Revision: 39011 URL: http://svn.freebsd.org/changeset/doc/39011 Log: Remove and/or replace broken and/or out-of-date links in the es_ES project page of the website. (The indentation in the file is slightly messed up, but I have made no effort to fix it in this commit.) PR: docs/168865 Submitted by: db Approved by: gabor (mentor) Modified: head/es_ES.ISO8859-1/htdocs/projects/projects.sgml Modified: head/es_ES.ISO8859-1/htdocs/projects/projects.sgml ============================================================================== --- head/es_ES.ISO8859-1/htdocs/projects/projects.sgml Fri Jun 8 15:05:45 2012 (r39010) +++ head/es_ES.ISO8859-1/htdocs/projects/projects.sgml Fri Jun 8 23:13:17 2012 (r39011) @@ -48,17 +48,6 @@ pequeña descripción (3-10 de FreeBSD y &unix; en general. También existe la lista freebsd-newbies@FreeBSD.ORG

  • -
  • - Distribuidores de FreeBSD es una lista de distribuidores a nivel - mundial donde se puede comprar FreeBSD.
  • -
  • - How-to de seguridad en FreeBSD - FreeBSD es un sistema operativo muy seguro. Debido a que el - código fuente está disponible libremente, el S.O. es - continuamente revisado y auditado. Aquí tienes una serie de - consejos sobre como hacer un sistema más seguro. - -
  • Buscador de RELEASE/SNAP en servidores FTP de FreeBSD. @@ -146,27 +135,10 @@ pequeña descripción (3-10 ocurrido hoy, lo verás en FreeBSDRocks.
  • + href="http://www.over-yonder.net/~fullermd/rants/bsd4linux/bs4linux1.php"> FreeBSD vs. Linux: Diferentes comparaciones entre FreeBSD y Linux, otro sistema operativo de distribución libre &unix;.
  • -
  • Daemon - News
  • - -
  • The FreeBSD Counter Page - es el inicio de un proyecto para intentar determinar la base de usuarios - a nivel mundial de usuarios de FreeBSD. La comunidad de desarrollo - de FreeBSD sólo tiene una vaga idea del número de - usuarios lo que hace más complicado persuadir a los - fabricantes de hardware y software que nos tomen en serio.
  • - -
  • - BSD CD Giveaway List - Si alguien tiene un CD para regalar o donar localmente, puede - poner su dirección de mail en la lista. Hardware y libros - también pueden ser donados. Animamos a la gente a donar CDs - a las bibliotecas locales e incluirlas en la lista.
  • -
  • The Free Software Bazaar es un "mercado" diseñado para incrementar el software @@ -195,11 +167,6 @@ pequeña descripción (3-10 Comparativa FreeBSD vs. Linux vs. Windows NT
  • -
  • The BSD - cellphone. Los "FreeBSD daemons" en teléfonos móviles. -
  • -
  • Bienvenido a FreeBSDCon '99, la primera Conferencia y Exposición anual. Este será el evento @@ -285,7 +252,7 @@ IPv6/IPsec libre para BSD
  • Vinum: manager de volúmenes lógicos
  • The + href="http://www.tamacom.com/pathconvert.html"> The PathConvert project es para desarrollar utilidades de conversión de nombres entre paths absolutos y paths relativos. Beneficioso para usuarios de NFS y WWW.
  • @@ -296,11 +263,7 @@ IPv6/IPsec libre para BSD @@ -329,14 +292,6 @@ IPv6/IPsec libre para BSD
  • Home Automation
  • i4b: ISDN (RDSI) para FreeBSD
  • CAM: Nuevo SCSI layer para FreeBSD
  • -
  • The FreeBSD Token-Ring Project
  • -
  • Desarrollo del driver USB para FreeBSD - El stack USB de NetBSD ha sido portado a FreeBSD. Junto a ellos, hemos - comenzado el desarrollo de drivers para diferentes dispositivos que usan - el bus USB. Mira en la página web si quieres participar con - nosotros y conocer los dispositivos soportados.
  • - -
  • Configuración de la Soundblaster Awe64 bajo FreeBSD 3.1
  • Existe una lista de distribución para el desarrollo del driver ethernet Xircom CEM de Scott Mitchell. Envía un mail a
  • las librerías pthread ejecutarse bajo FreeBSD en modo de emulación de Linux. - -
  • - BUDS: BSD &unix; Distributed Simple-ly - - Sistema de clustering para desarrollo de sistemas - paralelo-multi-procesador. Este sistema está pensado para - aplicaciones interdependientes de alta complejidad.
  • @@ -396,7 +344,6 @@ IPv6/IPsec libre para BSD reference. Presentación hipertexto de las referencias cruzadas de los fuentes del kernel de FreeBSD. -
  • Enteruser: Reemplazar Adduser
  • From owner-svn-doc-all@FreeBSD.ORG Sat Jun 9 07:30:15 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 28DC41065670; Sat, 9 Jun 2012 07:30:15 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 142218FC14; Sat, 9 Jun 2012 07:30:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q597UEsf014222; Sat, 9 Jun 2012 07:30:14 GMT (envelope-from ryusuke@svn.freebsd.org) Received: (from ryusuke@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q597UEMk014220; Sat, 9 Jun 2012 07:30:14 GMT (envelope-from ryusuke@svn.freebsd.org) Message-Id: <201206090730.q597UEMk014220@svn.freebsd.org> From: Ryusuke SUZUKI Date: Sat, 9 Jun 2012 07:30:14 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39012 - head/ja_JP.eucJP/htdocs/projects X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2012 07:30:15 -0000 Author: ryusuke Date: Sat Jun 9 07:30:14 2012 New Revision: 39012 URL: http://svn.freebsd.org/changeset/doc/39012 Log: - Merge the following from the English version: r35725 -> r39000 head/ja_JP.eucJP/htdocs/projects/projects.sgml Modified: head/ja_JP.eucJP/htdocs/projects/projects.sgml Modified: head/ja_JP.eucJP/htdocs/projects/projects.sgml ============================================================================== --- head/ja_JP.eucJP/htdocs/projects/projects.sgml Fri Jun 8 23:13:17 2012 (r39011) +++ head/ja_JP.eucJP/htdocs/projects/projects.sgml Sat Jun 9 07:30:14 2012 (r39012) @@ -9,7 +9,7 @@ ]> - + &header; @@ -260,7 +260,7 @@ FreeBSD ΥץꥱϰϤ򿷤
  • FreeBSD ѥǥХοȤ
  • -
  • BSD ATM: 4.4BSD Ǥ ATM ˤ륤󥿡ͥåȥμ: +
  • BSD ATM: 4.4BSD Ǥ ATM ˤ륤󥿡ͥåȥμ: ޥǥ䥤᡼ ʬԥ塼ƥȤäԥ塼ץꥱϥԥ塼ͥåȥι⤤ǽ˰¸ޤ ATM ١Υͥåȥ塼Ϥǽ׵­Ĥμʤ󶡤ޤ From owner-svn-doc-all@FreeBSD.ORG Sat Jun 9 11:19:29 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 626E2106566B; Sat, 9 Jun 2012 11:19:29 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 42C4C8FC08; Sat, 9 Jun 2012 11:19:29 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q59BJTBJ029732; Sat, 9 Jun 2012 11:19:29 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q59BJT17029730; Sat, 9 Jun 2012 11:19:29 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201206091119.q59BJT17029730@svn.freebsd.org> From: Isabell Long Date: Sat, 9 Jun 2012 11:19:29 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39013 - head/en_US.ISO8859-1/htdocs/multimedia X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2012 11:19:29 -0000 Author: issyl0 Date: Sat Jun 9 11:19:28 2012 New Revision: 39013 URL: http://svn.freebsd.org/changeset/doc/39013 Log: Add some new content to the multimedia page of the website: three new BSDCan papers. PR: docs/168811 Submitted by: db Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml Modified: head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml Sat Jun 9 07:30:14 2012 (r39012) +++ head/en_US.ISO8859-1/htdocs/multimedia/multimedia-input.xml Sat Jun 9 11:19:28 2012 (r39013) @@ -41,6 +41,67 @@ 2012,bsdcan,bsdcan2012,photos,benedict reuschling + + BSDCan-2012 - Michael Dexter - An applied survey of BSD multiplicity and virtualization strategies from chroot to BHyVe + + Ever since the University of California, Berkeley CSRG + implemented the chroot(8) command and system call in its + BSD operating system in 1982, the community-developed + BSD Unix derivatives have set the standard for + the introduction of plurality to the conventionally-singular + Unix computing model. Today's system operators and developers + have an array of BSD-licensed multiplicity strategies at their + disposal that offer various degrees of both isolation and + virtualization when introducing plurality. This paper will + survey current and experimental BSD multiplicity strategies + including chroot, FreeBSD jail, NetBSD/Xen, Amazon EC2, + compatlinux, GXemul and SIMH, plus experimental strategies + such as FreeBSD BHyVe, compatmach, Usermode NetBSD, + Dragonfly BSD vkernel, OpenBSD sysjail and NetBSD mult. + As an applied survey, this paper will both categorize each + multiplicity strategy by the Unix environment to which + it introduces plurality and demonstrate the usage + of the utilities relating to each solution. + + http://www.bsdcan.org/2012/schedule/events/291en.html + 2012,bsdcan,bsdcan2012,papers,michael dexter + + + http://www.bsdcan.org/2011/schedule/events/291en.html + html + html + + + + + + BSDCan-2012 - Kirk McKusick - An Overview of Locking in the FreeBSD Kernel + + The FreeBSD kernel uses seven different types of locks + to ensure proper access to the resources that it manages. + This talk describes the hierarchy of these locks from + the low-level and simple to the high-level and full-featured. + + The functionality of each type of lock is described along + with the problem domain for which it is intended. + The talk concludes by describing the witness system + within the FreeBSD kernel that tracks the usage of all + the locks in the system and reports any possible deadlocks + that might occur because of improper acquisition ordering + of locks. + + http://www.bsdcan.org/2012/schedule/events/306en.html + 2012,bsdcan,bsdcan2012,papers,kirk mckusick + + + http://www.bsdcan.org/2012/schedule/attachments/195_locking.pdf + 27 Kb + Slides + pdf + + + + BSDCan-2012 Photos - Developers summit and conference http://gallery.keltia.net/v/voyages/conferences/bsdcan-2012/devsummit/ @@ -92,6 +153,30 @@ 2010,bsdcan,bsdcan2010,photos,diane bruce + + BSDCan-2010 - Kris Moore - The PBI format re-implemented for FreeBSD and PC-BSD + + The PBI format (Push Button Installer) has been the default + package management system for PC-BSD going on 5+ years now. + However as we looked to the future it became apparent that it + was greatly needing an overhaul to both improve its + functionality, and expand its usage outside the scope of + just PC-BSD. Among the areas needing improvement were how + it dealt with identical libraries between applications, + the heavy requirements from being implemented in QT/KDE, + and lack of a digital verification mechanism. + + http://www.bsdcan.org/2011/schedule/events/215en.html + 2010,bsdcan,bsdcan2010,papers,kris moore + + + http://www.bsdcan.org/2011/schedule/events/215en.html + html + html + + + + From owner-svn-doc-all@FreeBSD.ORG Sat Jun 9 13:54:09 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 334E5106566C; Sat, 9 Jun 2012 13:54:09 +0000 (UTC) (envelope-from ryusuke@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1D3328FC08; Sat, 9 Jun 2012 13:54:09 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q59Ds8xL036226; Sat, 9 Jun 2012 13:54:08 GMT (envelope-from ryusuke@svn.freebsd.org) Received: (from ryusuke@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q59Ds8ol036224; Sat, 9 Jun 2012 13:54:08 GMT (envelope-from ryusuke@svn.freebsd.org) Message-Id: <201206091354.q59Ds8ol036224@svn.freebsd.org> From: Ryusuke SUZUKI Date: Sat, 9 Jun 2012 13:54:08 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39014 - head/ja_JP.eucJP/share/sgml X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2012 13:54:09 -0000 Author: ryusuke Date: Sat Jun 9 13:54:08 2012 New Revision: 39014 URL: http://svn.freebsd.org/changeset/doc/39014 Log: Correct translation of "Source code repositories". Modified: head/ja_JP.eucJP/share/sgml/navibar.l10n.ent Modified: head/ja_JP.eucJP/share/sgml/navibar.l10n.ent ============================================================================== --- head/ja_JP.eucJP/share/sgml/navibar.l10n.ent Sat Jun 9 11:19:28 2012 (r39013) +++ head/ja_JP.eucJP/share/sgml/navibar.l10n.ent Sat Jun 9 13:54:08 2012 (r39014) @@ -54,7 +54,7 @@
  • ȯ
  • ȯԤΤΥϥɥ֥å
  • port ԤΤΥϥɥ֥å
  • -
  • CVS ݥȥ
  • +
  • ɥݥȥ
  • ꡼󥸥˥
  • ץåȥե
  • ץȥǥ
  • From owner-svn-doc-all@FreeBSD.ORG Sat Jun 9 21:45:21 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 45BC81065670; Sat, 9 Jun 2012 21:45:21 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 16E1D8FC0A; Sat, 9 Jun 2012 21:45:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q59LjKSW055697; Sat, 9 Jun 2012 21:45:20 GMT (envelope-from bcr@svn.freebsd.org) Received: (from bcr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q59LjKwk055695; Sat, 9 Jun 2012 21:45:20 GMT (envelope-from bcr@svn.freebsd.org) Message-Id: <201206092145.q59LjKwk055695@svn.freebsd.org> From: Benedict Reuschling Date: Sat, 9 Jun 2012 21:45:20 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39015 - head/en_US.ISO8859-1/books/handbook/security X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2012 21:45:21 -0000 Author: bcr Date: Sat Jun 9 21:45:20 2012 New Revision: 39015 URL: http://svn.freebsd.org/changeset/doc/39015 Log: Update the section about user account hashes with two additional supported hash functions that can be used: SHA256 and SHA512. Also document how these are stored in the master.passwd file. Modified: head/en_US.ISO8859-1/books/handbook/security/chapter.sgml Modified: head/en_US.ISO8859-1/books/handbook/security/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/security/chapter.sgml Sat Jun 9 13:54:08 2012 (r39014) +++ head/en_US.ISO8859-1/books/handbook/security/chapter.sgml Sat Jun 9 21:45:20 2012 (r39015) @@ -1037,7 +1037,7 @@ - DES, Blowfish, MD5, and Crypt + DES, Blowfish, MD5, SHA256, SHA512, and Crypt security @@ -1048,6 +1048,8 @@ Blowfish DES MD5 + SHA256 + SHA512 Every user on a &unix; system has a password associated with their account. It seems obvious that these passwords need to be @@ -1081,8 +1083,8 @@ Recognizing Your Crypt Mechanism - Currently the library supports DES, MD5 and Blowfish hash - functions. By default &os; uses MD5 to encrypt + Currently the library supports DES, MD5, Blowfish, SHA256, + and SHA512 hash functions. By default &os; uses MD5 to encrypt passwords. It is pretty easy to identify which encryption method &os; @@ -1097,13 +1099,16 @@ than MD5 passwords, and are coded in a 64-character alphabet which does not include the $ character, so a relatively short string which does not begin - with a dollar sign is very likely a DES password. + with a dollar sign is very likely a DES password. Both SHA256 + and SHA512 begin with the characters + $6$. The password format used for new passwords is controlled by the passwd_format login capability in /etc/login.conf, which takes values of - des, md5 or - blf. See the &man.login.conf.5; manual + des, md5, + blf, sha256 or + sha512. See the &man.login.conf.5; manual page for more information about login capabilities.
    From owner-svn-doc-all@FreeBSD.ORG Sat Jun 9 22:19:18 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36C2F106564A; Sat, 9 Jun 2012 22:19:18 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 219308FC14; Sat, 9 Jun 2012 22:19:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q59MJH1h057155; Sat, 9 Jun 2012 22:19:17 GMT (envelope-from bcr@svn.freebsd.org) Received: (from bcr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q59MJH3F057153; Sat, 9 Jun 2012 22:19:17 GMT (envelope-from bcr@svn.freebsd.org) Message-Id: <201206092219.q59MJH3F057153@svn.freebsd.org> From: Benedict Reuschling Date: Sat, 9 Jun 2012 22:19:17 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39016 - head/en_US.ISO8859-1/books/handbook/security X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jun 2012 22:19:18 -0000 Author: bcr Date: Sat Jun 9 22:19:17 2012 New Revision: 39016 URL: http://svn.freebsd.org/changeset/doc/39016 Log: Whitespace fix for my previous commit. Translators can ignore this change. Modified: head/en_US.ISO8859-1/books/handbook/security/chapter.sgml Modified: head/en_US.ISO8859-1/books/handbook/security/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/security/chapter.sgml Sat Jun 9 21:45:20 2012 (r39015) +++ head/en_US.ISO8859-1/books/handbook/security/chapter.sgml Sat Jun 9 22:19:17 2012 (r39016) @@ -1084,8 +1084,8 @@ Recognizing Your Crypt Mechanism Currently the library supports DES, MD5, Blowfish, SHA256, - and SHA512 hash functions. By default &os; uses MD5 to encrypt - passwords. + and SHA512 hash functions. By default &os; uses MD5 to + encrypt passwords.
    It is pretty easy to identify which encryption method &os; is set up to use. Examining the encrypted passwords in the @@ -1099,7 +1099,7 @@ than MD5 passwords, and are coded in a 64-character alphabet which does not include the $ character, so a relatively short string which does not begin - with a dollar sign is very likely a DES password. Both SHA256 + with a dollar sign is very likely a DES password. Both SHA256 and SHA512 begin with the characters $6$.