From owner-p4-projects@FreeBSD.ORG Mon Sep 5 23:09:52 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 09CD51065676; Mon, 5 Sep 2011 23:09:52 +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 C0A781065672 for ; Mon, 5 Sep 2011 23:09:51 +0000 (UTC) (envelope-from jceel@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 9484C8FC08 for ; Mon, 5 Sep 2011 23:09:51 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p85N9phh038255 for ; Mon, 5 Sep 2011 23:09:51 GMT (envelope-from jceel@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p85N9pN2038252 for perforce@freebsd.org; Mon, 5 Sep 2011 23:09:51 GMT (envelope-from jceel@freebsd.org) Date: Mon, 5 Sep 2011 23:09:51 GMT Message-Id: <201109052309.p85N9pN2038252@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to jceel@freebsd.org using -f From: Jakub Wojciech Klama To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 198601 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Sep 2011 23:09:52 -0000 http://p4web.freebsd.org/@@198601?ac=10 Change 198601 by jceel@jceel_cyclone on 2011/09/05 23:09:26 Implement lpe_txintr() allowing to properly free unused mbufs and unload DMA maps. Affected files ... .. //depot/projects/soc2011/jceel_lpc/sys/arm/lpc/if_lpe.c#8 edit Differences ... ==== //depot/projects/soc2011/jceel_lpc/sys/arm/lpc/if_lpe.c#8 (text+ko) ==== @@ -103,9 +103,8 @@ struct lpe_rxdesc lpe_rx_desc[LPE_RXDESC_NUM]; struct lpe_txdesc lpe_tx_desc[LPE_TXDESC_NUM]; int lpe_tx_prod; - int lpe_tx_cons; + int lpe_tx_last; int lpe_tx_used; - int lpe_rx_cons; }; struct lpe_ring_data { @@ -454,9 +453,8 @@ LPE_INT_TXERROR | LPE_INT_TXFINISH | LPE_INT_TXDONE); sc->lpe_cdata.lpe_tx_prod = 0; - sc->lpe_cdata.lpe_tx_cons = 0; + sc->lpe_cdata.lpe_tx_last = 0; sc->lpe_cdata.lpe_tx_used = 0; - sc->lpe_cdata.lpe_rx_cons = 0; lpe_init_rx(sc); @@ -571,6 +569,9 @@ hwd->lhr_control |= LPE_HWDESC_INTERRUPT; hwd->lhr_control |= LPE_HWDESC_CRC; hwd->lhr_control |= LPE_HWDESC_PAD; + + txd = &sc->lpe_cdata.lpe_tx_desc[prod]; + txd->lpe_txdesc_mbuf = *m_head; } LPE_INC(prod, LPE_TXDESC_NUM); @@ -654,6 +655,7 @@ for (;;) { prod = lpe_read_4(sc, LPE_RXDESC_PROD); cons = lpe_read_4(sc, LPE_RXDESC_CONS); + if (prod == cons) break; @@ -677,9 +679,37 @@ static void lpe_txintr(struct lpe_softc *sc) { + struct lpe_hwdesc *hwd; + struct lpe_hwstatus *hws; + struct lpe_txdesc *txd; + int cons, last; - /* XXX add TX error handling */ debugf("transmit interrupt\n"); + + for (;;) { + cons = lpe_read_4(sc, LPE_TXDESC_CONS); + last = sc->lpe_cdata.lpe_tx_last; + + if (cons == last) + break; + + txd = &sc->lpe_cdata.lpe_tx_desc[last]; + hwd = &sc->lpe_rdata.lpe_tx_ring[last]; + hws = &sc->lpe_rdata.lpe_tx_status[last]; + + bus_dmamap_sync(sc->lpe_cdata.lpe_tx_buf_tag, + txd->lpe_txdesc_dmamap, BUS_DMASYNC_POSTWRITE); + + if (txd->lpe_txdesc_mbuf != NULL) { + bus_dmamap_unload(sc->lpe_cdata.lpe_tx_buf_tag, + txd->lpe_txdesc_dmamap); + + m_freem(txd->lpe_txdesc_mbuf); + txd->lpe_txdesc_mbuf = NULL; + } + + LPE_INC(sc->lpe_cdata.lpe_tx_last, LPE_TXDESC_NUM); + } } static void From owner-p4-projects@FreeBSD.ORG Tue Sep 6 06:38:29 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id C7DF91065673; Tue, 6 Sep 2011 06:38:29 +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 8966D106566B for ; Tue, 6 Sep 2011 06:38:29 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 75D8F8FC08 for ; Tue, 6 Sep 2011 06:38:29 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p866cTjS028061 for ; Tue, 6 Sep 2011 06:38:29 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p866cTel028058 for perforce@freebsd.org; Tue, 6 Sep 2011 06:38:29 GMT (envelope-from rene@FreeBSD.org) Date: Tue, 6 Sep 2011 06:38:29 GMT Message-Id: <201109060638.p866cTel028058@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 198618 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Sep 2011 06:38:30 -0000 http://p4web.freebsd.org/@@198618?ac=10 Change 198618 by rene@rene_acer on 2011/09/06 06:37:49 IFC Affected files ... .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#103 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/pr-guidelines/article.sgml#8 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/desktop/chapter.sgml#26 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml#24 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#14 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/Makefile#3 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#111 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/mailing-lists.ent#22 integrate .. //depot/projects/docproj_nl/share/images/callouts/1.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/10.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/11.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/12.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/13.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/14.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/15.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/16.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/17.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/18.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/19.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/2.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/20.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/21.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/22.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/23.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/24.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/25.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/26.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/27.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/28.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/29.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/3.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/30.png#1 branch .. //depot/projects/docproj_nl/share/images/callouts/4.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/5.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/6.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/7.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/8.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/9.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/gen.sh#1 branch .. //depot/projects/docproj_nl/www/en/advocacy/index.sgml#3 integrate .. //depot/projects/docproj_nl/www/en/layout/js/google.js#3 integrate .. //depot/projects/docproj_nl/www/en/marketing/Makefile#2 integrate .. //depot/projects/docproj_nl/www/en/marketing/index.sgml#2 integrate .. //depot/projects/docproj_nl/www/en/marketing/os-comparison.sgml#3 delete .. //depot/projects/docproj_nl/www/en/platforms/ppc.sgml#8 integrate .. //depot/projects/docproj_nl/www/en/where.sgml#12 integrate .. //depot/projects/docproj_nl/www/share/sgml/news.xml#116 integrate Differences ... ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#103 (text+ko) ==== @@ -1,4 +1,4 @@ - + @@ -21,8 +21,8 @@ FreeBSD can run a wide variety of desktop applications, such as browsers and word processors. Most of these are available as - packages or can be automatically built from the ports - collection. Many new users expect to find these kinds of + packages or can be automatically built from the Ports Collection. + Many new users expect to find these kinds of applications on their desktop. This chapter will show you how to install some popular desktop applications effortlessly, either from their packages or from the Ports Collection. @@ -520,8 +520,8 @@ &prompt.root; pkg_add -r koffice - If the package is not available, you can use the ports - collection. For instance, to install + If the package is not available, you can use the Ports Collection. + For instance, to install KOffice for KDE3, do: @@ -888,8 +888,7 @@ &prompt.root; pkg_add -r gv - If you cannot get the package, you can use the Ports - collection: + If you cannot get the package, you can use the Ports Collection: &prompt.root; cd /usr/ports/print/gv &prompt.root; make install clean @@ -1035,8 +1034,7 @@ &prompt.root; pkg_add -r gnucash - If the package is not available, you can use the ports - collection: + If the package is not available, you can use the Ports Collection: &prompt.root; cd /usr/ports/finance/gnucash &prompt.root; make install clean @@ -1069,8 +1067,8 @@ &prompt.root; pkg_add -r gnumeric - If the package is not available, you can use the ports - collection by doing: + If the package is not available, you can use the Ports Collection + by doing: &prompt.root; cd /usr/ports/math/gnumeric &prompt.root; make install clean @@ -1098,8 +1096,8 @@ &prompt.root; pkg_add -r abacus - If the package is not available, you can use the ports - collection by doing: + If the package is not available, you can use the Ports Collection + by doing: &prompt.root; cd /usr/ports/deskutils/abacus &prompt.root; make install clean @@ -1144,7 +1142,7 @@ While FreeBSD is popular among ISPs for its performance and stability, it is quite ready for day-to-day use as a desktop. With several thousand applications available as - packages or + packages or ports, you can build a perfect desktop that suits all your needs. @@ -1176,7 +1174,7 @@ KOffice - koffice-kde3 + koffice editors/koffice-kde3 ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml#24 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -411,12 +411,6 @@ - &a.openoffice.name; - Porting OpenOffice.org and - &staroffice; to FreeBSD - - - &a.performance.name; Performance tuning questions for high performance/load installations @@ -1426,18 +1420,6 @@ - &a.openoffice.name; - - - OpenOffice.org - - Discussions concerning the porting and maintenance - of OpenOffice.org and - &staroffice;. - - - - &a.performance.name; ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#14 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -233,7 +233,7 @@ page: Alternatively, to load the driver as a module at boot time, place the -following line in &man.loader.conf.5: +following line in &man.loader.conf.5;: if_ath_load="YES" @@ -725,7 +725,7 @@ Kernels making use of PROCFS must also include support for PSEUDOFS. - options GEOM_GPT # GUID Partition Tables. + options GEOM_PART_GPT # GUID Partition Tables. This option brings the ability to have a large number of partitions on a single disk. @@ -962,7 +962,7 @@ device ciss # Compaq Smart RAID 5* device dpt # DPT Smartcache III, IV - See NOTES for options device hptmv # Highpoint RocketRAID 182x -device rr232x # Highpoint RocketRAID 232x +device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx device iir # Intel Integrated RAID device ips # IBM (Adaptec) ServeRAID device mly # Mylex AcceleRAID/eXtremeRAID ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/Makefile#3 (text+ko) ==== @@ -1,5 +1,5 @@ # -# $FreeBSD: doc/en_US.ISO8859-1/books/porters-handbook/Makefile,v 1.8 2011/07/08 16:08:33 ryusuke Exp $ +# $FreeBSD: doc/en_US.ISO8859-1/books/porters-handbook/Makefile,v 1.9 2011/09/05 13:26:06 dougb Exp $ # # Build the FreeBSD Porter's Handbook. # @@ -41,6 +41,12 @@ IMAGES_LIB+= callouts/13.png IMAGES_LIB+= callouts/14.png IMAGES_LIB+= callouts/15.png +IMAGES_LIB+= callouts/16.png +IMAGES_LIB+= callouts/17.png +IMAGES_LIB+= callouts/18.png +IMAGES_LIB+= callouts/19.png +IMAGES_LIB+= callouts/20.png +IMAGES_LIB+= callouts/21.png URL_RELPREFIX?= ../../../.. DOC_PREFIX?= ${.CURDIR}/../../.. ==== //depot/projects/docproj_nl/en_US.ISO8859-1/books/porters-handbook/book.sgml#111 (text+ko) ==== @@ -1,7 +1,7 @@ The VuXML database - A very important and urgent step to take as early as - a security vulnerability is discovered is to notify the + A very important and urgent step to take as early after + a security vulnerability is discovered as possible is to notify the community of port users about the jeopardy. Such notification serves two purposes. First, should the danger - be really severe, it will be wise to apply an instant workaround, - e.g., stop the affected network service or even deinstall - the port completely, until the vulnerability is closed. + be really severe it will be wise to apply an instant workaround. + E.g., stop the affected network service or even deinstall + the port completely until the vulnerability is closed. Second, a lot of users tend to upgrade installed packages - just occasionally. They will know from the notification + only occasionally. They will know from the notification that they must update the package without delay as soon as a corrected version is available. - Given the huge number of ports in the tree, + Given the huge number of ports in the tree a security advisory cannot be issued on each incident without creating a flood and losing the attention of - the audience by the time it comes to really serious + the audience when it comes to really serious matters. Therefore security vulnerabilities found in ports are recorded in the FreeBSD VuXML database. The Security Officer Team members - are monitoring it for issues requiring their + also monitor it for issues requiring their intervention. - If you have committer rights, you can update the VuXML + If you have committer rights you can update the VuXML database by yourself. So you will both help the Security Officer Team and deliver the crucial information to the community earlier. However, if you are not a committer, or you believe you have found an exceptionally severe - vulnerability, or whatever, please do not hesitate to + vulnerability please do not hesitate to contact the Security Officer Team directly as described on the FreeBSD Security Information page. - All right, you elected the hard way. As it may be obvious - from its title, the VuXML database is essentially an + As may be obvious + from its title the VuXML database is an XML document. Its source file vuln.xml is kept right inside the port security/vuxml. Therefore the file's full pathname will be PORTSDIR/security/vuxml/vuln.xml. Each time you discover a security vulnerability in a - port, please add an entry for it to that file. + port please add an entry for it to that file. Until you are familiar with VuXML, the best thing you can do is to find an existing entry fitting your case, then copy - it and use as a template. + it and use it as a template. A short introduction to VuXML - The full-blown XML is complex and far beyond the scope of + The full-blown XML format is complex, and far beyond the scope of this book. However, to gain basic insight on the structure - of a VuXML entry, you need only the notion of tags. XML + of a VuXML entry you need only the notion of tags. XML tag names are enclosed in angle brackets. Each opening <tag> must have a matching closing </tag>. Tags may be nested. If nesting, the inner tags must be @@ -9958,7 +9958,7 @@ tags, i.e. more complex rules of nesting them. Sounds very similar to HTML, doesn't it? The major difference is that XML is eXtensible, i.e. based - on defining custom tags. Due to its intrinsic structure, + on defining custom tags. Due to its intrinsic structure XML puts otherwise amorphous data into shape. VuXML is particularly tailored to mark up descriptions of security vulnerabilities. @@ -10014,7 +10014,7 @@ </dates> </vuln> - The tag names are supposed to be self-descriptive, + The tag names are supposed to be self-explanatory so we shall take a closer look only at fields you will need to fill in by yourself: @@ -10027,12 +10027,7 @@ for each new VuXML entry (and do not forget to substitute it for the template UUID unless you are writing the entry from scratch). You can use &man.uuidgen.1; to - generate a VuXML UUID; alternatively, if you are using - FreeBSD 4.x, you may install the port devel/p5-Data-UUID and issue - the following command: - - perl -MData::UUID -le 'print lc new Data::UUID->create_str' + generate a VuXML UUID. @@ -10223,26 +10218,37 @@ vulnerability in the package clamav that has been fixed in version 0.65_7. - As a prerequisite, you need to install fresh versions of the - ports ports-mgmt/portaudit and - ports-mgmt/portaudit-db. + As a prerequisite, you need to install fresh versions of the + ports ports-mgmt/portaudit, + ports-mgmt/portaudit-db, and + security/vuxml. + + + To run packaudit you must have + permission to write to its + DATABASEDIR, + typically /var/db/portaudit. + + To use a different directory set the + DATABASEDIR + environment variable to a different location. + + If you are working in a directory other than + ${PORTSDIR}/security/vuxml set the + VUXMLDIR + environment variable to the directory where + vuln.xml is located. + First, check whether there already is an entry for this - vulnerability. If there were such entry, it would match the + vulnerability. If there were such an entry, it would match the previous version of the package, 0.65_6: &prompt.user; packaudit &prompt.user; portaudit clamav-0.65_6 - - To run packaudit, you must have - permission to write to its - DATABASEDIR, - typically /var/db/portaudit. - - - If there is none found, you get the green light to add + If there is none found, you have the green light to add a new entry for this vulnerability. Now you can generate a brand-new UUID (assume it's 74a9541d-5d6c-11d8-80e3-0020ed76ef5a) and ==== //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/mailing-lists.ent#22 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -311,10 +311,6 @@ Office applications on FreeBSD"> freebsd-office"> - -FreeBSD OpenOffice mailing list"> -freebsd-openoffice"> - FreeBSD performance mailing list"> freebsd-performance"> ==== //depot/projects/docproj_nl/share/images/callouts/1.png#2 (text+ko) ==== @@ -1,3 +1,5 @@ PNG  -\ No newline at end of file ++gra=¥?+|||X.!a>;fB(U‡|66 kH+AO>G`NN5_4菏 1\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/10.png#2 (text+ko) ==== @@ -1,3 +1,5 @@ PNG  -\ No newline at end of file ++c:|.=} +Udr"ߚ3Z6Gf ԚP4cSS}H,.8{CgC$6N5AUTn_Ċ_20slD݋ }&EHyh7ٷ&_\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/11.png#2 (text+ko) ==== @@ -1,5 +1,4 @@ PNG  --tEXtCopyright-ܠ3̜ÈuNMph$ITU݆aTUE@Dn7]m|E=oQe~EzY}m["\ No newline at end of file ++Udr"Xj?0L>2g$ 0("9/ \E* ! ! 0$*`>|5X$&9ׅQQ"!Zp\xρA$SSM>#H \ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/12.png#2 (text+ko) ==== @@ -1,5 +1,4 @@ PNG  --tEXtCopyright-3,+KV--eŏmpSyyB\ No newline at end of file ++XC(㋡)DWi_ >55fP a_<`HG DuqK0p00φHdᩙG D2p"K}ab?'l?~t`f|!1(r +??й XA0s0 CO>G`NN5_4菏 1\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/13.png#2 (text+ko) ==== @@ -1,5 +1,4 @@ PNG  --tEXtCopyright-Qu]n\ No newline at end of file ++vlx(㋡)D>n_&}3PkjCG?p2/P4]Ȯ2#FUwlls/{/ܸg#$z/IbsG&_y|st s]XA܌Vft.ЃO ]'`#0Hqr/|G\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/14.png#2 (text+ko) ==== @@ -1,3 +1,4 @@ PNG  -\ No newline at end of file ++Udr"D8q?0L>2g$ ܟ4("9/0ivşnd>;}6Dh۹ˬ (/BbA .ng05w\ͬe\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/15.png#2 (text+ko) ==== @@ -1,6 +1,5 @@ PNG  --tEXtCopyright-- x8mȔL\ No newline at end of file ++Udr"P꯷>ۜaG>&10022;5|5s-f|:wlD‡ KNT.!"v  |?n0(ByO[2VL +r +??J1eQ~?<ŃO} ǝʝjhAb\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/2.png#2 (text+ko) ==== @@ -1,4 +1,4 @@ PNG  --]+fK UG{ukS@cBSChS{2y4Cms^% D+OJ)}:T5`/\ No newline at end of file ++([\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/3.png#2 (text+ko) ==== @@ -1,6 +1,3 @@ PNG  --F``a+&U -qXҠq -K \ No newline at end of file +\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/4.png#2 (text+ko) ==== @@ -1,4 +1,5 @@ PNG  --KF6[\ No newline at end of file ++".XG +v>^L>` |={ZL|:wqMfj7L( bj]"> A ϳΚ{`惬Q@'3v+й@>AHA|  yܩܩ&$\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/5.png#2 (text+ko) ==== @@ -1,4 +1,5 @@ PNG  --~+_BhIlgvMZmmwb$|Sq$^%)%YP3]2Qj%|#[7/B_\ No newline at end of file ++]$-:|a|GVV| @ ՟Za_D'o>;ĐR@Qn_  k_j%|gj  +::ب k@ԣKJ^~"2ls]@Lߡܝ` ܃O} ǝʝjhAb\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/6.png#2 (text+ko) ==== @@ -1,6 +1,4 @@ PNG  -- - FaPXXj' nn󩺵 oPHl\BuNح!i`d'נ,˖eԸgNLL< V?s8 -Y\ No newline at end of file ++$;OcR?0L>B~ @ 73\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/7.png#2 (text+ko) ==== @@ -1,4 +1,4 @@ PNG  --Hd+H퇓e _pDlC0T+ʫ+ VAjݓ{O9lsLGIz>61GVS\ No newline at end of file ++Е!>[\ ra*[S+S?~2/8s@l !0/, l(/Te_<"n&?!0 kg0 u1yX@="'`#0Hqr/|G\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/8.png#2 (text+ko) ==== @@ -1,5 +1,3 @@ PNG  --v¬a` 544T -?ݻ/TܗW[Б!Dغ[`T3(fpgc31ؿ.0>_ +U9\ No newline at end of file +\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/9.png#2 (text+ko) ==== @@ -1,4 +1,4 @@ PNG  --^YkTb++#{?/Yٗy/j!Rj+~ E#y@!s.gEOr /P8b\ No newline at end of file ++z9M#M~fG@u1[F؆@="O} ǝʝjhAb\ No newline at end of file ==== //depot/projects/docproj_nl/www/en/advocacy/index.sgml#3 (text+ko) ==== @@ -1,6 +1,6 @@ - + ]> @@ -63,12 +63,6 @@ comprehensive directory of the web by relying on a vast army of volunteer editors. -
  • FreeBSD vs. Linux vs. Windows 2000 - is a comparison between the three operating systems which includes - reliability, performance, support, cost of ownership, - and more. (outdated)
  • -
  • BSDCan, the annual BSD Conference held in Ottawa, Canada.
  • ==== //depot/projects/docproj_nl/www/en/layout/js/google.js#3 (text+ko) ==== @@ -1,6 +1,7 @@ -/* $FreeBSD: www/en/layout/js/google.js,v 1.7 2011/08/20 23:47:06 gjb Exp $ */ +/* $FreeBSD: www/en/layout/js/google.js,v 1.8 2011/08/31 20:00:29 simon Exp $ */ -var h=document.location.host; +//var h=document.location.host; +var h=null; /* * Check that the hosting domain is actually a FreeBSD.org domain, so * we don't accidentally obtain data from mirrors. ==== //depot/projects/docproj_nl/www/en/marketing/Makefile#2 (text+ko) ==== @@ -1,4 +1,4 @@ -# $FreeBSD: www/en/marketing/Makefile,v 1.2 2005/07/24 16:24:41 murray Exp $ +# $FreeBSD: www/en/marketing/Makefile,v 1.3 2011/09/05 18:52:08 gjb Exp $ .if exists(../Makefile.conf) .include "../Makefile.conf" @@ -7,6 +7,6 @@ .include "../Makefile.inc" .endif -DOCS?= index.sgml os-comparison.sgml +DOCS?= index.sgml .include "${WEB_PREFIX}/share/mk/web.site.mk" ==== //depot/projects/docproj_nl/www/en/marketing/index.sgml#2 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -36,9 +36,6 @@
  • Explaining BSD
  • -
  • FreeBSD vs. Linux vs. Windows - 2000 : How does your OS compare? (outdated)
  • -
  • Argentina.com : A Case Study
  • Creating a Software Testing Environment Using FreeBSD
  • ==== //depot/projects/docproj_nl/www/en/platforms/ppc.sgml#8 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -66,7 +66,7 @@ available for download, for details on how to obtain these see the release announcement. Please follow instructions given - here.

    + here.

    How to use ports on FreeBSD/ppc?

    ==== //depot/projects/docproj_nl/www/en/where.sgml#12 (text+ko) ==== @@ -1,5 +1,5 @@ + @@ -175,14 +175,14 @@ amd64 - [Distribution] - [ISO] + [Distribution] + [ISO] i386 - [Distribution] - [ISO] + [Distribution] + [ISO] ==== //depot/projects/docproj_nl/www/share/sgml/news.xml#116 (text+ko) ==== @@ -25,7 +25,7 @@ - $FreeBSD: www/share/sgml/news.xml,v 1.391 2011/08/28 18:01:44 rakuco Exp $ + $FreeBSD: www/share/sgml/news.xml,v 1.392 2011/09/03 12:47:22 gavin Exp $ @@ -88,6 +88,15 @@ 7 + 17 + +

    Enhanced commit privileges: Gavin Atkinson + (src, doc)

    +
    +
    + + 15

    New committer: From owner-p4-projects@FreeBSD.ORG Tue Sep 6 13:41:30 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 0F057106567C; Tue, 6 Sep 2011 13:41:30 +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 C596B1065679 for ; Tue, 6 Sep 2011 13:41:29 +0000 (UTC) (envelope-from cnicutar@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id B310E8FC0A for ; Tue, 6 Sep 2011 13:41:29 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p86DfTJt015099 for ; Tue, 6 Sep 2011 13:41:29 GMT (envelope-from cnicutar@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p86DfTn7015096 for perforce@freebsd.org; Tue, 6 Sep 2011 13:41:29 GMT (envelope-from cnicutar@freebsd.org) Date: Tue, 6 Sep 2011 13:41:29 GMT Message-Id: <201109061341.p86DfTn7015096@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to cnicutar@freebsd.org using -f From: Catalin Nicutar To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 198632 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Sep 2011 13:41:30 -0000 http://p4web.freebsd.org/@@198632?ac=10 Change 198632 by cnicutar@cnicutar_cronos on 2011/09/06 13:40:44 Attach UTO to first non-SYN segment sent so it gets retransmitted if needed. Done by checking the sequence and acknowledgement numbers. Affected files ... .. //depot/projects/soc2011/cnicutar_tcputo_9/src/sys/netinet/tcp_output.c#4 edit .. //depot/projects/soc2011/cnicutar_tcputo_9/src/sys/netinet/tcp_var.h#8 edit Differences ... ==== //depot/projects/soc2011/cnicutar_tcputo_9/src/sys/netinet/tcp_output.c#4 (text+ko) ==== @@ -705,17 +705,14 @@ to.to_sacks = (u_char *)tp->sackblks; } } - /* UTO */ - if (tp->t_flags & TF_SND_UTO) { + /* + * UTO. The option is sent with the SYN and with the first + * non-SYN segment. + */ + if (tp->t_flags & TF_SND_UTO && (flags & TH_SYN || + FIRST_NON_SYN(tp))) { to.to_uto = tp->snd_uto; to.to_flags |= TOF_UTO; - /* - * The option is sent with the SYN and with the first - * non-SYN segment. - */ - if (!(flags & TH_SYN)) - tp->t_flags &= ~TF_SND_UTO; - } #ifdef TCP_SIGNATURE /* TCP-MD5 (RFC2385). */ ==== //depot/projects/soc2011/cnicutar_tcputo_9/src/sys/netinet/tcp_var.h#8 (text+ko) ==== @@ -268,6 +268,10 @@ #define UTO_VALUE(to) ((to).to_uto & UTO_MINS) ? \ ((to).to_uto & ~(UTO_MINS)) * 60 : (to).to_uto +#define FIRST_NON_SYN(tp) (TCPS_HAVEESTABLISHED((tp)->t_state) && \ + (tp)->snd_nxt == (tp)->iss + 1 && \ + (tp)->rcv_nxt == (tp)->irs + 1) + /* * Flags for the t_oobflags field. */ From owner-p4-projects@FreeBSD.ORG Wed Sep 7 20:13:33 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 476851065670; Wed, 7 Sep 2011 20:13:33 +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 0AD0C106564A for ; Wed, 7 Sep 2011 20:13:33 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id EB5538FC18 for ; Wed, 7 Sep 2011 20:13:32 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p87KDWSV087649 for ; Wed, 7 Sep 2011 20:13:32 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p87KDWO3087633 for perforce@freebsd.org; Wed, 7 Sep 2011 20:13:32 GMT (envelope-from rene@FreeBSD.org) Date: Wed, 7 Sep 2011 20:13:32 GMT Message-Id: <201109072013.p87KDWO3087633@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 198679 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Sep 2011 20:13:33 -0000 http://p4web.freebsd.org/@@198679?ac=10 Change 198679 by rene@rene_acer on 2011/09/07 20:13:28 IFC Affected files ... .. //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#104 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml#25 integrate .. //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/mailing-lists.ent#23 integrate .. //depot/projects/docproj_nl/share/images/callouts/1.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/10.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/11.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/12.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/13.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/14.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/15.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/16.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/17.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/18.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/19.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/2.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/20.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/21.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/22.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/23.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/24.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/25.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/26.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/27.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/28.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/29.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/3.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/30.png#2 integrate .. //depot/projects/docproj_nl/share/images/callouts/4.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/5.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/6.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/7.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/8.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/9.png#3 integrate .. //depot/projects/docproj_nl/share/images/callouts/gen.sh#2 integrate .. //depot/projects/docproj_nl/share/sgml/freebsd-html.dsl#7 integrate .. //depot/projects/docproj_nl/www/en/where.sgml#13 integrate Differences ... ==== //depot/projects/docproj_nl/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml#104 (text+ko) ==== @@ -1,4 +1,4 @@ - + @@ -365,12 +365,6 @@ - &a.libh.name; - The second generation installation and package - system - - - &a.mips.name; Porting FreeBSD to &mips; ==== //depot/projects/docproj_nl/en_US.ISO8859-1/share/sgml/mailing-lists.ent#23 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -267,10 +267,6 @@ FreeBSD LFS porting mailing list"> freebsd-lfs"> - -FreeBSD libh installation and packaging system mailing list"> -freebsd-libh"> - FreeBSD MIPS porting mailing list"> freebsd-mips"> ==== //depot/projects/docproj_nl/share/images/callouts/1.png#3 (text+ko) ==== @@ -1,5 +1,5 @@ PNG  --gra=¥?+|||X.!a>;fB(U‡|66 kH-AO>G`NN5_4菏 1\ No newline at end of file ++jf-#k6Q"lk\ˇe 3vmWN89^NB&!{ +p8:M^:C@K:I'@H -OIw|aX'~x(M-$h65 `::6 R\eH>:XM~+]I\,VW:{ Xy-hYe7@2^ي Ի?\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/10.png#3 (text+ko) ==== @@ -1,5 +1,3 @@ PNG  --c:|.=} -Udr"ߚ3Z6Gf ԚP4cSS}H,.8{CgC$6N5AUTn_Ċ_20slD݋ }&EHyh7ٷ&_\ No newline at end of file +\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/11.png#3 (text+ko) ==== @@ -1,4 +1,4 @@ PNG  --Udr"Xj?0L>2g$ 0("9/ \E* ! ! 0$*`>|5X$&9ׅQQ"!Zp\xρA$SSM>#H \ No newline at end of file ++?e )0LtAU iu,{+JR&h<^;t{5.Ciي.Dڃ<f>Br`ضWEa kʁ<>p ~*O_Z; kR Kg7gIaRxh-A ~_b37X\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/12.png#3 (text+ko) ==== @@ -1,4 +1,4 @@ PNG  --XC(㋡)DWi_ >55fP a_<`HG DuqK0p00φHdᩙG D2p"K}ab?'l?~t`f|!1(r +??й XA0s0 CO>G`NN5_4菏 1\ No newline at end of file ++gC\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/13.png#3 (text+ko) ==== @@ -1,4 +1,6 @@ PNG  --vlx(㋡)D>n_&}3PkjCG?p2/P4]Ȯ2#FUwlls/{/ܸg#$z/IbsG&_y|st s]XA܌Vft.ЃO ]'`#0Hqr/|G\ No newline at end of file ++@rp~k/ + ϒs/Uv֠n6+ #"G8\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/14.png#3 (text+ko) ==== @@ -1,4 +1,4 @@ PNG  --Udr"D8q?0L>2g$ ܟ4("9/0ivşnd>;}6Dh۹ˬ (/BbA .ng05w\ͬe\ No newline at end of file ++# [пshJ\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/15.png#3 (text+ko) ==== @@ -1,5 +1,5 @@ PNG  --Udr"P꯷>ۜaG>&10022;5|5s-f|:wlD‡ KNT.!"v  |?n0(ByO[2VL -r +??J1eQ~?<ŃO} ǝʝjhAb\ No newline at end of file ++C>}C+KӲ.)0/Hu+ekb .kq5 h'y |5^~\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/16.png#2 (text+ko) ==== @@ -1,3 +1,5 @@ PNG  -\ No newline at end of file ++AbQW>.) &e2)upz\bu `A҂/9->?d |^)-x; -KWjTnfҎxdN}BɆJ=&/K}- h +`[~ mHD 0 V(oh54!A\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/17.png#2 (text+ko) ==== @@ -1,4 +1,7 @@ PNG  --Udr"â_oA#|jMMb`P*72j{nm&"9/ zc>;}6Bbڋ\ No newline at end of file ++" *Ȳ`5-h%-b0,@&&A׆D i901 s = +~H$K0-سqA +^@ynH' 5)s0\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/18.png#2 (text+ko) ==== @@ -1,5 +1,3 @@ PNG  --:?} -Udr"ϥ)JY0#ZS߲3w|W5fޱ4`a`` |'e}Eoך#WYT0(BG/.xr +??#}-C$`  yܩܩ&$\ No newline at end of file +\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/19.png#2 (text+ko) ==== @@ -1,4 +1,3 @@ PNG  --Xs=5>Jb*zJ29A-NsaG>&10\|û ӟZ |@$ZA{CgC$ߊZen_WԻS!|6BB/NV "$vtӡhs]XAP;rfs|b€ >$A2;;|?>\ No newline at end of file +\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/2.png#3 (text+ko) ==== @@ -1,4 +1,6 @@ PNG  --([\ No newline at end of file ++ڲ>(, $(!qP:+ U$=JC3EkĹҷԚbְ[ w`:%:6q9+ H{˄{}꾗llKN:!5 Aa8'WP@kԧYhjz+FI0ug;&ҶQ\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/20.png#2 (text+ko) ==== @@ -1,4 +1,6 @@ PNG  --em߭-[sfŸ?Q0}o.1Dکũ ^\GVkY\p# 0p\ No newline at end of file ++d!`&j?h xps>;)-諮뭺u@e DOM\N Z=K:ܣ_hyBe+lAin؜.u^]٦]+jtI\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/21.png#2 (text+ko) ==== @@ -1,5 +1,5 @@ PNG  -- ]>J@߶VEj Ss9Vr430L>`U{a1\E* !@:lP - ]z 0t~s`|$A2;;|?>\ No newline at end of file ++/˖@ Ji{~@෼>xހJ섞#u+%%wyRdP.^׷-jnYtzI:t%%H$|~q}֩f}IO\ԏzB[t#ZaAzO#]ZQ{T۷k[k~Uwj0mW{: \z^nmۦ }sn/͝xL!@"G[ֱ ,n3zfVtJM=9@>*O`r~-+\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/23.png#2 (text+ko) ==== @@ -1,4 +1,5 @@ PNG  --v 27=+ C$`  yܩܩ&$\ No newline at end of file ++95v@- +ZKX*Ru&\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/24.png#2 (text+ko) ==== @@ -1,5 +1,5 @@ PNG  -- ]>J@߶VS Ss9VAhoOf|֫K(jc6 ?5|:wPsO0Um.:$ܾ1s9e`X#{kjKk.y3YK |YsgZxsAFM>'!S  -R@=Ѕ :?}90H>dw*wG|\ No newline at end of file ++RS[,5.]GinLZ)+"mUgiLɵ0cY2%pZA8.q5*!lHVB&/\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/25.png#2 (text+ko) ==== @@ -1,4 +1,5 @@ PNG  -- ]>J@߶V1p?U~3y|fh_rt? ܾ1s9e``ewZ;%w?Owz&k)>e-c̔ =XAPގA010 CO>G`NN5_4菏 1\ No newline at end of file ++A(?S:բz삾|;+s-0]*|=7y(as ^mm/ڭa[OúrP 3 +\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/26.png#2 (text+ko) ==== @@ -1,4 +1,6 @@ PNG  --v <Cټ7qC$`  yܩܩ&$\ No newline at end of file ++gyyx=Ou0 ۠ !t Vn +oFsk顨ryhnl.[5{'BznЅ6tqL{. =WNjc3oCE͚JFvh̬Wy/F{_WJӧИI@ Xh1\: ?[aG8+N fDsAYיOnj٩]|E! %׸j Ca_Rao\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/27.png#2 (text+ko) ==== @@ -1,4 +1,5 @@ PNG  -- ]>J@߶V-~JyAj bLWnFi#ȋ»z5J`DMAm~-gq=o+ YXMx+P ;x6vwťhw+ʽwnNjPd-&ujS3걭\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/28.png#2 (text+ko) ==== @@ -1,5 +1,5 @@ PNG  --em߭-4_S?kfͱYo -OT`U{a1k̼cit49s-O >Y-'3'靃_٢7 XkM?%w?Owz&k)1-h>~2g =XAPގAqd_@|b€ >$A2;;|?>\ No newline at end of file ++) b8  ;\`S 7yȜ/| +<'Bx}scB_ү%,*T:6Jv͜S+dsp\ ztfqFVUPlFކ\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/29.png#2 (text+ko) ==== @@ -1,5 +1,4 @@ PNG  --.ݣ ٬;3 60p-v ?b[N6 t.ЃO ]'`#0Hqr/|G\ No newline at end of file ++qڼv]KtC}^L>` |={ZL|:wqMfj7L( bj]"> A ϳΚ{`惬Q@'3v+й@>AHA|  yܩܩ&$\ No newline at end of file +\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/5.png#3 (text+ko) ==== @@ -1,5 +1,6 @@ PNG  --]$-:|a|GVV| @ ՟Za_D'o>;ĐR@Qn_  k_j%|gj  -::ب k@ԣKJ^~"2ls]@Lߡܝ` ܃O} ǝʝjhAb\ No newline at end of file ++Fc@n҈;go݈~#7a;d ?@"l_w Xݡ y@=Wp!,? 8}YߑJ08?198$^! pM +R3% HT/J#/?4kr,w=)y{ZT^-@$tq:3|i<|q +)\\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/6.png#3 (text+ko) ==== @@ -1,4 +1,4 @@ PNG  --$;OcR?0L>B~ @ 73\ No newline at end of file ++ *Ǭ&\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/7.png#3 (text+ko) ==== @@ -1,4 +1,3 @@ PNG  --Е!>[\ ra*[S+S?~2/8s@l !0/, l(/Te_<"n&?!0 kg0 u1yX@="'`#0Hqr/|G\ No newline at end of file +\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/8.png#3 (text+ko) ==== @@ -1,3 +1,6 @@ PNG  -\ No newline at end of file ++b^$wHvkRPz> +OGZӦ8-K RˤW윖 + yM)j9ZHUb>]4}p\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/9.png#3 (text+ko) ==== @@ -1,4 +1,4 @@ PNG  --z9M#M~fG@u1[F؆@="O} ǝʝjhAb\ No newline at end of file ++>mA4mHPz xȴ|a(g\P𲃜x+V#i{\}#$ >܀_`t4 s0L  \HMCz{0 k^6Vʼn4iu4CԌ4Ɯb+]?.4/+SԀ˱@"?ro\ No newline at end of file ==== //depot/projects/docproj_nl/share/images/callouts/gen.sh#2 (text+ko) ==== @@ -1,8 +1,18 @@ #!/bin/sh -# $FreeBSD: doc/share/images/callouts/gen.sh,v 1.1 2011/09/05 13:22:59 dougb Exp $ +# $FreeBSD: doc/share/images/callouts/gen.sh,v 1.3 2011/09/06 01:21:48 dougb Exp $ + +# For more than 30 adjust %callout-graphics-number-limit% +# in doc/share/sgml/freebsd-html.dsl + +for i in `jot 9 1` +do + convert -size 101x101 xc:green -transparent green -fill black -draw 'circle 50,50 50' -fill white -stroke none -pointsize 90 -gravity center -kerning -5 -font Helvetica-bold -draw "text 0,5 \"$i\"" -scale '12x12' $i.png +done -for i in `seq 1 30` +for i in `jot 21 10` do - convert -size 101x101 xc:white -fill black -draw 'circle 50,50 50' -fill white -stroke none -pointsize 85 -gravity center -kerning -1 -font Helvetica-bold -draw "text 0,5 \"$i\"" -scale '12x12' $i.png + convert -size 101x101 xc:green -transparent green -fill black -draw 'circle 50,50 50' -fill white -stroke none -pointsize 80 -gravity center -kerning -5 -font Helvetica-bold -draw "text 0,5 \"$i\"" -scale '12x12' $i.png done + +exit 0 ==== //depot/projects/docproj_nl/share/sgml/freebsd-html.dsl#7 (text+ko) ==== @@ -1,4 +1,4 @@ - + @@ -322,7 +322,7 @@ (define %callout-graphics-number-limit% ;; Number of largest callout graphic - 15) + 30) (define %callout-graphics-path% ;; Path to callout graphics ==== //depot/projects/docproj_nl/www/en/where.sgml#13 (text+ko) ==== @@ -1,5 +1,5 @@ + @@ -193,19 +193,19 @@ powerpc - [Distribution] - [ISO] + [Distribution] + [ISO] powerpc64 - [Distribution] - [ISO] + [Distribution] + [ISO] sparc64 - [Distribution] - [ISO] + [Distribution] + [ISO] @@ -234,38 +234,38 @@ amd64 - [Distribution] - [ISO] + [Distribution] + [ISO] i386 - [Distribution] - [ISO] + [Distribution] + [ISO] ia64 - [Distribution] - [ISO] + [Distribution] + [ISO] - pc98 - [Distribution] - [ISO] + powerpc + [Distribution] + [ISO] - powerpc - [Distribution] - [ISO] + powerpc64 + [Distribution] + [ISO] sparc64 - [Distribution] - [ISO] + [Distribution] + [ISO] @@ -287,14 +287,22 @@

    FreeBSD-derived Operating System Distributions

    FreeBSD is widely used as a building block for other commercial - and open-source operating systems. The project below is + and open-source operating systems. The projects below are widely used and of particular interest to FreeBSD users.

      +
    • FreeNAS is an open + source storage platform based on FreeBSD and supports sharing + across Windows, Apple, and UNIX-like systems.

    • +
    • PC-BSD is a FreeBSD - derivative with a graphical installer and impressive desktop - tools aimed at ease of use for the casual computer - user.

    • + derivative with a graphical installer and impressive desktop + tools aimed at ease of use for the casual computer + user.

      + +
    • pfSense is a free, + open source customized distribution of FreeBSD tailored for + use as a firewall and router.

    From owner-p4-projects@FreeBSD.ORG Wed Sep 7 20:34:23 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id BEEBF1065679; Wed, 7 Sep 2011 20:34:23 +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 8184C1065676 for ; Wed, 7 Sep 2011 20:34:23 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 6EF8D8FC13 for ; Wed, 7 Sep 2011 20:34:23 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p87KYNFw091441 for ; Wed, 7 Sep 2011 20:34:23 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p87KYNM8091438 for perforce@freebsd.org; Wed, 7 Sep 2011 20:34:23 GMT (envelope-from rene@FreeBSD.org) Date: Wed, 7 Sep 2011 20:34:23 GMT Message-Id: <201109072034.p87KYNM8091438@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 198681 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Sep 2011 20:34:24 -0000 http://p4web.freebsd.org/@@198681?ac=10 Change 198681 by rene@rene_acer on 2011/09/07 20:33:39 MFen the Dutch Handbook: - desktop 1.111 -> 1.114 - eresources 1.209 -> 1.210 - kernelconfig 1.197 -> 1.198 - mailing-lists.ent 1.80 -> 1.81 Affected files ... .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/desktop/chapter.sgml#40 edit .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/eresources/chapter.sgml#41 edit .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#21 edit .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/share/sgml/mailing-lists.ent#31 edit Differences ... ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/desktop/chapter.sgml#40 (text+ko) ==== @@ -4,7 +4,7 @@ $FreeBSD: doc/nl_NL.ISO8859-1/books/handbook/desktop/chapter.sgml,v 1.32 2011/08/28 13:07:49 rene Exp $ %SOURCE% en_US.ISO8859-1/books/handbook/desktop/chapter.sgml - %SRCID% 1.111 + %SRCID% 1.114 --> @@ -1003,7 +1003,7 @@ &prompt.root; pkg_add -r gqview - Of vanuit de Portscollectie: + Of uit de Portscollectie: &prompt.root; cd /usr/ports/graphics/gqview &prompt.root; make install clean @@ -1224,7 +1224,7 @@ Hoewel &os; populair is bij ISP's om zijn prestaties en stabiliteit, is het behoorlijk klaar voor dagelijks gebruik als een bureaublad. Met enkele duizenden applicaties als pakketten of pakketten of ports, is een perfect bureaublad te bouwen dat aan alle noden voldoet. @@ -1263,7 +1263,7 @@ KOffice - koffice-kde3 + koffice editors/koffice-kde3 ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/eresources/chapter.sgml#41 (text+ko) ==== @@ -5,7 +5,7 @@ Vertaald door: Siebrand Mazeland %SOURCE% en_US.ISO8859-1/books/handbook/eresources/chapter.sgml - %SRCID% 1.209 + %SRCID% 1.210 --> @@ -494,15 +494,6 @@ - &a.openoffice.name; - - Porten van - OpenOffice.org en - &staroffice; naar - &os; - - - &a.performance.name; Optimalisatie van prestaties voor installaties met @@ -1639,18 +1630,6 @@ - &a.openoffice.name; - - - OpenOffice.org - - Discussie over het porten en beheren van - OpenOffice.org en - &staroffice;. - - - - &a.performance.name; ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#21 (text+ko) ==== @@ -4,7 +4,7 @@ $FreeBSD: doc/nl_NL.ISO8859-1/books/handbook/kernelconfig/chapter.sgml,v 1.20 2011/06/01 23:23:17 rene Exp $ %SOURCE% en_US.ISO8859-1/books/handbook/kernelconfig/chapter.sgml - %SRCID% 1.197 + %SRCID% 1.198 --> @@ -810,7 +810,7 @@ Kernels die PROCFS gebruiken moeten ook ondersteuning voor PSEUDOFS opnemen. - options GEOM_GPT # GUID Partitietabellen. + options GEOM_PART_GPT # GUID Partitietabellen. Met deze optie kan een groot aantal partities op een enkele schijf aanwezig zijn. ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/share/sgml/mailing-lists.ent#31 (text+ko) ==== @@ -5,7 +5,7 @@ Vertaald door: Siebrand Mazeland %SOURCE% en_US.ISO8859-1/share/sgml/mailing-lists.ent - %SRCID% 1.80 + %SRCID% 1.81 --> @@ -315,10 +315,6 @@ Kantoortoepassingen op &os;"> freebsd-office"> - -&os; OpenOffice mailinglijst"> -freebsd-openoffice"> - &os; prestaties mailinglijst"> freebsd-performance"> From owner-p4-projects@FreeBSD.ORG Thu Sep 8 16:19:53 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 456FB1065690; Thu, 8 Sep 2011 16:19:53 +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 07410106568E for ; Thu, 8 Sep 2011 16:19:53 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id E6A158FC1F for ; Thu, 8 Sep 2011 16:19:52 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p88GJq0C030836 for ; Thu, 8 Sep 2011 16:19:52 GMT (envelope-from rene@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p88GJqQp030833 for perforce@freebsd.org; Thu, 8 Sep 2011 16:19:52 GMT (envelope-from rene@FreeBSD.org) Date: Thu, 8 Sep 2011 16:19:52 GMT Message-Id: <201109081619.p88GJqQp030833@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to rene@FreeBSD.org using -f From: Rene Ladan To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 198711 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Sep 2011 16:19:53 -0000 http://p4web.freebsd.org/@@198711?ac=10 Change 198711 by rene@rene_acer on 2011/09/08 16:18:47 IFC Affected files ... .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/desktop/chapter.sgml#41 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/eresources/chapter.sgml#42 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#22 integrate .. //depot/projects/docproj_nl/nl_NL.ISO8859-1/share/sgml/mailing-lists.ent#32 integrate .. //depot/projects/docproj_nl/www/en/marketing/index.sgml#3 integrate .. //depot/projects/docproj_nl/www/en/where.sgml#14 integrate .. //depot/projects/docproj_nl/www/nl/privacy.sgml#5 integrate .. //depot/projects/docproj_nl/www/share/sgml/news.xml#117 integrate .. //depot/projects/docproj_nl/www/share/sgml/release.ent#36 integrate Differences ... ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/desktop/chapter.sgml#41 (text+ko) ==== @@ -1,7 +1,7 @@ @@ -438,13 +438,6 @@ - &a.libh.name; - - Het tweede generatie installatie- en - pakketsysteem - - - &a.mips.name; Porten van &os; naar &mips; ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/books/handbook/kernelconfig/chapter.sgml#22 (text+ko) ==== @@ -1,10 +1,10 @@ @@ -1067,7 +1067,7 @@ device ciss # Compaq Smart RAID 5* device dpt # DPT Smartcache III, IV - Zie NOTES voor opties device hptmv # Highpoint RocketRAID 182x -device rr232x # Highpoint RocketRAID 232x +device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx device iir # Intel Integrated RAID device ips # IBM (Adaptec) ServeRAID device mly # Mylex AcceleRAID/eXtremeRAID ==== //depot/projects/docproj_nl/nl_NL.ISO8859-1/share/sgml/mailing-lists.ent#32 (text+ko) ==== @@ -1,11 +1,11 @@ @@ -271,10 +271,6 @@ &os; LFS porting mailinglijst"> freebsd-lfs"> - -&os; libh installatie and packagingsysteem mailinglijst"> -freebsd-libh"> - &os; MIPS porting mailinglijst"> freebsd-mips"> ==== //depot/projects/docproj_nl/www/en/marketing/index.sgml#3 (text+ko) ==== @@ -1,6 +1,6 @@ - + @@ -75,9 +75,6 @@ href="http://www.FreeBSD.org/~blackend/flyer-logo.pdf">PDF | PostScript) -
  • How does your OS compare (PDF), (outdated).
  • -
  • BSD Success Stories (27 pages) (PDF), O'Reilly.
  • ==== //depot/projects/docproj_nl/www/en/where.sgml#14 (text+ko) ==== @@ -1,5 +1,5 @@ + @@ -187,8 +187,8 @@ ia64 - [Distribution] - [ISO] + [Distribution] + [ISO] ==== //depot/projects/docproj_nl/www/nl/privacy.sgml#5 (text+ko) ==== ==== //depot/projects/docproj_nl/www/share/sgml/news.xml#117 (text+ko) ==== @@ -25,7 +25,7 @@ - $FreeBSD: www/share/sgml/news.xml,v 1.392 2011/09/03 12:47:22 gavin Exp $ + $FreeBSD: www/share/sgml/news.xml,v 1.393 2011/09/07 23:34:44 gjb Exp $ @@ -33,6 +33,29 @@ 2011 + 9 + + + 7 + + + &os; 9.0-BETA2 Available + +

    The second BETA build for the &os;-9.0 release cycle is now + available. ISO images for the architectures amd64, i386, + powerpc, powerpc64, and sparc64 are available + on most of our &os; + mirror sites. One of the many new features in 9.0 we + would like to be tested is the new installer, so we + encourage our users to do fresh installation on test + systems.

    +
    +
    +
    + + 8 ==== //depot/projects/docproj_nl/www/share/sgml/release.ent#36 (text+ko) ==== @@ -1,4 +1,4 @@ - +