From owner-freebsd-doc@FreeBSD.ORG Sun Dec 11 18:30:14 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBC7616A420 for ; Sun, 11 Dec 2005 18:30:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A26B43D6E for ; Sun, 11 Dec 2005 18:30:11 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBBIUB5A093921 for ; Sun, 11 Dec 2005 18:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBBIUB9Y093920; Sun, 11 Dec 2005 18:30:11 GMT (envelope-from gnats) Resent-Date: Sun, 11 Dec 2005 18:30:11 GMT Resent-Message-Id: <200512111830.jBBIUB9Y093920@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Intron Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE19816A41F for ; Sun, 11 Dec 2005 18:29:00 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 649DD43D67 for ; Sun, 11 Dec 2005 18:29:00 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id jBBIT0jF066706 for ; Sun, 11 Dec 2005 18:29:00 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id jBBIT0La066705; Sun, 11 Dec 2005 18:29:00 GMT (envelope-from nobody) Message-Id: <200512111829.jBBIT0La066705@www.freebsd.org> Date: Sun, 11 Dec 2005 18:29:00 GMT From: Intron To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: docs/90255: Conflict about "index.sgml" and bugs on ${DOC}.rtf X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Dec 2005 18:30:15 -0000 >Number: 90255 >Category: docs >Synopsis: Conflict about "index.sgml" and bugs on ${DOC}.rtf >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 11 18:30:10 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Intron >Release: 7.0-CURRENT >Organization: Tsinghua University >Environment: FreeBSD celeron 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Thu Nov 10 18:26:33 CST 2005 >Description: Conflict about "index.sgml" may cause index unable to be correctly built. Links in index in single HTML are pointed to HTML-split files *.html. You can have a try: ftp://ftp.freebsd.org/pub/FreeBSD/doc/en_US.ISO8859-1/books/arch-handbook/book.html.tar.bz2 And I cannot build ${DOC}.rtf alone. What's in my patch: 1.Regard "index.sgml" as temporary file, no longer as what ${DOC}.* depend on. And now generate "index.sgml" when updating targets ${DOC}.* . This measure solves the conflict that all targets depend on deferent but commonly-named "index.sgml"s. Related targets: index.html HTML.manifest ${DOC}.html ${DOC}.html-text ${DOC}.rtf ${DOC}.tex ${DOC}.tex-pdf 2.Let ${DOC}.rtf depends on ${PRINT_INDEX} and ${LOCAL_IMAGES_PNG} . Otherwise, it will depend on ${DOC}.html to generate ${PRINT_INDEX} and ${LOCAL_IMAGES_PNG}. 3.Delete target ${INDEX_SGML}, which was used to initialize index.sgml. 4.Modification on targets ${HTML_INDEX} and ${HTML_SPLIT_INDEX}: a. Let them depend on ${SRCS} ${LOCAL_IMAGES_TXT} . b. Initialize index.sgml by themselves. c. No longer generate index.sgml here, which is generated by ${DOC}.* . >How-To-Repeat: >Fix: --- /root/doc.docbook.mk.orig Sun Dec 11 07:55:11 2005 +++ doc.docbook.mk Sun Dec 11 21:13:19 2005 @@ -427,20 +427,24 @@ .endif # # Index generation # -CLEANFILES+= ${INDEX_SGML} .if defined(GEN_INDEX) && defined(HAS_INDEX) JADEFLAGS+= -i chap.index HTML_SPLIT_INDEX?= html-split.index HTML_INDEX?= html.index PRINT_INDEX?= print.index INDEX_SGML?= index.sgml -CLEANFILES+= ${HTML_SPLIT_INDEX} ${HTML_INDEX} ${PRINT_INDEX} +CLEANFILES+= ${INDEX_SGML} ${HTML_SPLIT_INDEX} ${HTML_INDEX} ${PRINT_INDEX} + +INIT_INDEX_SGML_CMD= ${PERL} ${COLLATEINDEX} -i doc-index -N -o ${INDEX_SGML} +GEN_INDEX_SGML_CMD= ${PERL} ${COLLATEINDEX} -i doc-index -g -o ${INDEX_SGML} ${.ALLSRC:M*.index} +.else +GEN_INDEX_SGML_CMD= @${ECHO} "No index to generate." .endif .MAIN: all all: ${_docs} @@ -460,16 +464,18 @@ # HTML-SPLIT ------------------------------------------------------------- .if ${STYLESHEET_TYPE} == "dsssl" index.html HTML.manifest: ${SRCS} ${LOCAL_IMAGES_LIB} ${LOCAL_IMAGES_PNG} \ - ${LOCAL_IMAGES_TXT} ${INDEX_SGML} ${HTML_SPLIT_INDEX} ${LOCAL_CSS_SHEET} + ${LOCAL_IMAGES_TXT} ${HTML_SPLIT_INDEX} ${LOCAL_CSS_SHEET} + ${GEN_INDEX_SGML_CMD} ${JADE_CMD} -V html-manifest ${HTMLOPTS} -ioutput.html.images \ ${JADEOPTS} -t sgml ${MASTERDOC} .elif ${STYLESHEET_TYPE} == "xsl" index.html: ${DOC}.xml ${LOCAL_IMAGES_LIB} ${LOCAL_IMAGES_PNG} \ - ${INDEX_SGML} ${HTML_SPLIT_INDEX} ${LOCAL_CSS_SHEET} + ${HTML_SPLIT_INDEX} ${LOCAL_CSS_SHEET} + ${GEN_INDEX_SGML_CMD} ${XSLTPROC} ${XSLTPROCOPTS} --param freebsd.output.html.images "'1'" ${XSLHTMLCHUNK} \ ${DOC}.xml .endif .if !defined(NO_TIDY) -${TIDY} ${TIDYOPTS} $$(${XARGS} < HTML.manifest) @@ -477,17 +483,19 @@ # HTML ------------------------------------------------------------------- .if ${STYLESHEET_TYPE} == "dsssl" ${DOC}.html: ${SRCS} ${LOCAL_IMAGES_LIB} ${LOCAL_IMAGES_PNG} \ - ${LOCAL_IMAGES_TXT} ${INDEX_SGML} ${HTML_INDEX} ${LOCAL_CSS_SHEET} + ${LOCAL_IMAGES_TXT} ${HTML_INDEX} ${LOCAL_CSS_SHEET} + ${GEN_INDEX_SGML_CMD} ${JADE_CMD} -V nochunks ${HTMLOPTS} -ioutput.html.images \ ${JADEOPTS} -t sgml ${MASTERDOC} > ${.TARGET} || \ (${RM} -f ${.TARGET} && false) .elif ${STYLESHEET_TYPE} == "xsl" ${DOC}.html: ${DOC}.xml ${LOCAL_IMAGES_LIB} ${LOCAL_IMAGES_PNG} \ - ${INDEX_SGML} ${LOCAL_CSS_SHEET} + ${LOCAL_CSS_SHEET} + ${GEN_INDEX_SGML_CMD} ${XSLTPROC} ${XSLTPROCOPTS} --param freebsd.output.html.images "'1'" ${XSLHTML} \ ${DOC}.xml > ${.TARGET} .endif .if !defined(NO_TIDY) -${TIDY} ${TIDYOPTS} ${.TARGET} @@ -495,16 +503,18 @@ # HTML-TEXT -------------------------------------------------------------- # Special target to produce HTML with no images in it. .if ${STYLESHEET_TYPE} == "dsssl" -${DOC}.html-text: ${SRCS} ${INDEX_SGML} ${HTML_INDEX} ${LOCAL_IMAGES_TXT} +${DOC}.html-text: ${SRCS} ${HTML_INDEX} ${LOCAL_IMAGES_TXT} + ${GEN_INDEX_SGML_CMD} ${JADE_CMD} -V nochunks ${HTMLTXTOPTS} \ ${JADEOPTS} -t sgml ${MASTERDOC} > ${.TARGET} || \ (${RM} -f ${.TARGET} && false) .elif ${STYLESHEET_TYPE} == "xsl" -${DOC}.html-text: ${DOC}.xml ${INDEX_SGML} ${HTML_INDEX} +${DOC}.html-text: ${DOC}.xml ${HTML_INDEX} + ${GEN_INDEX_SGML_CMD} ${XSLTPROC} ${XSLTPROCOPTS} --param freebsd.output.html.images "'0'" ${XSLHTML} \ ${DOC}.xml > ${.TARGET} .endif ${DOC}.html-split.tar: HTML.manifest ${LOCAL_IMAGES_LIB} \ @@ -556,11 +566,13 @@ .endfor # RTF -------------------------------------------------------------------- .if !defined(NO_TEX) -${DOC}.rtf: ${SRCS} ${LOCAL_IMAGES_EPS} ${LOCAL_IMAGES_TXT} +${DOC}.rtf: ${SRCS} ${LOCAL_IMAGES_EPS} ${PRINT_INDEX} \ + ${LOCAL_IMAGES_TXT} ${LOCAL_IMAGES_PNG} + ${GEN_INDEX_SGML_CMD} ${JADE_CMD} -V rtf-backend ${PRINTOPTS} -ioutput.rtf.images \ ${JADEOPTS} -t rtf -o ${.TARGET} ${MASTERDOC} ${DOC}.rtf.tar: ${DOC}.rtf ${LOCAL_IMAGES_PNG} ${TAR} cf ${.TARGET} ${DOC}.rtf ${IMAGES_PNG:N*share*} @@ -574,21 +586,23 @@ # to use different image formats, which are chosen at the .tex stage. So, # we need to create a different .tex file depending on our eventual output # format, which will then lead on to a different .dvi file as well. # -${DOC}.tex: ${SRCS} ${LOCAL_IMAGES_EPS} ${INDEX_SGML} ${PRINT_INDEX} \ +${DOC}.tex: ${SRCS} ${LOCAL_IMAGES_EPS} ${PRINT_INDEX} \ ${LOCAL_IMAGES_TXT} ${LOCAL_IMAGES_EN} + ${GEN_INDEX_SGML_CMD} ${JADE_CMD} -V tex-backend ${PRINTOPTS} \ ${JADEOPTS} -t tex -o ${.TARGET} ${MASTERDOC} ${DOC}.tex-ps: ${DOC}.tex ${LN} -f ${.ALLSRC} ${.TARGET} .if !target(${DOC}.tex-pdf) -${DOC}.tex-pdf: ${SRCS} ${IMAGES_PDF} ${INDEX_SGML} ${PRINT_INDEX} \ +${DOC}.tex-pdf: ${SRCS} ${IMAGES_PDF} ${PRINT_INDEX} \ ${LOCAL_IMAGES_TXT} + ${GEN_INDEX_SGML_CMD} ${RM} -f ${.TARGET} ${CAT} ${PDFTEX_DEF} > ${.TARGET} ${JADE_CMD} -V tex-backend ${PRINTOPTS} -ioutput.print.pdf \ ${JADEOPTS} -t tex -o /dev/stdout ${MASTERDOC} >> ${.TARGET} .endif @@ -674,22 +688,20 @@ # # If we're not generating an index (the default) then we need to create # an empty index.sgml file so that we can reference index.sgml in book.sgml # -${INDEX_SGML}: - ${PERL} ${COLLATEINDEX} -i doc-index -N -o ${.TARGET} -${HTML_INDEX}: +${HTML_INDEX}: ${SRCS} ${LOCAL_IMAGES_TXT} + ${INIT_INDEX_SGML_CMD} ${JADE_CMD} -V html-index -V nochunks ${HTMLOPTS} -ioutput.html.images \ ${JADEOPTS} -t sgml ${MASTERDOC} > /dev/null - ${PERL} ${COLLATEINDEX} -i doc-index -g -o ${INDEX_SGML} ${.TARGET} -${HTML_SPLIT_INDEX}: +${HTML_SPLIT_INDEX}: ${SRCS} ${LOCAL_IMAGES_TXT} + ${INIT_INDEX_SGML_CMD} ${JADE_CMD} -V html-index ${HTMLOPTS} -ioutput.html.images \ ${JADEOPTS} -t sgml ${MASTERDOC} > /dev/null - ${PERL} ${COLLATEINDEX} -i doc-index -g -o ${INDEX_SGML} ${.TARGET} .if !target(${PRINT_INDEX}) ${PRINT_INDEX}: ${HTML_INDEX} ${CP} -p ${HTML_INDEX} ${.TARGET} .endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Dec 11 23:30:08 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C50D16A41F for ; Sun, 11 Dec 2005 23:30:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A559543D6E for ; Sun, 11 Dec 2005 23:30:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBBNU242011321 for ; Sun, 11 Dec 2005 23:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBBNU2AL011319; Sun, 11 Dec 2005 23:30:02 GMT (envelope-from gnats) Resent-Date: Sun, 11 Dec 2005 23:30:02 GMT Resent-Message-Id: <200512112330.jBBNU2AL011319@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Siebrand Mazeland Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44CD016A41F for ; Sun, 11 Dec 2005 23:29:04 +0000 (GMT) (envelope-from siebrand@nitro.dk) Received: from nfishbone.nitro.dk (fishbone.nitro.dk [83.95.46.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDD4D43D5A for ; Sun, 11 Dec 2005 23:29:03 +0000 (GMT) (envelope-from siebrand@nitro.dk) Received: by nfishbone.nitro.dk (Postfix, from userid 1026) id 0E3AD61C2A; Mon, 12 Dec 2005 00:29:02 +0100 (CET) Message-Id: <20051211232902.0E3AD61C2A@nfishbone.nitro.dk> Date: Mon, 12 Dec 2005 00:29:02 +0100 (CET) From: Siebrand Mazeland To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/90261: [PATCH] Fix inconsistent link in printing X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Siebrand Mazeland List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Dec 2005 23:30:08 -0000 >Number: 90261 >Category: docs >Synopsis: [PATCH] Fix inconsistent link in printing >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 11 23:30:02 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Siebrand Mazeland >Release: FreeBSD 5.4-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD nfishbone.nitro.dk 5.4-RELEASE-p8 FreeBSD 5.4-RELEASE-p8 #8: Sun Oct 23 12:51:06 CEST 2005 simon@nfishbone.nitro.dk:/usr/obj/usr/src/sys/FISHBONE i386 >Description: In http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/printing-using.html a link to 'Administering Printers' notes 'Administering the LPD Spooler'. That seems to be inconsistent as almost all other links note exactly the title of the referenced section. Patch attached. >How-To-Repeat: >Fix: diff -u -r1.94 chapter.sgml --- en_US.ISO8859-1/books/handbook/printing/chapter.sgml 14 Sep 2005 00:59:05 -0000 1.94 +++ en_US.ISO8859-1/books/handbook/printing/chapter.sgml 11 Dec 2005 23:18:36 -0000 @@ -3897,10 +3897,10 @@ - There is also an administrative command, &man.lpc.8;, described in - the section Administering the - LPD - Spooler, used to control printers and their queues. + There is also an administrative command, &man.lpc.8;, + described in the section Administering Printers, used to + control printers and their queues. All three of the commands &man.lpr.1;, &man.lprm.1;, and &man.lpq.1; accept an option @@ -2608,7 +2608,7 @@ driver). Some new SRM versions are known to recognize the Intel 8255x Ethernet chips as driven by the &os; &man.fxp.4; driver. But beware: the &man.fxp.4; driver is reported not to work correctly - with &os; (although it works excellently on &os;/x86). + with &os;/alpha (although it works excellently on &os;/x86). In general the SRM console emulates a VGA-compatibility mode on PCI VGA cards. This is, however, not guaranteed to work by --- alpha-hwnotes.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Dec 13 21:30:08 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EE6816A420 for ; Tue, 13 Dec 2005 21:30:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE3CB43D60 for ; Tue, 13 Dec 2005 21:30:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBDLU4DB007500 for ; Tue, 13 Dec 2005 21:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBDLU4Kv007499; Tue, 13 Dec 2005 21:30:04 GMT (envelope-from gnats) Resent-Date: Tue, 13 Dec 2005 21:30:04 GMT Resent-Message-Id: <200512132130.jBDLU4Kv007499@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gavin Atkinson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02C2516A420 for ; Tue, 13 Dec 2005 21:29:35 +0000 (GMT) (envelope-from ga9@945testbox.york.ac.uk) Received: from mail-gw1.york.ac.uk (mail-gw1.york.ac.uk [144.32.128.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3AC643D53 for ; Tue, 13 Dec 2005 21:29:33 +0000 (GMT) (envelope-from ga9@945testbox.york.ac.uk) Received: from 945testbox.york.ac.uk (945testbox.york.ac.uk [144.32.227.28]) by mail-gw1.york.ac.uk (8.12.10/8.12.10) with ESMTP id jBDLTVNW026754 for ; Tue, 13 Dec 2005 21:29:31 GMT Received: from 945testbox.york.ac.uk (localhost [127.0.0.1]) by 945testbox.york.ac.uk (8.13.4/8.13.4) with ESMTP id jBDLTWuf004791 for ; Tue, 13 Dec 2005 21:29:32 GMT (envelope-from ga9@945testbox.york.ac.uk) Received: (from root@localhost) by 945testbox.york.ac.uk (8.13.4/8.13.4/Submit) id jBDLTWJV004790; Tue, 13 Dec 2005 21:29:32 GMT (envelope-from ga9) Message-Id: <200512132129.jBDLTWJV004790@945testbox.york.ac.uk> Date: Tue, 13 Dec 2005 21:29:32 GMT From: Gavin Atkinson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/90359: [patch] traceroute6 manpage corruption X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Gavin Atkinson List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Dec 2005 21:30:08 -0000 >Number: 90359 >Category: docs >Synopsis: [patch] traceroute6 manpage corruption >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 13 21:30:03 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Gavin Atkinson >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD 945testbox.york.ac.uk 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Mon Dec 12 18:04:02 GMT 2005 root@945testbox.york.ac.uk:/usr/obj/usr/src/sys/GENERIC i386 >Description: Revision 1.10 of src/usr.sbin/traceroute6/traceroute6.8 inserted documentation for the -m option, but the text was inserted half way through the -l option documentation. As a result, when rendered, the -l option ends abruptly, and the rest of it's text is appended to the -m option. >How-To-Repeat: man traceroute6 >Fix: --- traceroute6man.diff begins here --- Index: src/usr.sbin/traceroute6/traceroute6.8 =================================================================== RCS file: /usr/cvs/src/usr.sbin/traceroute6/traceroute6.8,v retrieving revision 1.14 diff -u -r1.14 traceroute6.8 --- src/usr.sbin/traceroute6/traceroute6.8 9 Feb 2005 18:04:42 -0000 1.14 +++ src/usr.sbin/traceroute6/traceroute6.8 13 Dec 2005 21:19:39 -0000 @@ -99,13 +99,13 @@ Normally .Nm prints only hostnames if -.It Fl m Ar hoplimit -Specify maximum hoplimit, up to 255. -The default is 30 hops. .Fl n is not specified, and only numeric addresses if .Fl n is specified. +.It Fl m Ar hoplimit +Specify maximum hoplimit, up to 255. +The default is 30 hops. .It Fl n Do not resolve numeric address to hostname. .It Fl p Ar port --- traceroute6man.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Dec 13 21:50:25 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D86A16A41F for ; Tue, 13 Dec 2005 21:50:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F61D43D5E for ; Tue, 13 Dec 2005 21:50:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBDLo2C9009606 for ; Tue, 13 Dec 2005 21:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBDLo2kd009605; Tue, 13 Dec 2005 21:50:02 GMT (envelope-from gnats) Resent-Date: Tue, 13 Dec 2005 21:50:02 GMT Resent-Message-Id: <200512132150.jBDLo2kd009605@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Roland Smith Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 276D816A420 for ; Tue, 13 Dec 2005 21:40:15 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B8F743D88 for ; Tue, 13 Dec 2005 21:40:12 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr7.xs4all.nl (8.13.3/8.13.3) with ESMTP id jBDLeBSA018553 for ; Tue, 13 Dec 2005 22:40:11 +0100 (CET) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 2BBACB827; Tue, 13 Dec 2005 22:40:11 +0100 (CET) Message-Id: <20051213214011.2BBACB827@slackbox.xs4all.nl> Date: Tue, 13 Dec 2005 22:40:11 +0100 (CET) From: Roland Smith To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/90362: [patch] enhancement of devfs.rules manpage. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Roland Smith List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Dec 2005 21:50:25 -0000 >Number: 90362 >Category: docs >Synopsis: [patch] enhancement of devfs.rules manpage. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 13 21:50:02 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Roland Smith >Release: FreeBSD 6.0-STABLE amd64 >Organization: >Environment: System: FreeBSD slackbox.xs4all.nl 6.0-STABLE FreeBSD 6.0-STABLE #0: Sun Nov 20 02:27:45 CET 2005 root@slackbox.xs4all.nl:/usr/obj/usr/src/sys/RFS amd64 >Description: As a result of recent postings on -questions, it became clear that the manpage for devfs.rules could be improved, especially mentioning that a ruleset needs to be activated in /etc/rc.conf. This patch tries to provide such improvement. >How-To-Repeat: >Fix: See enclosed patch. Feel free to improve the tags used, I'm still learning mdoc. :-) ----------------------- patch ---------------------------- --- devfs.rules.5 2005/12/13 19:59:29 1.6 +++ devfs.rules.5 2005/12/13 21:19:53 @@ -24,7 +24,7 @@ .\" .\" $FreeBSD: /repoman/r/ncvs/src/share/man/man5/devfs.rules.5,v 1.2.4.1 2005/07/27 12:03:48 keramida Exp $ .\" -.Dd May 17, 2005 +.Dd Dec 13, 2005 .Dt DEVFS.RULES 5 .Os .Sh NAME @@ -72,8 +72,23 @@ .Dq Li usb group, the following rule may be used: .Pp +.Dl "[localrules=10]" .Dl "add path 'da*s*' mode 0660 group usb" .Pp +The first line declares and starts a new ruleset, with the name +.Va localrules +and the number 10. Rulesets should have a unique name and number. All +rules that follow a ruleset declaration belong to that ruleset, untill a +new ruleset is started. This ruleset has to be enabled in +.Pa /etc/rc.conf +to be the ruleset for the +.Pa /dev +filesystem. This is done by putting the following line in +.Pa /etc/rc.conf : +.Bd -literal +devfs_system_ruleset="localrules" +.Ed +.Pp To make all the .Xr uscanner 4 devices accessible to their owner and the @@ -81,6 +96,7 @@ group, a similar rule may be used: .Pp .Dl "add path 'uscanner*' mode 0660 group usb" +.Pp .Sh SEE ALSO .Xr glob 3 , .Xr devfs 5 , ----------------------- patch ---------------------------- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Dec 14 03:05:54 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D21E816A41F; Wed, 14 Dec 2005 03:05:54 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E68D43D4C; Wed, 14 Dec 2005 03:05:54 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBE35svT025092; Wed, 14 Dec 2005 03:05:54 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBE35r5u025088; Wed, 14 Dec 2005 03:05:54 GMT (envelope-from linimon) Date: Wed, 14 Dec 2005 03:05:54 GMT From: Mark Linimon Message-Id: <200512140305.jBE35r5u025088@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/90370: diskless(8) man page has wrong file location for /etc/rc.initdiskless X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Dec 2005 03:05:55 -0000 Synopsis: diskless(8) man page has wrong file location for /etc/rc.initdiskless Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Wed Dec 14 03:05:22 UTC 2005 Responsible-Changed-Why: docs PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=90370 From owner-freebsd-doc@FreeBSD.ORG Wed Dec 14 19:54:25 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2736616A420; Wed, 14 Dec 2005 19:54:25 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C73C43D55; Wed, 14 Dec 2005 19:54:20 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from freefall.freebsd.org (wilko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBEJsKiC088174; Wed, 14 Dec 2005 19:54:20 GMT (envelope-from wilko@freefall.freebsd.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBEJsJUK088169; Wed, 14 Dec 2005 19:54:19 GMT (envelope-from wilko) Date: Wed, 14 Dec 2005 19:54:19 GMT From: Wilko Bulte Message-Id: <200512141954.jBEJsJUK088169@freefall.freebsd.org> To: gavin.atkinson@ury.york.ac.uk, wilko@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/90351: [patch] Fix spelling mistake and misleading info in Alpha HW release notes X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Dec 2005 19:54:25 -0000 Synopsis: [patch] Fix spelling mistake and misleading info in Alpha HW release notes State-Changed-From-To: open->closed State-Changed-By: wilko State-Changed-When: Wed Dec 14 19:51:50 UTC 2005 State-Changed-Why: Fixes committed to HEAD, RELENG_[56]. Thanks Side note, not being a native speaker: Shouldn't it be 'spelled' instead of 'spelt' ? :-) Accommodate and interchangeably are spelt incorrectly in the Alpha Hardware release notes. http://www.freebsd.org/cgi/query-pr.cgi?pr=90351 From owner-freebsd-doc@FreeBSD.ORG Wed Dec 14 23:12:34 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9183116A41F; Wed, 14 Dec 2005 23:12:34 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4216943D75; Wed, 14 Dec 2005 23:12:28 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBENCRRW001081; Wed, 14 Dec 2005 23:12:27 GMT (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBENCRee001077; Wed, 14 Dec 2005 23:12:27 GMT (envelope-from ceri) Date: Wed, 14 Dec 2005 23:12:27 GMT From: Ceri Davies Message-Id: <200512142312.jBENCRee001077@freefall.freebsd.org> To: ceri@FreeBSD.org, freebsd-doc@FreeBSD.org, ceri@FreeBSD.org Cc: Subject: Re: docs/89256: broken reference in pfsync(4) manpage X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Dec 2005 23:12:34 -0000 Synopsis: broken reference in pfsync(4) manpage Responsible-Changed-From-To: freebsd-doc->ceri Responsible-Changed-By: ceri Responsible-Changed-When: Wed Dec 14 23:11:54 UTC 2005 Responsible-Changed-Why: I will take care of this. http://www.freebsd.org/cgi/query-pr.cgi?pr=89256 From owner-freebsd-doc@FreeBSD.ORG Wed Dec 14 23:25:48 2005 Return-Path: X-Original-To: FreeBSD-doc@freebsd.org Delivered-To: FreeBSD-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CB9E16A41F for ; Wed, 14 Dec 2005 23:25:48 +0000 (GMT) (envelope-from diegodamo@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94A6943D58 for ; Wed, 14 Dec 2005 23:25:47 +0000 (GMT) (envelope-from diegodamo@gmail.com) Received: by wproxy.gmail.com with SMTP id i5so535842wra for ; Wed, 14 Dec 2005 15:25:46 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:reply-to:from:to:subject:date:mime-version:content-type:x-priority:x-msmail-priority:x-mailer:x-mimeole; b=q31PBkFZgLSP5lhJQ4L3mF1Enpo4rlyQ7VtBNUS2zb7lz1ZAhGNoqhxw7kn5lxdjrc69NIlaXYY7iXcK8GaXaOdQ6ucPo4JvfOrw+ZG7HZp8s5zJ6+2TT/rautCcusyz5TE/QYxW/+aKM+QxV0D2/mXcUvGLbtorcCd54DLlVjE= Received: by 10.54.150.12 with SMTP id x12mr1312555wrd; Wed, 14 Dec 2005 15:25:45 -0800 (PST) Received: from pastorius ( [217.201.193.177]) by mx.gmail.com with ESMTP id 43sm2568514wri.2005.12.14.15.25.41; Wed, 14 Dec 2005 15:25:45 -0800 (PST) Message-ID: <000a01c60105$cfa81040$b1c1c9d9@pastorius> From: "Diego Damo" To: Date: Thu, 15 Dec 2005 00:26:18 +0100 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Subscrive the FreeBSD Documentation Project X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Diego Damo List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Dec 2005 23:25:48 -0000 Hi, I'm Diego Damo,from Italy,and i like to join the documentation project = as translator. I have a 5 years experience to Unix,first to Linux then migrated to = FreeBSD since 3.5 version. I've also written articles on a local montly national = magazine,Linux&C,about FreeBSD and i currently mantain a home LAN to = serve friends with mail,ftp and web services,running on FreeBSD of = course. Here are some of my articles: http://www.oltrelinux.com/home.php?num_riv=3D12 http://www.oltrelinux.com/home.php?num_riv=3D11 http://www.oltrelinux.com/home.php?num_riv=3D10 http://www.oltrelinux.com/home.php?num_riv=3D14 about FreeBSD installation,ISDN configuration and maintenance and other. I'm also very skilled with English so i decided to join now because i = got plenty of time to kill...my job allows me to read and write = constantly so i think i could be useful at the daemon to translate docs = from EN to IT. My physical address is: Diego Damo=20 Strada Croci 2 15044 Quargnento (AL) ITALY Thanks=20 Diego=20 From owner-freebsd-doc@FreeBSD.ORG Thu Dec 15 04:34:13 2005 Return-Path: X-Original-To: FreeBSD-doc@freebsd.org Delivered-To: FreeBSD-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5647016A41F for ; Thu, 15 Dec 2005 04:34:13 +0000 (GMT) (envelope-from jeansen@gmail.com) Received: from uproxy.gmail.com (uproxy.gmail.com [66.249.92.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CAD043D5C for ; Thu, 15 Dec 2005 04:34:12 +0000 (GMT) (envelope-from jeansen@gmail.com) Received: by uproxy.gmail.com with SMTP id o2so45590uge for ; Wed, 14 Dec 2005 20:34:09 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:x-mailer:reply-to:x-priority:message-id:to:mime-version:content-type:content-transfer-encoding; b=oY02efmyZKXRk7brdoH8jSzE56DsAS+YcC4SUDPhWyz+o6EE01MkEhgpe2DX0iLE/qQnn+IfC0gXq2x9Tbtp31nCJDur1jktug2/EjLwjz8uxemgv7W5DgjvQ6ZiQoSH40o6xN/PR1lyJiFTauua8AuzPI2e/cYkQOX7qr9lUXI= Received: by 10.66.224.8 with SMTP id w8mr214489ugg; Wed, 14 Dec 2005 20:34:09 -0800 (PST) Received: from VM-WORK ( [80.133.233.101]) by mx.gmail.com with ESMTP id m1sm399749ugc.2005.12.14.20.34.08; Wed, 14 Dec 2005 20:34:08 -0800 (PST) Date: Thu, 15 Dec 2005 05:37:40 +0100 From: Marcel Lautenbach X-Mailer: The Bat! (v3.62.14) Professional X-Priority: 3 (Normal) Message-ID: <36188161.20051215053740@gmail.com> To: FreeBSD-doc@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: quoted-printable Cc: Subject: (no subject) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcel Lautenbach List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Dec 2005 04:34:13 -0000 Guten Tag , --=20 Mit freundlichen Gr=FC=DFen Marcel Lautenbach mailto:jeansen@gmail.com From owner-freebsd-doc@FreeBSD.ORG Thu Dec 15 07:16:57 2005 Return-Path: X-Original-To: FreeBSD-doc@FreeBSD.org Delivered-To: FreeBSD-doc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D79016A41F for ; Thu, 15 Dec 2005 07:16:57 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from andxor.it (relay.andxor.it [195.223.2.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 1496943D45 for ; Thu, 15 Dec 2005 07:16:54 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: (qmail 97834 invoked from network); 15 Dec 2005 07:16:52 -0000 Received: from unknown (HELO ?192.168.178.2?) (a.premoli@andxor.it@81.174.31.42) by andxor.it with SMTP; 15 Dec 2005 07:16:52 -0000 Message-ID: <43A11862.4030701@FreeBSD.org> Date: Thu, 15 Dec 2005 08:16:50 +0100 From: Alex Dupre User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051201) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Diego Damo References: <000a01c60105$cfa81040$b1c1c9d9@pastorius> In-Reply-To: <000a01c60105$cfa81040$b1c1c9d9@pastorius> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD-doc@FreeBSD.org Subject: Re: Subscrive the FreeBSD Documentation Project X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Dec 2005 07:16:57 -0000 Diego Damo wrote: > I'm Diego Damo,from Italy,and i like to join the documentation project as translator. You are welcome! You should subscribe to the GUFI Italian mailing list about translations (http://liste.gufi.org/mailman/listinfo/traduzioni) and send an informative message like this one. After that, we'll assign you a translation job according to your requirements. > I've also written articles on a local montly national magazine,Linux&C,about FreeBSD Do you know Matteo Falsetti? > I'm also very skilled with English so i decided to join now because i got plenty of time to kill. Wonderful, time is the main quality to be a good translator ;-) -- Alex Dupre From owner-freebsd-doc@FreeBSD.ORG Thu Dec 15 12:13:00 2005 Return-Path: X-Original-To: doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7410F16A41F for ; Thu, 15 Dec 2005 12:13:00 +0000 (GMT) (envelope-from root@mercury.ominor.com) Received: from mercury.ominor.com (mercury.ominor.com [80.175.38.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75BE043D4C for ; Thu, 15 Dec 2005 12:12:57 +0000 (GMT) (envelope-from root@mercury.ominor.com) Received: (qmail 3036 invoked by uid 48); 15 Dec 2005 12:12:54 +0000 Date: 15 Dec 2005 12:12:54 +0000 Message-ID: <20051215121254.3034.qmail@mercury.ominor.com> To: doc@FreeBSD.org From: info@uc.com Cc: Subject: Thank you for requesting your account on www.uc.com X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Dec 2005 12:13:00 -0000 Dear 你好, Thank you for requesting your account on the investor section of the www.uc.com website. This is a confirmation email to let you know that we have received your request and we will now process your application. If your request is successful we will send you confirmation that your account has been activated and you will be able to logon using your chosen username and password. Kind Regards, info@uc.com From owner-freebsd-doc@FreeBSD.ORG Thu Dec 15 14:50:03 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB35116A41F for ; Thu, 15 Dec 2005 14:50:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 272A843D5A for ; Thu, 15 Dec 2005 14:50:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBFEo2Mf068518 for ; Thu, 15 Dec 2005 14:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBFEo2f7068514; Thu, 15 Dec 2005 14:50:02 GMT (envelope-from gnats) Resent-Date: Thu, 15 Dec 2005 14:50:02 GMT Resent-Message-Id: <200512151450.jBFEo2f7068514@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Kazarov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22AA016A41F for ; Thu, 15 Dec 2005 14:41:42 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD33043D53 for ; Thu, 15 Dec 2005 14:41:41 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id jBFEffco095156 for ; Thu, 15 Dec 2005 14:41:41 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id jBFEffZM095155; Thu, 15 Dec 2005 14:41:41 GMT (envelope-from nobody) Message-Id: <200512151441.jBFEffZM095155@www.freebsd.org> Date: Thu, 15 Dec 2005 14:41:41 GMT From: Dmitry Kazarov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: docs/90435: Missed in manual page: inetd daemon does not start without file /etc/netconfig X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Dec 2005 14:50:03 -0000 >Number: 90435 >Category: docs >Synopsis: Missed in manual page: inetd daemon does not start without file /etc/netconfig >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 15 14:50:02 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Dmitry Kazarov >Release: FreeBSD 6.0-STABLE >Organization: Multicom >Environment: FreeBSD CE.multicom.ru 6.0-STABLE FreeBSD 6.0-STABLE #0: Wed Dec 14 10:30:17 MSK 2005 root@CE.multicom.ru:/var/tmp/obj/usr/src/sys/CE i386 >Description: Section FILES of inetd(8) lists only /etc/inetd.conf configuration file /etc/rpc translation of service names to RPC program numbers /etc/services translation of service names to port numbers /var/run/inetd.pid the pid of the currently running inetd Trying to start inetd in jail I've found that without /etc/netconfig it dies with a cryptic message. Only digging in the sources solved the problem. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Thu Dec 15 17:07:54 2005 Return-Path: X-Original-To: doc@freebsd.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3848F16A41F for ; Thu, 15 Dec 2005 17:07:54 +0000 (GMT) (envelope-from valmir@wbrnet.com.br) Received: from mgw.wbrnet.com.br (mgw.wbrnet.com.br [200.195.7.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB71E43D5E for ; Thu, 15 Dec 2005 17:07:50 +0000 (GMT) (envelope-from valmir@wbrnet.com.br) Received: from [192.168.2.62] (200-101-109-15.bsace705.e.brasiltelecom.net.br [200.101.109.15] (may be forged)) (authenticated bits=0) by mgw.wbrnet.com.br (8.13.3/8.13.3) with ESMTP id jBFH7Zpb033858 for ; Thu, 15 Dec 2005 15:07:42 -0200 (BRST) (envelope-from valmir@wbrnet.com.br) Date: Thu, 15 Dec 2005 15:07:41 -0200 From: Valmir Filho X-Priority: 3 (Normal) Message-ID: <9310191319.20051215150741@wbrnet.com.br> To: doc@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV 0.87/1209/Mon Dec 12 13:48:01 2005 on mgw.wbrnet.com.br X-Virus-Status: Clean Cc: Subject: Handbook Errata X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Valmir Filho List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Dec 2005 17:07:54 -0000 Doc, Readign FreeBSD's Hankbook, specifically the IPFW chapter (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls-ipfw.html), i´ve found that the following: 25.6.3 /etc/rc.conf Options If you do not have IPFW ... firewall_enable="YES" Set the script to run to activate your rules: firewall_script="/etc/ipfw.rules" My observation is: Reading /etc/rc.firewall script i´ve found that the above line (firewall_script="/etc/ipfw.rules") must be changed to "firewall_type" and not "firewall_script". Regards, Valmir Filho From owner-freebsd-doc@FreeBSD.ORG Thu Dec 15 18:08:12 2005 Return-Path: X-Original-To: freebsd-doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F25C716A41F for ; Thu, 15 Dec 2005 18:08:11 +0000 (GMT) (envelope-from chaos5023@yahoo.com) Received: from web36410.mail.mud.yahoo.com (web36410.mail.mud.yahoo.com [209.191.85.145]) by mx1.FreeBSD.org (Postfix) with SMTP id 7A55043D46 for ; Thu, 15 Dec 2005 18:08:09 +0000 (GMT) (envelope-from chaos5023@yahoo.com) Received: (qmail 16807 invoked by uid 60001); 15 Dec 2005 18:08:08 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=LP6RuhYnYV8cOoFIyw2P2SoHQNqjgN8rHGirlQCUr+okuzTHna6Ge/WYCGIJw96TD7cDoc2HllF/5kKXWBCmkdQyvNLEkDESQI4l2fCQ6ehEvXFJIRwRC08/hmGpWWGs4u+3hkeWzfcF3MnL3M8uyVCEqamypY+iod0hKh/HyCc= ; Message-ID: <20051215180808.16804.qmail@web36410.mail.mud.yahoo.com> Received: from [66.174.92.162] by web36410.mail.mud.yahoo.com via HTTP; Thu, 15 Dec 2005 10:08:08 PST Date: Thu, 15 Dec 2005 10:08:08 -0800 (PST) From: chaos To: freebsd-doc@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Thu, 15 Dec 2005 18:29:46 +0000 Cc: Subject: cvsup notify problem X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Dec 2005 18:08:12 -0000 Trying to cvsup from an old machine, says protocol negotiation failure, says to go to http://www.cvsup.org/s1g for information on upgrading, this bounces to http://people.freebsd.org/~jdp/s1g/, which doesn't exist. ___________________________________ chaos5023@yahoo.com Matthew Sheahan __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-doc@FreeBSD.ORG Thu Dec 15 20:54:45 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9480416A41F for ; Thu, 15 Dec 2005 20:54:45 +0000 (GMT) (envelope-from kstewart@owt.com) Received: from smtp.owt.com (smtp.owt.com [204.118.6.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id E134843D5D for ; Thu, 15 Dec 2005 20:54:44 +0000 (GMT) (envelope-from kstewart@owt.com) Received: from topaz-out (owt-207-41-94-233.owt.com [207.41.94.233]) by smtp.owt.com (8.12.8/8.12.8) with ESMTP id jBFKsMx4004094; Thu, 15 Dec 2005 12:54:22 -0800 From: Kent Stewart To: freebsd-doc@freebsd.org, chaos Date: Thu, 15 Dec 2005 12:54:42 -0800 User-Agent: KMail/1.8.3 References: <20051215180808.16804.qmail@web36410.mail.mud.yahoo.com> In-Reply-To: <20051215180808.16804.qmail@web36410.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512151254.43173.kstewart@owt.com> Cc: Subject: Re: cvsup notify problem X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Dec 2005 20:54:45 -0000 On Thursday 15 December 2005 10:08 am, chaos wrote: > Trying to cvsup from an old machine, says protocol > negotiation failure, says to go to > http://www.cvsup.org/s1g for information on upgrading, > this bounces to http://people.freebsd.org/~jdp/s1g/, > which doesn't exist. > The current version is 16.1h. You should be able to grab a package and install it. If you have a negotiation problem, your version is so old that the date assigned to the downloaded stuff will bogus. That is why they fail the negotiation. This isn't a documentation problem and you should ask questions like this on freebsd-questions@freebsd.org Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-doc@FreeBSD.ORG Fri Dec 16 00:39:37 2005 Return-Path: X-Original-To: doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40B9516A41F for ; Fri, 16 Dec 2005 00:39:37 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC7ED43D46 for ; Fri, 16 Dec 2005 00:39:30 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.4/8.13.4) with ESMTP id jBG150su014947 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 15 Dec 2005 20:05:01 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Thu, 15 Dec 2005 19:39:20 -0500 From: Tom Rhodes To: Valmir Filho Message-Id: <20051215193920.30a62045.trhodes@FreeBSD.org> In-Reply-To: <9310191319.20051215150741@wbrnet.com.br> References: <9310191319.20051215150741@wbrnet.com.br> X-Mailer: Sylpheed version 1.0.5 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: doc@FreeBSD.org Subject: Re: Handbook Errata X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Dec 2005 00:39:37 -0000 On Thu, 15 Dec 2005 15:07:41 -0200 Valmir Filho wrote: > Doc, >=20 > Readign FreeBSD's Hankbook, specifically the IPFW chapter > (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls-ipfw= .html), > i=B4ve found that the following: >=20 > 25.6.3 /etc/rc.conf Options >=20 > If you do not have IPFW ... >=20 > firewall_enable=3D"YES" >=20 > Set the script to run to activate your rules: >=20 > firewall_script=3D"/etc/ipfw.rules" >=20 >=20 > My observation is: >=20 > Reading /etc/rc.firewall script i=B4ve found that the above line > (firewall_script=3D"/etc/ipfw.rules") must be changed to "firewall_type" > and not "firewall_script". The 'firewall_type' option is different than the 'firewall_script' option. The first one allows you to use a predefined configuration in /etc/rc.firewall. The latter one, 'firewall_script' allows you to load a custom firewall ruleset. --=20 Tom Rhodes From owner-freebsd-doc@FreeBSD.ORG Fri Dec 16 12:58:55 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B56A716A41F; Fri, 16 Dec 2005 12:58:55 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FD9E43D62; Fri, 16 Dec 2005 12:58:55 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBGCwtbi056218; Fri, 16 Dec 2005 12:58:55 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBGCwtjj056214; Fri, 16 Dec 2005 12:58:55 GMT (envelope-from remko) Date: Fri, 16 Dec 2005 12:58:55 GMT From: Remko Lodder Message-Id: <200512161258.jBGCwtjj056214@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-www@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/88636: handbook instruction could shut down named X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Dec 2005 12:58:55 -0000 Synopsis: handbook instruction could shut down named Responsible-Changed-From-To: freebsd-www->freebsd-doc Responsible-Changed-By: remko Responsible-Changed-When: Fri Dec 16 12:58:20 UTC 2005 Responsible-Changed-Why: Correct the assign group as Siebrand mentioned. http://www.freebsd.org/cgi/query-pr.cgi?pr=88636 From owner-freebsd-doc@FreeBSD.ORG Fri Dec 16 14:10:14 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E89016A420 for ; Fri, 16 Dec 2005 14:10:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D58A243D6D for ; Fri, 16 Dec 2005 14:10:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBGEA6mF060043 for ; Fri, 16 Dec 2005 14:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBGEA5Xn060042; Fri, 16 Dec 2005 14:10:05 GMT (envelope-from gnats) Resent-Date: Fri, 16 Dec 2005 14:10:05 GMT Resent-Message-Id: <200512161410.jBGEA5Xn060042@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, vd@datamax.bg Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 445F416A422 for ; Fri, 16 Dec 2005 14:06:06 +0000 (GMT) (envelope-from vd@datamax.bg) Received: from jengal.datamax.bg (jengal.datamax.bg [82.103.104.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCDD743D4C for ; Fri, 16 Dec 2005 14:06:05 +0000 (GMT) (envelope-from vd@datamax.bg) Received: from qlovarnika.bg.datamax (qlovarnika.bg.datamax [192.168.10.2]) by jengal.datamax.bg (Postfix) with SMTP id C0629B832; Fri, 16 Dec 2005 16:06:01 +0200 (EET) Received: (nullmailer pid 97609 invoked by uid 1002); Fri, 16 Dec 2005 14:06:01 -0000 Message-Id: <20051216140601.GA97584@qlovarnika.bg.datamax> Date: Fri, 16 Dec 2005 16:06:01 +0200 From: Vasil Dimov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/90498: wrong parameter name to function twalk in tseatch.3 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vd@datamax.bg List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Dec 2005 14:10:14 -0000 >Number: 90498 >Category: docs >Synopsis: wrong parameter name to function twalk in tseatch.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 16 14:10:05 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Vasil Dimov >Release: FreeBSD 6.0-STABLE amd64 >Organization: DataMax >Environment: >Description: In tsearch(3) the function passed as argument to twalk should be named `action', to `compar'. >How-To-Repeat: >Fix: --- tsearch.3_action.diff begins here --- --- lib/libc/stdlib/tsearch.3.orig Fri Dec 16 16:01:11 2005 +++ lib/libc/stdlib/tsearch.3 Fri Dec 16 16:01:30 2005 @@ -42,7 +42,7 @@ .Ft void * .Fn tsearch "const void *key" "void **rootp" "int (*compar) (const void *, const void *)" .Ft void -.Fn twalk "const void *root" "void (*compar) (const void *, VISIT, int)" +.Fn twalk "const void *root" "void (*action) (const void *, VISIT, int)" .Sh DESCRIPTION The .Fn tdelete , --- tsearch.3_action.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Fri Dec 16 20:30:21 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 401F516A433 for ; Fri, 16 Dec 2005 20:30:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C82943D7B for ; Fri, 16 Dec 2005 20:30:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBGKU3bM085010 for ; Fri, 16 Dec 2005 20:30:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBGKU3Ya085009; Fri, 16 Dec 2005 20:30:03 GMT (envelope-from gnats) Resent-Date: Fri, 16 Dec 2005 20:30:03 GMT Resent-Message-Id: <200512162030.jBGKU3Ya085009@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Gabor Kovesdan Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3D9E16A41F for ; Fri, 16 Dec 2005 20:29:39 +0000 (GMT) (envelope-from root@server.t-hosting.hu) Received: from server.t-hosting.hu (server.t-hosting.hu [217.20.133.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1745443D77 for ; Fri, 16 Dec 2005 20:29:39 +0000 (GMT) (envelope-from root@server.t-hosting.hu) Received: from localhost (localhost [127.0.0.1]) by server.t-hosting.hu (Postfix) with ESMTP id 1A43C998351; Fri, 16 Dec 2005 21:29:37 +0100 (CET) Received: from server.t-hosting.hu ([127.0.0.1]) by localhost (server.t-hosting.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 46289-04; Fri, 16 Dec 2005 21:29:33 +0100 (CET) Received: by server.t-hosting.hu (Postfix, from userid 0) id A784D99834D; Fri, 16 Dec 2005 21:29:33 +0100 (CET) Message-Id: <20051216202933.A784D99834D@server.t-hosting.hu> Date: Fri, 16 Dec 2005 21:29:33 +0100 (CET) From: Gabor Kovesdan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Gabor Kovesdan Subject: docs/90515: Use new patch naming convention in Porter's Handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Gabor Kovesdan List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Dec 2005 20:30:21 -0000 >Number: 90515 >Category: docs >Synopsis: Use new patch naming convention in Porter's Handbook >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 16 20:30:03 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Gabor Kovesdan >Release: FreeBSD 5.3-RELEASE-p17 amd64 >Organization: n/a >Environment: System: FreeBSD server.t-hosting.hu 5.3-RELEASE-p17 FreeBSD 5.3-RELEASE-p17 #0: Mon Jul 4 20:23:15 CEST 2005 root@server.t-hosting.hu:/usr/src/sys/amd64/compile/FREEBSD amd64 >Description: According to http://wikitest.freebsd.org/moin.cgi/PortsLongtermTargets the new patch naming convention requires to use :: signs for specifying paths in the patch filenames, e.g. patch-src::config.c, but Porter's Handbook describes the old naming convention, e.g. patch-src-config.c. This patch updates Porter's Handbook to explain the new rule. >How-To-Repeat: >Fix: --- book.sgml.diff begins here --- --- /usr/doc/en_US.ISO8859-1/books/porters-handbook/book.sgml Thu Dec 15 09:49:06 2005 +++ ./book.sgml Fri Dec 16 21:21:09 2005 @@ -635,11 +635,14 @@ * indicates the pathnames of the files that are patched, such as patch-Imakefile or - patch-src-config.h. These files should + patch-src::config.h. All patches must be + relative to WRKSRC (generally the directory your + port's tarball unpacks itself into, that being where the build is + done), and the / signs must be substituted with :: in this relative + path when constructing patch filenames, as the example represents + above. The patch files should be stored in PATCHDIR, from where they will be - automatically applied. All patches must be relative to - WRKSRC (generally the directory your port's - tarball unpacks itself into, that being where the build is done). + automatically applied. To make fixes and upgrades easier, you should avoid having more than one patch fix the same file (e.g., patch-file and patch-file2 both changing --- book.sgml.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Fri Dec 16 21:20:07 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01ED916A41F for ; Fri, 16 Dec 2005 21:20:07 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B228243D4C for ; Fri, 16 Dec 2005 21:20:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBGLK6P2087321 for ; Fri, 16 Dec 2005 21:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBGLK6iY087320; Fri, 16 Dec 2005 21:20:06 GMT (envelope-from gnats) Date: Fri, 16 Dec 2005 21:20:06 GMT Message-Id: <200512162120.jBGLK6iY087320@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: linimon@lonesome.com (Mark Linimon) Cc: Subject: Re: docs/90515: Use new patch naming convention in Porter's Handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mark Linimon List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Dec 2005 21:20:07 -0000 The following reply was made to PR docs/90515; it has been noted by GNATS. From: linimon@lonesome.com (Mark Linimon) To: Gabor Kovesdan Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/90515: Use new patch naming convention in Porter's Handbook Date: Fri, 16 Dec 2005 15:10:19 -0600 On Fri, Dec 16, 2005 at 09:29:33PM +0100, Gabor Kovesdan wrote: > According to http://wikitest.freebsd.org/moin.cgi/PortsLongtermTargets the new > patch naming convention requires to use :: signs for specifying paths in the > patch filenames, e.g. patch-src::config.c, but Porter's Handbook describes the > old naming convention, e.g. patch-src-config.c. Then the wiki is wrong. The Porter's Handbook is correct. Is the other part of your change still relevant even with this being the case? From owner-freebsd-doc@FreeBSD.ORG Fri Dec 16 21:20:10 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DA1C16A41F for ; Fri, 16 Dec 2005 21:20:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A852143D68 for ; Fri, 16 Dec 2005 21:20:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBGLK9O4087328 for ; Fri, 16 Dec 2005 21:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBGLK9Pb087327; Fri, 16 Dec 2005 21:20:09 GMT (envelope-from gnats) Date: Fri, 16 Dec 2005 21:20:09 GMT Message-Id: <200512162120.jBGLK9Pb087327@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= Cc: Subject: Re: docs/90515: Use new patch naming convention in Porter's Handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Dec 2005 21:20:10 -0000 The following reply was made to PR docs/90515; it has been noted by GNATS. From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= To: Mark Linimon Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/90515: Use new patch naming convention in Porter's Handbook Date: Fri, 16 Dec 2005 22:12:48 +0100 Mark Linimon wrote: >On Fri, Dec 16, 2005 at 09:29:33PM +0100, Gabor Kovesdan wrote: > > >>According to http://wikitest.freebsd.org/moin.cgi/PortsLongtermTargets the new >>patch naming convention requires to use :: signs for specifying paths in the >>patch filenames, e.g. patch-src::config.c, but Porter's Handbook describes the >>old naming convention, e.g. patch-src-config.c. >> >> > >Then the wiki is wrong. The Porter's Handbook is correct. > >Is the other part of your change still relevant even with this being the case? > > No. So, if I make a port, I should use the patch-src-config.c form instead of patch-src::config.c? From owner-freebsd-doc@FreeBSD.ORG Fri Dec 16 21:20:13 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF57C16A41F for ; Fri, 16 Dec 2005 21:20:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53C0543D4C for ; Fri, 16 Dec 2005 21:20:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBGLKCkv087335 for ; Fri, 16 Dec 2005 21:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBGLKCOT087334; Fri, 16 Dec 2005 21:20:12 GMT (envelope-from gnats) Date: Fri, 16 Dec 2005 21:20:12 GMT Message-Id: <200512162120.jBGLKCOT087334@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: linimon@lonesome.com (Mark Linimon) Cc: Subject: Re: docs/90515: Use new patch naming convention in Porter's Handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mark Linimon List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Dec 2005 21:20:13 -0000 The following reply was made to PR docs/90515; it has been noted by GNATS. From: linimon@lonesome.com (Mark Linimon) To: =?iso-8859-1?Q?K=F6vesd=E1n_G=E1bor?= Cc: Mark Linimon , FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/90515: Use new patch naming convention in Porter's Handbook Date: Fri, 16 Dec 2005 15:19:23 -0600 On Fri, Dec 16, 2005 at 10:12:48PM +0100, Kövesdán Gábor wrote: > No. So, if I make a port, I should use the patch-src-config.c form > instead of patch-src::config.c? Correct. From owner-freebsd-doc@FreeBSD.ORG Sat Dec 17 01:11:52 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EE6716A422; Sat, 17 Dec 2005 01:11:52 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4831C43D45; Sat, 17 Dec 2005 01:11:52 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (pav@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBH1Bp4l001416; Sat, 17 Dec 2005 01:11:51 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBH1Bpf5001412; Sat, 17 Dec 2005 01:11:51 GMT (envelope-from pav) Date: Sat, 17 Dec 2005 01:11:51 GMT From: Pav Lucistnik Message-Id: <200512170111.jBH1Bpf5001412@freefall.freebsd.org> To: gabor.kovesdan@t-hosting.hu, pav@FreeBSD.org, freebsd-doc@FreeBSD.org Cc: Subject: Re: docs/90515: Use new patch naming convention in Porter's Handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Dec 2005 01:11:52 -0000 Synopsis: Use new patch naming convention in Porter's Handbook State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Sat Dec 17 01:11:00 UTC 2005 State-Changed-Why: Oh you got it backwards. :: is old way and should not be used for new work. The wiki page is merely tracking a progress of getting rid of ::'s. The text in the header is a longterm target of "not using :: in patchfile name". http://www.freebsd.org/cgi/query-pr.cgi?pr=90515 From owner-freebsd-doc@FreeBSD.ORG Sat Dec 17 12:00:14 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A39D16A41F for ; Sat, 17 Dec 2005 12:00:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C52BE43D5F for ; Sat, 17 Dec 2005 12:00:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBHC0ChT045839 for ; Sat, 17 Dec 2005 12:00:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBHC0COo045838; Sat, 17 Dec 2005 12:00:12 GMT (envelope-from gnats) Resent-Date: Sat, 17 Dec 2005 12:00:12 GMT Resent-Message-Id: <200512171200.jBHC0COo045838@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Wojciech A. Koszek" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C0FE16A41F for ; Sat, 17 Dec 2005 11:52:26 +0000 (GMT) (envelope-from dunstan@freebsd.czest.pl) Received: from freebsd.czest.pl (freebsd.czest.pl [80.48.250.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D29543D45 for ; Sat, 17 Dec 2005 11:52:25 +0000 (GMT) (envelope-from dunstan@freebsd.czest.pl) Received: from freebsd.czest.pl (freebsd.czest.pl [80.48.250.4]) by freebsd.czest.pl (8.12.10/8.12.9) with ESMTP id jBHBsrPx066461 for ; Sat, 17 Dec 2005 11:54:54 GMT (envelope-from dunstan@freebsd.czest.pl) Received: (from dunstan@localhost) by freebsd.czest.pl (8.13.4/8.12.9/Submit) id jBHBsrmP066460; Sat, 17 Dec 2005 11:54:53 GMT (envelope-from dunstan) Message-Id: <200512171154.jBHBsrmP066460@freebsd.czest.pl> Date: Sat, 17 Dec 2005 11:54:53 GMT From: "Wojciech A. Koszek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/90540: [PATCH] Minor style tweak for namei.9 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Wojciech A. Koszek" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Dec 2005 12:00:14 -0000 >Number: 90540 >Category: docs >Synopsis: [PATCH] Minor style tweak for namei.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 17 12:00:11 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Wojciech A. Koszek >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD laptop.freebsd.czest.pl 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Wed Dec 14 22:20:34 CET 2005 dunstan@laptop.freebsd.czest.pl:/usr/obj/usr/src/sys/LAPTOP i386 >Description: Currently, description looks like that: (man namei): > results of NDHASGIANT.() >How-To-Repeat: >Fix: With ru@ solution: --- diff.0.namei.9 begins here --- (c) 2005 Patch against FreeBSD 7.0-CURRENT, kern.osreldate: 700008. diff -upr /usr/src/share/man/man9/namei.9 src/share/man/man9/namei.9 --- /usr/src/share/man/man9/namei.9 Fri Nov 18 11:52:24 2005 +++ src/share/man/man9/namei.9 Sun Dec 11 23:50:32 2005 @@ -82,7 +82,7 @@ will acquire it if the caller indicates in which case the caller must later release .Va Giant based on the results of -.Fn NDHASGIANT. +.Fn NDHASGIANT . .Pp The .Fn NDINIT --- diff.0.namei.9 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sat Dec 17 12:00:14 2005 Return-Path: X-Original-To: freebsd-doc@hub.freebsd.org Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDC4316A41F for ; Sat, 17 Dec 2005 12:00:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A7E143D64 for ; Sat, 17 Dec 2005 12:00:13 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBHC0DiX045874 for ; Sat, 17 Dec 2005 12:00:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBHC0DOL045872; Sat, 17 Dec 2005 12:00:13 GMT (envelope-from gnats) Resent-Date: Sat, 17 Dec 2005 12:00:13 GMT Resent-Message-Id: <200512171200.jBHC0DOL045872@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-doc@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Wojciech A. Koszek" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0718216A41F for ; Sat, 17 Dec 2005 11:53:01 +0000 (GMT) (envelope-from dunstan@freebsd.czest.pl) Received: from freebsd.czest.pl (freebsd.czest.pl [80.48.250.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5980D43D45 for ; Sat, 17 Dec 2005 11:53:00 +0000 (GMT) (envelope-from dunstan@freebsd.czest.pl) Received: from freebsd.czest.pl (freebsd.czest.pl [80.48.250.4]) by freebsd.czest.pl (8.12.10/8.12.9) with ESMTP id jBHBtTPx066530 for ; Sat, 17 Dec 2005 11:55:29 GMT (envelope-from dunstan@freebsd.czest.pl) Received: (from dunstan@localhost) by freebsd.czest.pl (8.13.4/8.12.9/Submit) id jBHBtTpF066529; Sat, 17 Dec 2005 11:55:29 GMT (envelope-from dunstan) Message-Id: <200512171155.jBHBtTpF066529@freebsd.czest.pl> Date: Sat, 17 Dec 2005 11:55:29 GMT From: "Wojciech A. Koszek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: docs/90541: [PATCH] Missing include in VFS_LOCK_GIANT.9 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Wojciech A. Koszek" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Dec 2005 12:00:14 -0000 >Number: 90541 >Category: docs >Synopsis: [PATCH] Missing include in VFS_LOCK_GIANT.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 17 12:00:12 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Wojciech A. Koszek >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD laptop.freebsd.czest.pl 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Wed Dec 14 22:20:34 CET 2005 dunstan@laptop.freebsd.czest.pl:/usr/obj/usr/src/sys/LAPTOP i386 >Description: mount.h is the place where VFS_UNLOCK_GIANT is defined. dunstan@laptop:(/usr/src/sys/sys)$ grep VFS_UNLOCK_GIANT * mount.h:#define VFS_UNLOCK_GIANT(locked) if ((locked)) mtx_unlock(&Giant); >How-To-Repeat: >Fix: --- diff.0.VFS_LOCK_GIANT.9 begins here --- (c) 2005 Patch against FreeBSD 7.0-CURRENT, kern.osreldate: 700008. diff -upr /usr/src/share/man/man9/VFS_LOCK_GIANT.9 src/share/man/man9/VFS_LOCK_GIANT.9 --- /usr/src/share/man/man9/VFS_LOCK_GIANT.9 Fri Nov 18 15:01:11 2005 +++ src/share/man/man9/VFS_LOCK_GIANT.9 Sat Dec 10 22:53:24 2005 @@ -35,6 +35,7 @@ .Nm VFS_UNLOCK_GIANT .Nd "conditionally lock and unlock Giant around entry into VFS" .Sh SYNOPSIS +.In sys/mount.h .In sys/param.h .In sys/vnode.h .Ft int --- diff.0.VFS_LOCK_GIANT.9 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sat Dec 17 15:14:29 2005 Return-Path: X-Original-To: doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 464A716A41F for ; Sat, 17 Dec 2005 15:14:29 +0000 (GMT) (envelope-from rharding@mitechie.com) Received: from mitechie.com (mitechie.com [69.56.173.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0B0843D5A for ; Sat, 17 Dec 2005 15:14:28 +0000 (GMT) (envelope-from rharding@mitechie.com) Received: from localhost (localhost [127.0.0.1]) by mitechie.com (Postfix) with ESMTP id E92D237D77 for ; Sat, 17 Dec 2005 10:14:26 -0500 (EST) Received: from mitechie.com ([127.0.0.1]) by localhost (mitechie.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05458-04 for ; Sat, 17 Dec 2005 10:13:26 -0500 (EST) Received: from [192.168.0.101] (pcp0010963752pcs.watrfd01.mi.comcast.net [69.242.208.190]) by mitechie.com (Postfix) with ESMTP id 2417E37D76 for ; Sat, 17 Dec 2005 10:13:03 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v746.2) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: doc@FreeBSD.org From: Richard Harding Date: Sat, 17 Dec 2005 10:12:37 -0500 X-Mailer: Apple Mail (2.746.2) X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at mitechie.com Cc: Subject: broken links on the handbook history page X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Dec 2005 15:14:29 -0000 On: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/history.html The links at the bottom of the page for the handbook and FAQ actually link like so: file://localhost/usr/share/doc/handbook/index.html file://localhost/usr/share/doc/faq/index.html Thanks Rick From owner-freebsd-doc@FreeBSD.ORG Sat Dec 17 21:23:52 2005 Return-Path: X-Original-To: freebsd-doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAC0C16A41F for ; Sat, 17 Dec 2005 21:23:52 +0000 (GMT) (envelope-from www@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id C534F43D5A for ; Sat, 17 Dec 2005 21:23:51 +0000 (GMT) (envelope-from www@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id jBHLNpSM014896 for ; Sat, 17 Dec 2005 21:23:51 GMT (envelope-from www@www.freebsd.org) Received: (from www@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id jBHLNpNf014895 for freebsd-doc@FreeBSD.org; Sat, 17 Dec 2005 21:23:51 GMT (envelope-from www) Date: Sat, 17 Dec 2005 21:23:51 GMT From: World Wide Web Owner Message-Id: <200512172123.jBHLNpNf014895@www.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: Subject: FreeBSD web build failed on www.freebsd.org X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Dec 2005 21:23:52 -0000 ? relnotes4/doc/fr_FR.ISO8859-1/hardware/i386/index.html ? relnotes4/doc/fr_FR.ISO8859-1/hardware/i386/x15.html ? relnotes4/doc/fr_FR.ISO8859-1/hardware/i386/x26.html ? relnotes4/doc/fr_FR.ISO8859-1/installation/alpha/HTML.manifest ? relnotes4/doc/fr_FR.ISO8859-1/installation/alpha/article.html ? relnotes4/doc/fr_FR.ISO8859-1/installation/alpha/docbook.css ? relnotes4/doc/fr_FR.ISO8859-1/installation/alpha/index.html ? relnotes4/doc/fr_FR.ISO8859-1/installation/alpha/layout.html ? relnotes4/doc/fr_FR.ISO8859-1/installation/alpha/trouble.html ? relnotes4/doc/fr_FR.ISO8859-1/installation/alpha/upgrading.html ? relnotes4/doc/fr_FR.ISO8859-1/installation/i386/HTML.manifest ? relnotes4/doc/fr_FR.ISO8859-1/installation/i386/article.html ? relnotes4/doc/fr_FR.ISO8859-1/installation/i386/docbook.css ? relnotes4/doc/fr_FR.ISO8859-1/installation/i386/index.html ? relnotes4/doc/fr_FR.ISO8859-1/installation/i386/layout.html ? relnotes4/doc/fr_FR.ISO8859-1/installation/i386/trouble.html ? relnotes4/doc/fr_FR.ISO8859-1/installation/i386/upgrading.html ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/alpha/HTML.manifest ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/alpha/article.html ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/alpha/docbook.css ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/alpha/index.html ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/alpha/x168.html ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/alpha/x18.html ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/i386/HTML.manifest ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/i386/article.html ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/i386/docbook.css ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/i386/index.html ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/i386/x168.html ? relnotes4/doc/fr_FR.ISO8859-1/relnotes/i386/x18.html ===> FAQ ===> advocacy ===> commercial ===> community ===> copyright ===> developers ===> docproj ===> docs ===> donations /usr/bin/sed -e 's///' wantlist.sgml | /usr/bin/env SGML_CATALOG_FILES= /usr/local/bin/sgmlnorm -d -ifreebsd.urls.absolute -c /usr/local/share/sgml/html/catalog -D /w/www/build/www/en/donations > wantlist.html || (/bin/rm -f wantlist.html && false) /usr/local/bin/tidy -i -m -raw -preserve -f /dev/null -asxml wantlist.html *** Error code 1 (ignored) /usr/bin/sed -e 's///' donors.sgml | /usr/bin/env SGML_CATALOG_FILES= /usr/local/bin/sgmlnorm -d -ifreebsd.urls.absolute -c /usr/local/share/sgml/html/catalog -D /w/www/build/www/en/donations > donors.html || (/bin/rm -f donors.html && false) /usr/local/bin/sgmlnorm:0:2092:6:E: end tag for element "TR" which is not open *** Error code 1 Stop in /w/www/build/www/en/donations. *** Error code 1 Stop in /w/www/build/www/en. 1.61 real 0.74 user 0.45 sys