From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 03:53:46 2003 Return-Path: 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 558C037B404; Sun, 20 Apr 2003 03:53:45 -0700 (PDT) Received: from smtp.eos.ocn.ne.jp (eos.ocn.ne.jp [211.6.83.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F91843FA3; Sun, 20 Apr 2003 03:53:44 -0700 (PDT) (envelope-from hrs@eos.ocn.ne.jp) Received: from mail.allbsd.org (p53054-adsao12honb4-acca.tokyo.ocn.ne.jp [220.96.135.54]) by smtp.eos.ocn.ne.jp (Postfix) with ESMTP id 7879C278B; Sun, 20 Apr 2003 19:53:43 +0900 (JST) Received: from localhost (alph.allbsd.org [192.168.0.10]) h3KAqpJp071300; Sun, 20 Apr 2003 19:52:51 +0900 (JST) (envelope-from hrs@eos.ocn.ne.jp) Date: Sun, 20 Apr 2003 19:52:05 +0900 (JST) Message-Id: <20030420.195205.50333554.hrs@eos.ocn.ne.jp> To: bmah@FreeBSD.org From: Hiroki Sato In-Reply-To: <200304191749.h3JHndxV053505@bmah.dyndns.org> References: <200304191540.h3JFeSxV052609@bmah.dyndns.org> <20030420.020436.102903006.hrs@eos.ocn.ne.jp> <200304191749.h3JHndxV053505@bmah.dyndns.org> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Sun_Apr_20_19:52:05_2003_003)--" Content-Transfer-Encoding: 7bit cc: doc@FreeBSD.org Subject: Re: suggestion for adding a l10n-capable doc-format navi X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 10:53:46 -0000 ----Next_Part(Sun_Apr_20_19:52:05_2003_003)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit bmah@FreeBSD.org (Bruce A. Mah) wrote in <200304191749.h3JHndxV053505@bmah.dyndns.org>: bmah> > Yes, you have got a point. I made another patch that makes the link bmah> > be generated only when ${FORMATS} includes both of "html" and "html-split," bmah> > and "WITH_DOCFORMAT_NAVI_LINK=YES." bmah> bmah> OK. I *think* this is better. This will make it more conservative bmah> about adding the navi-link, but it will give it to us whenever we know bmah> that we have both versions available. (Plus we can still override it bmah> if for some reason we need to do this.) How about the following: 1) WITH_FOO is defined and WITH_FOO!=NO, it means YES. 2) WITH_FOO is defined and WITH_FOO==NO, it means NO. 3) WITH_FOO is not defined, it means NO. A problem of that defining of WITH_FOO always means YES is that we cannot disable it if it is enabled by default in Makefile using WITH_FOO?=YES. But as you pointed out, in other places this sort of variables that is defined mean YES regardless of what the value was. The above behavior is not against the old one, I think. Besides, I changed the logic for WITH_DOCFORMAT_NAVI_LINK again in the attached patch like this: if $WITH_DOCFORMAT_NAVI_LINK is defined if $WITH_DOCFORMAT_NAVI_LINK != NO endif else if $FORMATS includes both "html" and "html-split" endif Namely, $WITH_DOCFORMAT_NAVI_LINK has priority. Even if html and/or html-split version do not exist, specifying WITH_DOCFORMAT_NAVI_LINK=YES we can generate the navi-link. If the variable is not defined, the link is generated only when the two versions are built at the same time. I guess the latter behavior does not become harmful. I think I will commit the patch and backout WITH_DOCFORMAT_NAVI_LINK?=YES in doc/en_US.ISO8859-1. Any comments? -- | Hiroki SATO / ----Next_Part(Sun_Apr_20_19:52:05_2003_003)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="doc.docbook.mk.diff" Index: doc.docbook.mk =================================================================== RCS file: /home/dcvs/doc/share/mk/doc.docbook.mk,v retrieving revision 1.82 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.82 doc.docbook.mk --- doc.docbook.mk 19 Apr 2003 11:39:30 -0000 1.82 +++ doc.docbook.mk 20 Apr 2003 10:39:51 -0000 @@ -192,18 +192,22 @@ PNMTOPSFLAGS+= -rle .endif -.if !defined(WITH_INLINE_LEGALNOTICE) || empty(WITH_INLINE_LEGALNOTICE) +.if !defined(WITH_INLINE_LEGALNOTICE) || (${WITH_INLINE_LEGALNOTICE} == "NO") HTMLFLAGS+= -V %generate-legalnotice-link% .endif -.if defined(WITH_ARTICLE_TOC) && !empty(WITH_ARTICLE_TOC) +.if defined(WITH_ARTICLE_TOC) && (${WITH_ARTICLE_TOC} != "NO") HTMLFLAGS+= -V %generate-article-toc% PRINTFLAGS+= -V %generate-article-toc% .endif -.if defined(WITH_BIBLIOXREF_TITLE) && !empty(WITH_BIBLIOXREF_TITLE) +.if defined(WITH_BIBLIOXREF_TITLE) && (${WITH_BIBLIOXREF_TITLE} != "NO") HTMLFLAGS+= -V biblio-xref-title PRINTFLAGS+= -V biblio-xref-title .endif -.if defined(WITH_DOCFORMAT_NAVI_LINK) && !empty(WITH_DOCFORMAT_NAVI_LINK) +.if defined(WITH_DOCFORMAT_NAVI_LINK) +.if (${WITH_DOCFORMAT_NAVI_LINK} != "NO") +HTMLFLAGS+= -V %generate-docformat-navi-link% +.endif +.elif (${FORMATS:Mhtml} == "html") && (${FORMATS:Mhtml-split} == "html-split") HTMLFLAGS+= -V %generate-docformat-navi-link% .endif ----Next_Part(Sun_Apr_20_19:52:05_2003_003)---- From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 04:32:14 2003 Return-Path: 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 DF7DF37B401; Sun, 20 Apr 2003 04:32:14 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE01843FDF; Sun, 20 Apr 2003 04:32:13 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id A0E5910BF82; Sun, 20 Apr 2003 13:32:11 +0200 (CEST) Date: Sun, 20 Apr 2003 13:32:11 +0200 From: "Simon L. Nielsen" To: Hiroki Sato Message-ID: <20030420113210.GA390@nitro.dk> References: <200304191540.h3JFeSxV052609@bmah.dyndns.org> <20030420.020436.102903006.hrs@eos.ocn.ne.jp> <200304191749.h3JHndxV053505@bmah.dyndns.org> <20030420.195205.50333554.hrs@eos.ocn.ne.jp> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rwEMma7ioTxnRzrJ" Content-Disposition: inline In-Reply-To: <20030420.195205.50333554.hrs@eos.ocn.ne.jp> User-Agent: Mutt/1.5.4i cc: bmah@FreeBSD.org cc: doc@FreeBSD.org Subject: Re: suggestion for adding a l10n-capable doc-format navi X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 11:32:15 -0000 --rwEMma7ioTxnRzrJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2003.04.20 19:52:05 +0900, Hiroki Sato wrote: > How about the following: >=20 > 1) WITH_FOO is defined and WITH_FOO!=3DNO, it means YES. > 2) WITH_FOO is defined and WITH_FOO=3D=3DNO, it means NO. > 3) WITH_FOO is not defined, it means NO. Personally I think this is a bad idea since most other places in the FreeBSD makefiles it is only important if the variabel is set or not. > A problem of that defining of WITH_FOO always means YES is that > we cannot disable it if it is enabled by default in Makefile > using WITH_FOO?=3DYES. But as you pointed out, in other places > this sort of variables that is defined mean YES regardless of what > the value was. The above behavior is not against the old one, I think. The way the disabled case is handled some other places is by using a NO_FOO or NOFOO variable which then takes precedents over the WITH_FOO variable e.g. by : =2Eif defined(NO_FOO) =2Eundef WITH_FOO =2Eendif I know this seems more troublesome but IMHO it is preferable since it is more consitent with all the other FreeBSD makefiles. I think it would be more intuitive if setting a make variable to NO really disabled the variable in all the FreeBSD makefiles but since it doesn't I think it is more or less impossible to remember when using NO is ok and when it is not. I know this seems like a bike shed (and probably is a bit) but I think consitency is rather important. --=20 Simon L. Nielsen --rwEMma7ioTxnRzrJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+ooU68kocFXgPTRwRAuSAAJsFtFPfT8xDOZWIhEI0xBluMlbTJACgu3OJ z3V0QuE7qPD9L91BjzJX1lo= =cULz -----END PGP SIGNATURE----- --rwEMma7ioTxnRzrJ-- From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 06:12:48 2003 Return-Path: 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 D504437B401; Sun, 20 Apr 2003 06:12:48 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71E7E43F85; Sun, 20 Apr 2003 06:12:48 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from freefall.freebsd.org (brueffer@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3KDCmUp095408; Sun, 20 Apr 2003 06:12:48 -0700 (PDT) (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3KDCmC6095404; Sun, 20 Apr 2003 15:12:48 +0200 (CEST) Date: Sun, 20 Apr 2003 15:12:48 +0200 (CEST) From: Christian Brueffer Message-Id: <200304201312.h3KDCmC6095404@freefall.freebsd.org> To: jeffi@rcn.com, brueffer@FreeBSD.org, freebsd-doc@FreeBSD.org, brueffer@FreeBSD.org Subject: Re: docs/51164: config.8 grammar fix X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 13:12:49 -0000 Synopsis: config.8 grammar fix State-Changed-From-To: open->patched State-Changed-By: brueffer State-Changed-When: Sun Apr 20 15:11:19 CEST 2003 State-Changed-Why: Committed the patch to -CURRENT, thanks! Responsible-Changed-From-To: freebsd-doc->brueffer Responsible-Changed-By: brueffer Responsible-Changed-When: Sun Apr 20 15:11:19 CEST 2003 Responsible-Changed-Why: I'll handle the MFC http://www.freebsd.org/cgi/query-pr.cgi?pr=51164 From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 06:20:13 2003 Return-Path: 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 E521E37B401 for ; Sun, 20 Apr 2003 06:20:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B72543FA3 for ; Sun, 20 Apr 2003 06:20:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3KDKCUp097346 for ; Sun, 20 Apr 2003 06:20:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3KDKCgP097345; Sun, 20 Apr 2003 06:20:12 -0700 (PDT) Resent-Date: Sun, 20 Apr 2003 06:20:12 -0700 (PDT) Resent-Message-Id: <200304201320.h3KDKCgP097345@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, "Simon L.Nielsen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA64437B401 for ; Sun, 20 Apr 2003 06:10:18 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FD8D43FAF for ; Sun, 20 Apr 2003 06:10:18 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id 0B3E110BF82; Sun, 20 Apr 2003 15:10:17 +0200 (CEST) Message-Id: <20030420131017.0B3E110BF82@arthur.nitro.dk> Date: Sun, 20 Apr 2003 15:10:17 +0200 (CEST) From: "Simon L.Nielsen" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51183: [patch] style(9) does not reference style.Makefile(5) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Simon L.Nielsen" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 13:20:14 -0000 >Number: 51183 >Category: docs >Synopsis: [patch] style(9) does not reference style.Makefile(5) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Apr 20 06:20:12 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Simon L. Nielsen >Release: FreeBSD 4.8-RC i386 >Organization: >Environment: >Description: The style(9) manpage does not reference the new style.Makefile(5) manpage. By adding a reference there is a larger chance that people notice that style.Makefile(5) exists. >How-To-Repeat: >Fix: --- style9.patch begins here --- Index: style.9 =================================================================== RCS file: /home/ncvs/src/share/man/man9/style.9,v retrieving revision 1.100 diff -u -d -r1.100 style.9 --- style.9 25 Mar 2003 19:46:55 -0000 1.100 +++ style.9 20 Apr 2003 12:56:19 -0000 @@ -787,6 +787,7 @@ .Xr indent 1 , .Xr lint 1 , .Xr err 3 , +.Xr style.Makefile 5 , .Xr sysexits 3 , .Xr warn 3 .Sh HISTORY --- style9.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 08:00:31 2003 Return-Path: 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 94FB837B401 for ; Sun, 20 Apr 2003 08:00:31 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6C7443FCB for ; Sun, 20 Apr 2003 08:00:30 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3KF0UUp054822 for ; Sun, 20 Apr 2003 08:00:30 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3KF0UYY054821; Sun, 20 Apr 2003 08:00:30 -0700 (PDT) Resent-Date: Sun, 20 Apr 2003 08:00:30 -0700 (PDT) Resent-Message-Id: <200304201500.h3KF0UYY054821@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, Jeff Ito Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5584D37B401 for ; Sun, 20 Apr 2003 07:57:48 -0700 (PDT) Received: from thevoid.delnoch.net (thevoid.delnoch.net [66.93.83.238]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CC3E43FE1 for ; Sun, 20 Apr 2003 07:57:47 -0700 (PDT) (envelope-from jeff@delnoch.net) Received: by thevoid.delnoch.net (Postfix, from userid 1000) id 285CFF7CD; Sun, 20 Apr 2003 10:57:37 -0400 (EDT) Message-Id: <20030420145737.285CFF7CD@thevoid.delnoch.net> Date: Sun, 20 Apr 2003 10:57:37 -0400 (EDT) From: Jeff Ito To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51187: logger(1) -A clarification X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jeff Ito List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 15:00:32 -0000 >Number: 51187 >Category: docs >Synopsis: logger(1) -A clarification >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 Apr 20 08:00:30 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Jeff Ito >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD freebsd.lab 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Apr 19 18:59:37 EDT 2003 jeff@freebsd.lab:/usr/obj/q/fbsd/src/sys/GENERIC i386 >Description: Description of -A flag in logger(1) needs to be expanded/clarified >How-To-Repeat: man 1 logger >Fix: I think this helps, or something along these lines. Index: logger.1 =================================================================== RCS file: /opt/cvs/fbsd/src/usr.bin/logger/logger.1,v retrieving revision 1.13 diff -u -r1.13 logger.1 --- logger.1 20 Apr 2002 21:33:10 -0000 1.13 +++ logger.1 20 Apr 2003 14:50:08 -0000 @@ -64,11 +64,13 @@ .Nm to use IPv6 addresses only. .It Fl A -Try to send the message to only one address -even if the host has more than one A or AAAA record. If this option is specified, .Nm tries to send the message to all addresses. +By default +.Nm +tries to send the message to only one address +even if the host has more than one A or AAAA record. .It Fl i Log the process id of the logger process with each line. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 08:19:51 2003 Return-Path: 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 9643237B401 for ; Sun, 20 Apr 2003 08:19:51 -0700 (PDT) Received: from haakonia.hitnet.rwth-aachen.de (haakonia.hitnet.RWTH-Aachen.DE [137.226.181.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id C305E43F75 for ; Sun, 20 Apr 2003 08:19:50 -0700 (PDT) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by haakonia.hitnet.rwth-aachen.de (Postfix) with ESMTP id 7CBACA91E for ; Sun, 20 Apr 2003 17:19:49 +0200 (CEST) Received: by gondor.middleearth (Postfix, from userid 1001) id 979E246A4; Sun, 20 Apr 2003 17:19:48 +0200 (CEST) Date: Sun, 20 Apr 2003 17:19:47 +0200 From: Christian Brueffer To: doc@freebsd.org Message-ID: <20030420151947.GJ585@unixpages.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="uuKVzAmB+c+zQlhu" Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.0-CURRENT X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D Subject: Renaming Handbook S/Key chapter X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 15:19:51 -0000 --uuKVzAmB+c+zQlhu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, is anyone opposed to changing the name of the S/Key chapter in the handbook to something like 'One time passwords' or similar? Since this chapter covers not only S/Key but also OPIE and presumely many people don't know what S/Key is from just reading the name, this should be a good thing. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --uuKVzAmB+c+zQlhu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+orqTbHYXjKDtmC0RAvYfAKCVZ5n8rSLc/ZlKhS0wqFh2bhCzkACgoFvV vy/VHPMUTOg87i3LzBtc3HU= =XzH1 -----END PGP SIGNATURE----- --uuKVzAmB+c+zQlhu-- From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 08:59:13 2003 Return-Path: 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 4ED6737B404 for ; Sun, 20 Apr 2003 08:59:13 -0700 (PDT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id B384543FCB for ; Sun, 20 Apr 2003 08:59:11 -0700 (PDT) (envelope-from blueeskimo@gmx.net) Received: (qmail 21963 invoked by uid 65534); 20 Apr 2003 15:59:10 -0000 Received: from i216-58-29-174.gta.igs.net (EHLO [216.58.29.174]) (216.58.29.174) by mail.gmx.net (mp017-rz3) with SMTP; 20 Apr 2003 17:59:10 +0200 From: Adam To: doc@FreeBSD.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-PR1miS81PzFzw9PS4+B0" Organization: Message-Id: <1050854348.68562.20.camel@jake> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.4 Date: 20 Apr 2003 11:59:08 -0400 cc: FreeBSD Mailing List Subject: Inaccuracy in 'The Handbook' printer setup manual X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 15:59:13 -0000 --=-PR1miS81PzFzw9PS4+B0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable http://www.freebsd.org/doc/handbook/printing-intro-setup.html#PRINTING-TEST= ING It says: ***************************************************************************= **** 11.3.1.3.2.1 Checking a Parallel Printer This section tells you how to check if FreeBSD can communicate with a printer connected to a parallel port. To test a printer on a parallel port: 1. Become root with su(1). =20 2. Send data to the printer. =20 * If the printer can print plain text, then use lptest(1). Type: =20 =20 # lptest > /dev/lptN =20 Where N is the number of the parallel port, starting from zero. =20 * If the printer understands PostScript or other printer language, then send a small program to the printer. Type: =20 =20 # cat > /dev/lptN =20 Then, line by line, type the program carefully as you cannot edit a line once you have pressed RETURN or ENTER. When you have finished entering the program, press CONTROL+D, or whatever your end of file key is. =20 Alternatively, you can put the program in a file and type: =20 =20 # cat file > /dev/lptN =20 Where file is the name of the file containing the program you want to send to the printer. =20 You should see something print. Do not worry if the text does not look right; we will fix such things later. ***************************************************************************= **** That last part is not entirely true (where is says you should see something print if you pipe to /dev/lptN). This does *NOT* work with some printers (including my Canon S600). However, once apsfilter+ghostscript are installed, the printer works fine. But piping to /dev/lpt0 (or whatever device you are set up for) does not print anything. On my printer in particular, the light blinks when I write to /dev/lpt0, but nothing comes out. This inaccuracy cost me a good day's worth of troubleshooting, because the handbook strongly advised getting this part working before moving on to config'ing printcap and apsfilter. I eventually gave up on this part and decided to move on, at which point I was amazed when it actually worked. I hope this clarification saves someone some heartache in the future. --=20 Adam --=-PR1miS81PzFzw9PS4+B0 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+osPMu3o4GBMSDL4RAjmwAJwLE9BaJ6P0CcTmm5XUUFkvpjKG1QCfQFsA 429mlMdFAy8Vm3fpYn5Gx3I= =8OHT -----END PGP SIGNATURE----- --=-PR1miS81PzFzw9PS4+B0-- From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 09:08:36 2003 Return-Path: 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 AF74737B401 for ; Sun, 20 Apr 2003 09:08:36 -0700 (PDT) Received: from sccrmhc01.attbi.com (sccrmhc01.attbi.com [204.127.202.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4F3543F75 for ; Sun, 20 Apr 2003 09:08:35 -0700 (PDT) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org (12-240-204-110.client.attbi.com[12.240.204.110]) by sccrmhc01.attbi.com (sccrmhc01) with ESMTP id <2003042016083400100a2f9ge>; Sun, 20 Apr 2003 16:08:35 +0000 Received: from intruder.bmah.org (localhost [127.0.0.1]) by bmah.dyndns.org (8.12.9/8.12.9) with ESMTP id h3KG8XxV063890; Sun, 20 Apr 2003 09:08:33 -0700 (PDT) (envelope-from bmah@intruder.bmah.org) Message-Id: <200304201608.h3KG8XxV063890@bmah.dyndns.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Christian Brueffer In-Reply-To: <20030420151947.GJ585@unixpages.org> References: <20030420151947.GJ585@unixpages.org> Comments: In-reply-to Christian Brueffer message dated "Sun, 20 Apr 2003 17:19:47 +0200." From: "Bruce A. Mah" X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_1874800359P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Sun, 20 Apr 2003 09:08:33 -0700 Sender: bmah@employees.org cc: doc@freebsd.org Subject: Re: Renaming Handbook S/Key chapter X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: bmah@freebsd.org List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 16:08:37 -0000 --==_Exmh_1874800359P Content-Type: text/plain; charset=us-ascii If memory serves me right, Christian Brueffer wrote: > is anyone opposed to changing the name of the S/Key chapter in the handbook > to something like 'One time passwords' or similar? > > Since this chapter covers not only S/Key but also OPIE and presumely > many people don't know what S/Key is from just reading the name, > this should be a good thing. No objections from here. In fact, this is part of an item on the 5.1 TODO list ("Documentation rottage: S/Key"). If you'd like to finish this off (and help us check off another item) you could make a pass through this chapter and make sure that it's equally applicable to S/Key and OPIE. I saw a bunch of places where this was done at the start of the chapter (this is a Good Thing (TM)) but didn't see OPIE mentioned much near the end. Thanks! Bruce. --==_Exmh_1874800359P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) Comment: Exmh version 2.5+ 20020506 iD8DBQE+osYB2MoxcVugUsMRAjOUAKCW/pTRGcDrjADR3vQK3L9XvpKTOQCgj7pt ST1Gfmtf0eY2aoQSwQ2Q4So= =SCQL -----END PGP SIGNATURE----- --==_Exmh_1874800359P-- From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 10:40:06 2003 Return-Path: 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 4DF2E37B401 for ; Sun, 20 Apr 2003 10:40:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA97043FBD for ; Sun, 20 Apr 2003 10:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3KHe4Up061483 for ; Sun, 20 Apr 2003 10:40:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3KHe4gD061482; Sun, 20 Apr 2003 10:40:04 -0700 (PDT) Resent-Date: Sun, 20 Apr 2003 10:40:04 -0700 (PDT) Resent-Message-Id: <200304201740.h3KHe4gD061482@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, Lukas Ertl Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7F7337B401 for ; Sun, 20 Apr 2003 10:33:55 -0700 (PDT) Received: from mailbox.univie.ac.at (mailbox.univie.ac.at [131.130.1.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7224D43F93 for ; Sun, 20 Apr 2003 10:33:54 -0700 (PDT) (envelope-from le@univie.ac.at) Received: from korben.in.tern (dialin202.cc.univie.ac.at [131.130.202.202]) by mailbox.univie.ac.at (8.12.2/8.12.2) with ESMTP id h3KHXeEM101966 for ; Sun, 20 Apr 2003 19:33:43 +0200 Received: from korben.in.tern (korben.in.tern [127.0.0.1]) by korben.in.tern (8.12.9/8.12.9) with ESMTP id h3KHXamQ001965 for ; Sun, 20 Apr 2003 19:33:37 +0200 (CEST) (envelope-from le@korben.in.tern) Received: (from le@localhost) by korben.in.tern (8.12.9/8.12.9/Submit) id h3KHXZXX001964; Sun, 20 Apr 2003 19:33:35 +0200 (CEST) (envelope-from le) Message-Id: <200304201733.h3KHXZXX001964@korben.in.tern> Date: Sun, 20 Apr 2003 19:33:35 +0200 (CEST) From: Lukas Ertl To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51189: [PATCH] keep man-page fs(5) in sync with ufs/ffs/fs.h X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Lukas Ertl List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 17:40:06 -0000 >Number: 51189 >Category: docs >Synopsis: [PATCH] keep man-page fs(5) in sync with ufs/ffs/fs.h >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 20 10:40:04 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Lukas Ertl >Release: FreeBSD 5.0-CURRENT i386 >Organization: Vienna University Computer Center >Environment: System: FreeBSD korben 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Apr 19 23:49:53 CEST 2003 le@korben:/usr/src/sys/i386/compile/KORBEN i386 >Description: The man-page fs(5) doesn't reflect the recent changes of struct fs in ufs/ffs/fs.h. >How-To-Repeat: Compare fs(5) with ufs/ffs/fs.h. >Fix: --- fs.5.diff begins here --- Index: share/man/man5/fs.5 =================================================================== RCS file: /u/cvs/cvs/src/share/man/man5/fs.5,v retrieving revision 1.17 diff -u -r1.17 fs.5 --- share/man/man5/fs.5 12 Dec 2002 17:25:57 -0000 1.17 +++ share/man/man5/fs.5 20 Apr 2003 17:29:01 -0000 @@ -71,122 +71,131 @@ with the .Em super-block that is of size -.Dv SBSIZE . +.Dv SBLOCKSIZE . The following structure describes the super-block and is from the file .Aq Pa ufs/ffs/fs.h : .Bd -literal /* - * Super block for an FFS file system. + * Super block for an FFS filesystem. */ struct fs { - int32_t fs_firstfield; /* historic file system linked list, */ - int32_t fs_unused_1; /* used for incore super blocks */ - ufs_daddr_t fs_sblkno; /* addr of super-block in filesys */ - ufs_daddr_t fs_cblkno; /* offset of cyl-block in filesys */ - ufs_daddr_t fs_iblkno; /* offset of inode-blocks in filesys */ - ufs_daddr_t fs_dblkno; /* offset of first data after cg */ - int32_t fs_cgoffset; /* cylinder group offset in cylinder */ - int32_t fs_cgmask; /* used to calc mod fs_ntrak */ - time_t fs_time; /* last time written */ - int32_t fs_size; /* number of blocks in fs */ - int32_t fs_dsize; /* number of data blocks in fs */ - int32_t fs_ncg; /* number of cylinder groups */ - int32_t fs_bsize; /* size of basic blocks in fs */ - int32_t fs_fsize; /* size of frag blocks in fs */ - int32_t fs_frag; /* number of frags in a block in fs */ + int32_t fs_firstfield; /* historic filesystem linked list, */ + int32_t fs_unused_1; /* used for incore super blocks */ + int32_t fs_sblkno; /* offset of super-block in filesys */ + int32_t fs_cblkno; /* offset of cyl-block in filesys */ + int32_t fs_iblkno; /* offset of inode-blocks in filesys */ + int32_t fs_dblkno; /* offset of first data after cg */ + int32_t fs_old_cgoffset; /* cylinder group offset in cylinder */ + int32_t fs_old_cgmask; /* used to calc mod fs_ntrak */ + int32_t fs_old_time; /* last time written */ + int32_t fs_old_size; /* number of blocks in fs */ + int32_t fs_old_dsize; /* number of data blocks in fs */ + int32_t fs_ncg; /* number of cylinder groups */ + int32_t fs_bsize; /* size of basic blocks in fs */ + int32_t fs_fsize; /* size of frag blocks in fs */ + int32_t fs_frag; /* number of frags in a block in fs */ /* these are configuration parameters */ - int32_t fs_minfree; /* minimum percentage of free blocks */ - int32_t fs_rotdelay; /* num of ms for optimal next block */ - int32_t fs_rps; /* disk revolutions per second */ + int32_t fs_minfree; /* minimum percentage of free blocks */ + int32_t fs_old_rotdelay; /* num of ms for optimal next block */ + int32_t fs_old_rps; /* disk revolutions per second */ /* these fields can be computed from the others */ - int32_t fs_bmask; /* ``blkoff'' calc of blk offsets */ - int32_t fs_fmask; /* ``fragoff'' calc of frag offsets */ - int32_t fs_bshift; /* ``lblkno'' calc of logical blkno */ - int32_t fs_fshift; /* ``numfrags'' calc number of frags */ + int32_t fs_bmask; /* ``blkoff'' calc of blk offsets */ + int32_t fs_fmask; /* ``fragoff'' calc of frag offsets */ + int32_t fs_bshift; /* ``lblkno'' calc of logical blkno */ + int32_t fs_fshift; /* ``numfrags'' calc number of frags */ /* these are configuration parameters */ - int32_t fs_maxcontig; /* max number of contiguous blks */ - int32_t fs_maxbpg; /* max number of blks per cyl group */ + int32_t fs_maxcontig; /* max number of contiguous blks */ + int32_t fs_maxbpg; /* max number of blks per cyl group */ /* these fields can be computed from the others */ - int32_t fs_fragshift; /* block to frag shift */ - int32_t fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */ - int32_t fs_sbsize; /* actual size of super block */ - int32_t fs_csmask; /* csum block offset */ - int32_t fs_csshift; /* csum block number */ - int32_t fs_nindir; /* value of NINDIR */ - int32_t fs_inopb; /* value of INOPB */ - int32_t fs_nspf; /* value of NSPF */ + int32_t fs_fragshift; /* block to frag shift */ + int32_t fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */ + int32_t fs_sbsize; /* actual size of super block */ + int32_t fs_spare1[2]; /* old fs_csmask */ + /* old fs_csshift */ + int32_t fs_nindir; /* value of NINDIR */ + int32_t fs_inopb; /* value of INOPB */ + int32_t fs_old_nspf; /* value of NSPF */ /* yet another configuration parameter */ - int32_t fs_optim; /* optimization preference, see below */ -/* these fields are derived from the hardware */ - int32_t fs_npsect; /* # sectors/track including spares */ - int32_t fs_interleave; /* hardware sector interleave */ - int32_t fs_trackskew; /* sector 0 skew, per track */ -/* fs_id takes the space of the unused fs_headswitch and fs_trkseek fields */ - int32_t fs_id[2]; /* unique file system id*/ + int32_t fs_optim; /* optimization preference, see below */ + int32_t fs_old_npsect; /* # sectors/track including spares */ + int32_t fs_old_interleave; /* hardware sector interleave */ + int32_t fs_old_trackskew; /* sector 0 skew, per track */ + int32_t fs_id[2]; /* unique filesystem id */ /* sizes determined by number of cylinder groups and their sizes */ - ufs_daddr_t fs_csaddr; /* blk addr of cyl grp summary area */ - int32_t fs_cssize; /* size of cyl grp summary area */ - int32_t fs_cgsize; /* cylinder group size */ -/* these fields are derived from the hardware */ - int32_t fs_ntrak; /* tracks per cylinder */ - int32_t fs_nsect; /* sectors per track */ - int32_t fs_spc; /* sectors per cylinder */ -/* this comes from the disk driver partitioning */ - int32_t fs_ncyl; /* cylinders in file system */ -/* these fields can be computed from the others */ - int32_t fs_cpg; /* cylinders per group */ - int32_t fs_ipg; /* inodes per group */ - int32_t fs_fpg; /* blocks per group * fs_frag */ + int32_t fs_old_csaddr; /* blk addr of cyl grp summary area */ + int32_t fs_cssize; /* size of cyl grp summary area */ + int32_t fs_cgsize; /* cylinder group size */ + int32_t fs_spare2; /* old fs_ntrak */ + int32_t fs_old_nsect; /* sectors per track */ + int32_t fs_old_spc; /* sectors per cylinder */ + int32_t fs_old_ncyl; /* cylinders in filesystem */ + int32_t fs_old_cpg; /* cylinders per group */ + int32_t fs_ipg; /* inodes per group */ + int32_t fs_fpg; /* blocks per group * fs_frag */ /* this data must be re-computed after crashes */ - struct csum fs_cstotal;/* cylinder summary information */ + struct csum fs_old_cstotal; /* cylinder summary information */ /* these fields are cleared at mount time */ - int8_t fs_fmod; /* super block modified flag */ - int8_t fs_clean; /* file system is clean flag */ - int8_t fs_ronly; /* mounted read-only flag */ - int8_t fs_flags; /* currently unused flag */ - u_char fs_fsmnt[MAXMNTLEN]; /* name mounted on */ + int8_t fs_fmod; /* super block modified flag */ + int8_t fs_clean; /* filesystem is clean flag */ + int8_t fs_ronly; /* mounted read-only flag */ + int8_t fs_old_flags; /* old FS_ flags */ + u_char fs_fsmnt[MAXMNTLEN]; /* name mounted on */ + u_char fs_volname[MAXVOLLEN]; /* volume name */ + u_int64_t fs_swuid; /* system-wide uid */ + int32_t fs_pad; /* due to alignment of fs_swuid */ /* these fields retain the current block allocation info */ - int32_t fs_cgrotor; /* last cg searched */ - struct csum *fs_csp[MAXCSBUFS];/* list of fs_cs info buffers */ - int32_t *fs_maxcluster;/* max cluster in each cyl group */ - int32_t fs_cpc; /* cyl per cycle in postbl */ - int16_t fs_opostbl[16][8]; /* old rotation block list head */ - int32_t fs_sparecon[50]; /* reserved for future constants */ - int32_t fs_contigsumsize; /* size of cluster summary array */ - int32_t fs_maxsymlinklen;/* max length of an internal symlink */ - int32_t fs_inodefmt; /* format of on-disk inodes */ - u_int64_t fs_maxfilesize;/* maximum representable file size */ - int64_t fs_qbmask; /* ~fs_bmask for use with 64-bit size */ - int64_t fs_qfmask; /* ~fs_fmask for use with 64-bit size */ - int32_t fs_state; /* validate fs_clean field */ - int32_t fs_postblformat;/* format of positional layout tables */ - int32_t fs_nrpos; /* number of rotational positions */ - int32_t fs_postbloff; /* (u_int16) rotation block list head */ - int32_t fs_rotbloff; /* (u_int8) blocks for each rotation */ - int32_t fs_magic; /* magic number */ - u_int8_t fs_space[1]; /* list of blocks for each rotation */ -/* actually longer */ + int32_t fs_cgrotor; /* last cg searched */ + void *fs_ocsp[NOCSPTRS]; /* padding; was list of fs_cs buffers */ + u_int8_t *fs_contigdirs; /* # of contiguously allocated dirs */ + struct csum *fs_csp; /* cg summary info buffer for fs_cs */ + int32_t *fs_maxcluster; /* max cluster in each cyl group */ + u_int *fs_active; /* used by snapshots to track fs */ + int32_t fs_old_cpc; /* cyl per cycle in postbl */ + int32_t fs_maxbsize; /* maximum blocking factor permitted */ + int64_t fs_sparecon64[17]; /* old rotation block list head */ + int64_t fs_sblockloc; /* byte offset of standard superblock */ + struct csum_total fs_cstotal; /* cylinder summary information */ + ufs_time_t fs_time; /* last time written */ + int64_t fs_size; /* number of blocks in fs */ + int64_t fs_dsize; /* number of data blocks in fs */ + ufs2_daddr_t fs_csaddr; /* blk addr of cyl grp summary area */ + int64_t fs_pendingblocks; /* blocks in process of being freed */ + int32_t fs_pendinginodes; /* inodes in process of being freed */ + int32_t fs_snapinum[FSMAXSNAP]; /* list of snapshot inode numbers */ + int32_t fs_avgfilesize; /* expected average file size */ + int32_t fs_avgfpdir; /* expected # of files per directory */ + int32_t fs_save_cgsize; /* save real cg size to use fs_bsize */ + int32_t fs_sparecon32[26]; /* reserved for future constants */ + int32_t fs_flags; /* see FS_ flags below */ + int32_t fs_contigsumsize; /* size of cluster summary array */ + int32_t fs_maxsymlinklen; /* max length of an internal symlink */ + int32_t fs_old_inodefmt; /* format of on-disk inodes */ + u_int64_t fs_maxfilesize; /* maximum representable file size */ + int64_t fs_qbmask; /* ~fs_bmask for use with 64-bit size */ + int64_t fs_qfmask; /* ~fs_fmask for use with 64-bit size */ + int32_t fs_state; /* validate fs_clean field */ + int32_t fs_old_postblformat; /* format of positional layout tables */ + int32_t fs_old_nrpos; /* number of rotational positions */ + int32_t fs_spare5[2]; /* old fs_postbloff */ + /* old fs_rotbloff */ + int32_t fs_magic; /* magic number */ }; /* - * File system identification + * Filesystem identification */ -#define FS_MAGIC 0x011954 /* the fast file system magic number */ -#define FS_OKAY 0x7c269d38 /* superblock checksum */ -#define FS_42INODEFMT -1 /* 4.2BSD inode format */ -#define FS_44INODEFMT 2 /* 4.4BSD inode format */ +#define FS_UFS1_MAGIC 0x011954 /* UFS1 fast filesystem magic number */ +#define FS_UFS2_MAGIC 0x19540119 /* UFS2 fast filesystem magic number */ +#define FS_OKAY 0x7c269d38 /* superblock checksum */ +#define FS_42INODEFMT -1 /* 4.2BSD inode format */ +#define FS_44INODEFMT 2 /* 4.4BSD inode format */ + /* * Preference for optimization. */ #define FS_OPTTIME 0 /* minimize allocation time */ #define FS_OPTSPACE 1 /* minimize disk fragmentation */ - -/* - * Rotational layout table format types - */ -#define FS_42POSTBLFMT -1 /* 4.2BSD rotational table format */ -#define FS_DYNAMICPOSTBLFMT 1 /* dynamic rotational table format */ .Ed .Pp Each disk drive contains some number of file systems. @@ -275,13 +284,13 @@ summary information is 2ms for a typical 3600 rpm drive. .Pp The element -.Fa fs_rotdelay +.Fa fs_old_rotdelay gives the minimum number of milliseconds to initiate another disk transfer on the same cylinder. It is used in determining the rotationally optimal layout for disk blocks within a file; the default value for -.Fa fs_rotdelay +.Fa fs_old_rotdelay is 2ms. .Pp Each file system has a statically allocated number of inodes. @@ -304,7 +313,7 @@ must keep its size within .Dv MINBSIZE . Note that super-blocks are never more than size -.Dv SBSIZE . +.Dv SBLOCKSIZE . .Pp The path name on which the file system is mounted is maintained in .Fa fs_fsmnt . @@ -336,7 +345,7 @@ .Em "Super-block for a file system" : The size of the rotational layout tables is limited by the fact that the super-block is of size -.Dv SBSIZE . +.Dv SBLOCKSIZE . The size of these tables is .Em inversely proportional to the block --- fs.5.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 11:50:19 2003 Return-Path: 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 20E3B37B405 for ; Sun, 20 Apr 2003 11:50:19 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CC9043FCB for ; Sun, 20 Apr 2003 11:50:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3KIoIUp082463 for ; Sun, 20 Apr 2003 11:50:18 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3KIoI76082462; Sun, 20 Apr 2003 11:50:18 -0700 (PDT) Resent-Date: Sun, 20 Apr 2003 11:50:18 -0700 (PDT) Resent-Message-Id: <200304201850.h3KIoI76082462@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, Yonatan@xpert.com Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE87237B404 for ; Sun, 20 Apr 2003 11:49:05 -0700 (PDT) Received: from node-110.xpert.com (node-110.xpert.com [199.203.132.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BB2443FD7 for ; Sun, 20 Apr 2003 11:49:04 -0700 (PDT) (envelope-from yonatan@node-110.xpert.com) Received: (from yonatan@localhost) by node-110.xpert.com (8.11.6/8.11.6) id h3KLniX72515; Sun, 20 Apr 2003 21:49:44 GMT (envelope-from yonatan) Message-Id: <200304202149.h3KLniX72515@node-110.xpert.com> Date: Sun, 20 Apr 2003 21:49:44 GMT From: Yonatan@xpert.com To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51193: remove reference to diskpart(8) man page X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Yonatan@xpert.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 18:50:19 -0000 >Number: 51193 >Category: docs >Synopsis: remove reference to diskpart(8) man page >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 Apr 20 11:50:14 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Yonatan@xpert.com >Release: FreeBSD 4.8-RC i386 >Organization: >Environment: System: FreeBSD Temujin 4.8-RC FreeBSD 4.8-RC #1: Sat Apr 12 03:02:22 GMT 2003 root@Temujin:/usr/obj/usr/src/sys/TEMUJIN-G i386 >Description: diskpart(8) and it's man page are not there anymore, but are documented in newfs(8) man page. >How-To-Repeat: man newfs >Fix: --- newfs.diff begins here --- --- newfs.8.orig Sun Apr 20 21:46:50 2003 +++ newfs.8 Sun Apr 20 21:47:00 2003 @@ -376,7 +376,6 @@ .Xr fs 5 , .Xr camcontrol 8 , .Xr disklabel 8 , -.Xr diskpart 8 , .Xr dumpfs 8 , .Xr fsck 8 , .Xr mount 8 , --- newfs.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 12:16:48 2003 Return-Path: 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 75A9937B401; Sun, 20 Apr 2003 12:16:48 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1561043FBD; Sun, 20 Apr 2003 12:16:48 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from freefall.freebsd.org (brueffer@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3KJGlUp093328; Sun, 20 Apr 2003 12:16:47 -0700 (PDT) (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3KJGlo6093324; Sun, 20 Apr 2003 21:16:47 +0200 (CEST) Date: Sun, 20 Apr 2003 21:16:47 +0200 (CEST) From: Christian Brueffer Message-Id: <200304201916.h3KJGlo6093324@freefall.freebsd.org> To: Yonatan@xpert.com, brueffer@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/51193: remove reference to diskpart(8) man page X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 19:16:48 -0000 Synopsis: remove reference to diskpart(8) man page State-Changed-From-To: open->closed State-Changed-By: brueffer State-Changed-When: Sun Apr 20 21:16:29 CEST 2003 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=51193 From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 19:00:23 2003 Return-Path: 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 9DE1537B401 for ; Sun, 20 Apr 2003 19:00:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A20CE43F93 for ; Sun, 20 Apr 2003 19:00:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3L20MUp066223 for ; Sun, 20 Apr 2003 19:00:22 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3L20MbP066220; Sun, 20 Apr 2003 19:00:22 -0700 (PDT) Resent-Date: Sun, 20 Apr 2003 19:00:22 -0700 (PDT) Resent-Message-Id: <200304210200.h3L20MbP066220@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, murray@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A98E537B404 for ; Sun, 20 Apr 2003 18:58:42 -0700 (PDT) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id E140943FEA for ; Sun, 20 Apr 2003 18:58:41 -0700 (PDT) (envelope-from murray@builder.freebsdmall.com) Received: by builder.freebsdmall.com (Postfix, from userid 2074) id 617BF1489; Sun, 20 Apr 2003 18:58:41 -0700 (PDT) Message-Id: <20030421015841.617BF1489@builder.freebsdmall.com> Date: Sun, 20 Apr 2003 18:58:41 -0700 (PDT) From: murray@FreeBSD.org To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51203: Improvements to burncd section of Handbook (12.5.3) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: murray@FreeBSD.org List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2003 02:00:24 -0000 >Number: 51203 >Category: docs >Synopsis: Improvements to burncd section of Handbook (12.5.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: Sun Apr 20 19:00:22 PDT 2003 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 5.0-RC i386 >Organization: FreeBSD Mall, Inc. >Environment: System: FreeBSD builder.freebsdmall.com 5.0-RC FreeBSD 5.0-RC #21: Sat Dec 7 19:41:45 PST 2002 murray@builder.freebsdmall.com:/usr/obj/usr/src/sys/BUILDER i386 >Description: Additions to this section .. >How-To-Repeat: >Fix: This should be proofread and sgmlified. This was submitted to me by Benoit Mussche so he should be credited when it is committed. I don't have the time now so maybe someone else can get to this before me. - Murray ---- 12.5.3 burncd If you have an ATAPI CD burner, you can use the burncd command to burn an ISO image, various data files, or audio tracks onto a CD. burncd is part of the base system, installed as /usr/sbin/burncd. Usage is very simple, as it has few options: # burncd -f cddevice -s 20 data imagefile.iso fixate will burn a copy of imagefile.iso on cddevice at speed 20. The default device is /dev/acd0c. See burncd(8) for options to eject the CD after burning, write audio data without gaps between tracks, etc. Follows a series of example command lines and tricks. To create a data CD from files, just cook up an ISO file from their directory, such as /tmp/kitchen, and burn it: # rm /tmp/cd.iso ; mkisofs -d -N -D -R -L -l -J -T -o /tmp/cd.iso /tmp/kitchen && burncd -f /dev/acd0c -s 20 data /tmp/cd.iso fixate Note: mkisofs "i won't read that man page" parameters-stuffed command line courtesy of http://www.mostgraveconcern.com/freebsd. Don't forget not to exceed your maximum CD size indicated in Megabytes. Use "du -h" in the temporary directory for that purpose. If you would like to let the full directory appear upfront on the CD, move that directory into wherever you store your files to be burnt from. To make "backups" of your audio CD's for your *cough* personal use, you need to grab the audio tracks first. Install dagrab and sox from ports and create a script going on like this: echo "removing old junk" rm /tmp/juke/* dagrab -d /dev/acd0c -a -f /tmp/juke/track%02d && cd /tmp/juke/ echo "starting convertion into raws" sox -V -t wav -r 44100 -w -s -c 2 track01 track01.raw sox -V -t wav -r 44100 -w -s -c 2 track02 track02.raw sox -V -t wav -r 44100 -w -s -c 2 track03 track03.raw ... sox -V -t wav -r 44100 -w -s -c 2 trackXX trackXX.raw echo "insert new disc in drive and burn" Feel free to replace the repeated lines with an automatic incrementation in some neat code. Using sox to convert the ripped audio tracks from .wav to .raw format is necessary to avoid an awful scratch at the beginning of each track. The .raw files are .wav files stripped from their data header, which produce the forementionned scratch when burned as audio tracks. To burn audio tracks ripped into /tmp/juke at writing speed 20, hit: # burncd -f /dev/acd0c -s 20 audio /tmp/juke/*.raw fixate To create audio CD's from midi files, first install timidity++ from ports then install manually the GUS patches set by Eric A. Welsh, available at http://www.stardate.bc.ca/eawpatches/html/default.htm. After you set up timidity++ to use the patches correctly, create wav's from the midi files using this command line: timidity -Ow -s 44100 -o /tmp/juke/01.wav 01.mid Repeated as many times as necessary. Then convert the wav's into raw's as previously described and burn the cd the usual way. To burn mp3's as audio tracks, install mpg321 from ports and convert them to the raw format using this command line: mpg321 --stdout track01.mp3 > track01.raw You may also use xmms with the disk writer plugin, but xmms will produce wav files, which you need to convert to raw before you burn them. However, xmms is the only player that can convert .exo module files, and various other special audio formats working under its plugins, to wav. Remember not to burn anything else than raw files as audio tracks, if necessary converted to 44 kHz stereo from whatever data form they come from. For example, if you convert a 22 kHz mono mp3 to wav, roll a wav editor such as mhwaveedit, split the mono file into fake stereo and convert it to 44 kHz before you convert it to raw. If you don't, you will experience listening to painful screwed up CD's that will end up into the trashbin. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sun Apr 20 20:00:26 2003 Return-Path: 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 BCF8337B401 for ; Sun, 20 Apr 2003 20:00:26 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 602AA43FBF for ; Sun, 20 Apr 2003 20:00:26 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3L30QUp014676 for ; Sun, 20 Apr 2003 20:00:26 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3L30QXt014673; Sun, 20 Apr 2003 20:00:26 -0700 (PDT) Date: Sun, 20 Apr 2003 20:00:26 -0700 (PDT) Message-Id: <200304210300.h3L30QXt014673@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: "Eric Anderson" Subject: Re: docs/51203: Improvements to burncd section of Handbook (12.5.3) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Eric Anderson List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2003 03:00:27 -0000 The following reply was made to PR docs/51203; it has been noted by GNATS. From: "Eric Anderson" To: Cc: Subject: Re: docs/51203: Improvements to burncd section of Handbook (12.5.3) Date: Sun, 20 Apr 2003 21:55:40 -0500 (CDT) > >>Number: 51203 >>Category: docs >>Synopsis: Improvements to burncd section of Handbook (12.5.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: Sun Apr 20 19:00:22 PDT 2003 >>Closed-Date: >>Last-Modified: >>Originator: >>Release: FreeBSD 5.0-RC i386 >>Organization: > FreeBSD Mall, Inc. >>Environment: > System: FreeBSD builder.freebsdmall.com 5.0-RC FreeBSD 5.0-RC #21: Sat > Dec 7 19:41:45 PST 2002 > murray@builder.freebsdmall.com:/usr/obj/usr/src/sys/BUILDER i386 > >>Description: > > Additions to this section .. > >>How-To-Repeat: > >>Fix: > > This should be proofread and sgmlified. This was submitted to me by > Benoit Mussche so he should be credited when > it is committed. I don't have the time now so maybe someone else can > get to this before me. I can proofread and sgmlify this. I'll post a patch when complete. Eric ------------------------------------------------------------- Eric Anderson anderson@centtech.com Centaur Technology You have my continuous partial attention ------------------------------------------------------------- From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 02:41:32 2003 Return-Path: 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 1DAE237B401; Mon, 21 Apr 2003 02:41:32 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-67-115-75-1.dsl.lsan03.pacbell.net [67.115.75.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E8BB43FBD; Mon, 21 Apr 2003 02:41:31 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 39D9E66B9B; Mon, 21 Apr 2003 02:41:31 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id E07DA149C; Mon, 21 Apr 2003 02:41:30 -0700 (PDT) Date: Mon, 21 Apr 2003 02:41:30 -0700 From: Kris Kennaway To: ports@FreeBSD.org, doc@FreeBSD.org Message-ID: <20030421094130.GA81745@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0OAP2g/MAC+5xKAE" Content-Disposition: inline User-Agent: Mutt/1.4i Subject: Documenting major ports collection changes X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2003 09:41:32 -0000 --0OAP2g/MAC+5xKAE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline It was suggested recently by the re@ team that it would be a good idea to document the major changes made to the ports collection for inclusion with the release notes. For example, noting upgrades to major port suites like KDE, GNOME and XFree86; major infrastructural and feature changes to the ports collection itself, etc. Is there someone from the doc and ports projects who would be interesting in getting such a thing started? Kris --0OAP2g/MAC+5xKAE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+o7zKWry0BWjoQKURAn6SAKCIUJeYnLD3ShAIwwK0xH1LmJDl0wCgrzLZ sRgsmfbD4fnmTAKaU2FxMCk= =fJ2p -----END PGP SIGNATURE----- --0OAP2g/MAC+5xKAE-- From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 03:40:27 2003 Return-Path: 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 8723337B401 for ; Mon, 21 Apr 2003 03:40:27 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F21643FAF for ; Mon, 21 Apr 2003 03:40:27 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3LAeRUp017101 for ; Mon, 21 Apr 2003 03:40:27 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3LAeQ88017088; Mon, 21 Apr 2003 03:40:27 -0700 (PDT) Date: Mon, 21 Apr 2003 03:40:27 -0700 (PDT) Message-Id: <200304211040.h3LAeQ88017088@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Marc Fonvieille Subject: Re: docs/51203: Improvements to burncd section of Handbook (12.5.3) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marc Fonvieille List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2003 10:40:27 -0000 The following reply was made to PR docs/51203; it has been noted by GNATS. From: Marc Fonvieille To: murray@FreeBSD.org Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/51203: Improvements to burncd section of Handbook (12.5.3) Date: Mon, 21 Apr 2003 12:32:32 +0200 On Sun, Apr 20, 2003 at 06:58:41PM -0700, murray@FreeBSD.org wrote: > > This should be proofread and sgmlified. This was submitted to me by > Benoit Mussche so he should be credited > when it is committed. I don't have the time now so maybe someone else > can get to this before me. > > - Murray This is redundant with our current docs: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/sound-mp3.html I mean I don't see any improvement IMHO, the only *new* things are the midi part and the speed/eject option for burncd(8), the remaining is already very well documented in the Handbook. Marc From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 11:00:33 2003 Return-Path: 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 8DA0937B401 for ; Mon, 21 Apr 2003 11:00:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F1E743FE9 for ; Mon, 21 Apr 2003 11:00:31 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3LI0VUp030108 for ; Mon, 21 Apr 2003 11:00:31 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3LI0USW030059 for freebsd-doc@freebsd.org; Mon, 21 Apr 2003 11:00:30 -0700 (PDT) Date: Mon, 21 Apr 2003 11:00:30 -0700 (PDT) Message-Id: <200304211800.h3LI0USW030059@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD doc list Subject: Current unassigned doc problem reports X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2003 18:00:33 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [2001/10/31] i386/31671 doc 4.4 installer hangs at " Mounting root fr 1 problem total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1999/10/04] i386/14135 doc lpt1 nolonger exists after 3.2-RELEASE s [2000/07/18] docs/20028 doc ASCII docs should reflect tags o [2001/05/23] docs/27605 doc Cross-document references () o [2002/01/15] ports/33929 doc Section 15.15 of the FreeBSD Porter's Han s [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2002/08/20] docs/41824 doc LANG is not documented in setlocale(3) o [2002/08/22] docs/41892 doc Patch to fix slowdowns of documentation b o [2002/09/13] docs/42762 doc ppp.8 has no description of $env and ~use o [2002/10/07] docs/43776 doc /etc/sshd_config settings overridden by P o [2002/11/14] docs/45303 doc Bug in PDF DocBook rendering o [2002/12/15] docs/46286 doc there's an omission and an error in the n o [2003/02/19] docs/48472 doc Documentation unreadable. o [2003/02/26] docs/48728 doc Option "device agp" in GENERIC kernel on o [2003/03/30] docs/50457 doc /etc/defaults/rc.conf pccard_ifconfig cou 15 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/02/01] docs/24786 doc missing FILES descriptions in sa(4) o [2001/04/29] docs/26943 doc [patch] description of :C modifier is mis o [2001/07/04] docs/28699 doc strptime(3) %d format specifier not compl o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/09/08] docs/30442 doc remove broken referemce to gettime(9) fro o [2001/09/27] docs/30873 doc ``ip'' man page does not specify byte ord o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2001/10/09] docs/31164 doc man page for strftime is incorrect o [2001/11/15] docs/32020 doc loader.8 manpage missing tunables o [2001/11/16] docs/32054 doc inconsistency between index.3 and rindex. o [2002/01/05] docs/33589 doc Patch to doc.docbook.mk to post process . o [2002/01/13] docs/33852 doc split(1) man page implies that input file o [2002/01/14] docs/33877 doc Documentet behaviour of SF_flags for non- o [2002/01/15] misc/33926 doc Search function on website can not access o [2002/02/15] bin/34955 doc [PATCH] ps(1) is out of touch with realit a [2002/02/16] docs/35011 doc There are no commands called "diskless" o o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/03/03] docs/35523 doc manpage fixes for df(1) and ls(1) o [2002/03/05] docs/35575 doc Pw(8) man page makes no mention of /var/l o [2002/03/06] docs/35602 doc dump(8)/restore(8) pages don't explain "a o [2002/03/06] docs/35607 doc dump(1) page needs discussion of scary er o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/07] docs/35647 doc www; combine query-by-number and multi-fi o [2002/03/07] docs/35648 doc rc.conf; add note about "flags" to both f o [2002/03/07] docs/35649 doc mount_smbfs(8) page: "See ./examples/dot. o [2002/03/07] docs/35652 doc bsd.README seriously obsolete o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/08] docs/35687 doc /etc/nsmb.conf missing mention of readers o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an o [2002/03/15] docs/35941 doc cd(4) manual doesn't mention "target" use o [2002/03/15] docs/35943 doc at(1) config files are misplaced in /var/ o [2002/03/15] docs/35953 doc hosts.equiv(5) manual is confusing or wro o [2002/03/20] misc/36154 doc Getting USB mouse to work: usbd and mouse o [2002/03/28] docs/36432 doc Proposal for doc/share/mk: make folded bo o [2002/03/28] docs/36449 doc symlink(7) manual doesn't mention trailin o [2002/03/28] docs/36459 doc tftp(1) manual's "get" syntax/description o [2002/04/01] docs/36628 doc header an footer of openssl manpages are o [2002/04/18] docs/37221 doc obsolete reference to seqpacket in mount_ o [2002/04/25] docs/37470 doc jail field not documented in procfs(5) o [2002/05/03] docs/37719 doc Detail VOP_ naming in a relevant man-page o [2002/05/07] docs/37843 doc manual for pthread_setschedparam is wrong o [2002/05/15] docs/38117 doc New FAQ entry for memory states o [2002/05/15] docs/38118 doc New FAQ entry for amount of free memory o [2002/05/18] docs/38225 doc change "CDROM" to "CD-ROM" o [2002/05/22] docs/38426 doc extra manpage .Xr to locate relevant sysc o [2002/05/25] docs/38556 doc EPS file of beastie, as addition to exist o [2002/05/27] docs/38620 doc Committers Guide and CVS o [2002/05/27] docs/38647 doc cvsupit built-in instructions are slightl o [2002/05/31] docs/38772 doc firewall_type feature not mentioned on Ha f [2002/06/02] docs/38817 doc /usr/share/man/man8/boot.8.gz documents / o [2002/06/07] docs/38982 doc developers-hanbook/Jail fix o [2002/06/10] docs/39129 doc handbook; type WRT simulating postscript o [2002/06/12] docs/39213 doc No rc(4) man page o [2002/06/12] docs/39214 doc No my(4) man page o [2002/06/14] docs/39293 doc the dumpon man page incorrectly states th o [2002/06/15] docs/39348 doc kenv fetch of hostname requires dhcp/boot o [2002/06/19] docs/39530 doc access(2) man page has unnecessarily broa o [2002/06/19] docs/39532 doc 'find' man page should o [2002/06/24] docs/39822 doc firewall.7: change "Mbits" to "Mbits/s" a o [2002/06/24] docs/39824 doc Various tweaks for doc/en_US.ISO8859-1/bo o [2002/07/04] docs/40196 doc man find does not describe -follow o [2002/07/05] docs/40234 doc Typos and language cleanup in /usr/share/ o [2002/07/10] docs/40423 doc Keyboard(4)'s definition of parameters to o [2002/07/10] docs/40443 doc Update books/faq/book.sgml for USB .ko's o [2002/07/21] docs/40851 doc [PATCH] "mergemaster -p" in UPDATING's "C o [2002/07/22] docs/40910 doc [PATCH] Typos & grammer fixes for /usr/sh o [2002/07/22] docs/40911 doc [PATCH] Minor improvements for /usr/share o [2002/07/24] docs/40952 doc login.conf should mention that "idletime" o [2002/07/28] docs/41089 doc pax -B option does not mention interactio o [2002/07/29] docs/41110 doc "apropos linux" doesn't find brandelf o [2002/07/30] docs/41167 doc adventure.6 man-page, add section AUTHORS o [2002/08/02] docs/41263 doc [PATCH] Clarifications and minor grammer o [2002/08/02] docs/41270 doc confusing directions for kernelconfig cha o [2002/08/07] docs/41423 doc Update FAQ: attrib command for windows du o [2002/08/12] docs/41578 doc Incorrect #include in the usb(4) manpage o [2002/08/12] docs/41580 doc usb(4) manpage: Structures' fields aren't o [2002/08/18] docs/41761 doc Update for /ru/internal/ part of site o [2002/08/19] docs/41787 doc man page for route (Section 8) missing de o [2002/08/19] docs/41791 doc Documentation formatting error o [2002/08/19] docs/41807 doc natd -punch_fw "bug" o [2002/08/20] docs/41820 doc Device driver confusion in Handbook (2.3) o [2002/08/21] docs/41879 doc cleanup to DOCROOT/share/sgml/freebsd.dsl o [2002/08/22] docs/41919 doc MINI kernel for bootfloppy (Handbook p.34 a [2002/08/27] docs/42058 doc Documentation: Installing Oracle 8i onto o [2002/09/01] docs/42293 doc copystr(9) man page incorrectly describes o [2002/09/26] docs/43410 doc hardware-i386.html doesn't even mention p o [2002/09/27] docs/43416 doc pw(8) -u uidmin,uidmax feature is out of o [2002/10/01] docs/43569 doc src/share/examples/worm/README out-of-dat o [2002/10/04] docs/43651 doc stab(5) incorrectly states to include jus o [2002/10/09] docs/43861 doc non-trivial typo in wicontrol man page f [2002/10/09] docs/43864 doc Minor documentation to add o [2002/10/10] docs/43899 doc incorrect info in man page for fetch (8) o [2002/10/11] docs/43941 doc Rationale for Upgrade Sequence o [2002/10/14] docs/44074 doc ln(1) manual clarifications [patch] o [2002/10/18] docs/44217 doc Problematic PDF version of handbook for 4 o [2002/10/21] docs/44337 doc [PATCH] netstat(1) manual references none o [2002/10/23] docs/44400 doc ipfw(8) has contradictions in bridged and o [2002/10/24] docs/44435 doc sysctl manpage: add example for tcsh o [2002/10/29] docs/44594 doc Handbook doesn't mention drivers.flp for o [2002/11/14] docs/45294 doc LINT notes are murky re PQ_CACHESIZE sett o [2002/11/17] docs/45371 doc man page for exports lacks information on o [2002/11/25] docs/45702 doc Error in manual page ssh_config(5) o [2002/12/02] docs/45940 doc burncd missing info o [2002/12/11] docs/46181 doc "make fetch-recursive" target description o [2002/12/11] docs/46196 doc Missing return value in (set_)menu_format o [2002/12/11] docs/46200 doc fix for ru_RU.KOI8-R/books/porters-handbo o [2002/12/16] docs/46291 doc correlation between HZ kernel config para o [2002/12/16] docs/46295 doc please add information to Nvi recovery em o [2003/01/02] docs/46709 doc tables in terminfo.5 are broken o [2003/01/05] docs/46793 doc DEVICE_POLLING can not be used with SMP, o [2003/01/09] docs/46919 doc setkey(8) references the wrong RFC for ES o [2003/01/14] docs/47085 doc boot(8) manpage is incomplete according t o [2003/01/27] docs/47575 doc Clarify requirements for IPFW2 in STABLE o [2003/01/28] docs/47594 doc [PATH] passwd(5) incorrectly states allow o [2003/01/30] docs/47690 doc builtin(1) manpage is wrong about externa o [2003/01/30] docs/47705 doc wc(1) manpage has poor explanations. f [2003/02/02] docs/47818 doc ln(1) manpage is confusing o [2003/02/02] docs/47824 doc auto-create plist chapter should mention o [2003/02/05] docs/47991 doc Handbook section on upgrading kernel says o [2003/02/06] docs/48018 doc telnetd(8) manpage appears incorrect rega f [2003/02/07] docs/48038 doc [PATCH] add Tips and Tricks section into o [2003/02/08] docs/48083 doc [PATCH] missing #include in manpage for i o [2003/02/08] docs/48097 doc Manual for camediaplay(1) falsely describ o [2003/02/08] docs/48101 doc There's no documentation on the fixit dis o [2003/02/08] docs/48104 doc disktab(1) manpage omits b0 and b1, etc. o [2003/02/12] docs/48210 doc make -q only does what the manpage says i o [2003/02/17] docs/48407 doc PPP section needs a cleanup. o [2003/02/20] docs/48493 doc missing range information in arc4random() o [2003/02/28] docs/48767 doc wrong key numbers for left/right windows o [2003/03/06] docs/48980 doc [PATCH] nsgmls -s errors and sect. 3.2.1 o [2003/03/14] docs/50013 doc [PATCH] add much more russian holydays o [2003/03/21] docs/50181 doc localtime_r man page doesn't exist o [2003/03/22] docs/50200 doc Handbook "Kerberos" chapter doesn't quali o [2003/03/23] docs/50211 doc [PATCH] Fix textfile creation o [2003/03/27] docs/50349 doc make release fails with NO_OPENSSH and ! o [2003/03/28] docs/50390 doc no man page for suser_xxx() o [2003/03/28] docs/50391 doc Incorrect information in a man o [2003/03/29] docs/50426 doc [PATCH] Fix another minor typo in ifnet(9 o [2003/03/30] docs/50463 doc netstat(1) points to mbuf(9) which doesn' o [2003/03/30] docs/50469 doc "mount_msdos -W" issue in handbook o [2003/03/31] docs/50503 doc Upgate to the agp(4) manual page o [2003/04/03] docs/50573 doc return values for res_query/res_search/re o [2003/04/07] docs/50664 doc Handbook 12.4.1 (CCD) needs work o [2003/04/07] docs/50665 doc Handbook 19.4.5 uses 1st person f [2003/04/07] docs/50677 doc [PATCH] update doc/en_US.ISO8859-1/books/ o [2003/04/08] docs/50720 doc [PATCH] doc/en_US.ISO8859-1/books/faq/boo o [2003/04/10] docs/50769 doc login_class.3 does not mention recently a o [2003/04/10] docs/50773 doc NFS problems by jumbo frames to mention i o [2003/04/10] docs/50790 doc [patch] Expand description of dumpdev use o [2003/04/11] docs/50824 doc FDP - DocBook is maintained by OASIS sinc o [2003/04/15] docs/50977 doc Additional tips for Alcatel SpeedTouch US o [2003/04/15] docs/51006 doc [PATCH] divert(4) and ipfw(8) manpages ar o [2003/04/18] docs/51133 doc RSH environmental variable not described o [2003/04/20] docs/51183 doc [patch] style(9) does not reference style o [2003/04/20] docs/51187 doc logger(1) -A clarification o [2003/04/20] docs/51189 doc [PATCH] keep man-page fs(5) in sync with o [2003/04/20] docs/51203 doc Improvements to burncd section of Handboo 163 problems total. From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 13:47:14 2003 Return-Path: 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 2884537B401 for ; Mon, 21 Apr 2003 13:47:14 -0700 (PDT) Received: from smtp-out.comcast.net (smtp-out.comcast.net [24.153.64.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E45A43FE0 for ; Mon, 21 Apr 2003 13:47:13 -0700 (PDT) (envelope-from apeiron@comcast.net) Received: from [192.168.0.10] (pcp01380957pcs.levtwn01.pa.comcast.net [68.81.162.166]) by mtaout01.icomcast.net (iPlanet Messaging Server 5.2 HotFix 1.12 (built Feb 13 2003)) with ESMTP id <0HDP00BDPNGUH5@mtaout01.icomcast.net> for freebsd-doc@freebsd.org; Mon, 21 Apr 2003 16:26:55 -0400 (EDT) Date: Mon, 21 Apr 2003 16:26:59 -0400 From: Christopher Nehren To: freebsd-doc@freebsd.org Message-id: <1050956819.614.28.camel@prophecy.dyndns.org> Organization: MIME-version: 1.0 X-Mailer: Ximian Evolution 1.2.4 Content-type: multipart/signed; boundary="=-BiagbX2zFNdd23rX4eS8"; protocol="application/pgp-signature"; micalg=pgp-sha1 Subject: Possible section on send-pr, correction to website X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2003 20:47:14 -0000 --=-BiagbX2zFNdd23rX4eS8 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Just quickly glancing over the Handbook's TOC, I noticed that there's an absence of any mentioning of send-pr, or of anything related to bug-reporting. I realize that there are articles written for this purpose, but maybe a quick reference in appendix C to those articles could help. If I understand the purpose of the Handbook correctly, it's meant to do the best job at answering a user's questions -- and we do want people to know how to submit problem reports. Also, about submitting those problem reports: http://www.freebsd.org/support.html#gnats refers to the web-based interface, which is at least now disabled. Perhaps that cross-reference should be removed until (if / when?) the web-based form is re-enabled. --=-BiagbX2zFNdd23rX4eS8 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+pFQTUdqurN0fljsRAtZDAKC4RFm0ugGNUfOdKNxBd3Jz+4IZfQCfQC53 LRV8nsaD63seH/0/riav9Tw= =2ZrY -----END PGP SIGNATURE----- --=-BiagbX2zFNdd23rX4eS8-- From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 14:20:04 2003 Return-Path: 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 AADCC37B405 for ; Mon, 21 Apr 2003 14:20:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3965C43F93 for ; Mon, 21 Apr 2003 14:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3LLK1Up059013 for ; Mon, 21 Apr 2003 14:20:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3LLK1cx059012; Mon, 21 Apr 2003 14:20:01 -0700 (PDT) Resent-Date: Mon, 21 Apr 2003 14:20:01 -0700 (PDT) Resent-Message-Id: <200304212120.h3LLK1cx059012@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, "Simon L.Nielsen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84B9A37B404 for ; Mon, 21 Apr 2003 14:16:30 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB62743FDD for ; Mon, 21 Apr 2003 14:16:29 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id 6B67B10BF94; Mon, 21 Apr 2003 23:16:28 +0200 (CEST) Message-Id: <20030421211628.6B67B10BF94@arthur.nitro.dk> Date: Mon, 21 Apr 2003 23:16:28 +0200 (CEST) From: "Simon L.Nielsen" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51254: [patch] Missing manlink arc4rand.9 -> random.9 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Simon L.Nielsen" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2003 21:20:05 -0000 >Number: 51254 >Category: docs >Synopsis: [patch] Missing manlink arc4rand.9 -> random.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: Mon Apr 21 14:20:00 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Simon L. Nielsen >Release: FreeBSD 4.8-RC i386 >Organization: >Environment: >Description: The manlink for arc4rand(9) to random(9) is missing. arc4rand(9) is referenced in gbde(4). >How-To-Repeat: >Fix: --- man-arc4rand-link.patch begins here --- Index: share/man/man9/Makefile =================================================================== RCS file: /home/ncvs/src/share/man/man9/Makefile,v retrieving revision 1.180 diff -u -d -r1.180 Makefile --- share/man/man9/Makefile 30 Mar 2003 00:25:23 -0000 1.180 +++ share/man/man9/Makefile 21 Apr 2003 20:08:59 -0000 @@ -172,6 +172,7 @@ MLINKS+=pfind.9 zpfind.9 MLINKS+=psignal.9 gsignal.9 psignal.9 pgsignal.9 MLINKS+=random.9 srandom.9 random.9 arc4random.9 random.9 read_random.9 +MLINKS+=random.9 arc4rand.9 MLINKS+=rtalloc.9 rtalloc1.9 rtalloc.9 rtalloc_ign.9 MLINKS+=runqueue.9 chooseproc.9 runqueue.9 procrunnable.9 MLINKS+=runqueue.9 remrunqueue.9 runqueue.9 setrunqueue.9 --- man-arc4rand-link.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Mon Apr 21 17:26:05 2003 Return-Path: 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 0C31637B401 for ; Mon, 21 Apr 2003 17:26:05 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76D8643FBD for ; Mon, 21 Apr 2003 17:26:02 -0700 (PDT) (envelope-from d.knip@attbi.com) Received: from attbi.com (c-24-118-197-33.mn.client2.attbi.com[24.118.197.33]) by sccrmhc02.attbi.com (sccrmhc02) with SMTP id <2003042200260100200pkb55e>; Tue, 22 Apr 2003 00:26:02 +0000 Message-ID: <3EA48C19.5060305@attbi.com> Date: Mon, 21 Apr 2003 19:26:01 -0500 From: Daniel Knip User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20030225 X-Accept-Language: en-us, en MIME-Version: 1.0 To: doc@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Legacy free board donation X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 00:26:05 -0000 Hello: I have a legacy free board (ABIT AT7) I am going to upgrade soon. Anybody want it? I wouldn't mind having the legacy free stuff supported at some point. Dan From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 02:23:08 2003 Return-Path: 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 6897B37B401; Tue, 22 Apr 2003 02:23:08 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0711943F3F; Tue, 22 Apr 2003 02:23:08 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from freefall.freebsd.org (brueffer@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3M9N7Up052446; Tue, 22 Apr 2003 02:23:07 -0700 (PDT) (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3M9N7ck052442; Tue, 22 Apr 2003 11:23:07 +0200 (CEST) Date: Tue, 22 Apr 2003 11:23:07 +0200 (CEST) From: Christian Brueffer Message-Id: <200304220923.h3M9N7ck052442@freefall.freebsd.org> To: brueffer@FreeBSD.org, freebsd-doc@FreeBSD.org, brueffer@FreeBSD.org Subject: Re: docs/40910: [PATCH] Typos & grammer fixes for /usr/share/man/man8/moused.8.gz X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 09:23:08 -0000 Synopsis: [PATCH] Typos & grammer fixes for /usr/share/man/man8/moused.8.gz Responsible-Changed-From-To: freebsd-doc->brueffer Responsible-Changed-By: brueffer Responsible-Changed-When: Tue Apr 22 11:22:16 CEST 2003 Responsible-Changed-Why: I'll take care of this http://www.freebsd.org/cgi/query-pr.cgi?pr=40910 From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 06:11:41 2003 Return-Path: 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 351E237B401 for ; Tue, 22 Apr 2003 06:11:41 -0700 (PDT) Received: from haakonia.hitnet.rwth-aachen.de (haakonia.hitnet.RWTH-Aachen.DE [137.226.181.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20C7143FB1 for ; Tue, 22 Apr 2003 06:11:40 -0700 (PDT) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by haakonia.hitnet.rwth-aachen.de (Postfix) with ESMTP id 7F08DA91E; Tue, 22 Apr 2003 15:11:39 +0200 (CEST) Received: by gondor.middleearth (Postfix, from userid 1001) id 1751D46BD; Tue, 22 Apr 2003 15:11:38 +0200 (CEST) Date: Tue, 22 Apr 2003 15:11:38 +0200 From: Christian Brueffer To: Daniel Knip Message-ID: <20030422131138.GG17943@unixpages.org> References: <3EA48C19.5060305@attbi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Qf1oXS95uex85X0R" Content-Disposition: inline In-Reply-To: <3EA48C19.5060305@attbi.com> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.0-CURRENT X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D cc: doc@freebsd.org Subject: Re: Legacy free board donation X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 13:11:41 -0000 --Qf1oXS95uex85X0R Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 21, 2003 at 07:26:01PM -0500, Daniel Knip wrote: > Hello: >=20 > I have a legacy free board (ABIT AT7) I am going to upgrade soon.=20 > Anybody want it? I wouldn't mind having the legacy free stuff supported= =20 > at some point. >=20 > Dan >=20 Hi Daniel, thanks for the offer. Please contact donations@FreeBSD.org, I'm sure they will find a good home for the board :-) - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --Qf1oXS95uex85X0R Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+pT+KbHYXjKDtmC0RAoUGAJ9NuL51wD/aDCv9HM6za8a7QgqbPgCfTGPC cvvJgt51bTyFLmeylegKSfA= =MUa8 -----END PGP SIGNATURE----- --Qf1oXS95uex85X0R-- From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 09:24:25 2003 Return-Path: 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 B753B37B401 for ; Tue, 22 Apr 2003 09:24:25 -0700 (PDT) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DE5F43FD7 for ; Tue, 22 Apr 2003 09:24:25 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) h3MGOOPR068962 for ; Tue, 22 Apr 2003 09:24:24 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost)h3MGOOte068961 for freebsd-docs@freebsd.org; Tue, 22 Apr 2003 09:24:24 -0700 (PDT) Date: Tue, 22 Apr 2003 09:24:24 -0700 From: Steve Kargl To: freebsd-docs@freebsd.org Message-ID: <20030422162424.GA68869@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Subject: no mailing list archive for freebsd-threads X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 16:24:26 -0000 It appears that the freebsd-threads mailing list is not being archived. One can go to http://docs.freebsd.org/mail\ /current/freebsd-threads.html to read the current weeks emails, but http://docs.freebsd.org/mail/archive/2003/\ freebsd-threads.html does not exist. So, reading older emails is not possible. -- Steve From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 10:00:31 2003 Return-Path: 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 D99F637B401 for ; Tue, 22 Apr 2003 10:00:31 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F00B43FA3 for ; Tue, 22 Apr 2003 10:00:31 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3MH0VUp049032 for ; Tue, 22 Apr 2003 10:00:31 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3MH0V3n049028; Tue, 22 Apr 2003 10:00:31 -0700 (PDT) Date: Tue, 22 Apr 2003 10:00:31 -0700 (PDT) Message-Id: <200304221700.h3MH0V3n049028@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Murray Stokely Subject: Re: docs/51203: Improvements to burncd section of Handbook (12.5.3) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Murray Stokely List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 17:00:32 -0000 The following reply was made to PR docs/51203; it has been noted by GNATS. From: Murray Stokely To: Marc Fonvieille Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/51203: Improvements to burncd section of Handbook (12.5.3) Date: Tue, 22 Apr 2003 09:52:43 -0700 On Mon, Apr 21, 2003 at 12:32:32PM +0200, Marc Fonvieille wrote: > This is redundant with our current docs: > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/sound-mp3.html > > I mean I don't see any improvement IMHO, the only *new* things are the > midi part and the speed/eject option for burncd(8), the remaining is > already very well documented in the Handbook. Ok thanks. It might be nice to salvage a few sentences about the MIDI stuff to incorporate before closing this PR. - Murray From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 10:11:08 2003 Return-Path: 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 CA2E737B401 for ; Tue, 22 Apr 2003 10:11:08 -0700 (PDT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B00F43F3F for ; Tue, 22 Apr 2003 10:11:08 -0700 (PDT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (IDENT:brdavis@localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.12.9/8.12.3) with ESMTP id h3MHB6Tk008168; Tue, 22 Apr 2003 10:11:06 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.12.9/8.12.3/Submit) id h3MHB69f008167; Tue, 22 Apr 2003 10:11:06 -0700 Date: Tue, 22 Apr 2003 10:11:05 -0700 From: Brooks Davis To: Steve Kargl Message-ID: <20030422171102.GA7802@Odin.AC.HMC.Edu> References: <20030422162424.GA68869@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vkogqOf2sHV7VnPd" Content-Disposition: inline In-Reply-To: <20030422162424.GA68869@troutmask.apl.washington.edu> User-Agent: Mutt/1.5.4i X-Virus-Scanned: by amavisd-milter (http://amavis.org/) on odin.ac.hmc.edu cc: freebsd-docs@freebsd.org Subject: Re: no mailing list archive for freebsd-threads X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 17:11:09 -0000 --vkogqOf2sHV7VnPd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 22, 2003 at 09:24:24AM -0700, Steve Kargl wrote: > It appears that the freebsd-threads mailing list is not > being archived. One can go to http://docs.freebsd.org/mail\ > /current/freebsd-threads.html to read the current weeks=20 > emails, but http://docs.freebsd.org/mail/archive/2003/\ > freebsd-threads.html does not exist. So, reading older > emails is not possible. You can use the pipermail archive at: http://lists.freebsd.org/pipermail/freebsd-threads/ -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --vkogqOf2sHV7VnPd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+pXekXY6L6fI4GtQRAo4iAJ48HewRsSbUD/C5nBVohNYprHV8IwCgkFpw YFYnku33LW0M7WGvzpkM7DE= =YzIW -----END PGP SIGNATURE----- --vkogqOf2sHV7VnPd-- From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 10:11:42 2003 Return-Path: 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 5B59437B401 for ; Tue, 22 Apr 2003 10:11:42 -0700 (PDT) Received: from perrin.int.nxad.com (internal.ext.nxad.com [69.1.70.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE59D43FAF for ; Tue, 22 Apr 2003 10:11:41 -0700 (PDT) (envelope-from sean@perrin.int.nxad.com) Received: by perrin.int.nxad.com (Postfix, from userid 1001) id 5BA4D20F01; Tue, 22 Apr 2003 10:11:41 -0700 (PDT) Date: Tue, 22 Apr 2003 10:11:41 -0700 From: Sean Chittenden To: Steve Kargl Message-ID: <20030422171141.GG79923@perrin.int.nxad.com> References: <20030422162424.GA68869@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030422162424.GA68869@troutmask.apl.washington.edu> User-Agent: Mutt/1.4i X-PGP-Key: finger seanc@FreeBSD.org X-PGP-Fingerprint: 3849 3760 1AFE 7B17 11A0 83A6 DD99 E31F BC84 B341 X-Web-Homepage: http://sean.chittenden.org/ cc: freebsd-docs@freebsd.org Subject: Re: no mailing list archive for freebsd-threads X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 17:11:42 -0000 > It appears that the freebsd-threads mailing list is not being > archived. One can go to http://docs.freebsd.org/mail\ > /current/freebsd-threads.html to read the current weeks emails, but > http://docs.freebsd.org/mail/archive/2003/\ freebsd-threads.html > does not exist. So, reading older emails is not possible. Where are you seeing the reference to the -threads archives? The correct URL is: http://lists.freebsd.org/pipermail/freebsd-threads/ -sc -- Sean Chittenden From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 10:25:32 2003 Return-Path: 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 6351737B401 for ; Tue, 22 Apr 2003 10:25:32 -0700 (PDT) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1BB043FDD for ; Tue, 22 Apr 2003 10:25:31 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) h3MHPUPR071985; Tue, 22 Apr 2003 10:25:31 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost)h3MHPUIf071984; Tue, 22 Apr 2003 10:25:30 -0700 (PDT) Date: Tue, 22 Apr 2003 10:25:30 -0700 From: Steve Kargl To: Sean Chittenden Message-ID: <20030422172530.GA68973@troutmask.apl.washington.edu> References: <20030422162424.GA68869@troutmask.apl.washington.edu> <20030422171141.GG79923@perrin.int.nxad.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030422171141.GG79923@perrin.int.nxad.com> User-Agent: Mutt/1.4i cc: freebsd-docs@freebsd.org Subject: Re: no mailing list archive for freebsd-threads X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 17:25:32 -0000 On Tue, Apr 22, 2003 at 10:11:41AM -0700, Sean Chittenden wrote: > > It appears that the freebsd-threads mailing list is not being > > archived. One can go to http://docs.freebsd.org/mail\ > > /current/freebsd-threads.html to read the current weeks emails, but > > http://docs.freebsd.org/mail/archive/2003/\ freebsd-threads.html > > does not exist. So, reading older emails is not possible. > > Where are you seeing the reference to the -threads archives? The > correct URL is: > > http://lists.freebsd.org/pipermail/freebsd-threads/ > This week's messages are at http://docs.freebsd.org/mail/current/freebsd-threads.html To view the arhive for 2003 for freebsd-arch, you can do http://docs.freebsd.org/mail/archive/2003/freebsd-arch/ One would anticipate that http://docs.freebsd.org/mail/archive/2003/freebsd-threads/ would go the freebsd-threads archive. It doesn't. Go to the http://www.freebsd.org/support.html#mailing-list page and click on browse. I just realized that clicking on search also misses the freebsd-threads list. -- Steve From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 11:30:32 2003 Return-Path: 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 6010437B401; Tue, 22 Apr 2003 11:30:32 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB28C43FBF; Tue, 22 Apr 2003 11:30:31 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3MIUVUp024240; Tue, 22 Apr 2003 11:30:31 -0700 (PDT) (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3MIUVpY024194; Tue, 22 Apr 2003 11:30:31 -0700 (PDT) Date: Tue, 22 Apr 2003 11:30:31 -0700 (PDT) From: Tom Rhodes Message-Id: <200304221830.h3MIUVpY024194@freefall.freebsd.org> To: l.ertl@univie.ac.at, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/51189: [PATCH] keep man-page fs(5) in sync with ufs/ffs/fs.h X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 18:30:32 -0000 Synopsis: [PATCH] keep man-page fs(5) in sync with ufs/ffs/fs.h State-Changed-From-To: open->closed State-Changed-By: trhodes State-Changed-When: Tue Apr 22 11:30:07 PDT 2003 State-Changed-Why: Your patch has been applied. Thanks for the submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=51189 From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 11:31:53 2003 Return-Path: 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 84A9637B401; Tue, 22 Apr 2003 11:31:53 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2177243FA3; Tue, 22 Apr 2003 11:31:53 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3MIVrUp030824; Tue, 22 Apr 2003 11:31:53 -0700 (PDT) (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3MIVqJb030818; Tue, 22 Apr 2003 11:31:52 -0700 (PDT) Date: Tue, 22 Apr 2003 11:31:52 -0700 (PDT) From: Tom Rhodes Message-Id: <200304221831.h3MIVqJb030818@freefall.freebsd.org> To: trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Subject: Re: docs/51189: [PATCH] keep man-page fs(5) in sync with ufs/ffs/fs.h X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 18:31:53 -0000 Synopsis: [PATCH] keep man-page fs(5) in sync with ufs/ffs/fs.h Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Tue Apr 22 11:30:59 PDT 2003 Responsible-Changed-Why: Over to me. http://www.freebsd.org/cgi/query-pr.cgi?pr=51189 From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 11:37:13 2003 Return-Path: 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 F319237B401; Tue, 22 Apr 2003 11:37:12 -0700 (PDT) Received: from smtp.eos.ocn.ne.jp (eos.ocn.ne.jp [211.6.83.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27F4043FBF; Tue, 22 Apr 2003 11:37:12 -0700 (PDT) (envelope-from hrs@eos.ocn.ne.jp) Received: from mail.allbsd.org (p53054-adsao12honb4-acca.tokyo.ocn.ne.jp [220.96.135.54]) by smtp.eos.ocn.ne.jp (Postfix) with ESMTP id 0B3E430BA; Wed, 23 Apr 2003 03:37:11 +0900 (JST) Received: from localhost (alph.allbsd.org [192.168.0.10]) h3MIatJp087289; Wed, 23 Apr 2003 03:36:55 +0900 (JST) (envelope-from hrs@eos.ocn.ne.jp) Date: Wed, 23 Apr 2003 03:30:16 +0900 (JST) Message-Id: <20030423.033016.07643305.hrs@eos.ocn.ne.jp> To: simon@nitro.dk From: Hiroki Sato In-Reply-To: <20030420113210.GA390@nitro.dk> References: <200304191749.h3JHndxV053505@bmah.dyndns.org> <20030420.195205.50333554.hrs@eos.ocn.ne.jp> <20030420113210.GA390@nitro.dk> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: doc@freebsd.org Subject: Re: suggestion for adding a l10n-capable doc-format navi X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 18:37:13 -0000 "Simon L. Nielsen" wrote in <20030420113210.GA390@nitro.dk>: simon> I think it would be more intuitive if setting a make variable to NO simon> really disabled the variable in all the FreeBSD makefiles but since it simon> doesn't I think it is more or less impossible to remember when using NO simon> is ok and when it is not. simon> simon> I know this seems like a bike shed (and probably is a bit) but I think simon> consitency is rather important. Finally I have committed: - when WITH_DOCFORMAT_NAVI_LINK is defined, the navi-link is generated regardless of what the value was. - when WITH_DOCFORMAT_NAVI_LINK is not defined, the navi-link is not generated, but if ${FORMATS} includes "html" and "html-split" simultaneously, it is generated. "NO_FOO and WITH_FOO" way has another problem; which has priority. And I think it is overdoing in this case. -- | Hiroki SATO / From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 13:57:19 2003 Return-Path: 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 5DE0837B404; Tue, 22 Apr 2003 13:57:19 -0700 (PDT) Received: from net1.gendyn.com (gate1.gendyn.com [204.60.171.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49A1943FAF; Tue, 22 Apr 2003 13:57:18 -0700 (PDT) (envelope-from deischen@freebsd.org) Received: from [153.11.11.3] (helo=ebnext01) by net1.gendyn.com with esmtp (Exim 2.12 #1) id 1984pC-000NHS-00; Tue, 22 Apr 2003 16:57:10 -0400 Received: from clcrtr.gdeb.com ([153.11.109.11]) by ebnext01 with SMTP id h3MKvANZ028230; Tue, 22 Apr 2003 16:57:10 -0400 Received: from freebsd.org (gpz.clc.gdeb.com [192.168.3.12]) by clcrtr.gdeb.com (8.11.4/8.11.4) with ESMTP id h3K59Jq65623; Sun, 20 Apr 2003 01:09:20 -0400 (EDT) (envelope-from deischen@freebsd.org) Sender: eghk@clcrtr.gdeb.com Message-ID: <3EA5AC88.83535AE6@freebsd.org> Date: Tue, 22 Apr 2003 16:56:40 -0400 From: Daniel Eischen X-Mailer: Mozilla 4.78 [en] (X11; U; SunOS 5.9 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: current@freebsd.org Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Tue, 22 Apr 2003 14:00:48 -0700 Subject: Multiple (same) sets of man pages X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 20:57:19 -0000 [ doc@ bcc:'d ] With 3 threading libraries, each with a set of the same man pages, how should this be handled? It doesn't make any sense to have all of them installed and yet it should still be possible to install all 3 thread libraries. Do we need a different heirarchy for threads? src/lib/threads/ -> man # common man pages -> libc_r -> man # libc_r specific man pages (if any) -> thread ... -> libthr -> man # libthr specific man pages (if any) -> thread ... -> libpthread -> man # libpthread specific man pages (if any) -> thread ... The easy way is just to remove the man pages from libthr and libpthread and just maintain those in libc_r. -- Dan Eischen From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 14:02:19 2003 Return-Path: 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 00FBA37B401; Tue, 22 Apr 2003 14:02:19 -0700 (PDT) Received: from binder.sasknow.net (binder.sasknow.net [204.83.220.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F35643F93; Tue, 22 Apr 2003 14:02:17 -0700 (PDT) (envelope-from ryan@sasknow.com) Received: from ren (ren.sasknow.com [207.195.92.131]) by binder.sasknow.net (8.12.6p2/8.12.6) with ESMTP id h3ML2EoU062180; Tue, 22 Apr 2003 15:02:14 -0600 (CST) (envelope-from ryan@sasknow.com) Date: Tue, 22 Apr 2003 15:02:14 -0600 (CST) From: Ryan Thompson To: freebsd-hubs@freebsd.org Message-ID: <20030422145305.G89941-100000@ren.sasknow.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Audit: 1 cc: freebsd-doc@freebsd.org Subject: New Canadian WWW Mirror X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 21:02:19 -0000 Hi all, I'm pleased to announce that, under the clever guise of SaskNow Technologies, that there is now a second official Canadian WWW mirror for FreeBSD, at www2.ca.freebsd.org. Geographically, we're located in (currently sunny) downtown Saskatoon, Saskatchewan, with enough local and Tier-1 bandwidth to optimize your FreeBSD web site viewing pleasure. :-) The www2.ca.freebsd.org CNAME was just set up a few minutes ago, so please give it a few hours to start resolving. I'm working to fill the gap with FTP and/or CVSup as well, as soon as I figure out what the heck to do with the traffic. :-) For now, though, we'll definitely need the entry added to the drop-down mirror list, and other relevant -doc places. Will this message be enough to get that done? Or do I need to submit a patch. :-) Enjoy, - Ryan -- Ryan Thompson SaskNow Technologies - http://www.sasknow.com 901-1st Avenue North - Saskatoon, SK - S7K 1Y4 Tel: 306-664-3600 Fax: 306-244-7037 Saskatoon Toll-Free: 877-727-5669 (877-SASKNOW) North America From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 14:15:50 2003 Return-Path: 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 654F137B405 for ; Tue, 22 Apr 2003 14:15:50 -0700 (PDT) Received: from prioris.mini.pw.edu.pl (prioris.mini.pw.edu.pl [194.29.178.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90A8843FBF for ; Tue, 22 Apr 2003 14:15:49 -0700 (PDT) (envelope-from G.Czaplinski@prioris.mini.pw.edu.pl) Received: from localhost (localhost.mini.pw.edu.pl [127.0.0.1]) by prioris.mini.pw.edu.pl (Postfix) with ESMTP id 531F42438F for ; Tue, 22 Apr 2003 23:15:48 +0200 (CEST) Received: by prioris.mini.pw.edu.pl (Postfix, from userid 1368) id B192224396; Tue, 22 Apr 2003 23:15:43 +0200 (CEST) Date: Tue, 22 Apr 2003 23:15:43 +0200 From: Grzegorz Czaplinski To: doc@freebsd.org Message-ID: <20030422211543.GJ99329@prioris.mini.pw.edu.pl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UBnjLfzoMQYIXCvq" Content-Disposition: inline User-Agent: Mutt/1.4.1i X-PGP: http://prioris.mini.pw.edu.pl/~gregory/pgp.txt X-3w: http://prioris.mini.pw.edu.pl/~gregory/ X-Virus-Scanned: by AMaViS (prioris) Subject: Handbook and "electrionic mail" section. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 21:15:50 -0000 --UBnjLfzoMQYIXCvq Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Hi! I wrote articles about postfix under FreeBSD. If you were interseted in merging it into the handbook I am willing to contribute. My articles include Postfix with SASL authentication over TLS; Postfix Aliases, including canonical and ecartis ones; antivirus scanning. Best regards, Grzegorz -- Grzegorz Czaplinski "The Power to Serve, Right for the Power Users!" - http://www.FreeBSD.org/ Fingerprint: EB77 E19D CFA2 5736 810F 847C A70F A275 2489 469F --UBnjLfzoMQYIXCvq Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAj6lsP8ACgkQpw+idSSJRp92GgCfWeRGcbATzSRgMCbN4vGntKhS NTIAn3e9kU698Zz9Ka+qdUm9xYcohCgh =FZta -----END PGP SIGNATURE----- --UBnjLfzoMQYIXCvq-- From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 15:10:17 2003 Return-Path: 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 8BAF137B401 for ; Tue, 22 Apr 2003 15:10:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E18E43FDD for ; Tue, 22 Apr 2003 15:10:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3MMAFUp033388 for ; Tue, 22 Apr 2003 15:10:15 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3MMAFlQ033387; Tue, 22 Apr 2003 15:10:15 -0700 (PDT) Resent-Date: Tue, 22 Apr 2003 15:10:15 -0700 (PDT) Resent-Message-Id: <200304222210.h3MMAFlQ033387@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, "Simon L.Nielsen" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 909ED37B401 for ; Tue, 22 Apr 2003 15:01:23 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF9F843FD7 for ; Tue, 22 Apr 2003 15:01:22 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id 9DD5210BF82; Wed, 23 Apr 2003 00:01:20 +0200 (CEST) Message-Id: <20030422220120.9DD5210BF82@arthur.nitro.dk> Date: Wed, 23 Apr 2003 00:01:20 +0200 (CEST) From: "Simon L.Nielsen" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51295: [patch] Bring kame(4) better in sync with current FreeBSD reality X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Simon L.Nielsen" List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 22:10:18 -0000 >Number: 51295 >Category: docs >Synopsis: [patch] Bring kame(4) better in sync with current FreeBSD reality >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 Apr 22 15:10:14 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Simon L. Nielsen >Release: FreeBSD 4.8-RC i386 >Organization: >Environment: >Description: The current kame(4) man page is somewhat out of sync with the current reality on FreeBSD. * prefix and gifconfig are deprecated. * dtcpc, dtcps were never imported and are removed from KAME (v. 1.12 of kame(4) in the KAME CVS tree). * pim6dd, pim6sd and racoon are now ports. Note: Since I found no common way to reference ports I used the style from firewall(7). * inet6d does not exit on FreeBSD. >How-To-Repeat: >Fix: --- man-kame4.patch begins here --- Index: man4/kame.4 =================================================================== RCS file: /home/ncvs/src/share/man/man4/kame.4,v retrieving revision 1.11 diff -u -d -r1.11 kame.4 --- man4/kame.4 9 Jul 2002 20:37:18 -0000 1.11 +++ man4/kame.4 22 Apr 2003 21:34:54 -0000 @@ -67,7 +67,6 @@ .\" .Ss Plug and Play and protocol stack/interface configuration .Xr ndp 8 , -.Xr prefix 8 , .Xr rrenumd 8 , .Xr rtadvd 8 , .Xr rtsol 8 , @@ -81,8 +80,8 @@ .Xr mchat 1 .Pq - , .Xr ifmcstat 8 , -.Xr pim6dd 8 , -.Xr pim6sd 8 , +.Xr pim6dd 8 [ /usr/ports/net/pim6dd ] , +.Xr pim6sd 8 [ /usr/ports/net/pim6sd ] , .Xr pim6stat 8 . .\" .Ss Transition Tools @@ -96,12 +95,8 @@ .Fx . .\" .Ss IPsec and tunnelling -.Xr gifconfig 8 , .Xr ipsec 4 , -.\" (dtcp and racoon doesn't exist yet.) -.\" .Xr dtcpc 8 , -.\" .Xr dtcps 8 , -.\" .Xr racoon 8 , +.Xr racoon 8 [ /usr/ports/security/racoon ] , .Xr setkey 8 . .Pp Dozen of existing tools are modified for IPsec support, like @@ -123,6 +118,7 @@ modified for IPv4/v6 support, or IPv6-only .Xr inet6d 8 +.Pq - is supplied. .Pp Dozen of existing daemons are modified for IPv6/IPsec support, like --- man-kame4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 15:27:26 2003 Return-Path: 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 9170E37B407 for ; Tue, 22 Apr 2003 15:27:26 -0700 (PDT) Received: from sixshooter.v6.thrupoint.net (sixshooter.v6.thrupoint.net [65.242.152.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00E7943FB1 for ; Tue, 22 Apr 2003 15:27:26 -0700 (PDT) (envelope-from jpb@sixshooter.v6.thrupoint.net) Received: from sixshooter.v6.thrupoint.net (localhost.v6.thrupoint.net [127.0.0.1]) by sixshooter.v6.thrupoint.net (Postfix) with ESMTP id 541234C39 for ; Tue, 22 Apr 2003 18:27:24 -0400 (EDT) Received: (from jpb@localhost)h3MMROxF053833 for doc@freebsd.org; Tue, 22 Apr 2003 18:27:24 -0400 (EDT) Date: Tue, 22 Apr 2003 18:27:24 -0400 From: Jim Brown To: doc@freebsd.org Message-ID: <20030422222724.GA53824@sixshooter.v6.thrupoint.net> Mail-Followup-To: doc@freebsd.org References: <20030422211543.GJ99329@prioris.mini.pw.edu.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030422211543.GJ99329@prioris.mini.pw.edu.pl> User-Agent: Mutt/1.4i Subject: Re: Handbook and "electrionic mail" section. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 22:27:27 -0000 * Grzegorz Czaplinski [2003-04-22 17:16]: > Hi! > I wrote articles about postfix under FreeBSD. > If you were interseted in merging it into the handbook I am willing to > contribute. > > My articles include Postfix with SASL authentication over TLS; Postfix > Aliases, including canonical and ecartis ones; antivirus scanning. > > Best regards, > Grzegorz > -- > Grzegorz Czaplinski > "The Power to Serve, Right for the Power Users!" - http://www.FreeBSD.org/ > Fingerprint: EB77 E19D CFA2 5736 810F 847C A70F A275 2489 469F If your articles are in need of SGML markup, you are welcome to send them to me at the address above. If they are already marked up, just email your articles to doc@ and someone with commit bits will check them over. Best Regards, jpb === From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 15:48:55 2003 Return-Path: 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 CA17B37B401; Tue, 22 Apr 2003 15:48:55 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5B3B43FB1; Tue, 22 Apr 2003 15:48:54 -0700 (PDT) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org (12-240-204-110.client.attbi.com[12.240.204.110]) by sccrmhc02.attbi.com (sccrmhc02) with ESMTP id <2003042222485300200pmse4e>; Tue, 22 Apr 2003 22:48:53 +0000 Received: from intruder.bmah.org (localhost [127.0.0.1]) by bmah.dyndns.org (8.12.9/8.12.9) with ESMTP id h3MMmqxV099971; Tue, 22 Apr 2003 15:48:52 -0700 (PDT) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.9/8.12.9/Submit) id h3MMmq5g099970; Tue, 22 Apr 2003 15:48:52 -0700 (PDT) (envelope-from bmah) Date: Tue, 22 Apr 2003 15:48:52 -0700 From: "Bruce A. Mah" To: Hiroki Sato Message-ID: <20030422224852.GA99890@intruder.bmah.org> References: <200304191749.h3JHndxV053505@bmah.dyndns.org> <20030420.195205.50333554.hrs@eos.ocn.ne.jp> <20030420113210.GA390@nitro.dk> <20030423.033016.07643305.hrs@eos.ocn.ne.jp> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline In-Reply-To: <20030423.033016.07643305.hrs@eos.ocn.ne.jp> User-Agent: Mutt/1.4.1i X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-url: http://www.employees.org/~bmah/ cc: simon@nitro.dk cc: doc@FreeBSD.org cc: bmah@FreeBSD.org Subject: Re: suggestion for adding a l10n-capable doc-format navi X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 22:48:56 -0000 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable If memory serves me right, Hiroki Sato wrote: > Finally I have committed: >=20 > - when WITH_DOCFORMAT_NAVI_LINK is defined, the navi-link is generated > regardless of what the value was. >=20 > - when WITH_DOCFORMAT_NAVI_LINK is not defined,=20 > the navi-link is not generated, but if ${FORMATS} includes > "html" and "html-split" simultaneously, it is generated. >=20 > "NO_FOO and WITH_FOO" way has another problem; which has priority. > And I think it is overdoing in this case. I think what you have is fine...thanks for following up on this. Bruce. --UlVJffcvxoiEqYs2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+pcbU2MoxcVugUsMRAtI4AJ9LWeJiuMac6RTWwZjERUvfHm4L/QCfWfdt YIzeyT+ISxCh9KyVy6zz04o= =cakl -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 16:19:39 2003 Return-Path: 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 3451637B423 for ; Tue, 22 Apr 2003 16:19:36 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 370BA43F93 for ; Tue, 22 Apr 2003 16:19:36 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id 6956410BF82; Wed, 23 Apr 2003 01:19:35 +0200 (CEST) Date: Wed, 23 Apr 2003 01:19:35 +0200 From: "Simon L. Nielsen" To: Hiroki Sato Message-ID: <20030422231934.GE399@nitro.dk> References: <200304191749.h3JHndxV053505@bmah.dyndns.org> <20030420.195205.50333554.hrs@eos.ocn.ne.jp> <20030420113210.GA390@nitro.dk> <20030423.033016.07643305.hrs@eos.ocn.ne.jp> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DiL7RhKs8rK9YGuF" Content-Disposition: inline In-Reply-To: <20030423.033016.07643305.hrs@eos.ocn.ne.jp> User-Agent: Mutt/1.5.4i cc: doc@freebsd.org Subject: Re: suggestion for adding a l10n-capable doc-format navi X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 23:19:39 -0000 --DiL7RhKs8rK9YGuF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2003.04.23 03:30:16 +0900, Hiroki Sato wrote: > "Simon L. Nielsen" wrote > in <20030420113210.GA390@nitro.dk>: >=20 > simon> I think it would be more intuitive if setting a make variable to NO > simon> really disabled the variable in all the FreeBSD makefiles but sinc= e it > simon> doesn't I think it is more or less impossible to remember when usi= ng NO > simon> is ok and when it is not. > simon>=20 > simon> I know this seems like a bike shed (and probably is a bit) but I t= hink > simon> consitency is rather important. >=20 > Finally I have committed: >=20 > - when WITH_DOCFORMAT_NAVI_LINK is defined, the navi-link is generated > regardless of what the value was. Thanks! --=20 Simon L. Nielsen --DiL7RhKs8rK9YGuF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+pc4G8kocFXgPTRwRAg5MAKCWGwshD+3Nd8bSByW9lPH/ixnc3ACfZQWG u48OwH0Lairbc2bls9dXce4= =xoWZ -----END PGP SIGNATURE----- --DiL7RhKs8rK9YGuF-- From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 17:53:50 2003 Return-Path: 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 BBF9237B401 for ; Tue, 22 Apr 2003 17:53:50 -0700 (PDT) Received: from alpha.siliconlandmark.com (alpha.siliconlandmark.com [209.69.98.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE01143FB1 for ; Tue, 22 Apr 2003 17:53:49 -0700 (PDT) (envelope-from andy@siliconlandmark.com) Received: from alpha.siliconlandmark.com (localhost [127.0.0.1]) h3N0rmHE060438 for ; Tue, 22 Apr 2003 20:53:48 -0400 (EDT) (envelope-from andy@siliconlandmark.com) Received: from localhost (andy@localhost)h3N0rmpS060435 for ; Tue, 22 Apr 2003 20:53:48 -0400 (EDT) (envelope-from andy@siliconlandmark.com) X-Authentication-Warning: alpha.siliconlandmark.com: andy owned process doing -bs Date: Tue, 22 Apr 2003 20:53:48 -0400 (EDT) From: Andre Guibert de Bruet To: doc@freebsd.org Message-ID: <20030422204821.T59991@alpha.siliconlandmark.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: Posix semaphore problem (fwd) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 00:53:51 -0000 Hi, The attached message is from current@. On 5-CURRENT, there is no "sem" kld. The closest kld by name is sysvsem.ko but a grep on the output of strings for "sem_open" doesn't return anything. Any ideas? Please CC me, as I'm not subscribed to doc@. Regards, > Andre Guibert de Bruet | Enterprise Software Consultant > > Silicon Landmark, LLC. | http://siliconlandmark.com/ > ---------- Forwarded message ---------- Date: Sun, 23 Mar 2003 10:25:34 -0500 From: Craig Rodrigues To: Hongbo Li Cc: current@FreeBSD.ORG Subject: Re: Posix semaphore problem On Sun, Mar 23, 2003 at 01:55:03AM -0800, Hongbo Li wrote: > I just run a example program from the book unp2v2 > written W.Richard Stevens. The program includes a call > to sem_open. The compilation was ok. But when I run it > on FreeBSD 5-current(recent),the system print "Bad > system call (core dumped)". The program code : I get the same problem. Read the man page for sem(4) which explains the kernel option or kernel module that needs to be used for POSIX semaphores to work. However, I am not sure that this man page is entirely correct, since if I do: kldload sem I get "No such file or directory". -- Craig Rodrigues http://home.attbi.com/~rodrigc rodrigc@attbi.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 21:58:52 2003 Return-Path: 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 8171B37B401 for ; Tue, 22 Apr 2003 21:58:52 -0700 (PDT) Received: from relay.macomnet.ru (relay.macomnet.ru [195.128.64.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BD4B43FDF for ; Tue, 22 Apr 2003 21:58:51 -0700 (PDT) (envelope-from maxim@macomnet.ru) Received: from news1.macomnet.ru (news1.macomnet.ru [195.128.64.14]) by relay.macomnet.ru (8.11.6/8.11.6) with ESMTP id h3N4wfR3621933; Wed, 23 Apr 2003 08:58:41 +0400 (MSD) Date: Wed, 23 Apr 2003 08:58:41 +0400 (MSD) From: Maxim Konovalov To: Andre Guibert de Bruet In-Reply-To: <20030422204821.T59991@alpha.siliconlandmark.com> Message-ID: <20030423085802.R26549@news1.macomnet.ru> References: <20030422204821.T59991@alpha.siliconlandmark.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: doc@freebsd.org Subject: Re: Posix semaphore problem (fwd) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 04:58:52 -0000 On 20:53-0400, Apr 22, 2003, Andre Guibert de Bruet wrote: > Hi, > > The attached message is from current@. On 5-CURRENT, there is no "sem" > kld. The closest kld by name is sysvsem.ko but a grep on the output of > strings for "sem_open" doesn't return anything. Any ideas? cd /sys/modules/sem/ && make && make load > Please CC me, as I'm not subscribed to doc@. > > Regards, > > > Andre Guibert de Bruet | Enterprise Software Consultant > > > Silicon Landmark, LLC. | http://siliconlandmark.com/ > > > ---------- Forwarded message ---------- > Date: Sun, 23 Mar 2003 10:25:34 -0500 > From: Craig Rodrigues > To: Hongbo Li > Cc: current@FreeBSD.ORG > Subject: Re: Posix semaphore problem > > On Sun, Mar 23, 2003 at 01:55:03AM -0800, Hongbo Li wrote: > > I just run a example program from the book unp2v2 > > written W.Richard Stevens. The program includes a call > > to sem_open. The compilation was ok. But when I run it > > on FreeBSD 5-current(recent),the system print "Bad > > system call (core dumped)". The program code : > > I get the same problem. Read the man page for sem(4) which > explains the kernel option or kernel module that needs > to be used for POSIX semaphores to work. > > However, I am not sure that this man page is entirely correct, > since if I do: > > kldload sem > > I get "No such file or directory". > > > -- Maxim Konovalov, maxim@macomnet.ru, maxim@FreeBSD.org From owner-freebsd-doc@FreeBSD.ORG Tue Apr 22 23:47:23 2003 Return-Path: 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 5CE8837B401 for ; Tue, 22 Apr 2003 23:47:23 -0700 (PDT) Received: from haakonia.hitnet.rwth-aachen.de (haakonia.hitnet.RWTH-Aachen.DE [137.226.181.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id 599DD43F3F for ; Tue, 22 Apr 2003 23:47:22 -0700 (PDT) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by haakonia.hitnet.rwth-aachen.de (Postfix) with ESMTP id EAC3BA91E; Wed, 23 Apr 2003 08:47:20 +0200 (CEST) Received: by gondor.middleearth (Postfix, from userid 1001) id 4092346A4; Wed, 23 Apr 2003 08:47:14 +0200 (CEST) Date: Wed, 23 Apr 2003 08:47:13 +0200 From: Christian Brueffer To: Steve Kargl Message-ID: <20030423064713.GL17943@unixpages.org> References: <20030422162424.GA68869@troutmask.apl.washington.edu> <20030422171141.GG79923@perrin.int.nxad.com> <20030422172530.GA68973@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zH41lVBEV8cLJnCl" Content-Disposition: inline In-Reply-To: <20030422172530.GA68973@troutmask.apl.washington.edu> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.0-CURRENT X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D cc: Sean Chittenden cc: freebsd-docs@freebsd.org Subject: Re: no mailing list archive for freebsd-threads X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 06:47:23 -0000 --zH41lVBEV8cLJnCl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 22, 2003 at 10:25:30AM -0700, Steve Kargl wrote: > On Tue, Apr 22, 2003 at 10:11:41AM -0700, Sean Chittenden wrote: > > > It appears that the freebsd-threads mailing list is not being > > > archived. One can go to http://docs.freebsd.org/mail\ > > > /current/freebsd-threads.html to read the current weeks emails, but > > > http://docs.freebsd.org/mail/archive/2003/\ freebsd-threads.html > > > does not exist. So, reading older emails is not possible. > >=20 > > Where are you seeing the reference to the -threads archives? The > > correct URL is: > >=20 > > http://lists.freebsd.org/pipermail/freebsd-threads/ > >=20 >=20 > This week's messages are at=20 >=20 > http://docs.freebsd.org/mail/current/freebsd-threads.html >=20 > To view the arhive for 2003 for freebsd-arch, you can do >=20 > http://docs.freebsd.org/mail/archive/2003/freebsd-arch/ >=20 > One would anticipate that >=20 > http://docs.freebsd.org/mail/archive/2003/freebsd-threads/=20 >=20 > would go the freebsd-threads archive. It doesn't.=20 >=20 > Go to the http://www.freebsd.org/support.html#mailing-list > page and click on browse. I just realized that clicking > on search also misses the freebsd-threads list. >=20 Maybe the archiving doesn't work properly because of our switch to mailman. Does anyone have insight on this? Would be nice to still be able to search new mailing lists through the classic interface. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --zH41lVBEV8cLJnCl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+pjbxbHYXjKDtmC0RAgHKAKDGyw2USl/QqE/VM+NrZN8ANGzNWACfU7V2 MAum1FzOXrdEZk+HPzSb21Y= =calr -----END PGP SIGNATURE----- --zH41lVBEV8cLJnCl-- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 00:38:05 2003 Return-Path: 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 307AF37B401 for ; Wed, 23 Apr 2003 00:38:05 -0700 (PDT) Received: from prioris.mini.pw.edu.pl (prioris.mini.pw.edu.pl [194.29.178.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7643A43F3F for ; Wed, 23 Apr 2003 00:38:04 -0700 (PDT) (envelope-from G.Czaplinski@prioris.mini.pw.edu.pl) Received: from localhost (localhost.mini.pw.edu.pl [127.0.0.1]) by prioris.mini.pw.edu.pl (Postfix) with ESMTP id 162CA24398; Wed, 23 Apr 2003 09:38:03 +0200 (CEST) Received: by prioris.mini.pw.edu.pl (Postfix, from userid 1368) id BA8C924394; Wed, 23 Apr 2003 09:37:53 +0200 (CEST) Date: Wed, 23 Apr 2003 09:37:53 +0200 From: Grzegorz Czaplinski To: Asenchi Message-ID: <20030423073753.GA12219@prioris.mini.pw.edu.pl> References: <20030422211543.GJ99329@prioris.mini.pw.edu.pl> <20030422222010.GH13811@asenchi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline In-Reply-To: <20030422222010.GH13811@asenchi.com> User-Agent: Mutt/1.4.1i X-PGP: http://prioris.mini.pw.edu.pl/~gregory/pgp.txt X-3w: http://prioris.mini.pw.edu.pl/~gregory/ X-Virus-Scanned: by AMaViS (prioris) cc: Grzegorz Czaplinski cc: freebsd-doc@freebsd.org Subject: Re: Handbook and "electrionic mail" section. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 07:38:05 -0000 On Tue, Apr 22, 2003 at 06:20:10PM -0400, Asenchi wrote: > On Tue, Apr 22, 2003 at 11:15:43PM +0200, Grzegorz Czaplinski wrote: > : Hi! > : I wrote articles about postfix under FreeBSD. > : If you were interseted in merging it into the handbook I am willing to > : contribute. > : > : My articles include Postfix with SASL authentication over TLS; Postfix > : Aliases, including canonical and ecartis ones; antivirus scanning. > > Could you post a link? > First of all I want to point out that I wrote those articles with an intention to publish them at daemonnews.org. The one about postfix and amavis was already published, here is the link: http://ezine.daemonnews.org/200212/sophos-amavis.html This article consists some errors becase of my fault and because it's outdated a little. I can revise it. Two other articles about SASL na aliases were not published yet although were sent to daemonnews editorial and I am waiting for the final decision. Please do not link or post them anywhere. These links point to txt files: http://prioris.mini.pw.edu.pl/~gregory/articles/postfix-aliases.txt http://prioris.mini.pw.edu.pl/~gregory/articles/postfix-sasl.txt Thanks, Grzegorz -- Grzegorz Czaplinski "The Power to Serve, Right for the Power Users!" - http://www.FreeBSD.org/ Fingerprint: EB77 E19D CFA2 5736 810F 847C A70F A275 2489 469F From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 00:40:52 2003 Return-Path: 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 4B89337B401 for ; Wed, 23 Apr 2003 00:40:52 -0700 (PDT) Received: from perrin.int.nxad.com (internal.ext.nxad.com [69.1.70.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 534DD43FA3 for ; Wed, 23 Apr 2003 00:40:51 -0700 (PDT) (envelope-from sean@perrin.int.nxad.com) Received: by perrin.int.nxad.com (Postfix, from userid 1001) id C0CCD20F01; Wed, 23 Apr 2003 00:40:50 -0700 (PDT) Date: Wed, 23 Apr 2003 00:40:50 -0700 From: Sean Chittenden To: Christian Brueffer Message-ID: <20030423074050.GO79923@perrin.int.nxad.com> References: <20030422162424.GA68869@troutmask.apl.washington.edu> <20030422171141.GG79923@perrin.int.nxad.com> <20030422172530.GA68973@troutmask.apl.washington.edu> <20030423064713.GL17943@unixpages.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="j+Rb494BzBd9643b" Content-Disposition: inline In-Reply-To: <20030423064713.GL17943@unixpages.org> User-Agent: Mutt/1.4i X-PGP-Key: finger seanc@FreeBSD.org X-PGP-Fingerprint: 3849 3760 1AFE 7B17 11A0 83A6 DD99 E31F BC84 B341 X-Web-Homepage: http://sean.chittenden.org/ cc: freebsd-docs@freebsd.org cc: Steve Kargl Subject: Re: no mailing list archive for freebsd-threads X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 07:40:52 -0000 --j+Rb494BzBd9643b Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable > > Go to the http://www.freebsd.org/support.html#mailing-list page > > and click on browse. I just realized that clicking on search also > > misses the freebsd-threads list. >=20 > Maybe the archiving doesn't work properly because of our switch to > mailman. Does anyone have insight on this? Would be nice to still > be able to search new mailing lists through the classic interface. It is, I've gotten in touch with the folks that did the transition, so hopefully something will come out of it. I'll track this and post a result when I have one. -sc --=20 Sean Chittenden --j+Rb494BzBd9643b Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Comment: Sean Chittenden iD8DBQE+pkOB3ZnjH7yEs0ERAv6GAJ9xqLQCN8XddwQ1nRvFafNV5mZC2ACeKKmj D7vXhwowqBWGcD1hz50cSCo= =mSS3 -----END PGP SIGNATURE----- --j+Rb494BzBd9643b-- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 00:52:05 2003 Return-Path: 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 945CB37B401 for ; Wed, 23 Apr 2003 00:52:05 -0700 (PDT) Received: from haakonia.hitnet.rwth-aachen.de (haakonia.hitnet.RWTH-Aachen.DE [137.226.181.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id 813F743F85 for ; Wed, 23 Apr 2003 00:52:04 -0700 (PDT) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by haakonia.hitnet.rwth-aachen.de (Postfix) with ESMTP id D9E88A91E; Wed, 23 Apr 2003 09:51:50 +0200 (CEST) Received: by gondor.middleearth (Postfix, from userid 1001) id 69BF246A4; Wed, 23 Apr 2003 09:51:50 +0200 (CEST) Date: Wed, 23 Apr 2003 09:51:49 +0200 From: Christian Brueffer To: Sean Chittenden Message-ID: <20030423075149.GM17943@unixpages.org> References: <20030422162424.GA68869@troutmask.apl.washington.edu> <20030422171141.GG79923@perrin.int.nxad.com> <20030422172530.GA68973@troutmask.apl.washington.edu> <20030423064713.GL17943@unixpages.org> <20030423074050.GO79923@perrin.int.nxad.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="iUV/lbBrmPtUT9dM" Content-Disposition: inline In-Reply-To: <20030423074050.GO79923@perrin.int.nxad.com> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.0-CURRENT X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D cc: freebsd-docs@freebsd.org cc: Steve Kargl Subject: Re: no mailing list archive for freebsd-threads X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 07:52:05 -0000 --iUV/lbBrmPtUT9dM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 23, 2003 at 12:40:50AM -0700, Sean Chittenden wrote: > > > Go to the http://www.freebsd.org/support.html#mailing-list page > > > and click on browse. I just realized that clicking on search also > > > misses the freebsd-threads list. > >=20 > > Maybe the archiving doesn't work properly because of our switch to > > mailman. Does anyone have insight on this? Would be nice to still > > be able to search new mailing lists through the classic interface. >=20 > It is, I've gotten in touch with the folks that did the transition, so > hopefully something will come out of it. I'll track this and post a > result when I have one. -sc >=20 Cool, thanks! - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --iUV/lbBrmPtUT9dM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+pkYVbHYXjKDtmC0RAjpBAKCXA9ngLfg3vGndwbKhepI0wZfSPgCfcx2v Hh5q3x4hl0lCtbFEgLL8750= =SuGk -----END PGP SIGNATURE----- --iUV/lbBrmPtUT9dM-- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 01:10:18 2003 Return-Path: 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 B4EC937B401 for ; Wed, 23 Apr 2003 01:10:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB41D43F85 for ; Wed, 23 Apr 2003 01:10:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3N8AHUp009762 for ; Wed, 23 Apr 2003 01:10:17 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3N8AHIo009761; Wed, 23 Apr 2003 01:10:17 -0700 (PDT) Resent-Date: Wed, 23 Apr 2003 01:10:17 -0700 (PDT) Resent-Message-Id: <200304230810.h3N8AHIo009761@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 Morozovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E14D37B401; Wed, 23 Apr 2003 01:01:54 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2152643F85; Wed, 23 Apr 2003 01:01:53 -0700 (PDT) (envelope-from marck@woozle.rinet.ru) Received: from woozle.rinet.ru (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.9/8.12.9) with ESMTP id h3N81neQ009647; Wed, 23 Apr 2003 12:01:49 +0400 (MSD) (envelope-from marck@woozle.rinet.ru) Received: (from marck@localhost) by woozle.rinet.ru (8.12.9/8.12.9/Submit) id h3N81nra009646; Wed, 23 Apr 2003 12:01:49 +0400 (MSD) Message-Id: <200304230801.h3N81nra009646@woozle.rinet.ru> Date: Wed, 23 Apr 2003 12:01:49 +0400 (MSD) From: Dmitry Morozovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: bmah@FreeBSD.org cc: murray@FreeBSD.org cc: ru@FreeBSD.org Subject: docs/51305: some depends of docproj are missing in MINIMALPORTDOCS X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Dmitry Morozovsky List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 08:10:19 -0000 >Number: 51305 >Category: docs >Synopsis: some depends of docproj are missing in MINIMALPORTDOCS >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 23 01:10:16 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Dmitry Morozovsky >Release: FreeBSD 4-STABLE i386 >Organization: Cronyx Plus LLC (RiNet ISP) >Environment: System: FreeBSD 4-STABLE >Description: MINIMALDOCPORTS ports set in src/release/Makefile.inc.docports is a bit outdated (scr2txt is misplaced, and docproj-x{m,s}l are missing). Here is the fix. >How-To-Repeat: cd /usr/src/release make NOPORTS=YES watch results of docs.3 target building >Fix: Index: Makefile.inc.docports =================================================================== RCS file: /home/ncvs/src/release/Makefile.inc.docports,v retrieving revision 1.1.2.9 diff -u -r1.1.2.9 Makefile.inc.docports --- Makefile.inc.docports 29 Oct 2002 15:15:45 -0000 1.1.2.9 +++ Makefile.inc.docports 23 Apr 2003 07:51:03 -0000 @@ -35,7 +35,6 @@ ports/graphics/peps \ ports/graphics/png \ ports/graphics/scr2png \ - ports/graphics/scr2txt \ ports/graphics/tiff \ ports/print/freetype2 \ ports/print/ghostscript-gnu \ @@ -45,6 +44,8 @@ ports/textproc/docbook-310 \ ports/textproc/docbook-400 \ ports/textproc/docbook-410 \ + ports/textproc/docbook-xml \ + ports/textproc/docbook-xsl \ ports/textproc/docproj \ ports/textproc/dsssl-docbook-modular \ ports/textproc/expat2 \ @@ -54,6 +55,8 @@ ports/textproc/libxslt \ ports/textproc/linuxdoc \ ports/textproc/mkcatalog \ + ports/textproc/scr2txt \ + ports/textproc/sdocbook-xml \ ports/textproc/sgmlformat \ ports/textproc/xhtml \ ports/www/links1 \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 07:46:44 2003 Return-Path: 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 E5F5C37B401; Wed, 23 Apr 2003 07:46:44 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 299E343FA3; Wed, 23 Apr 2003 07:46:44 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id 9A43A10BF82; Wed, 23 Apr 2003 16:46:42 +0200 (CEST) Date: Wed, 23 Apr 2003 16:46:42 +0200 From: "Simon L. Nielsen" To: Jeroen van Gelderen Message-ID: <20030423144641.GA418@nitro.dk> References: <20030423134528.GB25484@lenny.anarcat.ath.cx> <9C93B960-7598-11D7-9A25-000393754B1C@vangelderen.org> <20030423143657.GA26982@lenny.anarcat.ath.cx> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="x+6KMIRAuhnl3hBn" Content-Disposition: inline In-Reply-To: <20030423143657.GA26982@lenny.anarcat.ath.cx> User-Agent: Mutt/1.5.4i cc: The Anarcat cc: freebsd-doc@freebsd.org cc: freebsd-current@freebsd.org Subject: Re: Little UFS2 FAQ X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 14:46:45 -0000 --x+6KMIRAuhnl3hBn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2003.04.23 10:36:57 -0400, The Anarcat wrote: > > If this is considered useful maybe the Doc Team should be in charge? > This is definitly doc people stuff and they should be contacted. This seems to be very useful. I would be happy to mark it up in SGML but I'm not sure where it would fit best. The FAQ seems obvious but if we are moving toward integrating the FAQ into the Handbook... [Added -doc to CC] --=20 Simon L. Nielsen --x+6KMIRAuhnl3hBn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+pqdR8kocFXgPTRwRAuMZAKCwIxvUNcZWd2eAfnx6UO0i/yqYbACg2Iu6 IrMJ67P11zHmpCkCemN8Eoo= =0/5u -----END PGP SIGNATURE----- --x+6KMIRAuhnl3hBn-- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 10:01:16 2003 Return-Path: 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 835ED37B401; Wed, 23 Apr 2003 10:01:16 -0700 (PDT) Received: from haakonia.hitnet.rwth-aachen.de (haakonia.hitnet.RWTH-Aachen.DE [137.226.181.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id A14A943FB1; Wed, 23 Apr 2003 10:01:15 -0700 (PDT) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by haakonia.hitnet.rwth-aachen.de (Postfix) with ESMTP id EE5AAA91E; Wed, 23 Apr 2003 19:01:14 +0200 (CEST) Received: by gondor.middleearth (Postfix, from userid 1001) id 308C946A4; Wed, 23 Apr 2003 19:01:14 +0200 (CEST) Date: Wed, 23 Apr 2003 19:01:13 +0200 From: Christian Brueffer To: "Simon L. Nielsen" Message-ID: <20030423170113.GE26749@unixpages.org> References: <20030423134528.GB25484@lenny.anarcat.ath.cx> <9C93B960-7598-11D7-9A25-000393754B1C@vangelderen.org> <20030423143657.GA26982@lenny.anarcat.ath.cx> <20030423144641.GA418@nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LSp5EJdfMPwZcMS1" Content-Disposition: inline In-Reply-To: <20030423144641.GA418@nitro.dk> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.0-CURRENT X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D cc: The Anarcat cc: Jeroen van Gelderen cc: freebsd-current@freebsd.org cc: freebsd-doc@freebsd.org Subject: Re: Little UFS2 FAQ X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 17:01:16 -0000 --LSp5EJdfMPwZcMS1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 23, 2003 at 04:46:42PM +0200, Simon L. Nielsen wrote: > On 2003.04.23 10:36:57 -0400, The Anarcat wrote: > > > If this is considered useful maybe the Doc Team should be in charge? > > This is definitly doc people stuff and they should be contacted. >=20 > This seems to be very useful. I would be happy to mark it up in SGML but > I'm not sure where it would fit best. The FAQ seems obvious but if we > are moving toward integrating the FAQ into the Handbook... >=20 It is definetly interesting. Maybe this could be extended to a file system handbook chapter or something. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --LSp5EJdfMPwZcMS1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+psbZbHYXjKDtmC0RAhGQAKCpxlaoKyDBE2lQWEzVELnLuopUsACfRL+i 3z6pS8K+f58a0RcFScJovPI= =og2R -----END PGP SIGNATURE----- --LSp5EJdfMPwZcMS1-- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 10:07:09 2003 Return-Path: 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 1BA3937B401 for ; Wed, 23 Apr 2003 10:07:08 -0700 (PDT) Received: from www.reppep.com (www.reppep.com [66.92.104.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1160E43F75 for ; Wed, 23 Apr 2003 10:07:06 -0700 (PDT) (envelope-from pepper@reppep.com) Received: from [129.85.219.160] (salt.rockefeller.edu [129.85.219.160]) by www.reppep.com (Postfix) with ESMTP id 760EFFDA4; Wed, 23 Apr 2003 13:07:03 -0400 (EDT) Mime-Version: 1.0 X-Sender: pepper@mail.reppep.com Message-Id: In-Reply-To: <20030423144641.GA418@nitro.dk> References: <20030423134528.GB25484@lenny.anarcat.ath.cx> <9C93B960-7598-11D7-9A25-000393754B1C@vangelderen.org> <20030423143657.GA26982@lenny.anarcat.ath.cx> <20030423144641.GA418@nitro.dk> Date: Wed, 23 Apr 2003 13:08:01 -0400 To: "Simon L. Nielsen" From: Chris Pepper Content-Type: text/plain; charset="us-ascii" ; format="flowed" cc: The Anarcat cc: Jeroen van Gelderen cc: freebsd-doc@freebsd.org Subject: Re: Little UFS2 FAQ X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 17:07:09 -0000 At 4:46 PM +0200 2003/04/23, Simon L. Nielsen wrote: >On 2003.04.23 10:36:57 -0400, The Anarcat wrote: >> > If this is considered useful maybe the Doc Team should be in charge? >> This is definitly doc people stuff and they should be contacted. > >This seems to be very useful. I would be happy to mark it up in SGML but >I'm not sure where it would fit best. The FAQ seems obvious but if we >are moving toward integrating the FAQ into the Handbook... > >[Added -doc to CC] Couls we get a little context here? I assume you're talking about a short article someone's offering, but it would help to see (a URL for) the article itself, or at least a better description of it. Thx, Chris Pepper -- Chris Pepper: Rockefeller University: From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 10:12:20 2003 Return-Path: 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 21DA937B401 for ; Wed, 23 Apr 2003 10:12:20 -0700 (PDT) Received: from smtp.eos.ocn.ne.jp (eos.ocn.ne.jp [211.6.83.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 136E443FAF for ; Wed, 23 Apr 2003 10:12:19 -0700 (PDT) (envelope-from hrs@eos.ocn.ne.jp) Received: from mail.allbsd.org (p53054-adsao12honb4-acca.tokyo.ocn.ne.jp [220.96.135.54]) by smtp.eos.ocn.ne.jp (Postfix) with ESMTP id E64FC28D0 for ; Thu, 24 Apr 2003 02:12:17 +0900 (JST) Received: from localhost (alph.allbsd.org [192.168.0.10]) h3NHBDJp093353 for ; Thu, 24 Apr 2003 02:11:13 +0900 (JST) (envelope-from hrs@eos.ocn.ne.jp) Date: Thu, 24 Apr 2003 02:11:09 +0900 (JST) Message-Id: <20030424.021109.59657888.hrs@eos.ocn.ne.jp> To: doc@freebsd.org From: Hiroki Sato X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Thu_Apr_24_02:11:09_2003_818)--" Content-Transfer-Encoding: 7bit Subject: doc/{,}/share/sgml/catalog X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 17:12:20 -0000 ----Next_Part(Thu_Apr_24_02:11:09_2003_818)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, I think it is reasonable to put non-English and language-specific entries in doc/share/sgml/catalog into doc//share/sgml/catalog. They are in doc/share/sgml/catalog together now, but not needed to be there. A patch to tidy them up is attached. Because the change affects the translation teams, I do not intend to commit it as is. Any comments/objections about this? I would like the teams to consider their language-specific FPI into catalog under the directory for the language. -- | Hiroki SATO / ----Next_Part(Thu_Apr_24_02:11:09_2003_818)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="doc.catalog.diff" Index: de_DE.ISO8859-1/share/sgml/catalog =================================================================== RCS file: /home/dcvs/doc/de_DE.ISO8859-1/share/sgml/catalog,v retrieving revision 1.4 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.4 catalog --- de_DE.ISO8859-1/share/sgml/catalog 24 Nov 2002 17:18:04 -0000 1.4 +++ de_DE.ISO8859-1/share/sgml/catalog 23 Apr 2003 16:14:23 -0000 @@ -1,5 +1,8 @@ -- ...................................................................... -- -- FreeBSD SGML Public Identifiers ...................................... -- + + -- ...................................................................... -- + -- German specific ...................................................... -- -- $FreeBSD: doc/de_DE.ISO8859-1/share/sgml/catalog,v 1.4 2002/11/24 17:18:04 mheinen Exp $ -- -- $FreeBSDde: de-docproj/share/sgml/catalog,v 1.4 2002/11/23 21:26:18 ue Exp $ -- @@ -13,3 +16,15 @@ PUBLIC "-//FreeBSD//ENTITIES DocBook Team Entities//DE" "teams.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//DE" + "bookinfo.ent" + +PUBLIC "-//FreeBSD//DOCUMENT DocBook Stylesheet//DE" + "freebsd.dsl" + +PUBLIC "-//FreeBSD//DOCUMENT DocBook Language Neutral Stylesheet//DE" + "freebsd.dsl" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Translator Entities//DE" + "translators.ent" Index: es_ES.ISO8859-1/share/sgml/catalog =================================================================== RCS file: /home/dcvs/doc/es_ES.ISO8859-1/share/sgml/catalog,v retrieving revision 1.2 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.2 catalog --- es_ES.ISO8859-1/share/sgml/catalog 21 Jun 2001 03:38:18 -0000 1.2 +++ es_ES.ISO8859-1/share/sgml/catalog 23 Apr 2003 16:18:25 -0000 @@ -1,5 +1,8 @@ -- ...................................................................... -- -- FreeBSD SGML Public Identifiers ...................................... -- + + -- ...................................................................... -- + -- Spanish specific ..................................................... -- -- $FreeBSD: doc/es_ES.ISO8859-1/share/sgml/catalog,v 1.2 2001/06/21 03:38:18 chris Exp $ -- @@ -9,3 +12,12 @@ PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//ES" "mailing-lists.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//ES" + "bookinfo.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//ES" + "mailing-lists.ent" + +PUBLIC "-//FreeBSD//DOCUMENT DocBook Stylesheet//ES" + "freebsd.dsl" Index: fr_FR.ISO8859-1/share/sgml/catalog =================================================================== RCS file: /home/dcvs/doc/fr_FR.ISO8859-1/share/sgml/catalog,v retrieving revision 1.4 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.4 catalog --- fr_FR.ISO8859-1/share/sgml/catalog 7 Jul 2002 19:24:02 -0000 1.4 +++ fr_FR.ISO8859-1/share/sgml/catalog 23 Apr 2003 16:06:39 -0000 @@ -1,5 +1,8 @@ -- ...................................................................... -- -- FreeBSD SGML Public Identifiers ...................................... -- + + -- ...................................................................... -- + -- French specific ...................................................... -- -- $FreeBSD: doc/fr_FR.ISO8859-1/share/sgml/catalog,v 1.4 2002/07/07 19:24:02 blackend Exp $ -- @@ -15,3 +18,27 @@ PUBLIC "-//FreeBSD//ENTITIES DocBook Team Entities//FR" "teams.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//FR" + "bookinfo.ent" + +PUBLIC "-//FreeBSD//ENTITIES Common Document URL Entities//FR" + "urls.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Translator Entities//FR" + "translators.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Abstract Entities//FR" + "abstract.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook ArtHeader Entities//FR" + "artheader.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//FR" + "mailing-lists.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Newsgroup Entities//FR" + "newsgroups.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Team Entities//FR" + "teams.ent" Index: it_IT.ISO8859-15/share/sgml/catalog =================================================================== RCS file: /home/dcvs/doc/it_IT.ISO8859-15/share/sgml/catalog,v retrieving revision 1.2 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.2 catalog --- it_IT.ISO8859-15/share/sgml/catalog 22 Sep 2002 10:30:10 -0000 1.2 +++ it_IT.ISO8859-15/share/sgml/catalog 23 Apr 2003 16:28:42 -0000 @@ -1,6 +1,9 @@ -- ...................................................................... -- -- FreeBSD SGML Public Identifiers ...................................... -- + -- ...................................................................... -- + -- Italian specific ..................................................... -- + -- $FreeBSD: doc/it_IT.ISO8859-15/share/sgml/catalog,v 1.2 2002/09/22 10:30:10 blackend Exp $ -- @@ -9,3 +12,12 @@ PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//IT" "mailing-lists.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//IT" + "bookinfo.ent" + +PUBLIC "-//FreeBSD//DOCUMENT DocBook Stylesheet//IT" + "freebsd.dsl" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Translator Entities//IT" + "translators.ent" Index: pt_BR.ISO8859-1/share/sgml/catalog =================================================================== RCS file: /home/dcvs/doc/pt_BR.ISO8859-1/share/sgml/catalog,v retrieving revision 1.3 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.3 catalog --- pt_BR.ISO8859-1/share/sgml/catalog 1 Oct 2002 02:42:25 -0000 1.3 +++ pt_BR.ISO8859-1/share/sgml/catalog 23 Apr 2003 16:17:38 -0000 @@ -1,5 +1,8 @@ -- ...................................................................... -- -- FreeBSD SGML Public Identifiers ...................................... -- + + -- ...................................................................... -- + -- Portuguese Brazilian specific ........................................ -- -- The FreeBSD Documentation Project -- The FreeBSD Brazilian Portuguese Documentation Project @@ -24,4 +27,19 @@ PUBLIC "-//FreeBSD//ENTITIES DocBook Specific Word Translations Entities//PTBR" "words.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//PTBR" + "bookinfo.ent" + +PUBLIC "-//FreeBSD//DOCUMENT DocBook Stylesheet//PTBR" + "freebsd.dsl" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//PTBR" + "mailing-lists.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Team Entities//PTBR" + "teams.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook Translator Entities//PTBR" + "translators.ent" Index: ru_RU.KOI8-R/share/sgml/catalog =================================================================== RCS file: /home/dcvs/doc/ru_RU.KOI8-R/share/sgml/catalog,v retrieving revision 1.3 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.3 catalog --- ru_RU.KOI8-R/share/sgml/catalog 25 Jul 2001 13:06:37 -0000 1.3 +++ ru_RU.KOI8-R/share/sgml/catalog 23 Apr 2003 16:10:03 -0000 @@ -1,5 +1,8 @@ -- ...................................................................... -- -- FreeBSD SGML Public Identifiers ...................................... -- + + -- ...................................................................... -- + -- Russian specific ...................................................... -- -- $FreeBSDru: frdp/doc/ru_RU.KOI8-R/share/sgml/catalog,v 1.2 2001/06/30 12:44:46 phantom Exp $ -- $FreeBSD: doc/ru_RU.KOI8-R/share/sgml/catalog,v 1.3 2001/07/25 13:06:37 phantom Exp $ @@ -11,3 +14,6 @@ PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//RU" "mailing-lists.ent" + +PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//RU" + "bookinfo.ent" Index: share/sgml/catalog =================================================================== RCS file: /home/dcvs/doc/share/sgml/catalog,v retrieving revision 1.27 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.27 catalog --- share/sgml/catalog 19 Apr 2003 11:39:30 -0000 1.27 +++ share/sgml/catalog 23 Apr 2003 16:34:37 -0000 @@ -57,93 +57,3 @@ PUBLIC "-//FreeBSD//ENTITIES DocBook Newsgroup Entities//EN" "../../en_US.ISO8859-1/share/sgml/newsgroups.ent" - - -- ...................................................................... -- - -- French specific ...................................................... -- - -PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//FR" - "../../fr_FR.ISO8859-1/share/sgml/bookinfo.ent" - -PUBLIC "-//FreeBSD//ENTITIES Common Document URL Entities//FR" - "../../fr_FR.ISO8859-1/share/sgml/urls.ent" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Translator Entities//FR" - "../../fr_FR.ISO8859-1/share/sgml/translators.ent" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Abstract Entities//FR" - "../../fr_FR.ISO8859-1/share/sgml/abstract.ent" - -PUBLIC "-//FreeBSD//ENTITIES DocBook ArtHeader Entities//FR" - "../../fr_FR.ISO8859-1/share/sgml/artheader.ent" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//FR" - "../../fr_FR.ISO8859-1/share/sgml/mailing-lists.ent" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Newsgroup Entities//FR" - "../../fr_FR.ISO8859-1/share/sgml/newsgroups.ent" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Team Entities//FR" - "../../fr_FR.ISO8859-1/share/sgml/teams.ent" - - -- ...................................................................... -- - -- Russian specific ...................................................... -- - -PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//RU" - "../../ru_RU.KOI8-R/share/sgml/bookinfo.ent" - - -- ...................................................................... -- - -- German specific ...................................................... -- - -PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//DE" - "../../de_DE.ISO8859-1/share/sgml/bookinfo.ent" - -PUBLIC "-//FreeBSD//DOCUMENT DocBook Stylesheet//DE" - "../../de_DE.ISO8859-1/share/sgml/freebsd.dsl" - -PUBLIC "-//FreeBSD//DOCUMENT DocBook Language Neutral Stylesheet//DE" - "../../de_DE.ISO8859-1/share/sgml/freebsd.dsl" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Translator Entities//DE" - "../../de_DE.ISO8859-1/share/sgml/translators.ent" - - -- ...................................................................... -- - -- Portuguese Brazilian specific ........................................ -- - -PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//PTBR" - "../../pt_BR.ISO8859-1/share/sgml/bookinfo.ent" - -PUBLIC "-//FreeBSD//DOCUMENT DocBook Stylesheet//PTBR" - "../../pt_BR.ISO8859-1/share/sgml/freebsd.dsl" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//PTBR" - "../../pt_BR.ISO8859-1/share/sgml/mailing-lists.ent" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Team Entities//PTBR" - "../../pt_BR.ISO8859-1/share/sgml/teams.ent" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Translator Entities//PTBR" - "../../pt_BR.ISO8859-1/share/sgml/translators.ent" - - -- ...................................................................... -- - -- Spanish specific ..................................................... -- - -PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//ES" - "../../es_ES.ISO8859-1/share/sgml/bookinfo.ent" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//ES" - "../../es_ES.ISO8859-1/share/sgml/mailing-lists.ent" - -PUBLIC "-//FreeBSD//DOCUMENT DocBook Stylesheet//ES" - "../../es_ES.ISO8859-1/share/sgml/freebsd.dsl" - - -- ...................................................................... -- - -- Italian specific ..................................................... -- - -PUBLIC "-//FreeBSD//ENTITIES DocBook BookInfo Entities//IT" - "../../it_IT.ISO8859-15/share/sgml/bookinfo.ent" - -PUBLIC "-//FreeBSD//DOCUMENT DocBook Stylesheet//IT" - "../../it_IT.ISO8859-15/share/sgml/freebsd.dsl" - -PUBLIC "-//FreeBSD//ENTITIES DocBook Translator Entities//IT" - "../../it_IT.ISO8859-15/share/sgml/translators.ent" ----Next_Part(Thu_Apr_24_02:11:09_2003_818)---- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 10:22:58 2003 Return-Path: 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 ACF8537B401 for ; Wed, 23 Apr 2003 10:22:58 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01AA443FBD for ; Wed, 23 Apr 2003 10:22:58 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id 37BF910BF82; Wed, 23 Apr 2003 19:22:57 +0200 (CEST) Date: Wed, 23 Apr 2003 19:22:57 +0200 From: "Simon L. Nielsen" To: Chris Pepper Message-ID: <20030423172255.GB796@nitro.dk> References: <20030423134528.GB25484@lenny.anarcat.ath.cx> <9C93B960-7598-11D7-9A25-000393754B1C@vangelderen.org> <20030423143657.GA26982@lenny.anarcat.ath.cx> <20030423144641.GA418@nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="eAbsdosE1cNLO4uF" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.4i cc: The Anarcat cc: Jeroen van Gelderen cc: freebsd-doc@freebsd.org Subject: Re: Little UFS2 FAQ X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 17:22:59 -0000 --eAbsdosE1cNLO4uF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2003.04.23 13:08:01 -0400, Chris Pepper wrote: > At 4:46 PM +0200 2003/04/23, Simon L. Nielsen wrote: > >On 2003.04.23 10:36:57 -0400, The Anarcat wrote: > >> > If this is considered useful maybe the Doc Team should be in charge? > >> This is definitly doc people stuff and they should be contacted. > > > >This seems to be very useful. I would be happy to mark it up in SGML but > >I'm not sure where it would fit best. The FAQ seems obvious but if we > >are moving toward integrating the FAQ into the Handbook... > > > >[Added -doc to CC] > Couls we get a little context here? I assume you're talking=20 > about a short article someone's offering, but it would help to see (a=20 > URL for) the article itself, or at least a better description of it. Sorry, yes. It is a short UFS2 FAQ collected by Jeroen van Gelderen . The plain the version is on http://jeroen.vangelderen.org/stuff/Little_UFS2_FAQ.txt . I think it sums up the the basic information about UFS2 compared to UFS1 very well. --=20 Simon L. Nielsen --eAbsdosE1cNLO4uF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+psvv8kocFXgPTRwRAiGhAKCUbLinFbZLl6VaUo+3LuhwItRrbwCcDmYp 8QH3RM+6aQrCbm2RA0tz6io= =TrHg -----END PGP SIGNATURE----- --eAbsdosE1cNLO4uF-- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 10:40:11 2003 Return-Path: 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 6CD2737B401 for ; Wed, 23 Apr 2003 10:40:11 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 687D843FAF for ; Wed, 23 Apr 2003 10:40:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3NHeAUp054786 for ; Wed, 23 Apr 2003 10:40:10 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3NHeAgD054785; Wed, 23 Apr 2003 10:40:10 -0700 (PDT) Resent-Date: Wed, 23 Apr 2003 10:40:10 -0700 (PDT) Resent-Message-Id: <200304231740.h3NHeAgD054785@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, Ted Nolan Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3459837B401 for ; Wed, 23 Apr 2003 10:33:14 -0700 (PDT) Received: from colanix0.ga.erg.sri.com (colanix0.ga.erg.sri.com [192.26.245.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65D1643FE3 for ; Wed, 23 Apr 2003 10:33:13 -0700 (PDT) (envelope-from ted@colanix0.ga.erg.sri.com) Received: from colanix0.ga.erg.sri.com (localhost [127.0.0.1]) h3NHXANd075699; Wed, 23 Apr 2003 13:33:10 -0400 (EDT) (envelope-from ted@colanix0.ga.erg.sri.com) Received: (from ted@localhost) by colanix0.ga.erg.sri.com (8.12.3/8.12.3/Submit) id h3NHX966075698; Wed, 23 Apr 2003 13:33:09 -0400 (EDT) Message-Id: <200304231733.h3NHX966075698@colanix0.ga.erg.sri.com> Date: Wed, 23 Apr 2003 13:33:09 -0400 (EDT) From: Ted Nolan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: ted@erg.sri.com Subject: docs/51322: Man page for kvm_getprocs(3) omits #include X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ted Nolan List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 17:40:11 -0000 >Number: 51322 >Category: docs >Synopsis: Man page for kvm_getprocs(3) omits #include >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: Wed Apr 23 10:40:09 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Ted Nolan >Release: FreeBSD 4.6.2-RELEASE i386 >Organization: SRI >Environment: any System: FreeBSD colanix0 4.6.2-RELEASE FreeBSD 4.6.2-RELEASE #0: Wed Aug 14 21:23:26 GMT 2002 murray@builder.freebsdmall.com:/usr/src/sys/compile/GENERIC i386 >Description: The man page for kvm_getenvv() (which falls under kvm_getprocs(3), says you need to #include #include #include before calling the functions listed. I find you must also #include of you will not have a definition of 'struct kinfo_proc' for calls to kvm_getargv() & kvm_getenvv() >How-To-Repeat: Write a program which calls kvm_getenvv() with only the include files listed on the man page. >Fix: Add #include to the man page. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 10:42:14 2003 Return-Path: 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 7F45C37B401 for ; Wed, 23 Apr 2003 10:42:14 -0700 (PDT) Received: from mail.alexdupre.com (212-41-211-209.adsl.galactica.it [212.41.211.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6317543F85 for ; Wed, 23 Apr 2003 10:42:12 -0700 (PDT) (envelope-from sysadmin@alexdupre.com) Received: from thunder.alexdupre.com ([192.168.0.101]) by mail.alexdupre.com (MERAK 3.10.011) with ESMTP id F05B6CDE; Wed, 23 Apr 2003 19:42:36 +0200 Date: Wed, 23 Apr 2003 19:42:09 +0200 From: Alex Dupre X-Mailer: The Bat! (v1.60q) X-Priority: 3 (Normal) Message-ID: <193879609822.20030423194209@alexdupre.com> To: owner-freebsd-doc@freebsd.org, Hiroki Sato In-Reply-To: <20030424.021109.59657888.hrs@eos.ocn.ne.jp> References: <20030424.021109.59657888.hrs@eos.ocn.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: doc@freebsd.org Subject: Re: doc/{,}/share/sgml/catalog X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alex Dupre List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 17:42:14 -0000 Wednesday, April 23, 2003, 7:11:09 PM, you wrote: HS> I think it is reasonable to put non-English and language-specific HS> entries in doc/share/sgml/catalog into doc//share/sgml/catalog. HS> They are in doc/share/sgml/catalog together now, but not needed HS> to be there. If they are not needed, I completely agree with you. In this case I give you the permission to apply the Italian part of the patch to the tree. -- Alex Dupre sysadmin@alexdupre.com http://www.alexdupre.com/ alex@sm.FreeBSD.org Today's excuse: The data on your hard drive is out of balance. From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 10:42:14 2003 Return-Path: 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 A426137B404 for ; Wed, 23 Apr 2003 10:42:14 -0700 (PDT) Received: from mail.alexdupre.com (212-41-211-209.adsl.galactica.it [212.41.211.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6483B43FB1 for ; Wed, 23 Apr 2003 10:42:12 -0700 (PDT) (envelope-from sysadmin@alexdupre.com) Received: from thunder.alexdupre.com ([192.168.0.101]) by mail.alexdupre.com (MERAK 3.10.011) with ESMTP id F05B6CDE; Wed, 23 Apr 2003 19:42:36 +0200 Date: Wed, 23 Apr 2003 19:42:09 +0200 From: Alex Dupre X-Mailer: The Bat! (v1.60q) X-Priority: 3 (Normal) Message-ID: <193879609822.20030423194209@alexdupre.com> To: owner-freebsd-doc@freebsd.org, Hiroki Sato In-Reply-To: <20030424.021109.59657888.hrs@eos.ocn.ne.jp> References: <20030424.021109.59657888.hrs@eos.ocn.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: doc@freebsd.org Subject: Re: doc/{,}/share/sgml/catalog X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alex Dupre List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 17:42:15 -0000 Wednesday, April 23, 2003, 7:11:09 PM, you wrote: HS> I think it is reasonable to put non-English and language-specific HS> entries in doc/share/sgml/catalog into doc//share/sgml/catalog. HS> They are in doc/share/sgml/catalog together now, but not needed HS> to be there. If they are not needed, I completely agree with you. In this case I give you the permission to apply the Italian part of the patch to the tree. -- Alex Dupre sysadmin@alexdupre.com http://www.alexdupre.com/ alex@sm.FreeBSD.org Today's excuse: The data on your hard drive is out of balance. From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 13:18:37 2003 Return-Path: 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 77D7D37B401 for ; Wed, 23 Apr 2003 13:18:37 -0700 (PDT) Received: from bio.fsu.edu (bio.fsu.edu [128.186.38.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9D6643FA3 for ; Wed, 23 Apr 2003 13:18:34 -0700 (PDT) (envelope-from astuy@bio.fsu.edu) Received: from alexpc.bio.fsu.edu (alexpc.bio.fsu.edu [128.186.38.199]) by bio.fsu.edu (8.12.6p2/8.12.6) with ESMTP id h3NKMKjN066923 for ; Wed, 23 Apr 2003 16:22:20 -0400 (EDT) (envelope-from astuy@bio.fsu.edu) Message-Id: <5.1.0.14.2.20030423161520.01b42bc0@bio.fsu.edu> X-Sender: astuy@bio.fsu.edu X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 23 Apr 2003 16:21:49 -0400 To: doc@FreeBSD.org From: Alexander Stuy Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-MailScanner: Found to be clean Subject: just a thank you X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 20:18:37 -0000 Thank you for all the great stuff the freebsd group does. My firewall is going now and should be tested and in place very soon. And of course this email comes via a freebsd mailserver. And our web servers are freebsd. And our dns server. And our samba,netatalk server. And . . . Ok i'll stop now. http://www.freebsd.org/doc/en_US.ISO8859-1/articles/filtering-bridges/index.html cheers, +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Alexander Stuy astuy@bio.fsu.edu http://www.bio.fsu.edu http://bio.fsu.edu/htmls/alex.html From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 18:03:57 2003 Return-Path: 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 3110F37B401; Wed, 23 Apr 2003 18:03:57 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 139C143FD7; Wed, 23 Apr 2003 18:03:56 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id E0DA210BF82; Thu, 24 Apr 2003 03:03:54 +0200 (CEST) Date: Thu, 24 Apr 2003 03:03:54 +0200 From: "Simon L. Nielsen" To: Christian Brueffer Message-ID: <20030424010352.GB1811@nitro.dk> References: <20030423134528.GB25484@lenny.anarcat.ath.cx> <9C93B960-7598-11D7-9A25-000393754B1C@vangelderen.org> <20030423143657.GA26982@lenny.anarcat.ath.cx> <20030423144641.GA418@nitro.dk> <20030423170113.GE26749@unixpages.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ghzN8eJ9Qlbqn3iT" Content-Disposition: inline In-Reply-To: <20030423170113.GE26749@unixpages.org> User-Agent: Mutt/1.5.4i cc: The Anarcat cc: freebsd-current@freebsd.org cc: freebsd-doc@freebsd.org Subject: Re: Little UFS2 FAQ X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2003 01:03:57 -0000 --ghzN8eJ9Qlbqn3iT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2003.04.23 19:01:13 +0200, Christian Brueffer wrote: > On Wed, Apr 23, 2003 at 04:46:42PM +0200, Simon L. Nielsen wrote: > > This seems to be very useful. I would be happy to mark it up in SGML but > > I'm not sure where it would fit best. The FAQ seems obvious but if we > > are moving toward integrating the FAQ into the Handbook... >=20 > It is definetly interesting. Maybe this could be extended to a > file system handbook chapter or something. =46rom a quick look at the FAQ it also looks like there are several entries that could be used as a base for such chapter. I will have a closer look at it in the next few days. --=20 Simon L. Nielsen --ghzN8eJ9Qlbqn3iT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+pzf48kocFXgPTRwRAq5cAJ9dODoTiVbAGIHlGUJOQwh2+Nj0WQCgs6Ji Zu+wZkGfCf5E61kevxIn/RA= =RB7z -----END PGP SIGNATURE----- --ghzN8eJ9Qlbqn3iT-- From owner-freebsd-doc@FreeBSD.ORG Wed Apr 23 21:23:31 2003 Return-Path: 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 09BAB37B401 for ; Wed, 23 Apr 2003 21:23:31 -0700 (PDT) Received: from brfree.com.br (mail.brfree.com.br [200.197.53.26]) by mx1.FreeBSD.org (Postfix) with SMTP id 8F8B443FBF for ; Wed, 23 Apr 2003 21:23:29 -0700 (PDT) (envelope-from cwsinfo@brfree.com.br) Received: (qmail 12610 invoked from network); 24 Apr 2003 01:21:39 -0000 Received: from unknown (HELO NoteBook1) (200.149.11.117) by 0 with SMTP; 24 Apr 2003 01:21:39 -0000 From: "Wagner Guimaraes" To: Date: Thu, 24 Apr 2003 01:24:45 -0300 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Subject: =?iso-8859-1?q?ENC=3A_*****_Sugest=E3o_Free_BSD_****?= X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: cwsinfo@brfree.com.br List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2003 04:23:31 -0000 Olá amigos Estou a 3 meses estudando o FreeBSD e coloco uma sugestão para todos ! Que tal comerçar-mos um projeto para criação de um CONSOLE, tipo GTK da Conectiva, para Instalação e Configuração (em português e outras linguas) e outro CONSOLE para Gerenciamento e demais configurações do sistema, assim como hoje possui a Novell 6.0, que é totalmente gerenciado a partir uma estação (Windows por exemplo) para tornar a implementação e customização do BSD mais amigavel e torná-lo cada vez mais adquirido e utilizado pelos profissionais da área de tecnologia. Estou certo que este projeto tornará o BSD muito mais adquirido e competitivo Atenciosamente Wagner Guimarães e-mail: cwsinfo@brfree.com.br Favor, repassem esta mensagem para toda comunidade BSD. From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 08:10:26 2003 Return-Path: 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 15E9537B405 for ; Thu, 24 Apr 2003 08:10:26 -0700 (PDT) Received: from hotmail.com (dav17.law15.hotmail.com [64.4.22.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id A043943F3F for ; Thu, 24 Apr 2003 08:10:25 -0700 (PDT) (envelope-from laurentiuioana@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 24 Apr 2003 08:10:25 -0700 Received: from 217.10.201.246 by law15-dav17.adinternal.hotmail.com with DAV; Thu, 24 Apr 2003 15:10:25 +0000 X-Originating-IP: [217.10.201.246] X-Originating-Email: [laurentiuioana@hotmail.com] From: "laurentiuioana" To: Date: Thu, 24 Apr 2003 18:10:02 +0300 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: X-OriginalArrivalTime: 24 Apr 2003 15:10:25.0616 (UTC) FILETIME=[A2408500:01C30A73] Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: subscribe X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2003 15:10:26 -0000 hi! i am Laurentiu and i wish to participate to translation in romanian = language of the freebsd manuals, howtos etc. i am 26 years old and this year i started work with linux distributions. if you think i can help with translation of that documents from english = to romanian language please let me know. my e-mail is laurentiuioana@hotmail.com . bye From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 08:11:09 2003 Return-Path: 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 A777C37B401; Thu, 24 Apr 2003 08:11:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4142E43FB1; Thu, 24 Apr 2003 08:11:09 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3OFB9Up087344; Thu, 24 Apr 2003 08:11:09 -0700 (PDT) (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3OFB8iN087322; Thu, 24 Apr 2003 08:11:08 -0700 (PDT) Date: Thu, 24 Apr 2003 08:11:08 -0700 (PDT) From: Tom Rhodes Message-Id: <200304241511.h3OFB8iN087322@freefall.freebsd.org> To: stacey@vickiandstacey.com, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Subject: Re: docs/48728: Option "device agp" in GENERIC kernel on FreeBSD 4.8 Prelease not included in online Handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2003 15:11:10 -0000 Synopsis: Option "device agp" in GENERIC kernel on FreeBSD 4.8 Prelease not included in online Handbook State-Changed-From-To: open->closed State-Changed-By: trhodes State-Changed-When: Thu Apr 24 08:10:29 PDT 2003 State-Changed-Why: I have just added device agp along with a description. Thanks! Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Thu Apr 24 08:10:29 PDT 2003 Responsible-Changed-Why: I have just added device agp along with a description. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=48728 From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 15:20:05 2003 Return-Path: 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 B90A437B401 for ; Thu, 24 Apr 2003 15:20:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA93843FAF for ; Thu, 24 Apr 2003 15:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3OMK4Up000400 for ; Thu, 24 Apr 2003 15:20:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3OMK42b000399; Thu, 24 Apr 2003 15:20:04 -0700 (PDT) Resent-Date: Thu, 24 Apr 2003 15:20:04 -0700 (PDT) Resent-Message-Id: <200304242220.h3OMK42b000399@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, Michel Oosterhof Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67F1837B401 for ; Thu, 24 Apr 2003 15:16:17 -0700 (PDT) Received: from smtpzilla5.xs4all.nl (smtpzilla5.xs4all.nl [194.109.127.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1F7C43FDF for ; Thu, 24 Apr 2003 15:16:15 -0700 (PDT) (envelope-from michel@shift.xs4all.nl) Received: from shift.xs4all.nl (shift.xs4all.nl [213.84.15.22]) by smtpzilla5.xs4all.nl (8.12.9/8.12.9) with ESMTP id h3OMGBoV020119 for ; Fri, 25 Apr 2003 00:16:12 +0200 (CEST) Received: by shift.xs4all.nl (Postfix, from userid 1000) id 4375E13E7; Fri, 25 Apr 2003 00:16:11 +0200 (CEST) Message-Id: <20030424221611.4375E13E7@shift.xs4all.nl> Date: Fri, 25 Apr 2003 00:16:11 +0200 (CEST) From: Michel Oosterhof To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51396: prompt documented as login_prompt in login.conf.5 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Michel Oosterhof List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2003 22:20:06 -0000 >Number: 51396 >Category: docs >Synopsis: prompt documented as login_prompt in login.conf.5 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 24 15:20:03 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Michel Oosterhof >Release: FreeBSD 4.7-PRERELEASE i386 >Organization: >Environment: System: FreeBSD hydrogen 4.7-PRERELEASE FreeBSD 4.7-PRERELEASE #0: Mon Sep 9 20:44:52 CEST 2002 root@hydrogen:/usr/obj/usr/src/sys/HYDROGEN i386 >Description: The field 'login_prompt' as documented in login.conf(5) is not used. In stead the code in usr.bin/login/login.c looks for 'prompt'. >How-To-Repeat: >Fix: Either change the documentation to read 'prompt', or change the code to read 'login_prompt' >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 15:30:16 2003 Return-Path: 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 D8DD737B401 for ; Thu, 24 Apr 2003 15:30:16 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8272443FB1 for ; Thu, 24 Apr 2003 15:30:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3OMUFUp043217 for ; Thu, 24 Apr 2003 15:30:15 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3OMUFSH043215; Thu, 24 Apr 2003 15:30:15 -0700 (PDT) Resent-Date: Thu, 24 Apr 2003 15:30:15 -0700 (PDT) Resent-Message-Id: <200304242230.h3OMUFSH043215@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, Michel Oosterhof Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C27B537B401 for ; Thu, 24 Apr 2003 15:22:48 -0700 (PDT) Received: from smtpzilla3.xs4all.nl (smtpzilla3.xs4all.nl [194.109.127.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54DCA43FAF for ; Thu, 24 Apr 2003 15:22:47 -0700 (PDT) (envelope-from michel@shift.xs4all.nl) Received: from shift.xs4all.nl (shift.xs4all.nl [213.84.15.22]) by smtpzilla3.xs4all.nl (8.12.9/8.12.9) with ESMTP id h3OMMhiU023270 for ; Fri, 25 Apr 2003 00:22:44 +0200 (CEST) Received: by shift.xs4all.nl (Postfix, from userid 1000) id 73AC913E7; Fri, 25 Apr 2003 00:22:42 +0200 (CEST) Message-Id: <20030424222242.73AC913E7@shift.xs4all.nl> Date: Fri, 25 Apr 2003 00:22:42 +0200 (CEST) From: Michel Oosterhof To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51397: login-retries & login-backoff fields undocumented in login.conf(5) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2003 22:30:17 -0000 >Number: 51397 >Category: docs >Synopsis: login-retries & login-backoff fields undocumented in login.conf(5) >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 Apr 24 15:30:15 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Michel Oosterhof >Release: FreeBSD 4.7-PRERELEASE i386 >Organization: >Environment: System: FreeBSD hydrogen 4.7-PRERELEASE FreeBSD 4.7-PRERELEASE #0: Mon Sep 9 20:44:52 CEST 2002 root@hydrogen:/usr/obj/usr/src/sys/HYDROGEN i386 >Description: The fields 'login-retries' and 'login-backoff' are used in usr.bin/login/login.c but not documented in login.conf(5). >How-To-Repeat: >Fix: Document options. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 15:40:13 2003 Return-Path: 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 4882837B401 for ; Thu, 24 Apr 2003 15:40:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8231943FD7 for ; Thu, 24 Apr 2003 15:40:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3OMeBUp083361 for ; Thu, 24 Apr 2003 15:40:11 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3OMeBEa083357; Thu, 24 Apr 2003 15:40:11 -0700 (PDT) Resent-Date: Thu, 24 Apr 2003 15:40:11 -0700 (PDT) Resent-Message-Id: <200304242240.h3OMeBEa083357@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, Eric Anholt Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09D5C37B401 for ; Thu, 24 Apr 2003 15:37:20 -0700 (PDT) Received: from anholt.dyndns.org (copeland-30-191.lclark.edu [149.175.30.191]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6566243FA3 for ; Thu, 24 Apr 2003 15:37:18 -0700 (PDT) (envelope-from anholt@anholt.dyndns.org) Received: from anholt.dyndns.org (localhost [127.0.0.1]) by anholt.dyndns.org (8.12.9/8.12.9) with ESMTP id h3OMBMA8001872 for ; Thu, 24 Apr 2003 15:11:22 -0700 (PDT) (envelope-from anholt@anholt.dyndns.org) Received: (from root@localhost) by anholt.dyndns.org (8.12.9/8.12.9/Submit) id h3OMBLWv001871; Thu, 24 Apr 2003 15:11:21 -0700 (PDT) Message-Id: <200304242211.h3OMBLWv001871@anholt.dyndns.org> Date: Thu, 24 Apr 2003 15:11:21 -0700 (PDT) From: Eric Anholt To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51399: XFree86 section of handbook needs some updating. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Eric Anholt List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2003 22:40:13 -0000 >Number: 51399 >Category: docs >Synopsis: XFree86 section of handbook needs some updating. >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 Apr 24 15:40:11 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Eric Anholt >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: >Description: Part of the "Advanced Configuration Topics" section of the XFree86 configuration part of the handbook is somewhat out of date/unclear. AGP is in GENERIC as of 4.8 and 5.0, and if people have agp already and add agp_load="YES" to their loader.conf as it suggests, agp won't work at all. On systems without agp, trying to kldload agp won't work; it has to be in the kernel at boot time through being compiled in or loader.conf. (I'm going to have to find someone with an i810 to confirm if the NoDDC is still needed, and see if it can get fixed). >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 15:43:54 2003 Return-Path: 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 4C8C737B401; Thu, 24 Apr 2003 15:43:54 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE87F43F3F; Thu, 24 Apr 2003 15:43:53 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from freefall.freebsd.org (ceri@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3OMhrUp000964; Thu, 24 Apr 2003 15:43:53 -0700 (PDT) (envelope-from ceri@freefall.freebsd.org) Received: (from ceri@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3OMhrKZ000955; Thu, 24 Apr 2003 15:43:53 -0700 (PDT) Date: Thu, 24 Apr 2003 15:43:53 -0700 (PDT) From: Ceri Davies Message-Id: <200304242243.h3OMhrKZ000955@freefall.freebsd.org> To: ceri@FreeBSD.org, freebsd-doc@FreeBSD.org, des@FreeBSD.org Subject: Re: docs/51396: prompt documented as login_prompt in login.conf.5 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2003 22:43:54 -0000 Synopsis: prompt documented as login_prompt in login.conf.5 Responsible-Changed-From-To: freebsd-doc->des Responsible-Changed-By: ceri Responsible-Changed-When: Thu Apr 24 15:40:08 PDT 2003 Responsible-Changed-Why: Over to our login-meister. I suspect that renaming the variable would be preferable, as it seems clearer, but otherwise the manpage can easily be corrected. http://www.freebsd.org/cgi/query-pr.cgi?pr=51396 From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 16:37:06 2003 Return-Path: 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 0BF6F37B401; Thu, 24 Apr 2003 16:37:06 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DCF343F85; Thu, 24 Apr 2003 16:37:05 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id 1C9BE10BF82; Fri, 25 Apr 2003 01:37:04 +0200 (CEST) Date: Fri, 25 Apr 2003 01:37:04 +0200 From: "Simon L. Nielsen" To: freebsd-doc@freebsd.org Message-ID: <20030424233703.GB48527@nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KFztAG8eRSV9hGtP" Content-Disposition: inline User-Agent: Mutt/1.5.4i cc: Ruslan Ermilov Subject: .Xr references to ports in man pages X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Apr 2003 23:37:06 -0000 --KFztAG8eRSV9hGtP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello I have been looking at fixing bad man references (.Xr) in the FreeBSD man pages. Several system man pages references man pages from ports which of course might not be available. This was also brought up in Oct 2001 by Murray Stokely where Ruslan Ermilov made a patch to support this in the standard .Xr macro. The patch extends .Xr to handled port references like this : =2EXr smb.conf 5 net samba which would be rendered as =2EXr smb.conf 5 =2EBq Pa ports/net/samba and look like (except that the path is underlined) smb.conf(5) [ports/net/samba] What do people think about handling it like this? It could perhaps be rendered diffently but I personally think that the way it is handled in the current patch is fine. Mainly because I think it is rather clear what is meant and it doesn't "conflict" with other "rendering" that I have seen. I would be happy to go through the system man pages and add the apropriate references (I already have a perl script for detecting bad references). The mail from Ruslan with the patch can be found at http://www.freebsd.org/cgi/mid.cgi?id=3D20011008191058.B13684@sunbay.com . I have extracted the patch if anyone wants to try it (it works at least againt a recent CURRENT) : http://simon.nitro.dk/freebsd/files/misc/ru-mdoc-ports.patch . Hope somebody has an opinion about this. --=20 Simon L. Nielsen --KFztAG8eRSV9hGtP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+qHUf8kocFXgPTRwRAtJYAKDFLo7lsGskUh1RauHbP6nnnXS+rQCgrhut 2x5O0xmpH3DzbUOBzJZ8QJI= =NV0O -----END PGP SIGNATURE----- --KFztAG8eRSV9hGtP-- From owner-freebsd-doc@FreeBSD.ORG Thu Apr 24 23:30:22 2003 Return-Path: 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 64A8437B401 for ; Thu, 24 Apr 2003 23:30:22 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id E32AD43F85 for ; Thu, 24 Apr 2003 23:30:18 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h3P6UE62034961 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 25 Apr 2003 09:30:15 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h3P6UEg0034956; Fri, 25 Apr 2003 09:30:14 +0300 (EEST) (envelope-from ru) Date: Fri, 25 Apr 2003 09:30:14 +0300 From: Ruslan Ermilov To: "Simon L. Nielsen" Message-ID: <20030425063014.GG32731@sunbay.com> References: <20030424233703.GB48527@nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="I3tAPq1Rm2pUxvsp" Content-Disposition: inline In-Reply-To: <20030424233703.GB48527@nitro.dk> User-Agent: Mutt/1.5.4i cc: freebsd-doc@freebsd.org Subject: Re: .Xr references to ports in man pages X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2003 06:30:22 -0000 --I3tAPq1Rm2pUxvsp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Just a clarification. Simon contacted me privately with this issue, and I asked him to re-open this discussion here. In particular, I'm interested in others' opinions on how this should be rendered. [Please don't drop me from the Cc: line, as I'm not subscribed to this mailing list.] On Fri, Apr 25, 2003 at 01:37:04AM +0200, Simon L. Nielsen wrote: > Hello >=20 > I have been looking at fixing bad man references (.Xr) in the FreeBSD man > pages. >=20 > Several system man pages references man pages from ports which of course > might not be available. This was also brought up in Oct 2001 by Murray > Stokely where Ruslan Ermilov made a patch to support this in the > standard .Xr macro. The patch extends .Xr to handled port references > like this : >=20 > .Xr smb.conf 5 net samba >=20 > which would be rendered as >=20 > .Xr smb.conf 5 > .Bq Pa ports/net/samba >=20 > and look like (except that the path is underlined) >=20 > smb.conf(5) [ports/net/samba] >=20 > What do people think about handling it like this? >=20 > It could perhaps be rendered diffently but I personally think that the > way it is handled in the current patch is fine. Mainly because I think > it is rather clear what is meant and it doesn't "conflict" with other > "rendering" that I have seen. >=20 > I would be happy to go through the system man pages and add the > apropriate references (I already have a perl script for detecting bad > references). >=20 > The mail from Ruslan with the patch can be found at > http://www.freebsd.org/cgi/mid.cgi?id=3D20011008191058.B13684@sunbay.com . >=20 > I have extracted the patch if anyone wants to try it (it works at least > againt a recent CURRENT) : > http://simon.nitro.dk/freebsd/files/misc/ru-mdoc-ports.patch . >=20 > Hope somebody has an opinion about this. --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --I3tAPq1Rm2pUxvsp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+qNX1Ukv4P6juNwoRAiBPAJ9/EQr08gOdR1VOhImhfxAWyyq9SACfZAC+ 3wMj7VOBddG0SdPTx7pUfe4= =115e -----END PGP SIGNATURE----- --I3tAPq1Rm2pUxvsp-- From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 02:02:44 2003 Return-Path: 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 E1E0237B401; Fri, 25 Apr 2003 02:02:44 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F81243F75; Fri, 25 Apr 2003 02:02:44 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from freefall.freebsd.org (blackend@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3P92iUp052307; Fri, 25 Apr 2003 02:02:44 -0700 (PDT) (envelope-from blackend@freefall.freebsd.org) Received: (from blackend@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3P92idI052303; Fri, 25 Apr 2003 02:02:44 -0700 (PDT) Date: Fri, 25 Apr 2003 02:02:44 -0700 (PDT) From: Marc Fonvieille Message-Id: <200304250902.h3P92idI052303@freefall.freebsd.org> To: blackend@FreeBSD.org, freebsd-doc@FreeBSD.org, blackend@FreeBSD.org Subject: Re: docs/51399: XFree86 section of handbook needs some updating. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2003 09:02:45 -0000 Synopsis: XFree86 section of handbook needs some updating. Responsible-Changed-From-To: freebsd-doc->blackend Responsible-Changed-By: blackend Responsible-Changed-When: Fri Apr 25 02:01:17 PDT 2003 Responsible-Changed-Why: I will fix that part. http://www.freebsd.org/cgi/query-pr.cgi?pr=51399 From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 02:40:05 2003 Return-Path: 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 A89C637B401 for ; Fri, 25 Apr 2003 02:40:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB61243FAF for ; Fri, 25 Apr 2003 02:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3P9e3Up006121 for ; Fri, 25 Apr 2003 02:40:03 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3P9e3pw006120; Fri, 25 Apr 2003 02:40:03 -0700 (PDT) Resent-Date: Fri, 25 Apr 2003 02:40:03 -0700 (PDT) Resent-Message-Id: <200304250940.h3P9e3pw006120@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, Bruce Cran Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B88DA37B401 for ; Fri, 25 Apr 2003 02:36:19 -0700 (PDT) Received: from grassmarket.ucs.ed.ac.uk (grassmarket.ucs.ed.ac.uk [129.215.166.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEE7543FB1 for ; Fri, 25 Apr 2003 02:36:04 -0700 (PDT) (envelope-from s9905155@sms.ed.ac.uk) Received: from fourtytwo.brucec.backnet (12266209.resnet.ed.ac.uk [10.6.0.100] (may be forged))h3P9a3605189 for ; Fri, 25 Apr 2003 10:36:03 +0100 (BST) Received: from fourtytwo.brucec.backnet (localhost.fourtytwo.brucec.backnet [127.0.0.1])h3P9a22C005616 for ; Fri, 25 Apr 2003 10:36:03 +0100 (BST) (envelope-from bruce@fourtytwo.brucec.backnet) Received: (from bruce@localhost) by fourtytwo.brucec.backnet (8.12.9/8.12.9/Submit) id h3P9a2Oc005615; Fri, 25 Apr 2003 10:36:02 +0100 (BST) Message-Id: <200304250936.h3P9a2Oc005615@fourtytwo.brucec.backnet> Date: Fri, 25 Apr 2003 10:36:02 +0100 (BST) From: Bruce Cran To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51407: references to gated remain when gated is no longer available X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Bruce Cran List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2003 09:40:06 -0000 >Number: 51407 >Category: docs >Synopsis: references to gated remain when gated is no longer available >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 Apr 25 02:40:02 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Bruce Cran >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD fourtytwo.brucec.backnet 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Thu Apr 24 04:20:34 BST 2003 bruce@fourtytwo.brucec.backnet:/usr/obj/usr/src/sys/MYKERNEL i386 FreeBSD 4.7 and 5.0-CURRENT documentation, FreeBSD handbook online >Description: gated is now commercial software and is no longer available from the ports system. However, the handbook (http://www.freebsd.org/docs/en_US.ISO8859-1/books/handbook/routing.html) and the rtquery man page both make references to it, saying that gated would be more suitable in more complex environments. These should probably be either removed or changed to suggest a routing package such as zebra which is in the ports system >How-To-Repeat: read the FreeBSD handbook or 'man rtquery' >Fix: change or remove references to gated in the documentation >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 12:06:46 2003 Return-Path: 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 7F6C237B401; Fri, 25 Apr 2003 12:06:46 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id A119243FBF; Fri, 25 Apr 2003 12:06:45 -0700 (PDT) (envelope-from swear@attbi.com) Received: from localhost.localdomain (unknown[12.242.158.67]) by sccrmhc02.attbi.com (sccrmhc02) with ESMTP id <2003042519064400200o01m5e>; Fri, 25 Apr 2003 19:06:44 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.localdomain (8.12.6/8.12.5) with ESMTP id h3PJ6wsg050296; Fri, 25 Apr 2003 12:06:58 -0700 (PDT) (envelope-from swear@attbi.com) Received: (from jojo@localhost) by localhost.localdomain (8.12.6/8.12.5/Submit) id h3PJ6l3Q050291; Fri, 25 Apr 2003 12:06:47 -0700 (PDT) (envelope-from swear@attbi.com) X-Authentication-Warning: localhost.localdomain: jojo set sender to swear@attbi.com using -f To: "Simon L. Nielsen" References: <20030424233703.GB48527@nitro.dk> From: swear@attbi.com (Gary W. Swearingen) Date: 25 Apr 2003 12:06:46 -0700 In-Reply-To: <20030424233703.GB48527@nitro.dk> Message-ID: Lines: 21 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-doc@freebsd.org cc: Ruslan Ermilov Subject: Re: .Xr references to ports in man pages X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2003 19:06:46 -0000 "Simon L. Nielsen" writes: > Hope somebody has an opinion about this. I can't think of a better way to render the information, but I have a suggestion regarding the ease of manpage source maintenance. Unless port names require their category name to be unique (and they don't, AFAIK), then the inclusion of the port category within the man pages introduces an unnecessary need to search man pages and make corrections whenever port categorization is changed, as happens occasionally. Two "solutions" are obvious: 1) Omit the category altogether and expect users to know how to use the "whereis" command. 2) Make the macro smart enough to figure out the category name from the port name. This would still require maintenance, but would localize it to one file. I think that all users should know how to use "whereis" and requiring them to use it is not unreasonable. The rendering would need to be changed to something like: smb.conf(5) [port "samba"] From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 13:24:55 2003 Return-Path: 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 ACA8037B401 for ; Fri, 25 Apr 2003 13:24:55 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38D6043FDD for ; Fri, 25 Apr 2003 13:24:52 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h3PKOR62032392 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 25 Apr 2003 23:24:28 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h3PKORSV032387; Fri, 25 Apr 2003 23:24:27 +0300 (EEST) (envelope-from ru) Date: Fri, 25 Apr 2003 23:24:27 +0300 From: Ruslan Ermilov To: "Gary W. Swearingen" Message-ID: <20030425202427.GC28920@sunbay.com> References: <20030424233703.GB48527@nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="kfjH4zxOES6UT95V" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.4i cc: "Simon L. Nielsen" cc: freebsd-doc@freebsd.org Subject: Re: .Xr references to ports in man pages X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2003 20:24:56 -0000 --kfjH4zxOES6UT95V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 25, 2003 at 12:06:46PM -0700, Gary W. Swearingen wrote: > "Simon L. Nielsen" writes: >=20 > > Hope somebody has an opinion about this. >=20 > I can't think of a better way to render the information, but I have a > suggestion regarding the ease of manpage source maintenance. >=20 > Unless port names require their category name to be unique (and they > don't, AFAIK), then the inclusion of the port category within the man > pages introduces an unnecessary need to search man pages and make > corrections whenever port categorization is changed, as happens > occasionally. >=20 Throughout the SGML documentation, they are referred as CATEGORY/PORTNAME Why the manpages should be different? > Two "solutions" are obvious: 1) Omit the category altogether and expect > users to know how to use the "whereis" command. 2) Make the macro smart > enough to figure out the category name from the port name. This would > still require maintenance, but would localize it to one file. >=20 > I think that all users should know how to use "whereis" and requiring > them to use it is not unreasonable. The rendering would need to be > changed to something like: smb.conf(5) [port "samba"] Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --kfjH4zxOES6UT95V Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+qZl7Ukv4P6juNwoRAo6JAJ4mbTqTtiJ6XOQJF7ZhBGcaneWG6gCcDb4h 2p2dy+NpPeO9KSRI/mW8Gm0= =wW3H -----END PGP SIGNATURE----- --kfjH4zxOES6UT95V-- From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 14:30:42 2003 Return-Path: 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 E3C1737B401 for ; Fri, 25 Apr 2003 14:30:42 -0700 (PDT) Received: from postbode02.zonnet.nl (postbode02.zonnet.nl [62.58.50.89]) by mx1.FreeBSD.org (Postfix) with ESMTP id A279C43FAF for ; Fri, 25 Apr 2003 14:30:41 -0700 (PDT) (envelope-from ewout@boks.com) Received: (qmail 13170 invoked by uid 0); 25 Apr 2003 21:30:40 -0000 Received: from unknown (HELO boks.com) ([62.59.156.18]) (envelope-sender ) by postbode02.zonnet.nl (qmail-ldap-1.03) with SMTP for < >; 25 Apr 2003 21:30:39 -0000 Message-ID: <3EA9A9D3.2010201@boks.com> Date: Fri, 25 Apr 2003 23:34:11 +0200 From: Ewout Boks User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2.1) Gecko/20030414 X-Accept-Language: nl, en-us, en MIME-Version: 1.0 To: doc@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: problem extracting handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2003 21:30:43 -0000 Hi, I tried to re-new the handbook I have on my system and dowloaded the tar.gz split handbook from the site. It gave me a lot of tar errors. The same happened when I attempted the FreeBSD package variant of the handbook: tar: local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books /handbook/vinum/vinum-mirrored-vol.png: Member name contains `..' [ .... snip .... ] tar: local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books /handbook/vinum/vinum-raid10-vol.png: Member name contains `..' tar: local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books /handbook/vinum/vinum-raid5-org.png: Member name contains `..' tar: local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books /handbook/vinum/vinum-simple-vol.png: Member name contains `..' tar: local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books /handbook/vinum/vinum-striped-vol.png: Member name contains `..' tar: local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books /handbook/vinum/vinum-striped.png: Member name contains `..' tar: Error exit delayed from previous errors pkg_add: tar extract of /usr3/tmp/handbook.en_US.ISO8859-1.html-split.tgz failed! pkg_add: unable to extract '/usr3/tmp/handbook.en_US.ISO8859-1.html-split.tgz'! I have no clue what this is, supposedly building the tar you used symlinks or so? Best regards and thanks for the great work you put into the handbook (beside this little glitch) Ewout Boks the Netherlands From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 16:16:14 2003 Return-Path: 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 CB8AB37B401 for ; Fri, 25 Apr 2003 16:16:14 -0700 (PDT) Received: from sixshooter.v6.thrupoint.net (sixshooter.v6.thrupoint.net [65.242.152.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22FD843F3F for ; Fri, 25 Apr 2003 16:16:14 -0700 (PDT) (envelope-from jpb@sixshooter.v6.thrupoint.net) Received: from sixshooter.v6.thrupoint.net (localhost.v6.thrupoint.net [127.0.0.1]) by sixshooter.v6.thrupoint.net (Postfix) with ESMTP id 799684CFE for ; Fri, 25 Apr 2003 19:16:13 -0400 (EDT) Received: (from jpb@localhost)h3PNGD1F069240 for doc@FreeBSD.org; Fri, 25 Apr 2003 19:16:13 -0400 (EDT) Date: Fri, 25 Apr 2003 19:16:13 -0400 From: Jim Brown To: doc@FreeBSD.org Message-ID: <20030425231613.GB69165@sixshooter.v6.thrupoint.net> Mail-Followup-To: doc@FreeBSD.org References: <3EA9A9D3.2010201@boks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3EA9A9D3.2010201@boks.com> User-Agent: Mutt/1.4.1i Subject: Re: problem extracting handbook X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2003 23:16:15 -0000 * Ewout Boks [2003-04-25 17:30]: > Hi, > > I tried to re-new the handbook I have on my system and dowloaded the > tar.gz split handbook from the site. It gave me a lot of tar errors. The > same happened when I attempted the FreeBSD package variant of the handbook: > > tar: > local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books > /handbook/vinum/vinum-mirrored-vol.png: Member name contains `..' > > > [ .... snip .... ] > > tar: > local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books > /handbook/vinum/vinum-raid10-vol.png: Member name contains `..' > tar: > local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books > /handbook/vinum/vinum-raid5-org.png: Member name contains `..' > tar: > local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books > /handbook/vinum/vinum-simple-vol.png: Member name contains `..' > tar: > local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books > /handbook/vinum/vinum-striped-vol.png: Member name contains `..' > tar: > local/1/var/tmp/doc-build/build/doc/en_US.ISO8859-1/books/handbook/../../../share/images/books > /handbook/vinum/vinum-striped.png: Member name contains `..' > tar: Error exit delayed from previous errors > pkg_add: tar extract of > /usr3/tmp/handbook.en_US.ISO8859-1.html-split.tgz failed! > pkg_add: unable to extract > '/usr3/tmp/handbook.en_US.ISO8859-1.html-split.tgz'! > > I have no clue what this is, supposedly building the tar you used > symlinks or so? > > Best regards and thanks for the great work you put into the handbook > (beside this little glitch) > > Ewout Boks > the Netherlands > > _______________________________________________ > freebsd-doc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-doc > To unsubscribe, send any mail to "freebsd-doc-unsubscribe@freebsd.org" > Hi- tar xvzf book.html-split.tar.gz will extract the files (in the current directory). As you noted, it does indicate '..' was found in the path. This is a "protection" against overwriting file and directories higher than the path where tar was invoked. It does exit with error 2. However the files will be there. Don't use pkg_add. Just untar with the above command. A better solution is to use cvsup. The handbook contains instructions for keeping your documenation tree (including the handbook) up to date with cvsup. Best Regards, jpb === From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 16:46:18 2003 Return-Path: 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 29C8837B401; Fri, 25 Apr 2003 16:46:18 -0700 (PDT) Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49C0443FBD; Fri, 25 Apr 2003 16:46:13 -0700 (PDT) (envelope-from swear@attbi.com) Received: from localhost.localdomain (unknown[12.242.158.67]) by rwcrmhc53.attbi.com (rwcrmhc53) with ESMTP id <20030425234612053001as4be>; Fri, 25 Apr 2003 23:46:12 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.localdomain (8.12.6/8.12.5) with ESMTP id h3PNkPsg054033; Fri, 25 Apr 2003 16:46:30 -0700 (PDT) (envelope-from swear@attbi.com) Received: (from jojo@localhost) by localhost.localdomain (8.12.6/8.12.5/Submit) id h3PNkI3L054030; Fri, 25 Apr 2003 16:46:18 -0700 (PDT) (envelope-from swear@attbi.com) X-Authentication-Warning: localhost.localdomain: jojo set sender to swear@attbi.com using -f To: Ruslan Ermilov References: <20030424233703.GB48527@nitro.dk> <20030425202427.GC28920@sunbay.com> From: swear@attbi.com (Gary W. Swearingen) Date: 25 Apr 2003 16:46:18 -0700 In-Reply-To: <20030425202427.GC28920@sunbay.com> Message-ID: Lines: 20 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: "Simon L. Nielsen" cc: freebsd-doc@freebsd.org Subject: Re: .Xr references to ports in man pages X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2003 23:46:18 -0000 Ruslan Ermilov writes: > Throughout the SGML documentation, they are referred as > > CATEGORY/PORTNAME > > Why the manpages should be different? To avoid having erroneous information in the manpages before someone discovers that the category has been changed without the changer remembering and/or bothering to search all the manpages and fix all the unnecessary category references which have gone bad. That's too much to expect to happen, methinks. Also, to avoid the need to handle the PRs that will then be (eventually) written after nearly every change. As for the SGML, the same thing applies, but I suspect it's too hard to fix in the SGML processing, but I recommend easing SGML maintenance by omitting the "CATEGORY/". There's too much more useful stuff to maintain, as it is, and "whereis" easily gives the category to anyone who can't guess it. From owner-freebsd-doc@FreeBSD.ORG Fri Apr 25 23:17:34 2003 Return-Path: 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 BB26937B401; Fri, 25 Apr 2003 23:17:34 -0700 (PDT) Received: from sixshooter.v6.thrupoint.net (sixshooter.v6.thrupoint.net [65.242.152.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA3C243FDF; Fri, 25 Apr 2003 23:17:33 -0700 (PDT) (envelope-from jpb@sixshooter.v6.thrupoint.net) Received: from sixshooter.v6.thrupoint.net (localhost.v6.thrupoint.net [127.0.0.1]) by sixshooter.v6.thrupoint.net (Postfix) with ESMTP id 224D14D06; Sat, 26 Apr 2003 02:17:33 -0400 (EDT) Received: (from jpb@localhost)h3Q6HWTi069892; Sat, 26 Apr 2003 02:17:32 -0400 (EDT) Date: Sat, 26 Apr 2003 02:17:32 -0400 From: Jim Brown To: freebsd-current@freebsd.org, freebsd-doc@freebsd.org Message-ID: <20030426061732.GA69855@sixshooter.v6.thrupoint.net> Mail-Followup-To: freebsd-current@freebsd.org, freebsd-doc@freebsd.org References: <20030423134528.GB25484@lenny.anarcat.ath.cx> <9C93B960-7598-11D7-9A25-000393754B1C@vangelderen.org> <20030423143657.GA26982@lenny.anarcat.ath.cx> <20030423144641.GA418@nitro.dk> <20030423170113.GE26749@unixpages.org> <20030424010352.GB1811@nitro.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030424010352.GB1811@nitro.dk> User-Agent: Mutt/1.4.1i Subject: Re: Little UFS2 FAQ X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 06:17:35 -0000 * Simon L. Nielsen [2003-04-23 21:04]: > On 2003.04.23 19:01:13 +0200, Christian Brueffer wrote: > > On Wed, Apr 23, 2003 at 04:46:42PM +0200, Simon L. Nielsen wrote: > > > This seems to be very useful. I would be happy to mark it up in SGML but > > > I'm not sure where it would fit best. The FAQ seems obvious but if we > > > are moving toward integrating the FAQ into the Handbook... > > > > It is definetly interesting. Maybe this could be extended to a > > file system handbook chapter or something. > > From a quick look at the FAQ it also looks like there are several > entries that could be used as a base for such chapter. > > I will have a closer look at it in the next few days. > > -- > Simon L. Nielsen I've marked it up and posted it at http://sixshooter.v6.thrupoint.net/jeroen/faq.html There doesn't seem to be a good 'home' for this poor child- perhaps tacked onto http://www.freebsd.org/releases/5.0R/errata.html somewhere? If anyone would like the markup it's at http://sixshooter.v6.thrupoint.net/jeroen/Little_UFS_FAQ.sgml. Might want to check it for typos. I threw it together very quickly late at night. Best Regards, jpb === From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 00:17:44 2003 Return-Path: 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 3B4C037B404; Sat, 26 Apr 2003 00:17:44 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB80E43FBF; Sat, 26 Apr 2003 00:17:43 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3Q7HhUp081772; Sat, 26 Apr 2003 00:17:43 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3Q7HhJG081756; Sat, 26 Apr 2003 00:17:43 -0700 (PDT) Date: Sat, 26 Apr 2003 00:17:43 -0700 (PDT) From: Murray Stokely Message-Id: <200304260717.h3Q7HhJG081756@freefall.freebsd.org> To: marck@rinet.ru, murray@FreeBSD.org, freebsd-doc@FreeBSD.org, murray@FreeBSD.org Subject: Re: docs/51305: some depends of docproj are missing in MINIMALPORTDOCS X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 07:17:44 -0000 Synopsis: some depends of docproj are missing in MINIMALPORTDOCS State-Changed-From-To: open->analyzed State-Changed-By: murray State-Changed-When: Sat Apr 26 00:17:26 PDT 2003 State-Changed-Why: I'm looking into this. Thanks. Responsible-Changed-From-To: freebsd-doc->murray Responsible-Changed-By: murray Responsible-Changed-When: Sat Apr 26 00:17:26 PDT 2003 Responsible-Changed-Why: I'm looking into this. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=51305 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 00:40:24 2003 Return-Path: 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 58A2437B401; Sat, 26 Apr 2003 00:40:24 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC27843F85; Sat, 26 Apr 2003 00:40:23 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3Q7eNUp070599; Sat, 26 Apr 2003 00:40:23 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3Q7eNMj070580; Sat, 26 Apr 2003 00:40:23 -0700 (PDT) Date: Sat, 26 Apr 2003 00:40:23 -0700 (PDT) From: Murray Stokely Message-Id: <200304260740.h3Q7eNMj070580@freefall.freebsd.org> To: plexus@snafu.de, murray@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/50824: FDP - DocBook is maintained by OASIS since 1998 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 07:40:24 -0000 Synopsis: FDP - DocBook is maintained by OASIS since 1998 State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Sat Apr 26 00:40:06 PDT 2003 State-Changed-Why: Your change has been committed. It may take up to 24 hours to reach the website. Thanks for the submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=50824 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 00:47:38 2003 Return-Path: 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 4121737B401; Sat, 26 Apr 2003 00:47:38 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D02B743F85; Sat, 26 Apr 2003 00:47:37 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3Q7lbUp004875; Sat, 26 Apr 2003 00:47:37 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3Q7lbqN004870; Sat, 26 Apr 2003 00:47:37 -0700 (PDT) Date: Sat, 26 Apr 2003 00:47:37 -0700 (PDT) From: Murray Stokely Message-Id: <200304260747.h3Q7lbqN004870@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-doc@FreeBSD.org, murray@FreeBSD.org Subject: Re: docs/51397: login-retries & login-backoff fields undocumented in login.conf(5) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 07:47:38 -0000 Synopsis: login-retries & login-backoff fields undocumented in login.conf(5) Responsible-Changed-From-To: freebsd-doc->murray Responsible-Changed-By: murray Responsible-Changed-When: Sat Apr 26 00:47:17 PDT 2003 Responsible-Changed-Why: Yes seems like this should be documented. I'll take a look at this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=51397 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 00:53:21 2003 Return-Path: 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 6819937B401; Sat, 26 Apr 2003 00:53:21 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0663143FA3; Sat, 26 Apr 2003 00:53:21 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from freefall.freebsd.org (murray@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3Q7rKUp025729; Sat, 26 Apr 2003 00:53:20 -0700 (PDT) (envelope-from murray@freefall.freebsd.org) Received: (from murray@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3Q7rKES025721; Sat, 26 Apr 2003 00:53:20 -0700 (PDT) Date: Sat, 26 Apr 2003 00:53:20 -0700 (PDT) From: Murray Stokely Message-Id: <200304260753.h3Q7rKES025721@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-doc@FreeBSD.org, murray@FreeBSD.org Subject: Re: docs/40234: Typos and language cleanup in /usr/share/man/man8/loader.8.gz X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 07:53:21 -0000 Synopsis: Typos and language cleanup in /usr/share/man/man8/loader.8.gz Responsible-Changed-From-To: freebsd-doc->murray Responsible-Changed-By: murray Responsible-Changed-When: Sat Apr 26 00:53:06 PDT 2003 Responsible-Changed-Why: I'll work on getting this one committed. Thanks for the submission. http://www.freebsd.org/cgi/query-pr.cgi?pr=40234 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 00:56:45 2003 Return-Path: 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 68F0137B401; Sat, 26 Apr 2003 00:56:45 -0700 (PDT) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id F413443FCB; Sat, 26 Apr 2003 00:56:44 -0700 (PDT) (envelope-from murray@builder.freebsdmall.com) Received: by builder.freebsdmall.com (Postfix, from userid 2074) id 7EF8D1375; Sat, 26 Apr 2003 00:56:44 -0700 (PDT) Date: Sat, 26 Apr 2003 00:56:44 -0700 From: Murray Stokely To: Giorgos Keramidas Message-ID: <20030426075644.GS394@freebsdmall.com> References: <200212111020.gBBAK2LP070200@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200212111020.gBBAK2LP070200@freefall.freebsd.org> User-Agent: Mutt/1.4i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D cc: freebsd-doc@FreeBSD.org Subject: Re: docs/46181: "make fetch-recursive" target description is missing in the ports manpage. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 07:56:45 -0000 On Wed, Dec 11, 2002 at 02:20:02AM -0800, Giorgos Keramidas wrote: > I'll try to make the necessary changes and have them reviewed by > freebsd-ports and/or portmgr. The ports.7 manpage contains a lot of > the stuff that /usr/ports/Mk/bsd.port.mk includes in comments. There > are other things that could be added too. The following is a list, in > case someone is faster doing this and beats me to it: Does anyone have a patch for this yet? It would be nice to update ports.7. Can the original submitter at least propose some exact text to be added if not a patch? - Murray From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 01:00:37 2003 Return-Path: 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 2DD7937B408 for ; Sat, 26 Apr 2003 01:00:37 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C801E43FBD for ; Sat, 26 Apr 2003 01:00:36 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3Q80aUp052009 for ; Sat, 26 Apr 2003 01:00:36 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3Q80aY1052008; Sat, 26 Apr 2003 01:00:36 -0700 (PDT) Date: Sat, 26 Apr 2003 01:00:36 -0700 (PDT) Message-Id: <200304260800.h3Q80aY1052008@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Murray Stokely Subject: Re: docs/46181: "make fetch-recursive" target description is missing in the ports manpage. X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Murray Stokely List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 08:00:38 -0000 The following reply was made to PR docs/46181; it has been noted by GNATS. From: Murray Stokely To: Giorgos Keramidas Cc: freebsd-doc@FreeBSD.org Subject: Re: docs/46181: "make fetch-recursive" target description is missing in the ports manpage. Date: Sat, 26 Apr 2003 00:56:44 -0700 On Wed, Dec 11, 2002 at 02:20:02AM -0800, Giorgos Keramidas wrote: > I'll try to make the necessary changes and have them reviewed by > freebsd-ports and/or portmgr. The ports.7 manpage contains a lot of > the stuff that /usr/ports/Mk/bsd.port.mk includes in comments. There > are other things that could be added too. The following is a list, in > case someone is faster doing this and beats me to it: Does anyone have a patch for this yet? It would be nice to update ports.7. Can the original submitter at least propose some exact text to be added if not a patch? - Murray From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 01:18:44 2003 Return-Path: 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 8374F37B401 for ; Sat, 26 Apr 2003 01:18:44 -0700 (PDT) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B8F343F93 for ; Sat, 26 Apr 2003 01:18:43 -0700 (PDT) (envelope-from murray@builder.freebsdmall.com) Received: by builder.freebsdmall.com (Postfix, from userid 2074) id 5F4DE1375; Sat, 26 Apr 2003 01:18:43 -0700 (PDT) Date: Sat, 26 Apr 2003 01:18:43 -0700 From: Murray Stokely To: freebsd-doc@FreeBSD.org Message-ID: <20030426081843.GW394@freebsdmall.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="16qp2B0xu0fRvRD7" Content-Disposition: inline User-Agent: Mutt/1.4i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Subject: Help close a doc PR! X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 08:18:44 -0000 --16qp2B0xu0fRvRD7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The number of open documentation PRs is growing uncomfortably large. It wasn't that long ago (well, a few years) that we had about 30 open PRs but now we're over 175. If you're a contributor and are looking for a way to help out the doc project, then please post follow-ups to the PRs with your opinions on any patches that have been posted, or create a patch if a problem is described with no fix. And committers can of course help out by committing some of the many PRs that have patches attached. Granted, many need a little bit of work -- you can fix it up yourself or reply to the PR and have the submitted fix it up. Either way, we've got to get a handle on all of these PRs. It's hard to wade through it all when there is this many. Of course, it's really a good thing that we've got this many people working on and spotting problems in the documentation, but still, it would be nice to focus on resolving many of these open issues that have been brought up recently. I'll buy a beer at the next BSD Conference for everyone who closes more PRs than me in the next 2 weeks. ;) - Murray --16qp2B0xu0fRvRD7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQE+qkDitNcQog5FH30RAtrFAKCCQsik2mSM2+04+5lA63RIQZRWNgCfZVik LAmd2mTX/21I/2iihvLfdOU= =eDeb -----END PGP SIGNATURE----- --16qp2B0xu0fRvRD7-- From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 01:41:58 2003 Return-Path: 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 E9E7437B401 for ; Sat, 26 Apr 2003 01:41:58 -0700 (PDT) Received: from haakonia.hitnet.rwth-aachen.de (haakonia.hitnet.RWTH-Aachen.DE [137.226.181.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49D7443F93 for ; Sat, 26 Apr 2003 01:41:58 -0700 (PDT) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by haakonia.hitnet.rwth-aachen.de (Postfix) with ESMTP id 8A856C1DC; Sat, 26 Apr 2003 10:41:57 +0200 (CEST) Received: by gondor.middleearth (Postfix, from userid 1001) id 2F6EE46CD; Sat, 26 Apr 2003 10:41:57 +0200 (CEST) Date: Sat, 26 Apr 2003 10:41:56 +0200 From: Christian Brueffer To: Murray Stokely Message-ID: <20030426084156.GL26749@unixpages.org> References: <20030426081843.GW394@freebsdmall.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="yaPAUYI/0vT2YKpA" Content-Disposition: inline In-Reply-To: <20030426081843.GW394@freebsdmall.com> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.0-CURRENT X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D cc: freebsd-doc@freebsd.org Subject: Re: Help close a doc PR! X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 08:41:59 -0000 --yaPAUYI/0vT2YKpA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 26, 2003 at 01:18:43AM -0700, Murray Stokely wrote: > The number of open documentation PRs is growing uncomfortably large. > It wasn't that long ago (well, a few years) that we had about 30 open > PRs but now we're over 175. >=20 > If you're a contributor and are looking for a way to help out the doc > project, then please post follow-ups to the PRs with your opinions on > any patches that have been posted, or create a patch if a problem is > described with no fix. >=20 > And committers can of course help out by committing some of the many > PRs that have patches attached. Granted, many need a little bit of > work -- you can fix it up yourself or reply to the PR and have the > submitted fix it up. Either way, we've got to get a handle on all of > these PRs. It's hard to wade through it all when there is this many. >=20 > Of course, it's really a good thing that we've got this many people > working on and spotting problems in the documentation, but still, it > would be nice to focus on resolving many of these open issues that > have been brought up recently. >=20 > I'll buy a beer at the next BSD Conference for everyone who closes > more PRs than me in the next 2 weeks. ;) >=20 Hehe, that's a deal. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --yaPAUYI/0vT2YKpA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+qkZUbHYXjKDtmC0RAgS6AKDX540V/rlRJ10rINs0LSicunTkzACgjuRw UsvPFEy/DaBk6ZXnV6vC0CY= =5zg/ -----END PGP SIGNATURE----- --yaPAUYI/0vT2YKpA-- From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 02:31:53 2003 Return-Path: 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 D0C2E37B401; Sat, 26 Apr 2003 02:31:53 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A85B43FAF; Sat, 26 Apr 2003 02:31:53 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from freefall.freebsd.org (brueffer@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3Q9VrUp029667; Sat, 26 Apr 2003 02:31:53 -0700 (PDT) (envelope-from brueffer@freefall.freebsd.org) Received: (from brueffer@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3Q9VrGF029651; Sat, 26 Apr 2003 11:31:53 +0200 (CEST) Date: Sat, 26 Apr 2003 11:31:53 +0200 (CEST) From: Christian Brueffer Message-Id: <200304260931.h3Q9VrGF029651@freefall.freebsd.org> To: pepper@rockefeller.edu, brueffer@FreeBSD.org, freebsd-doc@FreeBSD.org, brueffer@FreeBSD.org Subject: Re: docs/39822: firewall.7: change "Mbits" to "Mbits/s" and "band width". X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 09:31:54 -0000 Synopsis: firewall.7: change "Mbits" to "Mbits/s" and "band width". State-Changed-From-To: open->patched State-Changed-By: brueffer State-Changed-When: Sat Apr 26 11:30:55 CEST 2003 State-Changed-Why: Patch committed, thanks! Responsible-Changed-From-To: freebsd-doc->brueffer Responsible-Changed-By: brueffer Responsible-Changed-When: Sat Apr 26 11:30:55 CEST 2003 Responsible-Changed-Why: I'll handle the MFC http://www.freebsd.org/cgi/query-pr.cgi?pr=39822 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 03:24:54 2003 Return-Path: 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 A0E9637B401 for ; Sat, 26 Apr 2003 03:24:54 -0700 (PDT) Received: from haakonia.hitnet.rwth-aachen.de (haakonia.hitnet.RWTH-Aachen.DE [137.226.181.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02F1A43FA3 for ; Sat, 26 Apr 2003 03:24:54 -0700 (PDT) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by haakonia.hitnet.rwth-aachen.de (Postfix) with ESMTP id 60140A91E; Sat, 26 Apr 2003 12:24:53 +0200 (CEST) Received: by gondor.middleearth (Postfix, from userid 1001) id C1FFC46CD; Sat, 26 Apr 2003 12:24:52 +0200 (CEST) Date: Sat, 26 Apr 2003 12:24:52 +0200 From: Christian Brueffer To: laurentiuioana Message-ID: <20030426102452.GT26749@unixpages.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZNotpC0yWfjHZxBL" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.0-CURRENT X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D cc: FreeBSD-doc@freebsd.org Subject: Re: subscribe X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 10:24:54 -0000 --ZNotpC0yWfjHZxBL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 24, 2003 at 06:10:02PM +0300, laurentiuioana wrote: > hi! > i am Laurentiu and i wish to participate to translation in romanian langu= age of the freebsd manuals, howtos etc. > i am 26 years old and this year i started work with linux distributions. > if you think i can help with translation of that documents from english t= o romanian language please let me know. > my e-mail is laurentiuioana@hotmail.com . > bye >=20 Hi, you might want to contact Dan Caescu who was interested in a romanian translation in 2001. Maybe he has done something in that respect. As far as i know, there is no official romanian translation project yet, but you are free to get one started :-) See the homepage of the documentation project at http://www.FreeBSD.org/docproj/index.html for more information. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --ZNotpC0yWfjHZxBL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+ql50bHYXjKDtmC0RAqVpAJ9GORGphTdYjEfjofWzrZcIgw4AfACbBA7T INAir0fUyZspZCR9sVWehVA= =UXwR -----END PGP SIGNATURE----- --ZNotpC0yWfjHZxBL-- From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 03:34:21 2003 Return-Path: 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 B65AD37B401; Sat, 26 Apr 2003 03:34:19 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED29F43FB1; Sat, 26 Apr 2003 03:34:18 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id 7E86210BF82; Sat, 26 Apr 2003 12:34:17 +0200 (CEST) Date: Sat, 26 Apr 2003 12:34:17 +0200 From: "Simon L. Nielsen" To: "Gary W. Swearingen" Message-ID: <20030426103416.GA407@nitro.dk> References: <20030424233703.GB48527@nitro.dk> <20030425202427.GC28920@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fdj2RfSjLxBAspz7" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.4i cc: freebsd-doc@freebsd.org cc: Ruslan Ermilov Subject: Re: .Xr references to ports in man pages X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 10:34:21 -0000 --fdj2RfSjLxBAspz7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2003.04.25 16:46:18 -0700, Gary W. Swearingen wrote: > To avoid having erroneous information in the manpages before someone > discovers that the category has been changed without the changer > remembering and/or bothering to search all the manpages and fix all the > unnecessary category references which have gone bad. That's too much to > expect to happen, methinks. Also, to avoid the need to handle the > PRs that will then be (eventually) written after nearly every change. >=20 > As for the SGML, the same thing applies, but I suspect it's too hard to > fix in the SGML processing, but I recommend easing SGML maintenance by > omitting the "CATEGORY/". There's too much more useful stuff to > maintain, as it is, and "whereis" easily gives the category to anyone > who can't guess it. Is this really a big problem? I't not that often ports get moved and since there is ports/MOVED it is very easy to use a script to once in a while automatically go through the references in the documentation and fix the references. If the category is not there it would also make it harder to make links to the port e.g. in man.cgi. That being said if others feel it is better to not specify ports it OK with me. I mainly want to get rid of "bad" references. --=20 Simon L. Nielsen --fdj2RfSjLxBAspz7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+qmCo8kocFXgPTRwRAoLrAKCOW47hsrF7AdCujzZgu2TXiWeRXwCdFVT1 Iv1Ykgf281KHosJBavFd6zc= =auOf -----END PGP SIGNATURE----- --fdj2RfSjLxBAspz7-- From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 04:32:46 2003 Return-Path: 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 5B7B137B401 for ; Sat, 26 Apr 2003 04:32:46 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEA6343FCB for ; Sat, 26 Apr 2003 04:32:42 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h3QBWS62016328 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 26 Apr 2003 14:32:28 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h3QBWRn4016327; Sat, 26 Apr 2003 14:32:27 +0300 (EEST) (envelope-from ru) Date: Sat, 26 Apr 2003 14:32:27 +0300 From: Ruslan Ermilov To: "Simon L. Nielsen" Message-ID: <20030426113227.GC9189@sunbay.com> References: <20030424233703.GB48527@nitro.dk> <20030425202427.GC28920@sunbay.com> <20030426103416.GA407@nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GPJrCs/72TxItFYR" Content-Disposition: inline In-Reply-To: <20030426103416.GA407@nitro.dk> User-Agent: Mutt/1.5.4i cc: freebsd-doc@freebsd.org Subject: Re: .Xr references to ports in man pages X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 11:32:46 -0000 --GPJrCs/72TxItFYR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 26, 2003 at 12:34:17PM +0200, Simon L. Nielsen wrote: > On 2003.04.25 16:46:18 -0700, Gary W. Swearingen wrote: >=20 > > To avoid having erroneous information in the manpages before someone > > discovers that the category has been changed without the changer > > remembering and/or bothering to search all the manpages and fix all the > > unnecessary category references which have gone bad. That's too much to > > expect to happen, methinks. Also, to avoid the need to handle the > > PRs that will then be (eventually) written after nearly every change. > >=20 > > As for the SGML, the same thing applies, but I suspect it's too hard to > > fix in the SGML processing, but I recommend easing SGML maintenance by > > omitting the "CATEGORY/". There's too much more useful stuff to > > maintain, as it is, and "whereis" easily gives the category to anyone > > who can't guess it. >=20 > Is this really a big problem? I't not that often ports get moved and > since there is ports/MOVED it is very easy to use a script to once in a > while automatically go through the references in the documentation and > fix the references. >=20 > If the category is not there it would also make it harder to make links > to the port e.g. in man.cgi. >=20 > That being said if others feel it is better to not specify ports it OK > with me. I mainly want to get rid of "bad" references. >=20 Not, it's not OK with others. Writing a simple script that finds all port references and checks this with the fresh ports/ tree is not that hard. I've been planning on setting the manpages tinder box; adding this feature to it would be trivial. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --GPJrCs/72TxItFYR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+qm5KUkv4P6juNwoRAkkzAJ92eFhPKSDgPOMf1F12E7t40OwX/wCfV784 UHC9LjroIcoVuCDyvRBoNXs= =ereY -----END PGP SIGNATURE----- --GPJrCs/72TxItFYR-- From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 06:32:43 2003 Return-Path: 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 1357637B401 for ; Sat, 26 Apr 2003 06:32:43 -0700 (PDT) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3447C43FAF for ; Sat, 26 Apr 2003 06:32:42 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from mobile.pittgoth.com (acs-24-154-229-196.zoominternet.net [24.154.229.196]) by pittgoth.com (8.12.9/8.12.9) with SMTP id h3QDWdZK055186; Sat, 26 Apr 2003 09:32:40 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Fri, 25 Apr 2003 21:22:37 -0400 From: Tom Rhodes To: Murray Stokely Message-Id: <20030425212237.3f333f1d.trhodes@FreeBSD.org> In-Reply-To: <20030426081843.GW394@freebsdmall.com> References: <20030426081843.GW394@freebsdmall.com> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-doc@FreeBSD.org Subject: Re: Help close a doc PR! X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 13:32:43 -0000 On Sat, 26 Apr 2003 01:18:43 -0700 Murray Stokely wrote: > The number of open documentation PRs is growing uncomfortably large. > It wasn't that long ago (well, a few years) that we had about 30 open > PRs but now we're over 175. I remember back when we only had about 100. Its difficult to keep up, yo. > > If you're a contributor and are looking for a way to help out the doc > project, then please post follow-ups to the PRs with your opinions on > any patches that have been posted, or create a patch if a problem is > described with no fix. Now where are those two protege's? hmmmmm. > > And committers can of course help out by committing some of the many > PRs that have patches attached. Granted, many need a little bit of > work -- you can fix it up yourself or reply to the PR and have the > submitted fix it up. Either way, we've got to get a handle on all of > these PRs. It's hard to wade through it all when there is this many. We're buried! > > Of course, it's really a good thing that we've got this many people > working on and spotting problems in the documentation, but still, it > would be nice to focus on resolving many of these open issues that > have been brought up recently. True, we like help. :) > > I'll buy a beer at the next BSD Conference for everyone who closes > more PRs than me in the next 2 weeks. ;) > ... You don't know what it is that you have just done... FEAR! :) -- Tom Rhodes From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 08:02:09 2003 Return-Path: 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 5EDC837B401; Sat, 26 Apr 2003 08:02:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECF0143FA3; Sat, 26 Apr 2003 08:02:08 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3QF28Up087526; Sat, 26 Apr 2003 08:02:08 -0700 (PDT) (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3QF286O087513; Sat, 26 Apr 2003 08:02:08 -0700 (PDT) Date: Sat, 26 Apr 2003 08:02:08 -0700 (PDT) From: Tom Rhodes Message-Id: <200304261502.h3QF286O087513@freefall.freebsd.org> To: ted@erg.sri.com, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Subject: Re: docs/51322: Man page for kvm_getprocs(3) omits #include X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 15:02:09 -0000 Synopsis: Man page for kvm_getprocs(3) omits #include State-Changed-From-To: open->patched State-Changed-By: trhodes State-Changed-When: Sat Apr 26 08:01:15 PDT 2003 State-Changed-Why: Switch this PR to me as I have just added sys/user.h to the list of includes, and will handle the MFC. Thanks for pointing this out! Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Sat Apr 26 08:01:15 PDT 2003 Responsible-Changed-Why: Switch this PR to me as I have just added sys/user.h to the list of includes, and will handle the MFC. Thanks for pointing this out! http://www.freebsd.org/cgi/query-pr.cgi?pr=51322 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 08:02:32 2003 Return-Path: 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 025D737B404 for ; Sat, 26 Apr 2003 08:02:31 -0700 (PDT) Received: from smtp.eos.ocn.ne.jp (eos.ocn.ne.jp [211.6.83.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F50043FBF for ; Sat, 26 Apr 2003 08:02:29 -0700 (PDT) (envelope-from hrs@eos.ocn.ne.jp) Received: from mail.allbsd.org (p53054-adsao12honb4-acca.tokyo.ocn.ne.jp [220.96.135.54]) by smtp.eos.ocn.ne.jp (Postfix) with ESMTP id 4A92D293F; Sun, 27 Apr 2003 00:02:28 +0900 (JST) Received: from localhost (alph.allbsd.org [192.168.0.10]) h3QF12Jp015937; Sun, 27 Apr 2003 00:01:03 +0900 (JST) (envelope-from hrs@eos.ocn.ne.jp) Date: Sat, 26 Apr 2003 23:54:34 +0900 (JST) Message-Id: <20030426.235434.116360718.hrs@eos.ocn.ne.jp> To: sysadmin@alexdupre.com From: Hiroki Sato In-Reply-To: <193879609822.20030423194209@alexdupre.com> References: <20030424.021109.59657888.hrs@eos.ocn.ne.jp> <193879609822.20030423194209@alexdupre.com> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Sat_Apr_26_23:54:34_2003_171)--" Content-Transfer-Encoding: 7bit cc: doc@freebsd.org Subject: Re: doc/{,}/share/sgml/catalog X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 15:02:32 -0000 ----Next_Part(Sat_Apr_26_23:54:34_2003_171)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Alex Dupre wrote in <193879609822.20030423194209@alexdupre.com>: sysadmin> Wednesday, April 23, 2003, 7:11:09 PM, you wrote: sysadmin> sysadmin> HS> I think it is reasonable to put non-English and language-specific sysadmin> HS> entries in doc/share/sgml/catalog into doc//share/sgml/catalog. sysadmin> HS> They are in doc/share/sgml/catalog together now, but not needed sysadmin> HS> to be there. sysadmin> sysadmin> If they are not needed, I completely agree with you. In this case I sysadmin> give you the permission to apply the Italian part of the patch to the sysadmin> tree. Thanks. What do people who responsible for the other languages think? In addition I have a patch for language-specific freebsd.dsl. Changes including this are not just cosmetic---for example, a definition of ($create-refentry-xref-link$) in en_US.ISO8859-1/share/sgml/freebsd.dsl was changed by nik (r1.14->r1.15), but since es_ES.ISO8859-1/share/sgml/freebsd.dsl is not updated, you probably see a warning during the build of es_ES.ISO8859-1/. To avoid such situation, ($create-refentry-xref-link$) should be in doc/share/sgml/freebsd.dsl, I think. If we want a language-specific procedure we can always pre-define (override) in /share/sgml/freebsd.dsl, so most of the procedures in the current en_US.ISO8859-1/share/sgml/freebsd.dsl can be moved into doc/share/sgml/freebsd.dsl. -- | Hiroki SATO / ----Next_Part(Sat_Apr_26_23:54:34_2003_171)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="doc.xref.diff" Index: da_DK.ISO8859-1/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/da_DK.ISO8859-1/share/sgml/freebsd.dsl,v retrieving revision 1.1 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.1 freebsd.dsl --- da_DK.ISO8859-1/share/sgml/freebsd.dsl 9 Mar 2003 21:25:19 -0000 1.1 +++ da_DK.ISO8859-1/share/sgml/freebsd.dsl 26 Apr 2003 13:25:38 -0000 @@ -13,6 +13,10 @@ + (define %refentry-xref-link% #t) + (define ($email-footer$) (make sequence (make element gi: "p" @@ -40,31 +44,6 @@ (create-link (list (list "HREF" "mailto:doc@FreeBSD.org")) (literal "doc@FreeBSD.org")) (literal ">."))))) - - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ #!optional (n (current-node))) - (let* ((r (select-elements (children n) (normalize "refentrytitle"))) - (m (select-elements (children n) (normalize "manvolnum"))) - (v (attribute-string (normalize "vendor") n)) - (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - (data r) "&" "sektion=" (data m)))) - (case v - (("current") (string-append u "&" "manpath=FreeBSD+5.0-current")) - (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) - (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) - (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) - (else u)))) ]]> Index: de_DE.ISO8859-1/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/de_DE.ISO8859-1/share/sgml/freebsd.dsl,v retrieving revision 1.12 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.12 freebsd.dsl --- de_DE.ISO8859-1/share/sgml/freebsd.dsl 4 Feb 2003 00:34:26 -0000 1.12 +++ de_DE.ISO8859-1/share/sgml/freebsd.dsl 26 Apr 2003 13:26:07 -0000 @@ -15,6 +15,10 @@ + (define %refentry-xref-link% #t) + (define ($email-footer$) (make sequence (make element gi: "p" @@ -31,31 +35,6 @@ attributes: (list (list "href" "mailto:de-bsd-translators@de.FreeBSD.org")) (literal "de-bsd-translators@de.FreeBSD.org")) (literal ">."))))) - - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ #!optional (n (current-node))) - (let* ((r (select-elements (children n) (normalize "refentrytitle"))) - (m (select-elements (children n) (normalize "manvolnum"))) - (v (attribute-string (normalize "vendor") n)) - (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - (data r) "&" "sektion=" (data m)))) - (case v - (("current") (string-append u "&" "manpath=FreeBSD+5.0-current")) - (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) - (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) - (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) - (else u)))) ]]> Index: el_GR.ISO8859-7/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/el_GR.ISO8859-7/share/sgml/freebsd.dsl,v retrieving revision 1.3 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.3 freebsd.dsl --- el_GR.ISO8859-7/share/sgml/freebsd.dsl 21 Sep 2002 21:11:58 -0000 1.3 +++ el_GR.ISO8859-7/share/sgml/freebsd.dsl 26 Apr 2003 13:26:30 -0000 @@ -13,6 +13,10 @@ + (define %refentry-xref-link% #t) + (define ($email-footer$) (make sequence (make element gi: "p" @@ -40,30 +44,6 @@ (create-link (list (list "HREF" "mailto:doc@FreeBSD.org")) (literal "doc@FreeBSD.org")) (literal ">."))))) - - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ #!optional (n (current-node))) - (let* ((r (select-elements (children n) (normalize "refentrytitle"))) - (m (select-elements (children n) (normalize "manvolnum"))) - (v (attribute-string (normalize "vendor") n)) - (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - (data r) "&" "sektion=" (data m)))) - (case v - (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) - (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) - (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) - (else u)))) ]]> Index: en_US.ISO8859-1/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/en_US.ISO8859-1/share/sgml/freebsd.dsl,v retrieving revision 1.18 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.18 freebsd.dsl --- en_US.ISO8859-1/share/sgml/freebsd.dsl 19 Apr 2003 11:39:28 -0000 1.18 +++ en_US.ISO8859-1/share/sgml/freebsd.dsl 26 Apr 2003 13:22:19 -0000 @@ -17,6 +17,10 @@ + (define %refentry-xref-link% #t) + (define ($email-footer$) (make sequence (make element gi: "p" @@ -45,30 +49,6 @@ (literal "doc@FreeBSD.org")) (literal ">."))))) - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ #!optional (n (current-node))) - (let* ((r (select-elements (children n) (normalize "refentrytitle"))) - (m (select-elements (children n) (normalize "manvolnum"))) - (v (attribute-string (normalize "vendor") n)) - (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - (data r) "&" "sektion=" (data m)))) - (case v - (("current") (string-append u "&" "manpath=FreeBSD+5.0-current")) - (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) - (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) - (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) - (else u)))) ]]> Index: es_ES.ISO8859-1/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/es_ES.ISO8859-1/share/sgml/freebsd.dsl,v retrieving revision 1.8 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.8 freebsd.dsl --- es_ES.ISO8859-1/share/sgml/freebsd.dsl 3 Nov 2002 12:48:18 -0000 1.8 +++ es_ES.ISO8859-1/share/sgml/freebsd.dsl 26 Apr 2003 13:24:02 -0000 @@ -13,6 +13,10 @@ + (define %refentry-xref-link% #t) + (define ($email-footer$) (make sequence (make element gi: "p" @@ -40,22 +44,6 @@ (create-link (list (list "HREF" "mailto:doc@FreeBSD.org")) (literal "doc@FreeBSD.org")) (literal ">."))))) - - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ refentrytitle manvolnum) - (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - refentrytitle "&" "sektion=" manvolnum)) ]]> Index: fr_FR.ISO8859-1/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/fr_FR.ISO8859-1/share/sgml/freebsd.dsl,v retrieving revision 1.11 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.11 freebsd.dsl --- fr_FR.ISO8859-1/share/sgml/freebsd.dsl 11 Dec 2002 20:06:19 -0000 1.11 +++ fr_FR.ISO8859-1/share/sgml/freebsd.dsl 26 Apr 2003 13:27:32 -0000 @@ -19,6 +19,10 @@ + (define %refentry-xref-link% #t) + - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ #!optional (n (current-node))) - (let* ((r (select-elements (children n) (normalize "refentrytitle"))) - (m (select-elements (children n) (normalize "manvolnum"))) - (v (attribute-string (normalize "vendor") n)) - (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - (data r) "&" "sektion=" (data m)))) - (case v - (("current") (string-append u "&" "manpath=FreeBSD+5.0-current")) - (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) - (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) - (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) - (else u)))) ]]> Index: it_IT.ISO8859-15/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/it_IT.ISO8859-15/share/sgml/freebsd.dsl,v retrieving revision 1.5 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.5 freebsd.dsl --- it_IT.ISO8859-15/share/sgml/freebsd.dsl 19 Mar 2003 18:54:56 -0000 1.5 +++ it_IT.ISO8859-15/share/sgml/freebsd.dsl 26 Apr 2003 13:27:57 -0000 @@ -18,6 +18,10 @@ + (define %refentry-xref-link% #t) + (define ($email-footer$) (make sequence (make element gi: "p" @@ -45,31 +49,6 @@ (create-link (list (list "HREF" "mailto:doc@FreeBSD.org")) (literal "doc@FreeBSD.org")) (literal ">."))))) - - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ #!optional (n (current-node))) - (let* ((r (select-elements (children n) (normalize "refentrytitle"))) - (m (select-elements (children n) (normalize "manvolnum"))) - (v (attribute-string (normalize "vendor") n)) - (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - (data r) "&" "sektion=" (data m)))) - (case v - (("current") (string-append u "&" "manpath=FreeBSD+5.0-current")) - (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) - (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) - (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) - (else u)))) ]]> Index: nl_NL.ISO8859-1/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/nl_NL.ISO8859-1/share/sgml/freebsd.dsl,v retrieving revision 1.3 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.3 freebsd.dsl --- nl_NL.ISO8859-1/share/sgml/freebsd.dsl 21 Sep 2002 21:12:05 -0000 1.3 +++ nl_NL.ISO8859-1/share/sgml/freebsd.dsl 26 Apr 2003 13:28:48 -0000 @@ -13,6 +13,10 @@ + (define %refentry-xref-link% #t) + (define ($email-footer$) (make sequence (make element gi: "p" @@ -40,30 +44,6 @@ (create-link (list (list "HREF" "mailto:doc@FreeBSD.org")) (literal "doc@FreeBSD.org")) (literal ">."))))) - - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ #!optional (n (current-node))) - (let* ((r (select-elements (children n) (normalize "refentrytitle"))) - (m (select-elements (children n) (normalize "manvolnum"))) - (v (attribute-string (normalize "vendor") n)) - (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - (data r) "&" "sektion=" (data m)))) - (case v - (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) - (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) - (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) - (else u)))) ]]> Index: pl_PL.ISO8859-2/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/pl_PL.ISO8859-2/share/sgml/freebsd.dsl,v retrieving revision 1.1 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.1 freebsd.dsl --- pl_PL.ISO8859-2/share/sgml/freebsd.dsl 26 Sep 2002 17:51:34 -0000 1.1 +++ pl_PL.ISO8859-2/share/sgml/freebsd.dsl 26 Apr 2003 13:29:22 -0000 @@ -18,6 +18,10 @@ + (define %refentry-xref-link% #t) + (define ($email-footer$) (make sequence (make element gi: "p" @@ -45,30 +49,6 @@ (create-link (list (list "HREF" "mailto:doc@FreeBSD.org")) (literal "doc@FreeBSD.org")) (literal ">."))))) - - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ #!optional (n (current-node))) - (let* ((r (select-elements (children n) (normalize "refentrytitle"))) - (m (select-elements (children n) (normalize "manvolnum"))) - (v (attribute-string (normalize "vendor") n)) - (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - (data r) "&" "sektion=" (data m)))) - (case v - (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) - (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) - (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) - (else u)))) ]]> Index: pt_BR.ISO8859-1/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/pt_BR.ISO8859-1/share/sgml/freebsd.dsl,v retrieving revision 1.3 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.3 freebsd.dsl --- pt_BR.ISO8859-1/share/sgml/freebsd.dsl 21 Sep 2002 21:12:09 -0000 1.3 +++ pt_BR.ISO8859-1/share/sgml/freebsd.dsl 26 Apr 2003 13:30:05 -0000 @@ -29,6 +29,10 @@ + (define %refentry-xref-link% #t) + (define ($email-footer$) (make sequence (make element gi: "p" @@ -56,30 +60,6 @@ (create-link (list (list "HREF" "mailto:doc@FreeBSD.org")) (literal "doc@FreeBSD.org")) (literal ">."))))) - - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ #!optional (n (current-node))) - (let* ((r (select-elements (children n) (normalize "refentrytitle"))) - (m (select-elements (children n) (normalize "manvolnum"))) - (v (attribute-string (normalize "vendor") n)) - (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - (data r) "&" "sektion=" (data m)))) - (case v - (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) - (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) - (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) - (else u)))) ]]> Index: sr_YU.ISO8859-2/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/sr_YU.ISO8859-2/share/sgml/freebsd.dsl,v retrieving revision 1.1 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.1 freebsd.dsl --- sr_YU.ISO8859-2/share/sgml/freebsd.dsl 7 May 2001 18:25:56 -0000 1.1 +++ sr_YU.ISO8859-2/share/sgml/freebsd.dsl 26 Apr 2003 13:31:08 -0000 @@ -44,14 +44,6 @@ attributes: (list (list "href" "mailto:doc@FreeBSD.org")) (literal "doc@FreeBSD.org")) (literal ">."))))) - - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) ]]> (define %html-header-tags% '(("META" ("HTTP-EQUIV" "Content-Type") ("CONTENT" "text/html; charset=iso-8859-2")))) Index: zh_TW.Big5/share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/zh_TW.Big5/share/sgml/freebsd.dsl,v retrieving revision 1.4 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.4 freebsd.dsl --- zh_TW.Big5/share/sgml/freebsd.dsl 20 Jan 2003 06:41:37 -0000 1.4 +++ zh_TW.Big5/share/sgml/freebsd.dsl 26 Apr 2003 13:31:31 -0000 @@ -13,6 +13,10 @@ + (define %refentry-xref-link% #t) + (define ($email-footer$) (make sequence (make element gi: "p" @@ -40,31 +44,6 @@ (create-link (list (list "HREF" "mailto:doc@FreeBSD.org")) (literal "doc@FreeBSD.org")) (literal ">."))))) - - - - (element quote - (make sequence - (literal "``") - (process-children) - (literal "''"))) - - - (define %refentry-xref-link% #t) - - - (define ($create-refentry-xref-link$ #!optional (n (current-node))) - (let* ((r (select-elements (children n) (normalize "refentrytitle"))) - (m (select-elements (children n) (normalize "manvolnum"))) - (v (attribute-string (normalize "vendor") n)) - (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" - (data r) "&" "sektion=" (data m)))) - (case v - (("current") (string-append u "&" "manpath=FreeBSD+5.0-current")) - (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) - (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) - (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) - (else u)))) ]]> Index: share/sgml/freebsd.dsl =================================================================== RCS file: /home/dcvs/doc/share/sgml/freebsd.dsl,v retrieving revision 1.70 diff -d -u -I\$FreeBSD:.*\$ -I\$Id:.*\$ -I\$hrs:.*\$ -r1.70 freebsd.dsl --- share/sgml/freebsd.dsl 19 Apr 2003 11:39:30 -0000 1.70 +++ share/sgml/freebsd.dsl 26 Apr 2003 13:22:06 -0000 @@ -182,9 +182,19 @@ ;; /REFENTRY #f) - ; Empty function to quiet warnings - (define ($create-refentry-xref-link$) - (literal "")) + + (define ($create-refentry-xref-link$ #!optional (n (current-node))) + (let* ((r (select-elements (children n) (normalize "refentrytitle"))) + (m (select-elements (children n) (normalize "manvolnum"))) + (v (attribute-string (normalize "vendor") n)) + (u (string-append "http://www.FreeBSD.org/cgi/man.cgi?query=" + (data r) "&" "sektion=" (data m)))) + (case v + (("current") (string-append u "&" "manpath=FreeBSD+5.0-current")) + (("xfree86") (string-append u "&" "manpath=XFree86+4.2.0")) + (("netbsd") (string-append u "&" "manpath=NetBSD+1.5")) + (("ports") (string-append u "&" "manpath=FreeBSD+Ports")) + (else u)))) (element citerefentry (let ((href ($create-refentry-xref-link$))) @@ -214,6 +224,13 @@ ;; textobject (define preferred-mediaobject-notations '()) + + + (element quote + (make sequence + (literal "``") + (process-children) + (literal "''"))) ]]> ----Next_Part(Sat_Apr_26_23:54:34_2003_171)---- From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 08:08:02 2003 Return-Path: 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 A6B8937B401 for ; Sat, 26 Apr 2003 08:08:02 -0700 (PDT) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id C40B043FBD for ; Sat, 26 Apr 2003 08:08:01 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from mobile.pittgoth.com (acs-24-154-229-196.zoominternet.net [24.154.229.196]) by pittgoth.com (8.12.9/8.12.9) with SMTP id h3QF7kZK055321; Sat, 26 Apr 2003 11:07:47 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Fri, 25 Apr 2003 22:57:43 -0400 From: Tom Rhodes To: Hiroki Sato Message-Id: <20030425225743.41d227ae.trhodes@FreeBSD.org> In-Reply-To: <20030426.235434.116360718.hrs@eos.ocn.ne.jp> References: <20030424.021109.59657888.hrs@eos.ocn.ne.jp> <193879609822.20030423194209@alexdupre.com> <20030426.235434.116360718.hrs@eos.ocn.ne.jp> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: doc@FreeBSD.org Subject: Re: doc/{,}/share/sgml/catalog X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 15:08:02 -0000 On Sat, 26 Apr 2003 23:54:34 +0900 (JST) Hiroki Sato wrote: > Alex Dupre wrote > in <193879609822.20030423194209@alexdupre.com>: > > sysadmin> Wednesday, April 23, 2003, 7:11:09 PM, you wrote: > sysadmin> > sysadmin> HS> I think it is reasonable to put non-English and language-specific > sysadmin> HS> entries in doc/share/sgml/catalog into doc//share/sgml/catalog. > sysadmin> HS> They are in doc/share/sgml/catalog together now, but not needed > sysadmin> HS> to be there. > sysadmin> > sysadmin> If they are not needed, I completely agree with you. In this case I > sysadmin> give you the permission to apply the Italian part of the patch to the > sysadmin> tree. > > Thanks. What do people who responsible for the other languages think? > While I have no control over the specific languages, I'm going to take a `please commit' side on this under the `feedback timeout' clause. :) -- Tom Rhodes From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 08:16:49 2003 Return-Path: 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 9E7E237B401; Sat, 26 Apr 2003 08:16:49 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39FCF43FB1; Sat, 26 Apr 2003 08:16:49 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3QFGnUp054453; Sat, 26 Apr 2003 08:16:49 -0700 (PDT) (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3QFGmeq054371; Sat, 26 Apr 2003 08:16:48 -0700 (PDT) Date: Sat, 26 Apr 2003 08:16:48 -0700 (PDT) From: Tom Rhodes Message-Id: <200304261516.h3QFGmeq054371@freefall.freebsd.org> To: mitya@cavia.pp.ru, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Subject: Re: docs/50769: login_class.3 does not mention recently added 'vmemoryuse' limit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 15:16:50 -0000 Synopsis: login_class.3 does not mention recently added 'vmemoryuse' limit State-Changed-From-To: open->patched State-Changed-By: trhodes State-Changed-When: Sat Apr 26 08:16:11 PDT 2003 State-Changed-Why: Patch applied to CURRENT! Thanks for the submission! Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Sat Apr 26 08:16:11 PDT 2003 Responsible-Changed-Why: Patch applied to CURRENT! Thanks for the submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=50769 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 08:30:16 2003 Return-Path: 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 A011637B401 for ; Sat, 26 Apr 2003 08:30:16 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43E6343F85 for ; Sat, 26 Apr 2003 08:30:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3QFUGUp005359 for ; Sat, 26 Apr 2003 08:30:16 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3QFUGkW005355; Sat, 26 Apr 2003 08:30:16 -0700 (PDT) Date: Sat, 26 Apr 2003 08:30:16 -0700 (PDT) Message-Id: <200304261530.h3QFUGkW005355@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Christopher Nehren Subject: Re: docs/51407: references to gated remain when gated is no longer available X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Christopher Nehren List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 15:30:16 -0000 The following reply was made to PR docs/51407; it has been noted by GNATS. From: Christopher Nehren To: Bruce Cran Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/51407: references to gated remain when gated is no longer available Date: Sat, 26 Apr 2003 11:25:08 -0400 --=-hTzoMxN0ZHyh+FDio+xx Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2003-04-25 at 05:36, Bruce Cran wrote: > >Fix: >=20 > change or remove references to gated in the documentation I'm not really a documentation expert, but wouldn't it probably be best to make note of the obsolescence of gated's freeness in the documentation, as well as pointing readers to zebra (and also make reference to the fact that it's in ports, and not imply that it's in the base system, as was suggested by Simon Nielsen)? --=-hTzoMxN0ZHyh+FDio+xx Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+qqTSUdqurN0fljsRAlZkAKC5580cXYr43Hh7cP0qVwo1PGzwhACcCJXC iV0+THbmrAYyxRrFCmXs8FE= =dVXI -----END PGP SIGNATURE----- --=-hTzoMxN0ZHyh+FDio+xx-- From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 08:40:13 2003 Return-Path: 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 642A437B401 for ; Sat, 26 Apr 2003 08:40:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 817C643FA3 for ; Sat, 26 Apr 2003 08:40:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3QFeCUp046161 for ; Sat, 26 Apr 2003 08:40:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3QFeCv4046160; Sat, 26 Apr 2003 08:40:12 -0700 (PDT) Resent-Date: Sat, 26 Apr 2003 08:40:12 -0700 (PDT) Resent-Message-Id: <200304261540.h3QFeCv4046160@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, Mike Meyer Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84BF437B401 for ; Sat, 26 Apr 2003 08:34:54 -0700 (PDT) Received: from mired.org (ip68-97-54-220.ok.ok.cox.net [68.97.54.220]) by mx1.FreeBSD.org (Postfix) with SMTP id B367D43F93 for ; Sat, 26 Apr 2003 08:34:53 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 13429 invoked by uid 100); 26 Apr 2003 15:34:52 -0000 Message-Id: <20030426153452.13414.qmail@mired.org> Date: 26 Apr 2003 15:34:52 -0000 From: Mike Meyer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/51444: [PATCH] The handbook script for dealing with postscript is broken X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mike Meyer List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 15:40:13 -0000 >Number: 51444 >Category: docs >Synopsis: [PATCH] The handbook script for dealing with postscript is broken >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 26 08:40:11 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Mike Meyer >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: Meyer Consulting >Environment: System: FreeBSD guru.mired.org 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #18: Mon Feb 24 12:02:57 CST 2003 mwm@guru.mired.org:/sharetmp/obj/usr/src/sys/GURU i386 >Description: The handbook script for filtering postscript through gs is broken. It includes a second, unneeded invocation of gs that was probably meant to be commented out without explanation, and is missing a continuation mark on one command. >How-To-Repeat: Read the handbook chapter on advanced printing, looking for "gs ". >Fix: The attached patch removes the extra invocation, and adds in the line continuation needed to make the script work properly. --- chapter.sgml Mon Feb 24 09:52:54 2003 +++ /tmp/chapter.sgml Sat Apr 26 10:11:47 2003 @@ -1928,13 +1928,10 @@ # capture the stderr output from Ghostscript and mail it back to # the user originating the print job. # - exec 3>&1 1>&2 + exec 3>&1 1>&2 \ /usr/local/bin/gs -dSAFER -dNOPAUSE -q -sDEVICE=djet500 \ -sOutputFile=/dev/fd/3 - && exit 0 - # - /usr/local/bin/gs -dSAFER -dNOPAUSE -q -sDEVICE=djet500 -sOutputFile=- - \ - && exit 0 else # # Plain text or HP/PCL, so just print it directly; print a form feed >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 08:41:49 2003 Return-Path: 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 4E7FF37B401; Sat, 26 Apr 2003 08:41:49 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE31B43FE5; Sat, 26 Apr 2003 08:41:48 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3QFfmUp053611; Sat, 26 Apr 2003 08:41:48 -0700 (PDT) (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3QFflfC053552; Sat, 26 Apr 2003 08:41:47 -0700 (PDT) Date: Sat, 26 Apr 2003 08:41:47 -0700 (PDT) From: Tom Rhodes Message-Id: <200304261541.h3QFflfC053552@freefall.freebsd.org> To: simon@nitro.dk, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Subject: Re: docs/51183: [patch] style(9) does not reference style.Makefile(5) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 15:41:49 -0000 Synopsis: [patch] style(9) does not reference style.Makefile(5) State-Changed-From-To: open->closed State-Changed-By: trhodes State-Changed-When: Sat Apr 26 08:39:02 PDT 2003 State-Changed-Why: Switch this PR to me. Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Sat Apr 26 08:39:02 PDT 2003 Responsible-Changed-Why: I've committed a slightly different patch than provided due to the following: When Xref'ing a manual page we sort by section number, alphabetical order. Thus I moved .Xr style.Makefile.5 after the section 3 manual pages. Thanks for the submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=51183 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 09:08:54 2003 Return-Path: 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 B491D37B401; Sat, 26 Apr 2003 09:08:54 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D5BA43FAF; Sat, 26 Apr 2003 09:08:54 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from freefall.freebsd.org (trhodes@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3QG8sUp067471; Sat, 26 Apr 2003 09:08:54 -0700 (PDT) (envelope-from trhodes@freefall.freebsd.org) Received: (from trhodes@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3QG8rQF067449; Sat, 26 Apr 2003 09:08:53 -0700 (PDT) Date: Sat, 26 Apr 2003 09:08:53 -0700 (PDT) From: Tom Rhodes Message-Id: <200304261608.h3QG8rQF067449@freefall.freebsd.org> To: osa@FreeBSD.org.ru, trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Subject: Re: docs/50720: [PATCH] doc/en_US.ISO8859-1/books/faq/book.sgml: add QAs (scheduler) X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 16:08:55 -0000 Synopsis: [PATCH] doc/en_US.ISO8859-1/books/faq/book.sgml: add QAs (scheduler) State-Changed-From-To: open->closed State-Changed-By: trhodes State-Changed-When: Sat Apr 26 09:07:46 PDT 2003 State-Changed-Why: Over to me. Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Sat Apr 26 09:07:46 PDT 2003 Responsible-Changed-Why: Thanks for the submission! I've taken some of the comments provided by Chris Pepper and did some word smithing of my own. http://www.freebsd.org/cgi/query-pr.cgi?pr=50720 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 09:31:32 2003 Return-Path: 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 1391637B401 for ; Sat, 26 Apr 2003 09:31:32 -0700 (PDT) Received: from camel.jerocu.net (camel.jerocu.net [213.129.160.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3144B43F93 for ; Sat, 26 Apr 2003 09:31:26 -0700 (PDT) (envelope-from jesusr@endercom.com) Received: from localhost (localhost [127.0.0.1]) by camel.jerocu.net (8.12.9/8.12.9) with ESMTP id h3QGUCZ9081914; Sat, 26 Apr 2003 18:30:13 +0200 (CEST) (envelope-from jesusr@endercom.com) Date: Sat, 26 Apr 2003 18:30:12 +0200 (CEST) From: Jesus Rodriguez X-X-Sender: jesusr@camel To: Hiroki Sato In-Reply-To: <20030426.235434.116360718.hrs@eos.ocn.ne.jp> Message-ID: <20030426182851.P81897@camel> References: <20030424.021109.59657888.hrs@eos.ocn.ne.jp> <20030426.235434.116360718.hrs@eos.ocn.ne.jp> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: sysadmin@alexdupre.com cc: doc@freebsd.org Subject: Re: doc/{,}/share/sgml/catalog X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 16:31:32 -0000 On Sat, 26 Apr 2003, Hiroki Sato wrote: > Alex Dupre wrote > in <193879609822.20030423194209@alexdupre.com>: > > sysadmin> Wednesday, April 23, 2003, 7:11:09 PM, you wrote: > sysadmin> > sysadmin> HS> I think it is reasonable to put non-English and language-specific > sysadmin> HS> entries in doc/share/sgml/catalog into doc//share/sgml/catalog. > sysadmin> HS> They are in doc/share/sgml/catalog together now, but not needed > sysadmin> HS> to be there. > sysadmin> > sysadmin> If they are not needed, I completely agree with you. In this case I > sysadmin> give you the permission to apply the Italian part of the patch to the > sysadmin> tree. > > Thanks. What do people who responsible for the other languages think? > > In addition I have a patch for language-specific freebsd.dsl. > Changes including this are not just cosmetic---for example, > a definition of ($create-refentry-xref-link$) in > en_US.ISO8859-1/share/sgml/freebsd.dsl was changed by > nik (r1.14->r1.15), but since es_ES.ISO8859-1/share/sgml/freebsd.dsl is > not updated, you probably see a warning during the build of es_ES.ISO8859-1/. For the spanish doc, please, go for it!. Saludos JesusR. ------------------------------- Jesus Rodriguez Endercom Comunicaciones, S.L. jesusr@endercom.com http://www.endercom.com Tel. +34 934424293 ------------------------------- From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 10:55:47 2003 Return-Path: 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 ED39B37B401 for ; Sat, 26 Apr 2003 10:55:47 -0700 (PDT) Received: from Kain.sumuk.de (Kain.sumuk.de [213.221.86.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4400C43FB1 for ; Sat, 26 Apr 2003 10:55:46 -0700 (PDT) (envelope-from vincent@sumuk.de) Received: from Moses.earth.sol (Moses.earth.sol [192.168.1.1]) by Kain.sumuk.de (8.12.9/8.12.8) with ESMTP id h3QHtYCu056068; Sat, 26 Apr 2003 19:55:35 +0200 (CEST) (envelope-from vincent@sumuk.de) Received: from Moses.earth.sol (localhost.earth.sol [127.0.0.1]) by Moses.earth.sol (8.12.5/8.12.5) with ESMTP id h3QHtW5X040276; Sat, 26 Apr 2003 19:55:32 +0200 (CEST) (envelope-from vincent@Moses.earth.sol) Received: (from vincent@localhost) by Moses.earth.sol (8.12.5/8.12.5/Submit) id h3QHtV2C040275; Sat, 26 Apr 2003 19:55:31 +0200 (CEST) Date: Sat, 26 Apr 2003 19:55:30 +0200 From: Martin Heinen To: Hiroki Sato Message-ID: <20030426195530.A39636@sumuk.de> References: <20030424.021109.59657888.hrs@eos.ocn.ne.jp> <193879609822.20030423194209@alexdupre.com> <20030426.235434.116360718.hrs@eos.ocn.ne.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030426.235434.116360718.hrs@eos.ocn.ne.jp>; from hrs@eos.ocn.ne.jp on Sat, Apr 26, 2003 at 11:54:34PM +0900 cc: sysadmin@alexdupre.com cc: doc@freebsd.org Subject: Re: doc/{,}/share/sgml/catalog X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: doc@freebsd.org List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 17:55:48 -0000 On Sat, Apr 26, 2003 at 11:54:34PM +0900, Hiroki Sato wrote: > Thanks. What do people who responsible for the other languages think? Ok, please commit. -- Marxpitn From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 14:32:27 2003 Return-Path: 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 54EB937B404; Sat, 26 Apr 2003 14:32:27 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0E3943FAF; Sat, 26 Apr 2003 14:32:26 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from freefall.freebsd.org (hrs@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3QLWQUp002361; Sat, 26 Apr 2003 14:32:26 -0700 (PDT) (envelope-from hrs@freefall.freebsd.org) Received: (from hrs@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3QLWQAN002357; Sat, 26 Apr 2003 14:32:26 -0700 (PDT) Date: Sat, 26 Apr 2003 14:32:26 -0700 (PDT) From: Hiroki Sato Message-Id: <200304262132.h3QLWQAN002357@freefall.freebsd.org> To: jkoshy@FreeBSD.ORG, hrs@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/41892: Patch to fix slowdowns of documentation builds X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 21:32:27 -0000 Synopsis: Patch to fix slowdowns of documentation builds State-Changed-From-To: open->closed State-Changed-By: hrs State-Changed-When: Sat Apr 26 14:28:42 PDT 2003 State-Changed-Why: The definitions were removed and replaced with the same functionality in docbook.css. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=41892 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 14:39:36 2003 Return-Path: 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 29F1937B404; Sat, 26 Apr 2003 14:39:36 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE57743F75; Sat, 26 Apr 2003 14:39:35 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from freefall.freebsd.org (hrs@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3QLdZUp030292; Sat, 26 Apr 2003 14:39:35 -0700 (PDT) (envelope-from hrs@freefall.freebsd.org) Received: (from hrs@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3QLdZYv030286; Sat, 26 Apr 2003 14:39:35 -0700 (PDT) Date: Sat, 26 Apr 2003 14:39:35 -0700 (PDT) From: Hiroki Sato Message-Id: <200304262139.h3QLdZYv030286@freefall.freebsd.org> To: hrs@FreeBSD.org, freebsd-doc@FreeBSD.org, hrs@FreeBSD.org Subject: Re: docs/41879: cleanup to DOCROOT/share/sgml/freebsd.dsl X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2003 21:39:36 -0000 Synopsis: cleanup to DOCROOT/share/sgml/freebsd.dsl Responsible-Changed-From-To: freebsd-doc->hrs Responsible-Changed-By: hrs Responsible-Changed-When: Sat Apr 26 14:38:30 PDT 2003 Responsible-Changed-Why: I'll work on this. http://www.freebsd.org/cgi/query-pr.cgi?pr=41879 From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 22:34:17 2003 Return-Path: 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 422E537B401 for ; Sat, 26 Apr 2003 22:34:17 -0700 (PDT) Received: from sd00156.sendtech.net (sd00156.sendtech.net [198.3.80.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78B3643FA3 for ; Sat, 26 Apr 2003 22:34:16 -0700 (PDT) (envelope-from jaysern@acm.org) Received: (from nobody@localhost) by sd00156.sendtech.net (8.11.3/8.11.3) id h3R5Yie26968 for freebsd-doc@freebsd.org; Sun, 27 Apr 2003 00:34:44 -0500 X-Authentication-Warning: sd00156.sendtech.net: nobody set sender to jaysern@acm.org using -f Received: from 24.243.161.60 ( [24.243.161.60])HTTP; Sun, 27 Apr 2003 00:34:44 -0500 Message-ID: <1051421684.3eab6bf4135f9@webmail.americanhorizonsbank.com> Date: Sun, 27 Apr 2003 00:34:44 -0500 From: Jay Sern Liew To: freebsd-doc@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.1 X-Originating-IP: 24.243.161.60 Subject: docproj - tex PDF format problem X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Apr 2003 05:34:17 -0000 Greetings, I was doing a make FORMATS=pdf on article/vm-design, and I got this error saying that TeX's pool size is too small. Here's a snippet of the err log file. I search the mailing list archive and on some newsgroups, couldn't find anything that helped. Surely someone in -doc has ran into this before? I didn't compile tex manually, I just installed docproj with /stand/sysinstall, so I assume that tex is using the default configuration for docproj. Any suggestions? ! TeX capacity exceeded, sorry [pool size=5000]. \@ifl@aded ...er \ifx \csname ver@#2.#1\endcsname \relax \expandafter \@seco... l.21 {48\p@}} \Node% If you really absolutely need more capacity, you can ask a wizard to enlarge me. Here is how much of TeX's memory you used: 317 strings out of 1004 4986 string characters out of 5000 140174 words of memory out of 263001 12874 multiletter control sequences out of 10000+6183 6843 words of font info for 19 fonts, out of 400000 for 1000 14 hyphenation exceptions out of 1000 16i,0n,39p,237b,115s stack positions out of 300i,100n,500p,50000b,4000s ! ==> Fatal error occurred, the output PDF file not finished! ____________________________________________________________________________ Jay Sern Liew jaysern@{acm,ieee}.org gpg --keyserver pgp.mit.edu --recv-keys 0xA115A33F Key fingerprint = B08E 2481 B4CE 284A C0DE E359 8646 7B7E A115 A33F From owner-freebsd-doc@FreeBSD.ORG Sat Apr 26 23:40:46 2003 Return-Path: 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 59CD237B401 for ; Sat, 26 Apr 2003 23:40:46 -0700 (PDT) Received: from smtp.eos.ocn.ne.jp (eos.ocn.ne.jp [211.6.83.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDDE943FB1 for ; Sat, 26 Apr 2003 23:40:45 -0700 (PDT) (envelope-from hrs@eos.ocn.ne.jp) Received: from mail.allbsd.org (p53054-adsao12honb4-acca.tokyo.ocn.ne.jp [220.96.135.54]) by smtp.eos.ocn.ne.jp (Postfix) with ESMTP id 88FE04155; Sun, 27 Apr 2003 15:40:44 +0900 (JST) Received: from localhost (alph.allbsd.org [192.168.0.10]) h3R6cqJp020334; Sun, 27 Apr 2003 15:38:53 +0900 (JST) (envelope-from hrs@eos.ocn.ne.jp) Date: Sun, 27 Apr 2003 15:26:02 +0900 (JST) Message-Id: <20030427.152602.77052635.hrs@eos.ocn.ne.jp> To: jaysern@acm.org From: Hiroki Sato In-Reply-To: <1051421684.3eab6bf4135f9@webmail.americanhorizonsbank.com> References: <1051421684.3eab6bf4135f9@webmail.americanhorizonsbank.com> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-doc@freebsd.org Subject: Re: docproj - tex PDF format problem X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Apr 2003 06:40:46 -0000 Hi, Jay Sern Liew wrote in <1051421684.3eab6bf4135f9@webmail.americanhorizonsbank.com>: jaysern> I didn't compile tex manually, I just installed docproj with /stand/sysinstall, jaysern> so I assume that tex is using the default configuration for docproj. Any jaysern> suggestions? Do "pkg_info -D jadetex-\*" (or see /usr/ports/print/jadetex/pkg-message). The default TeX configuration is too conservative for JadeTeX. -- | Hiroki SATO /