From owner-p4-projects@FreeBSD.ORG Sun May 31 15:38:41 2009 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 4CBEC1065672; Sun, 31 May 2009 15:38:41 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CAAA106566B for ; Sun, 31 May 2009 15:38:40 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 799638FC12 for ; Sun, 31 May 2009 15:38:40 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n4VFceMp093002 for ; Sun, 31 May 2009 15:38:40 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n4VFceGk092998 for perforce@freebsd.org; Sun, 31 May 2009 15:38:40 GMT (envelope-from rene@FreeBSD.org) Date: Sun, 31 May 2009 15:38:40 GMT Message-Id: <200905311538.n4VFceGk092998@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Cc: Subject: PERFORCE change 163173 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 May 2009 15:38:42 -0000 http://perforce.freebsd.org/chv.cgi?CH=163173 Change 163173 by rene@rene_self on 2009/05/31 15:37:43 IFC Affected files ... .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#22 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml#22 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/explaining-bsd/article.sgml#2 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/config/chapter.sgml#8 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#30 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/authors.ent#20 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/mirrors/chapter.sgml#27 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/network-servers/chapter.sgml#20 integrate .. //depot/projects/docproj_nl/share/pgpkeys/avl.key#1 branch .. //depot/projects/docproj_nl/share/pgpkeys/bcr.key#1 branch .. //depot/projects/docproj_nl/share/pgpkeys/kmoore.key#1 branch .. //depot/projects/docproj_nl/share/pgpkeys/pgpkeys-developers.sgml#18 integrate .. //depot/projects/docproj_nl/share/pgpkeys/pgpkeys.ent#18 integrate .. //depot/projects/docproj_nl/share/pgpkeys/zml.key#1 branch .. //depot/projects/docproj_nl/www/en/developers.sgml#18 integrate .. //depot/projects/docproj_nl/www/en/gnome/contact.sgml#2 integrate .. //depot/projects/docproj_nl/www/en/gnome/docs/develfaq.sgml#4 integrate .. //depot/projects/docproj_nl/www/en/gnome/images/Makefile#3 integrate .. //depot/projects/docproj_nl/www/en/platforms/amd64/motherboards.sgml#5 integrate .. //depot/projects/docproj_nl/www/share/sgml/news.xml#42 integrate Differences ... ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#22 (text+ko) ==== @@ -1,4 +1,4 @@ - + + + &xfree86; project or the X.Org project. This is the same code as Linux uses. BSD does not normally - specify a graphical desktop such as GNOME or KDE, + specify a graphical desktop such as GNOME or KDE, though these are available. @@ -120,7 +120,7 @@ It is true that AT&T &unix; is not open source, and in a copyright sense BSD is very definitely not &unix;, but on the other hand, AT&T has imported sources from other projects, - noticeably the Computer Sciences Research Group of the University of + noticeably the Computer Sciences Research Group (CSRG) of the University of California in Berkeley, CA. Starting in 1976, the CSRG started releasing tapes of their software, calling them Berkeley Software Distribution or BSD. ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/config/chapter.sgml#8 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -359,67 +359,6 @@ important aspect to consider is that their start up configuration can be handled through simple startup scripts. - Before the advent of rc.d, applications would drop a - simple start up script into the - /usr/local/etc/rc.d - directory which would be read by the system initialization - scripts. These scripts would then be executed during the latter - stages of system start up. - - While many individuals have spent hours trying to merge the - old configuration style into the new system, the fact remains - that some third party utilities still require a script simply - dropped into the aforementioned directory. The subtle differences - in the scripts depend whether or not rc.d is being used. Prior - to &os; 5.1 the old configuration style is used and in - almost all cases a new style script would do just fine. - - While every script must meet some minimal requirements, most - of the time these requirements are &os; version - agnostic. Each script must be executable by the system; this is - typically achieved by using the chmod command and - setting the unique permissions of 555. There should - also be, at minimal, options to start and stop - the application. - - The simplest start up script would probably look a little - bit like this one: - - #!/bin/sh -echo -n ' utility' - -case "$1" in -start) - /usr/local/bin/utility - ;; -stop) - kill -9 `cat /var/run/utility.pid` - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 - - This script provides for a stop and - start option for - the application hereto referred simply as - utility. - - Could be started manually with: - - &prompt.root; /usr/local/etc/rc.d/utility start - - While not all third party software requires the line in - rc.conf, almost every day a new port will - be modified to accept this configuration. Check the final output - of the installation for more information on a specific - application. Some third party software will provide start up - scripts which permit the application to be used with - rc.d; although, this will be discussed in the next section. - Extended Application Configuration @@ -439,14 +378,6 @@ # REQUIRE: DAEMON # KEYWORD: shutdown -# -# DO NOT CHANGE THESE DEFAULT VALUES HERE -# SET THEM IN THE /etc/rc.conf FILE -# -utility_enable=${utility_enable-"NO"} -utility_flags=${utility_flags-""} -utility_pidfile=${utility_pidfile-"/var/run/utility.pid"} - . /etc/rc.subr name="utility" @@ -455,15 +386,20 @@ load_rc_config $name +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# SET THEM IN THE /etc/rc.conf FILE +# +utility_enable=${utility_enable-"NO"} +utility_pidfile=${utility_pidfile-"/var/run/utility.pid"} + pidfile="${utility_pidfile}" -start_cmd="echo \"Starting ${name}.\"; /usr/bin/nice -5 ${command} ${utility_flags} ${command_args}" - run_rc_command "$1" This script will ensure that the provided utility will be started after the - daemon service. It also provides a method + DAEMON pseudo-service. It also provides a method for setting and tracking the PID, or process ID file. @@ -484,15 +420,15 @@ Other services, such as POP3 server daemons, IMAP, etc. could be started using - the &man.inetd.8;. This involves installing the service + &man.inetd.8;. This involves installing the service utility from the Ports Collection with a configuration line - appended to the /etc/inetd.conf file, - or uncommenting one of the current configuration lines. Working + added to the /etc/inetd.conf file, + or by uncommenting one of the current configuration lines. Working with inetd and its configuration is described in depth in the inetd section. - In some cases, it may be more plausible to use the + In some cases it may make more sense to use the &man.cron.8; daemon to start system services. This approach has a number of advantages because cron runs these processes as the crontab's file ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#30 (text+ko) ==== @@ -1,7 +1,7 @@ + 702102 + May 28, 2009 + 7.2-STABLE after MFC of the + fdopendir function. + + + 800000 October 11, 2007 8.0-CURRENT. Separating wide and single byte @@ -13113,6 +13120,40 @@ 8.0-CURRENT after adding UDP control block support. + + 800090 + May 23, 2009 + 8.0-CURRENT after virtualizing interface + cloning. + + + 800091 + May 27, 2009 + 8.0-CURRENT after adding hierarchical jails + and removing global securelevel. + + + + 800092 + May 29, 2009 + 8.0-CURRENT after chaning + sx_init_flags() KPI. The + SX_ADAPTIVESPIN is retired and + a new SX_NOADAPTIVE flag is + introduced in order to handle the reversed logic. + + + + 800093 + May 30, 2009 + 8.0-CURRENT after changing the polling KPI. + The polling handlers now return the number of packets + processed. A new + IFCAP_POLLING_NOCOUNT is also + introduced to specify that the return value is + not significant and the counting should be + skipped. + ==== //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/authors.ent#20 (text+ko) ==== @@ -13,7 +13,7 @@ builds for the other languages, and we will poke fun of you in public. - $FreeBSD: doc/en_US.ISO8859-1/share/sgml/authors.ent,v 1.479 2009/05/22 21:46:28 jilles Exp $ + $FreeBSD: doc/en_US.ISO8859-1/share/sgml/authors.ent,v 1.483 2009/05/29 16:10:25 bcr Exp $ --> aaron@FreeBSD.org"> @@ -96,6 +96,8 @@ avg@FreeBSD.org"> +avl@FreeBSD.org"> + awebster@pubnix.net"> az@FreeBSD.org"> @@ -108,6 +110,8 @@ bbraun@FreeBSD.org"> +bcr@FreeBSD.org"> + bde@FreeBSD.org"> bean@FreeBSD.org"> @@ -590,6 +594,8 @@ kmacy@FreeBSD.org"> +kmoore@FreeBSD.org"> + knu@FreeBSD.org"> koitsu@FreeBSD.org"> @@ -1174,5 +1180,7 @@ zec@FreeBSD.org"> +zml@FreeBSD.org"> + znerd@FreeBSD.org"> ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/mirrors/chapter.sgml#27 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -756,6 +756,16 @@ &pgpkey.rene; + + &a.zml; + &pgpkey.zml; + + + + &a.avl; + &pgpkey.avl; + + &a.scottl; &pgpkey.scottl; @@ -846,6 +856,11 @@ &pgpkey.marcel; + + &a.kmoore; + &pgpkey.kmoore; + + &a.marck; &pgpkey.marck; @@ -1026,6 +1041,11 @@ &pgpkey.rees; + + &a.bcr; + &pgpkey.bcr; + + &a.trhodes; &pgpkey.trhodes; ==== //depot/projects/docproj_nl/share/pgpkeys/pgpkeys.ent#18 (text+ko) ==== @@ -1,5 +1,5 @@ - + @@ -23,8 +23,10 @@ + + @@ -146,6 +148,7 @@ + @@ -311,6 +314,7 @@ + ==== //depot/projects/docproj_nl/www/en/developers.sgml#18 (text+ko) ==== @@ -6,7 +6,7 @@ us to update author names, or the representation of those names (such as adding email addresses), by just editing a single file. -$FreeBSD: www/en/developers.sgml,v 1.221 2009/05/22 22:04:35 jilles Exp $ +$FreeBSD: www/en/developers.sgml,v 1.224 2009/05/29 16:12:22 bcr Exp $ --> @@ -51,12 +51,14 @@ + + @@ -296,6 +298,7 @@ + ==== //depot/projects/docproj_nl/www/en/gnome/contact.sgml#2 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -44,16 +44,6 @@ - - jylefort - - - Jean-Yves Lefort - (jylefort@FreeBSD.org)
- IRC (FreeNode): decadix - - - Jeremy Messenger (mezz@FreeBSD.org)
@@ -95,17 +85,6 @@ IRC (FreeNode): ahze - - - Pav Lucistnik - (pav@FreeBSD.org)
- WWW: www.oook.cz
- IRC (FreeNode): Pav - - - pav - - @@ -119,9 +98,11 @@
  • Ade Lovett
  • Dima Ruban
  • Eivind Eklund
  • +
  • Jean-Yves Lefort
  • Jimmy Olgeni
  • Justin M. Seger
  • Maxim Sobolev
  • +
  • Pav Lucistnik
  • Vanilla I. Shu
  • ==== //depot/projects/docproj_nl/www/en/gnome/docs/develfaq.sgml#4 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -158,9 +158,8 @@
  • What is the current state of development GNOME on FreeBSD?

    -

    Because of the long ports tree freeze, we have not yet - started work on GNOME &gnomedevelver;. Stay tuned for more - updates.

    +

    GNOME &gnomedevelver; is underway. We have ported + &gnomedevelver;.2 to FreeBSD. Start testing now!

  • &footer; ==== //depot/projects/docproj_nl/www/en/gnome/images/Makefile#3 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: www/en/gnome/images/Makefile,v 1.54 2009/01/18 23:52:33 marcus Exp $ +# $FreeBSD: www/en/gnome/images/Makefile,v 1.55 2009/05/30 19:39:32 marcus Exp $ .if exists(../Makefile.conf) .include "../Makefile.conf" @@ -34,6 +34,5 @@ DATA+= kwm.jpg DATA+= marcus.jpg DATA+= mezz.jpg -DATA+= pav.jpg .include "${WEB_PREFIX}/share/mk/web.site.mk" ==== //depot/projects/docproj_nl/www/en/platforms/amd64/motherboards.sgml#5 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -1079,6 +1079,14 @@ Supermicro + X7DBE+ + Intel 5000P / 2x LGA 771 + Alexander Lunyov (dmesg, pciconf) + 7.2-RELEASE + Works fine. Onboard RAID untested. + + + Supermicro X7SBA Intel 3210 + ICH9R / LGA 775 Brad Davis ==== //depot/projects/docproj_nl/www/share/sgml/news.xml#42 (text+ko) ==== @@ -25,7 +25,7 @@ - $FreeBSD: www/share/sgml/news.xml,v 1.256 2009/05/22 22:08:41 jilles Exp $ + $FreeBSD: www/share/sgml/news.xml,v 1.259 2009/05/29 16:18:46 bcr Exp $ @@ -36,6 +36,34 @@ 5 + 28 + + +

    New committer: Alexander + Logvinov + (ports)

    +
    +
    + + + 27 + + +

    New committer: Kris + Moore (ports)

    +
    +
    + + + 23 + + +

    New committer: Benedict + Reuschling (doc/de_DE, www/de)

    +
    +
    + + 22