From owner-freebsd-doc Sun Nov 11 2: 7:42 2001 Delivered-To: freebsd-doc@freebsd.org Received: from femail12.sdc1.sfba.home.com (femail12.sdc1.sfba.home.com [24.0.95.108]) by hub.freebsd.org (Postfix) with ESMTP id E80ED37B419; Sun, 11 Nov 2001 02:07:38 -0800 (PST) Received: from c1529030-a.sttln1.wa.home.com ([24.255.60.196]) by femail12.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20011111100737.LVG21713.femail12.sdc1.sfba.home.com@c1529030-a.sttln1.wa.home.com>; Sun, 11 Nov 2001 02:07:37 -0800 From: Ryan Merrick To: doc@FreeBSD.org, nsayer@FreeBSD.org Date: Sun, 11 Nov 2001 01:16:09 -0800 Subject: Filtering bridges Reply-To: Ryan Merrick X-Mailer: Phoenix Mail 0.93.00 Beta 6 Developer Edition Message-Id: <20011111100737.LVG21713.femail12.sdc1.sfba.home.com@c1529030-a.sttln1.wa.home.com> Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, http://www.freebsd.org/doc/en_US.ISO8859-1/articles/filtering-bridges/filtering-bridges-ipfirewall.html The page mentioned above has a few errors in it. In the sample script the command to add a ipfw rule is ${ipfw} not ${fwcmd} like in rc.firewall. The numbers or probility for the rules are missing after the add. This sample firewall configuration was no help to me in its present state. The corrected "sample" would look like: us_ip=10.1.1.10 oif=fxp0 iif=fxp1 #mailhost= # Things that we've kept state on before get to go through in a hurry. ${fwcmd} add 500 check-state # Throw away RFC 1918 networks ${fwcmd} add 600 deny log ip from 10.0.0.0/8 to any in via ${oif} ${fwcmd} add 700 deny log ip from 172.16.0.0/12 to any in via ${oif} ${fwcmd} add 800 deny log ip from 192.68.0.0/16 to any in via ${oif} # Allow the bridge machine to say anything it wants (keep state if UDP) ${fwcmd} add 900 pass udp from ${us_ip} to any keep-state ${fwcmd} add 1000pass ip from ${us_ip} to any # Allow the inside net to say anything it wants (keep state if UDP) ${fwcmd} add 1100 pass udp from any to any in via ${iif} keep-state ${fwcmd} add 1200 pass ip from any to any in via ${iif} # Allow all manner of ICMP ${fwcmd} add 1300 pass icmp from any to any # TCP section # established TCP sessions are ok everywhere. ${fwcmd} add 1400 pass tcp from any to any established # Pass the "quarantine" range. ${fwcmd} add 1500 pass tcp from any to any 49152-65535 in via ${oif} # Pass ident probes. It's better than waiting for them to timeout ${fwcmd} add 1600 pass tcp from any to any 113 in via ${oif} # Pass SSH. ${fwcmd} add 1700 pass tcp from any to any 22 in via ${oif} # Pass DNS. Only if you have name servers inside. #${fwcmd} add pass tcp from any to any 53 in via ${oif} # Pass SMTP to the mail server only #${fwcmd} add pass tcp from any to ${mailhost} 25 in via ${oif} # UDP section # Pass the "quarantine" range. #${fwcmd} add pass udp from any to any 49152-65535 in via ${oif} # Pass DNS. Only if you have name servers inside. ${fwcmd} add pass udp from any to any 53 in via ${oif} # Everything else is suspect ${fwcmd} add deny log ip from any to any In the document there is no reference to where this configuration is placed. I dumped mine in under open in rc.firewall, but it could be placed in another file then referenced with the firewall_script="" in rc.conf. Ryan M. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Nov 11 2:10: 6 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE1F037B41A for ; Sun, 11 Nov 2001 02:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fABAA0k58787; Sun, 11 Nov 2001 02:10:00 -0800 (PST) (envelope-from gnats) Received: from mail009.syd.optusnet.com.au (mail009.syd.optusnet.com.au [203.2.75.170]) by hub.freebsd.org (Postfix) with ESMTP id 8EFB237B416 for ; Sun, 11 Nov 2001 02:05:20 -0800 (PST) Received: from pcuse.com (adlax5-180.dialup.optusnet.com.au [198.142.109.180]) by mail009.syd.optusnet.com.au (8.11.1/8.11.1) with ESMTP id fABA52J10068 for ; Sun, 11 Nov 2001 21:05:05 +1100 Received: (from shaun@localhost) by pcuse.com (8.11.6/8.11.6) id fABA4w045199; Sun, 11 Nov 2001 20:34:58 +1030 (CST) (envelope-from shaun) Message-Id: <200111111004.fABA4w045199@pcuse.com> Date: Sun, 11 Nov 2001 20:34:58 +1030 (CST) From: Shaun Branden Reply-To: Shaun Branden To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/31909: Typo in fdp-primer Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31909 >Category: docs >Synopsis: Typo in fdp-primer >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 Nov 11 02:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Shaun Branden >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD sagan.tpn 4.4-STABLE FreeBSD 4.4-STABLE #0: Fri Oct 26 04:12:43 CST 2001 shaun@sagan.tpn:/usr/obj/usr/src/sys/SAGAN i386 >Description: "5.2 CSS Cascacding Stylesheets (CSS) are a mechanism for attaching ..." -> extra c in cascading >How-To-Repeat: >Fix: *** chapter.sgml.old»···Sun Nov 11 20:31:10 2001 --- chapter.sgml»···Sun Nov 11 20:31:25 2001 *************** *** 65,71 **** CSS ·· ! Cascacding Stylesheets (CSS) are a mechanism for attaching style information (font, weight, size, color, and so forth) to elements in an HTML document without abusing HTML to do so. ·· --- 65,71 ---- CSS ·· ! Cascading Stylesheets (CSS) are a mechanism for attaching style information (font, weight, size, color, and so forth) to elements in an HTML document without abusing HTML to do so. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Nov 11 6:10:13 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 79DEB37B417 for ; Sun, 11 Nov 2001 06:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fABEA3N07972; Sun, 11 Nov 2001 06:10:03 -0800 (PST) (envelope-from gnats) Date: Sun, 11 Nov 2001 06:10:03 -0800 (PST) Message-Id: <200111111410.fABEA3N07972@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: Martin Heinen Subject: Re: docs/31899: Markup changes for chapter Security Reply-To: Martin Heinen Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/31899; it has been noted by GNATS. From: Martin Heinen To: Tom Hukins Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/31899: Markup changes for chapter Security Date: Sun, 11 Nov 2001 15:06:54 +0100 --5G06lTa6Jq83wMTw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Nov 10, 2001 at 05:27:14PM +0000, Tom Hukins wrote: > On Sat, Nov 10, 2001 at 03:19:43PM +0100, Martin Heinen wrote: > > If you have installed the DES-capable crypt library > > - libdescrypt (e.g. by installing the > > - "crypto" distribution), then which password format will be used > > - for new passwords is controlled by the > > - passwd_format login capability in > > - /etc/login.conf, which takes values of > > - either des or md5. See the > > - &man.login.conf.5; manual page for more information about login > > - capabilities. > > Rather than fixing this by modifying the quotes, shouldn't this be > totally updated? We don't have a "crypto" distribution any more, so we > should specify what happens by default and explain how to change it. second uups, in the future I will read the relase notes more thoroughly. The attached diff reformulates the section, but I'm not sure if I got this right, especially I don't know when /etc/auth.conf is used. Maybe someone else can shed more light on this. Should I open a new PR for this issue? Martin -- Marxpitn --5G06lTa6Jq83wMTw Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="sec.auth.diff" Index: chapter.sgml =================================================================== RCS file: /u/cvs/doc/en_US.ISO8859-1/books/handbook/security/chapter.sgml,v retrieving revision 1.96 diff -u -r1.96 chapter.sgml --- chapter.sgml 2001/10/29 11:02:50 1.96 +++ chapter.sgml 2001/11/11 13:33:53 @@ -978,50 +978,35 @@ Recognizing Your Crypt Mechanism + Before FreeBSD 4.4 libcrypt.a was a + symbolic link pointing to the library which was used for + encryption. FreeBSD 4.4 changed libcrypt.a to + provide a configurable password authentication hash library. + Currently the library supports DES, MD5 and Blowfish hash + functions. By default FreeBSD uses MD5 to encrypt + passwords. + It is pretty easy to identify which encryption method FreeBSD is set up to use. Examining the encrypted passwords in the /etc/master.passwd file is one way. Passwords encrypted with the MD5 hash are longer than those encrypted with the DES hash and also begin with the characters - $1$. DES password strings do not + $1$. Passwords starting with + $2$ are encrypted with the + Blowfish hash function. DES password strings do not have any particular identifying characteristics, but they are shorter than MD5 passwords, and are coded in a 64-character alphabet which does not include the $ character, so a relatively short string which does not begin with a dollar sign is very likely a DES password. - - The libraries can identify the passwords this way as well. - As a result, the DES libraries are able to identify MD5 - passwords, and use MD5 to check passwords that were encrypted - that way, and DES for the rest. They are able to do this - because the DES libraries also contain MD5. Unfortunately, the - reverse is not true, so the MD5 libraries cannot authenticate - passwords that were encrypted with DES. - - Identifying which library is being used by the programs on - your system is easy as well. Any program that uses crypt is linked - against libcrypt, which for each type of library is a symbolic link - to the appropriate implementation. For example, on a system using - the DES versions: - - &prompt.user; ls -l /usr/lib/libcrypt* -lrwxr-xr-x 1 root wheel 13 Mar 19 06:56 libcrypt.a -> libdescrypt.a -lrwxr-xr-x 1 root wheel 18 Mar 19 06:56 libcrypt.so.2.0 -> libdescrypt.so.2.0 -lrwxr-xr-x 1 root wheel 15 Mar 19 06:56 libcrypt_p.a -> libdescrypt_p.a - On a system using the MD5-based libraries, the same links will - be present, but the target will be libscrypt - rather than libdescrypt. + Which password format will be used for new passwords is + controlled by the passwd_format login capability in + /etc/login.conf, which takes values of + des or md5 or blf. + See the &man.login.conf.5; manual page for more information about + login capabilities. - If you have installed the DES-capable crypt library - libdescrypt (e.g. by installing the - "crypto" distribution), then which password format will be used - for new passwords is controlled by the - passwd_format login capability in - /etc/login.conf, which takes values of - either des or md5. See the - &man.login.conf.5; manual page for more information about login - capabilities. --5G06lTa6Jq83wMTw-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Nov 11 6:10:17 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3311337B416 for ; Sun, 11 Nov 2001 06:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fABEA2A07967; Sun, 11 Nov 2001 06:10:02 -0800 (PST) (envelope-from gnats) Date: Sun, 11 Nov 2001 06:10:02 -0800 (PST) Message-Id: <200111111410.fABEA2A07967@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: Martin Heinen Subject: Re: docs/31899: Markup changes for chapter Security Reply-To: Martin Heinen Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/31899; it has been noted by GNATS. From: Martin Heinen To: Giorgos Keramidas Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: docs/31899: Markup changes for chapter Security Date: Sun, 11 Nov 2001 15:06:26 +0100 --Bn2rw/3z4jIqBvZU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Giorgos Keramidas wrote: > Martin Heinen wrote: > > > > >Description: > > changed literal " to , indented a paragraph, > > -> , > > info -> information, > > grunt -> grunt, > > added missing markup, > > localhost -> localhost > > Please do not mix whitespace and content changes :( > It is difficult to see the content changes when they are made at the > same time with indentation or other whitespace fixes. uups, thanks for reminding me to read the FDP-Primer regularly. Attached is a diff without whitespace changes. I will send a new PR to fix line breaks and identation. As Tom noted, the section about recognizing the crypt mechanism needs to be rewritten, so I dropped the corrections to this section. Martin -- Marxpitn --Bn2rw/3z4jIqBvZU Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="sec.diff" Index: chapter.sgml =================================================================== RCS file: /u/cvs/doc/en_US.ISO8859-1/books/handbook/security/chapter.sgml,v retrieving revision 1.96 diff -u -r1.96 chapter.sgml --- chapter.sgml 2001/10/29 11:02:50 1.96 +++ chapter.sgml 2001/11/11 11:17:28 @@ -1249,7 +1249,7 @@ s/key 97 fw13894 Password: - Or for OPIE: + Or for OPIE: &prompt.user; telnet example.com Trying 10.0.0.1... @@ -1345,7 +1345,7 @@ on the host name, user name, terminal port, or IP address of a login session. These restrictions can be found in the configuration file /etc/skey.access. The - &man.skey.access.5; manual page has more info on the complete + &man.skey.access.5; manual page has more information on the complete format of the file and also details some security cautions to be aware of before depending on this file for security. @@ -1460,7 +1460,7 @@ You should now edit the krb.conf and krb.realms files to define your Kerberos realm. In this case the realm will be EXAMPLE.COM and the - server is grunt.example.com. We edit or create + server is grunt.example.com. We edit or create the krb.conf file: &prompt.root; cat krb.conf @@ -2655,8 +2655,8 @@ elsewhere, and is not available for unrestricted use. IDEA is included in the OpenSSL sources in FreeBSD, but it is not built by default. If you wish to use it, and you comply with the - license terms, enable the MAKE_IDEA switch in /etc/make.conf and - rebuild your sources using 'make world'. + license terms, enable the MAKE_IDEA switch in /etc/make.conf and + rebuild your sources using make world. Today, the RSA algorithm is free for use in USA and other countries. In the past it was protected by a patent. @@ -2741,14 +2741,14 @@ From HOST B to HOST A, new AH and new ESP are combined. Now we should choose an algorithm to be used corresponding to - "AH"/"new AH"/"ESP"/"new ESP". Please refer to the &man.setkey.8; man + AH/new AH/ESP/new ESP. Please refer to the &man.setkey.8; man page to know algorithm names. Our choice is MD5 for AH, new-HMAC-SHA1 for new AH, and new-DES-expIV with 8 byte IV for new ESP. Key length highly depends on each algorithm. For example, key length must be equal to 16 bytes for MD5, 20 for new-HMAC-SHA1, - and 8 for new-DES-expIV. Now we choose "MYSECRETMYSECRET", - "KAMEKAMEKAMEKAMEKAME", "PASSWORD", respectively. + and 8 for new-DES-expIV. Now we choose MYSECRETMYSECRET, + KAMEKAMEKAMEKAMEKAME, PASSWORD, respectively. OK, let us assign SPI (Security Parameter Index) for each protocol. Please note that we need 3 SPIs for this secure channel since three @@ -2842,9 +2842,9 @@ fec0::10 -------------------- fec0::11 - Encryption algorithm is blowfish-cbc whose key is "kamekame", and - authentication algorithm is hmac-sha1 whose key is "this is the test - key". Configuration at Host-A: + Encryption algorithm is blowfish-cbc whose key is kamekame, and + authentication algorithm is hmac-sha1 whose key is this is the test + key. Configuration at Host-A: &prompt.root; setkey -c <<EOF @@ -2888,7 +2888,7 @@ Tunnel mode between two security gateways Security protocol is old AH tunnel mode, i.e. specified by - RFC1826, with keyed-md5 whose key is "this is the test" as + RFC1826, with keyed-md5 whose key is this is the test as authentication algorithm. @@ -2914,8 +2914,8 @@ EOF - If the port number field is omitted such as above then "[any]" is - employed. `-m' specifies the mode of SA to be used. "-m any" means + If the port number field is omitted such as above then [any] is + employed. -m specifies the mode of SA to be used. -m any means wild-card of mode of security protocol. You can use this SA for both tunnel and transport mode. @@ -3105,7 +3105,7 @@ created using rlogin or telnet. SSH utilizes a key fingerprint system for verifying the authenticity of the server when the - client connects. The user is prompted to enter 'yes' only when + client connects. The user is prompted to enter yes only when connecting for the first time. Future attempts to login are all verified against the saved fingerprint key. The SSH client will alert you if the saved fingerprint differs from the @@ -3132,7 +3132,7 @@ scp - The scp command works similarly to rcp; + The scp command works similarly to rcp; it copies a file to or from a remote machine, except in a secure fashion. @@ -3293,14 +3293,14 @@ - An SSH tunnel works by creating a listen socket on localhost + An SSH tunnel works by creating a listen socket on localhost on the specified port. It then forwards any connection received on the local host/port via the SSH connection to the specified remote host and port. In the example, port 5023 on - localhost is being forwarded to port - 23 on localhost of the remote + localhost is being forwarded to port + 23 on localhost of the remote machine. Since 23 is telnet, this would create a secure telnet session through an SSH tunnel. --Bn2rw/3z4jIqBvZU-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Nov 11 13:39: 9 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E4C737B41A; Sun, 11 Nov 2001 13:39:07 -0800 (PST) Received: (from tom@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fABLV3e46379; Sun, 11 Nov 2001 13:31:03 -0800 (PST) (envelope-from tom) Date: Sun, 11 Nov 2001 13:31:03 -0800 (PST) From: Message-Id: <200111112131.fABLV3e46379@freefall.freebsd.org> To: shaun@pcuse.com, tom@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31909: Typo in fdp-primer Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Typo in fdp-primer State-Changed-From-To: open->closed State-Changed-By: tom State-Changed-When: Sun Nov 11 13:30:18 PST 2001 State-Changed-Why: Committed - thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31909 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Nov 11 13:52:14 2001 Delivered-To: freebsd-doc@freebsd.org Received: from atkielski.com (atkielski.com [161.58.232.69]) by hub.freebsd.org (Postfix) with ESMTP id 22FC337B417; Sun, 11 Nov 2001 13:52:09 -0800 (PST) Received: from contactdish (ASt-Lambert-101-2-1-14.abo.wanadoo.fr [193.251.59.14]) by atkielski.com (8.11.6) id fAAIrh133594; Sat, 10 Nov 2001 19:53:43 +0100 (CET) Message-ID: <000601c16a19$21030fe0$0a00000a@atkielski.com> From: "Anthony Atkielski" To: , , "Gary W. Swearingen" References: Subject: Re: What is FreeBSD, Inc? Date: Sat, 10 Nov 2001 19:54:23 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Gary writes: > Do they have legal standing to own copyrights? For what it's worth ... anyone can own a copyright. If you fix any creative work in tangible form (and that includes writing software), you own the copyright in that work. You don't have to have any special legal status, and you don't have to fill out any paperwork or register anything. Incorporation is different. In some jurisdictions, you're not allowed to put "Inc." after your name unless you have formally incorporated as a legal corporation under the laws of that jurisdiction. It is not difficult to do (usually), but unless it is done, you can't put "Inc." after your name (in some jurisdictions, which include most U.S. States, if I'm not mistaken). > It also seems strange that the web site doesn't > mention trademarks. It isn't necessary to assert a trademark, but if one doesn't, the trademark doesn't exist. Also, trademarks (unlike copyrights) must be actively defended, or they tend to fall into the public domain, and they must be actively used, or they cannot be held as trademarks and cannot be registered (at least in the U.S.). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Nov 11 15:44: 5 2001 Delivered-To: freebsd-doc@freebsd.org Received: from web21107.mail.yahoo.com (web21107.mail.yahoo.com [216.136.227.109]) by hub.freebsd.org (Postfix) with SMTP id 7BE3E37B41F for ; Sun, 11 Nov 2001 15:44:02 -0800 (PST) Message-ID: <20011111234402.58808.qmail@web21107.mail.yahoo.com> Received: from [62.254.0.4] by web21107.mail.yahoo.com via HTTP; Sun, 11 Nov 2001 15:44:02 PST Date: Sun, 11 Nov 2001 15:44:02 -0800 (PST) From: Hiten Pandya Subject: a good link To: newbies@freebsd.org, doc@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hi all, this link will be a good one for guys working on the doc... and lots of info for newbies as well... http://www.vmunix.com/fbsd-book/book.phtml thanks.. regards.. Hiten Pandya __________________________________________________ Do You Yahoo!? Find a job, post your resume. http://careers.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Nov 11 20:10: 7 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7823137B41B for ; Sun, 11 Nov 2001 20:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAC4A0q13834; Sun, 11 Nov 2001 20:10:00 -0800 (PST) (envelope-from gnats) Received: from starbug.ugh.net.au (starbug.ugh.net.au [203.31.238.37]) by hub.freebsd.org (Postfix) with ESMTP id 6D1A937B405 for ; Sun, 11 Nov 2001 20:05:06 -0800 (PST) Received: by starbug.ugh.net.au (Postfix, from userid 1000) id CC954A842; Mon, 12 Nov 2001 15:05:03 +1100 (EST) Message-Id: <20011112040503.CC954A842@starbug.ugh.net.au> Date: Mon, 12 Nov 2001 15:05:03 +1100 (EST) From: Andrew Reply-To: Andrew To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/31925: Be a bit more descriptive about realloc's usage Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31925 >Category: docs >Synopsis: Be a bit more descriptive about realloc's usage >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 Nov 11 20:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: FreeBSD 4.4-STABLE i386 >Organization: UgH! >Environment: System: FreeBSD starbug.ugh.net.au 4.4-STABLE FreeBSD 4.4-STABLE #3: Sun Oct 7 21:30:09 EST 2001 andrew@starbug.ugh.net.au:/usr/obj/usr/src/sys/STARBUG i386 >Description: The existing malloc(3) page doesn't make it clear that realloc may return a pointer to a completely different memory block than the one passed to it. I hope this patch makes things a bit clearer for people programming while tired ;) >How-To-Repeat: >Fix: --- malloc.3.orig Sun Nov 11 08:46:56 2001 +++ malloc.3 Sun Nov 11 08:53:25 2001 @@ -115,6 +115,9 @@ the memory referenced by .Fa ptr is valid and unchanged. +If memory can be allocated a pointer to this memory is returned. Note this +pointer may be different to the value passed as +.Fa ptr . If .Fa ptr is >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 6: 0:12 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E40E637B419 for ; Mon, 12 Nov 2001 06:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fACE06p88473; Mon, 12 Nov 2001 06:00:06 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36C3337B42B for ; Mon, 12 Nov 2001 05:59:03 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fACDx3s88170; Mon, 12 Nov 2001 05:59:03 -0800 (PST) (envelope-from nobody) Message-Id: <200111121359.fACDx3s88170@freefall.freebsd.org> Date: Mon, 12 Nov 2001 05:59:03 -0800 (PST) From: Uwe Pierau To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: docs/31930: remove www.bsdfreak.org link from FreeBSD news page Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31930 >Category: docs >Synopsis: remove www.bsdfreak.org link from FreeBSD news page >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: Mon Nov 12 06:00:06 PST 2001 >Closed-Date: >Last-Modified: >Originator: Uwe Pierau >Release: FreeBSD 4.4-STABLE >Organization: TU Clausthal >Environment: FreeBSD 4.4-STABLE >Description: http://www.bsdfreak.org/ has no news about FreeBSD "Thanks for bearing with us. We have decided to retire the BSDFreak.org website due to time constraints. BSDFreak's staff would like to formally thank Black Hat Networks, LLC® for the best web hosting solutions we could find." >How-To-Repeat: point your browser to www.bsdfreak.org >Fix: remove the link from www/en/news/news.sgml >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 6:50:10 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DE9B37B416 for ; Mon, 12 Nov 2001 06:50:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fACEo7X61140; Mon, 12 Nov 2001 06:50:07 -0800 (PST) (envelope-from gnats) Date: Mon, 12 Nov 2001 06:50:07 -0800 (PST) Message-Id: <200111121450.fACEo7X61140@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: Michael Lucas Subject: Re: docs/31883: warning in Handbook about umount -f Reply-To: Michael Lucas Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/31883; it has been noted by GNATS. From: Michael Lucas To: Cyrille Lefevre Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: docs/31883: warning in Handbook about umount -f Date: Mon, 12 Nov 2001 09:48:05 -0500 --DocE+STaALJfprDB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Nov 10, 2001 at 01:53:50AM +0100, Cyrille Lefevre wrote: > mwlucas@blackhelicopters.org wrote: > > > > ! unmounting filesystems can crash the computer or damage data > ^^^ may > > ! on the filesystem. As someone else suggested, "might" is probably most appropriate here. But thanks. Patch attached. -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons --DocE+STaALJfprDB Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=umount *** en_US.ISO8859-1/books/handbook/basics/chapter.sgml-dist Fri Nov 9 14:21:12 2001 --- en_US.ISO8859-1/books/handbook/basics/chapter.sgml Fri Nov 9 14:27:36 2001 *************** *** 694,700 **** option. All forms take to force unmounting, ! and for verbosity. and are used to unmount all mounted filesystems, possibly modified by the --- 694,703 ---- option. All forms take to force unmounting, ! and for verbosity. Be warned that ! is not generally a good idea. Forcibly ! unmounting filesystems might crash the computer or damage data ! on the filesystem. and are used to unmount all mounted filesystems, possibly modified by the --DocE+STaALJfprDB-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 7:39:10 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1CD737B405; Mon, 12 Nov 2001 07:39:08 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fACFZCw01008; Mon, 12 Nov 2001 07:35:12 -0800 (PST) (envelope-from dannyboy) Date: Mon, 12 Nov 2001 07:35:12 -0800 (PST) From: Message-Id: <200111121535.fACFZCw01008@freefall.freebsd.org> To: uwe.pierau@tu-clausthal.de, dannyboy@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31930: remove www.bsdfreak.org link from FreeBSD news page Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: remove www.bsdfreak.org link from FreeBSD news page State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Mon Nov 12 07:34:50 PST 2001 State-Changed-Why: Fixed, thanks. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31930 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 9:11:41 2001 Delivered-To: freebsd-doc@freebsd.org Received: from taka.swcp.com (taka.swcp.com [198.59.115.12]) by hub.freebsd.org (Postfix) with ESMTP id 4E3FC37B417 for ; Mon, 12 Nov 2001 09:11:39 -0800 (PST) Received: from CC457870-C.swcp.com (cc457870-c.prdise1.nm.home.com [65.13.210.21]) by taka.swcp.com (8.10.0.Beta12/8.10.0.Beta12) with ESMTP id fACHDpj79444 for ; Mon, 12 Nov 2001 10:13:52 -0700 (MST) Message-Id: <5.1.0.14.2.20011112100947.00a7eb98@127.0.0.1> X-Sender: biggers/mail.swcp.com@127.0.0.1 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 12 Nov 2001 10:11:36 -0700 To: doc@freebsd.org From: Brad Biggers Subject: BSD article in PCMag Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org article covers FreeBSD, NetBSD, and OpenBSD... also mintions OS/X and BSD/OS http://www.pcmag.com/article/0,2997,s%253D1481%2526a%253D17492,00.asp Brad To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 10: 4:47 2001 Delivered-To: freebsd-doc@freebsd.org Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.67.200.82]) by hub.freebsd.org (Postfix) with ESMTP id CE42637B417 for ; Mon, 12 Nov 2001 10:04:42 -0800 (PST) Received: from there (localhost.geeksrus.net [127.0.0.1]) by wwweasel.geeksrus.net (8.11.6/8.11.6) with SMTP id fACI31542021 for ; Mon, 12 Nov 2001 13:03:01 -0500 (EST) (envelope-from alane@geeksrus.net) Message-Id: <200111121803.fACI31542021@wwweasel.geeksrus.net> Content-Type: text/plain; charset="iso-8859-1" From: Alan E To: doc@freebsd.org Subject: Daemon images to include in a port Date: Mon, 12 Nov 2001 13:03:00 -0500 X-Mailer: KMail [version 1.3.1] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'd like to make a port of 'muttprint', a nice little utility for printing email messages. It comes with a penguin graphic to put in the header of the printed message, but, obviously, something a little different would be appropriate for a FreeBSD port. Anybody know the (c) status of daemon.gif as found in the /gifs directory of the freebsg.org web site? I'd like to convert it to EPS and include it as an additional file in the port. -- Alan Eldridge #include free(sklyarov); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 10:12:44 2001 Delivered-To: freebsd-doc@freebsd.org Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by hub.freebsd.org (Postfix) with ESMTP id D805C37B405 for ; Mon, 12 Nov 2001 10:12:40 -0800 (PST) Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.11.0/8.11.0) id fACICYQ12185; Mon, 12 Nov 2001 10:12:34 -0800 Date: Mon, 12 Nov 2001 10:12:34 -0800 From: Brooks Davis To: Alan E Cc: doc@FreeBSD.ORG Subject: Re: Daemon images to include in a port Message-ID: <20011112101234.A11834@Odin.AC.HMC.Edu> References: <200111121803.fACI31542021@wwweasel.geeksrus.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="wRRV7LY7NUeQGEoC" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200111121803.fACI31542021@wwweasel.geeksrus.net>; from alane@geeksrus.net on Mon, Nov 12, 2001 at 01:03:00PM -0500 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --wRRV7LY7NUeQGEoC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Nov 12, 2001 at 01:03:00PM -0500, Alan E wrote: > Anybody know the (c) status of daemon.gif as found in the /gifs directory= of=20 > the freebsg.org web site? I'd like to convert it to EPS and include it as= an=20 > additional file in the port. Better yet, see /usr/share/examples/BSD_daemon for Xfig and eps files. -- 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 --wRRV7LY7NUeQGEoC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE78BERXY6L6fI4GtQRAtW7AKCugNC2t9Wp4VnWZw9DFlne8MO8JwCeKTBE 2fYTezgBopaMhAc9rEOGG8I= =Fiwi -----END PGP SIGNATURE----- --wRRV7LY7NUeQGEoC-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 11: 0:40 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B08C337B416 for ; Mon, 12 Nov 2001 11:00:21 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fACJ0K674337 for freebsd-doc@freebsd.org; Mon, 12 Nov 2001 11:00:20 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 12 Nov 2001 11:00:20 -0800 (PST) Message-Id: <200111121900.fACJ0K674337@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 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org 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 report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. 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. Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [2000/07/18] docs/20028 doc ASCII docs should reflect tags o [2001/05/23] docs/27605 doc Cross-document references () o [2001/10/14] docs/31265 doc crontab(1) doesn't decribe format of allo o [2001/10/29] docs/31607 doc /etc/ppp/pap-secrets needs IP field, whic o [2001/11/02] docs/31720 doc man ftpd(8) omits potentially crucial sec 5 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [2000/07/17] docs/19981 doc Indonesian translations o [2000/08/10] docs/20528 doc sysconf(3) manpage doesn't mention posix. o [2000/08/20] docs/20738 doc correction and modification to clocks(7) s [2000/11/01] docs/22470 doc man 3 msgrcv's BUGS section needs updatin o [2001/02/01] docs/24786 doc missing FILES descriptions in sa(4) a [2001/02/20] docs/25239 doc fdp-primer/tools/chapter.sgml says about s [2001/02/26] docs/25392 doc Chapter 9 pages could use 'location of fu f [2001/03/22] docs/26003 doc getgroups(2) lists NGROUPS_MAX but not sy a [2001/03/22] docs/26006 doc Changing zone(9) man page o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string o [2001/04/08] docs/26451 doc ctype.h defined functions are not accurat o [2001/04/25] docs/26861 doc accept(2) manpage documents non-existant o [2001/05/25] docs/27653 doc Updates to send-pr.html to support MIME o [2001/05/26] docs/27654 doc Update to PR 27653 o [2001/06/02] docs/27833 doc No man page for locate.rc o [2001/06/06] docs/27915 doc man 5 passwd does not properly explain th s [2001/06/14] docs/28144 doc no manpage for host.conf, no xrefs in oth o [2001/06/30] docs/28555 doc [PATCH] style(9) isn't explicit about boo o [2001/07/04] docs/28699 doc strptime(3) %d format specifier not compl o [2001/07/22] docs/29143 doc List of man pages that need to be written o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP f [2001/08/09] docs/29571 doc [PATCH] No man page for pgrp kernel funct a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/09/06] docs/30408 doc loader man page is out-of-date o [2001/09/08] docs/30442 doc remove broken referemce to gettime(9) fro o [2001/09/13] docs/30556 doc vnconfig man page incorrect; functionalit o [2001/09/15] docs/30603 doc physio(9) is internally inconsistent o [2001/09/16] docs/30618 doc ediff man page incomplete o [2001/09/22] docs/30731 doc printf(1) refers to ANSI C Standard draft o [2001/09/24] docs/30809 doc fdisk(8) cleanup 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/10/10] docs/31210 doc cvs info page missing -R o [2001/10/14] docs/31261 doc man(1) doesn't say what "system' (in "-m" o [2001/10/14] docs/31263 doc ipfw(8) doesn't explain list versus show. a [2001/10/14] docs/31271 doc rl(4) discourages vender openness by disp f [2001/10/18] docs/31350 doc make of doc module fails after 'make obj' o [2001/10/22] docs/31431 doc grep manpage is incorrect regarding _GNU_ o [2001/10/30] docs/31640 doc Avoiding uppercase program names in manpa o [2001/10/30] docs/31653 doc Chapter 14 of the Handbook lacks content o [2001/10/31] docs/31682 doc newfs man page still contains mount_mfs c a [2001/11/03] docs/31747 doc pthread_create.3 does not markup NULL o [2001/11/05] docs/31776 doc addition to fdp o [2001/11/05] docs/31784 doc new FAQ o [2001/11/06] docs/31803 doc Handbook make world addition o [2001/11/07] docs/31828 doc handbook FreeBSD Mall references? o [2001/11/07] docs/31830 doc USB mouse FAQ outdated o [2001/11/07] docs/31838 doc qa mailing list is missing from search o [2001/11/08] docs/31853 doc addition to bibliography o [2001/11/08] docs/31854 doc new error for FAQ o [2001/11/08] docs/31857 doc new FAQ: proc: table is full o [2001/11/08] docs/31866 doc Refer to fdopen and fileno in their oppos o [2001/11/09] docs/31883 doc warning in Handbook about umount -f o [2001/11/09] docs/31886 doc missing markup o [2001/11/10] docs/31899 doc Markup changes for chapter Security o [2001/11/11] docs/31925 doc Be a bit more descriptive about realloc's 57 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 11: 1:10 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5781D37B418 for ; Mon, 12 Nov 2001 11:01:05 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fACJ14g74859 for doc@freebsd.org; Mon, 12 Nov 2001 11:01:04 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 12 Nov 2001 11:01:04 -0800 (PST) Message-Id: <200111121901.fACJ14g74859@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: doc@FreeBSD.org Subject: Current problem reports assigned to you Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Current FreeBSD problem reports Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/11/05] docs/31787 doc diverting send-pr.html traffic to a local 1 problem total. Serious problems Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/10/28] docs/31570 doc Updated frontpage of the http://www.freeb 1 problem total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 11: 4:43 2001 Delivered-To: freebsd-doc@freebsd.org Received: from columbus.cris.net (columbus.cris.net [212.110.128.65]) by hub.freebsd.org (Postfix) with ESMTP id 8EC9E37B41A; Mon, 12 Nov 2001 11:04:29 -0800 (PST) Received: from ark.cris.net (ns2.cris.net [212.110.128.68]) by columbus.cris.net (8.9.3/8.9.3) with ESMTP id VAA88758; Mon, 12 Nov 2001 21:04:22 +0200 (EET) Received: (from phantom@localhost) by ark.cris.net (8.11.1/8.11.1) id fACJ3nL12606; Mon, 12 Nov 2001 21:03:49 +0200 (EET) Date: Mon, 12 Nov 2001 21:03:49 +0200 From: Alexey Zelkin To: Maxim Konovalov Cc: Maxim Sobolev , doc@FreeBSD.org Subject: Hidden feature == hidden breakage or tidy(1) usage (was: Re: cvs commit: www/en/news/1998 index.sgml www/en/projects mozilla.sgml ...) Message-ID: <20011112210349.A5844@ark.cris.net> References: <200111121437.fACEbwi13471@freefall.freebsd.org> <20011112175729.J65585-100000@news1.macomnet.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20011112175729.J65585-100000@news1.macomnet.ru>; from maxim@macomnet.ru on Mon, Nov 12, 2001 at 05:58:57PM +0300 X-Operating-System: FreeBSD 3.5-STABLE i386 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Maxim, On Mon, Nov 12, 2001 at 05:58:57PM +0300, Maxim Konovalov wrote: > Could you please take a look at > > http://www.freebsd.org/ru/news/newsflash.html > > It seems something broken with sgml -> html conversion. Thank you for notice! I've made small invistigations and was surprised that this problem currently appeared at newsflash.html only. Main root of the problem is: ---------------------------- revision 1.37 date: 2001/10/29 10:14:33; author: murray; state: Exp; lines: +92 -50 * Make build/install of www /usr/obj prefix clean. * Use make variables instead of hard coding commands, paths, and options. * Wrap some long lines. * Replace shell loops with make for loops, etc. PR: docs/31132 Submitted by: Cyrille Lefevre ---------------------------- which "silently" added tidy(1) post-processing to whole web tree generated html files. We already had this problem under doc/ tree when without '-raw' or '-latin1' flags tidy(1) had converted all russian (japanese, etc.) characters to their sgml specifications (like îÏ×ÏÓÔÉ) I just tried to build www/ru subtree and realized that all russian pages are broken now in same way as newsflash.html :-( You also may check all translated pages updated since 31 Oct to checkout this breakage. BTW, is it feature that 'make install' installs only updated pages ? I.e. until sgml source not updated its HTML file will not be installed to overwrite previously installed (by one of previous installs) html page in www.FreeBSD.org's DocumentRoot ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 11:20: 8 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 12A5A37B416 for ; Mon, 12 Nov 2001 11:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fACJK1Y85876; Mon, 12 Nov 2001 11:20:01 -0800 (PST) (envelope-from gnats) Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 0EBF837B417 for ; Mon, 12 Nov 2001 11:18:32 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id OAA29898; Mon, 12 Nov 2001 14:18:31 -0500 (EST) (envelope-from mwlucas) Message-Id: <200111121918.OAA29898@blackhelicopters.org> Date: Mon, 12 Nov 2001 14:18:31 -0500 (EST) From: mwlucas@blackhelicopters.org Reply-To: mwlucas@blackhelicopters.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: docs/31934: port tag not in FDP Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31934 >Category: docs >Synopsis: port tag not in FDP >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: Mon Nov 12 11:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Michael Lucas >Release: FreeBSD 3.5-STABLE i386 >Organization: None >Environment: today's -doc tree >Description: The tag was not documented in the FDP. This made some of my earlier patches less than perfect. >How-To-Repeat: >Fix: *** en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml-dist Mon Nov 12 11:21:53 2001 --- en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Mon Nov 12 14:12:43 2001 *************** *** 2165,2170 **** --- 2165,2193 ---- value for n. + + + The name of ports + + You might need to include the name of a program from the + FreeBSD Ports Collection in the documentation. Use the + port tag to identify these. Since ports + can be installed in any number of locations, only include + the category and the port name; do not include + /usr/ports. + + + <sgmltag>portname</sgmltag> + + Use: + + Install net/ethereal to view network traffic.]]> + + Appearance: + + Install net/ethereal to view network traffic. + + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 12:10:14 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D318037B417 for ; Mon, 12 Nov 2001 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fACKA1v07128; Mon, 12 Nov 2001 12:10:01 -0800 (PST) (envelope-from gnats) Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 069FA37B418 for ; Mon, 12 Nov 2001 12:06:17 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id PAA30299; Mon, 12 Nov 2001 15:06:16 -0500 (EST) (envelope-from mwlucas) Message-Id: <200111122006.PAA30299@blackhelicopters.org> Date: Mon, 12 Nov 2001 15:06:16 -0500 (EST) From: mwlucas@blackhelicopters.org Reply-To: mwlucas@blackhelicopters.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: docs/31935: FAQ: AIC7xxx termination Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31935 >Category: docs >Synopsis: FAQ: AIC7xxx termination >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: Mon Nov 12 12:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Michael Lucas >Release: FreeBSD 3.5-STABLE i386 >Organization: None >Environment: today's -doc tree >Description: Here's an error generated by the AIC7xxx controller in certain circumstances. This answer was actually written by Justin Gibbs, just marked up & send-pr'd by yours truly. >How-To-Repeat: Get a motherboard with a built-in AIC7xxx controller. Play with the BIOS until it breaks. >Fix: *** en_US.ISO8859-1/books/faq/book.sgml-dist Mon Nov 12 14:26:43 2001 --- en_US.ISO8859-1/books/faq/book.sgml Mon Nov 12 15:02:07 2001 *************** *** 3913,3918 **** --- 3913,3941 ---- + + When I boot my system, I get the error + ahc0: illegal cable configuration. + My cabling is correct. What's going on? + + + + Your motherboard lacks the external logic to support + automatic termination. Switch your SCSI BIOS to specify + the correct termination for your configuration rather + than automatic termination. The AIC7XXX driver cannot + determine if the external logic for cable detection (and + thus auto-termination) is available. The driver simply + assumes that this support must exist if the configuration + contained in the serial EEPROM is set to "automatic + termination". Without the external cable detection logic + the driver will often configure termination incorrectly, + which can compromise the reliability of the SCSI + bus. + + + + Why does Sendmail give me an error reading mail loops back to >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 14:20: 8 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7203737B405 for ; Mon, 12 Nov 2001 14:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fACMK3M38322; Mon, 12 Nov 2001 14:20:03 -0800 (PST) (envelope-from gnats) Date: Mon, 12 Nov 2001 14:20:03 -0800 (PST) Message-Id: <200111122220.fACMK3M38322@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: Giorgos Keramidas Subject: Re: docs/31934: port tag not in FDP Reply-To: Giorgos Keramidas Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/31934; it has been noted by GNATS. From: Giorgos Keramidas To: mwlucas@blackhelicopters.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: docs/31934: port tag not in FDP Date: Tue, 13 Nov 2001 00:12:51 +0200 mwlucas@blackhelicopters.org wrote: > + Use: > + > + Install net/ethereal to view network traffic.]]> I'm sure you meant "Install net/ethereal..." I like this :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 15:11: 6 2001 Delivered-To: freebsd-doc@freebsd.org Received: from smtp3.libero.it (smtp3.libero.it [193.70.192.53]) by hub.freebsd.org (Postfix) with ESMTP id 537F937B41A for ; Mon, 12 Nov 2001 15:11:04 -0800 (PST) Received: from casa (151.28.4.187) by smtp3.libero.it (6.0.032) id 3BD43E250064D2E5 for doc@FreeBSD.org; Tue, 13 Nov 2001 00:11:02 +0100 Message-ID: <001201c16bce$e0985840$bb041c97@casa> From: "Angelo Terrile" To: Subject: Not able to reboot following the Hand Book chapter 9.6 Date: Tue, 13 Nov 2001 00:06:25 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'm rather new to FreeBSD, I have tried to recompile the kernel but I failed, I tried to reboot with the old kernel following the instructions give in chapter 9.6 section: "The kernel will not boot", but I could not reboot following them. The instructions don't mention that at the boot loader prompt you have to unload the actual kernel "unload MYKERNEL" before give the command mentioned "boot kernel.old". I'm using the FreeBSD 4.4 STABLE with an Intel Pentium platform. Thank you for your attention Angelo Terrile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 15:17:45 2001 Delivered-To: freebsd-doc@freebsd.org Received: from web21107.mail.yahoo.com (web21107.mail.yahoo.com [216.136.227.109]) by hub.freebsd.org (Postfix) with SMTP id B9B0E37B416 for ; Mon, 12 Nov 2001 15:17:41 -0800 (PST) Message-ID: <20011112231741.49446.qmail@web21107.mail.yahoo.com> Received: from [62.254.0.4] by web21107.mail.yahoo.com via HTTP; Mon, 12 Nov 2001 15:17:41 PST Date: Mon, 12 Nov 2001 15:17:41 -0800 (PST) From: Hiten Pandya Subject: Re: Not able to reboot following the Hand Book chapter 9.6 To: Angelo Terrile Cc: freebsd-doc@freebsd.org In-Reply-To: <001201c16bce$e0985840$bb041c97@casa> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --- Angelo Terrile wrote: > I'm rather new to FreeBSD, I have tried to recompile > the kernel but I > failed, I tried to reboot with the old kernel > following the instructions > give in chapter 9.6 section: "The kernel will not > boot", but I could not > reboot following them. The instructions don't > mention that at the boot > loader prompt you have to unload the actual kernel > "unload MYKERNEL" > before give the command mentioned "boot kernel.old". > I'm using the > FreeBSD 4.4 STABLE with an Intel Pentium platform. > > Thank you for your attention > > Angelo Terrile > Hello Angelo, I will submit a patch regarding the issue, yes.. you are right.. you have to unload the kernel like... unload [kernel name - usually kernel] load [kernel.old] or [kernel.GENERIC] boot this should do the trick... ===== regards, Hiten Pandya ---------------------------------------------------- Guys!... stay away from Einstein Junior! ---------------------------------------------------- __________________________________________________ Do You Yahoo!? Find a job, post your resume. http://careers.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 17: 4: 0 2001 Delivered-To: freebsd-doc@freebsd.org Received: from web20208.mail.yahoo.com (web20208.mail.yahoo.com [216.136.226.63]) by hub.freebsd.org (Postfix) with SMTP id 408CD37B41C for ; Mon, 12 Nov 2001 17:03:42 -0800 (PST) Message-ID: <20011113010342.26086.qmail@web20208.mail.yahoo.com> Received: from [212.16.200.210] by web20208.mail.yahoo.com via HTTP; Mon, 12 Nov 2001 17:03:42 PST Date: Mon, 12 Nov 2001 17:03:42 -0800 (PST) From: GoodNews To: temiy@iname.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Äîðîãîé äðóã! Èçâèíè, ÷òî îòáèðàþ òâîå âðåìÿ íà ÷òåíèå äàííîãî ïîñëàíèÿ,òàê êàê ìû âñå óñòàëè îò áåñêîíå÷íûõ ðåêëàìíûõ ðàññûëîê è âñÿ÷åñêîãî ìóñîðà,íî ÿ íàäåþñü, ÷òî íåñêîëüêî ìèíóò çàòðà÷åííîãî âðåìåíè ñìîãóò îêóïèòüñÿ, åñëè òû ðåøèøüñÿ èçìåíèòü ñâîé âçãëÿä íà îêðóæàþùóþ òåáÿ äåéñòâèòåëüíîñòü. Ïðåäëàãàåòñÿ â êîðíå èçìåíèòü ñâîþ æèçíü! È äëÿ ýòîãî ïðåäíàçíà÷åíà ïðîãðàììà, ðåàëüíî äåéñòâóþùàÿ, ñ ðåàëüíûìè âîçìîæíîñòÿìè çàðàáîòàòü äåíüãè, çàòðàòèâ íà ýòî íå î÷åíü áîëüøèå óñèëèÿ. Ýòîò ìåòîä çàðàáîòêà äåíåã íà ñàìîì äåëå ÄÅÉÑÒÂÓÅÒ ÍÀ 100%, ÊÎÃÄÀ ÓÃÎÄÍÎ, ÃÄÅ ÓÃÎÄÍÎ. Âû ñìîæåòå çàðàáîòàòü áîëåå 1.000.000 ðóáëåé â ïîñëåäóþùèå 90 äíåé. Ýòî íå öåïíîå ïèñüìî, à îòëè÷íàÿ ëåãàëüíàÿ âîçìîæíîñòü çàðàáîòàòü äåíüãè. Íå ïîæàëåéòå âðåìåíè, îçíàêîìüòåñü ñ ïðåäëàãàåìîé ïðîãðàììîé, è óñïåõ è áëàãîïîëó÷èå ïîñåòÿò Âàø äîì! Äàííîå ïèñüìî ïðèäåò ê Âàì íà ýòîò àäðåñ îäèí åäèíñòâåííûé ðàç, áîëüøå ÿ Âàñ íå ïîáåñïîêîþ. Íî åñëè ó Âàñ èìåþòñÿ è äðóãèå àäðåñà, íå îáèæàéòåñü, åñëè ýòî ïîñëàíèå ïðèäåò è íà íèõ,ïðîãðàììà íå ìîæåò îòñëåäèòü õîçÿèíà ÿùèêà, òîëüêî ôàêò ñóùåñòâîâàíèÿ àäðåñà. Åñëè Âàñ ýòî çàèíòåðåñîâàëî è Âû æåëàåòå áîëüøå óçíàòü î ðàáîòå ïðåäëàãàåìîé ïðîãðàììû, Âû ìîæåòå îòïðàâèòü äàííîå ñîîáùåíèå îáðàòíî ñ ïîìåòêîé "More", ÷òî áû ÿ âûñëàëà Âàì ïîäðîáíîå îïèñàíèå ðàáîòû ñèñòåìû ïî Âàøåìó æåëàíèþ, à íå çàíèìàòü Âàøå âðåìÿ è íå òðàòèòü Âàøè äåíüãè íà ïîëó÷åíèå âëîæåííîãî äîêóìåíòà. Âîçâðàùåííûå áåç äàííîé ïîìåòêè ïèñüìà áóäóò, êàê Âû ïðàâèëüíî äîãàäûâàåòåñü, óäàëÿòñÿ áåç ïðî÷òåíèÿ. Íî åñëè Âû õîòèòå ïîðóãàòüñÿ è âûïóñòèòü ïàð, òî ïîæàëóéñòà :-) Íàäåþñü, Âàì ñòàíåò ëåã÷å :-) Åùå ðàç èçâèíèòå, ÷òî îòíèìàþ Âàøå âðåìÿ. Óñïåõîâ âàì è âñÿ÷åñêèõ áëàã! __________________________________________________ Do You Yahoo!? Find a job, post your resume. http://careers.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 17: 4: 1 2001 Delivered-To: freebsd-doc@freebsd.org Received: from web20208.mail.yahoo.com (web20208.mail.yahoo.com [216.136.226.63]) by hub.freebsd.org (Postfix) with SMTP id 2BB1337B41D for ; Mon, 12 Nov 2001 17:03:42 -0800 (PST) Message-ID: <20011113010342.26086.qmail@web20208.mail.yahoo.com> Received: from [212.16.200.210] by web20208.mail.yahoo.com via HTTP; Mon, 12 Nov 2001 17:03:42 PST Date: Mon, 12 Nov 2001 17:03:42 -0800 (PST) From: GoodNews To: temiy@iname.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Äîðîãîé äðóã! Èçâèíè, ÷òî îòáèðàþ òâîå âðåìÿ íà ÷òåíèå äàííîãî ïîñëàíèÿ,òàê êàê ìû âñå óñòàëè îò áåñêîíå÷íûõ ðåêëàìíûõ ðàññûëîê è âñÿ÷åñêîãî ìóñîðà,íî ÿ íàäåþñü, ÷òî íåñêîëüêî ìèíóò çàòðà÷åííîãî âðåìåíè ñìîãóò îêóïèòüñÿ, åñëè òû ðåøèøüñÿ èçìåíèòü ñâîé âçãëÿä íà îêðóæàþùóþ òåáÿ äåéñòâèòåëüíîñòü. Ïðåäëàãàåòñÿ â êîðíå èçìåíèòü ñâîþ æèçíü! È äëÿ ýòîãî ïðåäíàçíà÷åíà ïðîãðàììà, ðåàëüíî äåéñòâóþùàÿ, ñ ðåàëüíûìè âîçìîæíîñòÿìè çàðàáîòàòü äåíüãè, çàòðàòèâ íà ýòî íå î÷åíü áîëüøèå óñèëèÿ. Ýòîò ìåòîä çàðàáîòêà äåíåã íà ñàìîì äåëå ÄÅÉÑÒÂÓÅÒ ÍÀ 100%, ÊÎÃÄÀ ÓÃÎÄÍÎ, ÃÄÅ ÓÃÎÄÍÎ. Âû ñìîæåòå çàðàáîòàòü áîëåå 1.000.000 ðóáëåé â ïîñëåäóþùèå 90 äíåé. Ýòî íå öåïíîå ïèñüìî, à îòëè÷íàÿ ëåãàëüíàÿ âîçìîæíîñòü çàðàáîòàòü äåíüãè. Íå ïîæàëåéòå âðåìåíè, îçíàêîìüòåñü ñ ïðåäëàãàåìîé ïðîãðàììîé, è óñïåõ è áëàãîïîëó÷èå ïîñåòÿò Âàø äîì! Äàííîå ïèñüìî ïðèäåò ê Âàì íà ýòîò àäðåñ îäèí åäèíñòâåííûé ðàç, áîëüøå ÿ Âàñ íå ïîáåñïîêîþ. Íî åñëè ó Âàñ èìåþòñÿ è äðóãèå àäðåñà, íå îáèæàéòåñü, åñëè ýòî ïîñëàíèå ïðèäåò è íà íèõ,ïðîãðàììà íå ìîæåò îòñëåäèòü õîçÿèíà ÿùèêà, òîëüêî ôàêò ñóùåñòâîâàíèÿ àäðåñà. Åñëè Âàñ ýòî çàèíòåðåñîâàëî è Âû æåëàåòå áîëüøå óçíàòü î ðàáîòå ïðåäëàãàåìîé ïðîãðàììû, Âû ìîæåòå îòïðàâèòü äàííîå ñîîáùåíèå îáðàòíî ñ ïîìåòêîé "More", ÷òî áû ÿ âûñëàëà Âàì ïîäðîáíîå îïèñàíèå ðàáîòû ñèñòåìû ïî Âàøåìó æåëàíèþ, à íå çàíèìàòü Âàøå âðåìÿ è íå òðàòèòü Âàøè äåíüãè íà ïîëó÷åíèå âëîæåííîãî äîêóìåíòà. Âîçâðàùåííûå áåç äàííîé ïîìåòêè ïèñüìà áóäóò, êàê Âû ïðàâèëüíî äîãàäûâàåòåñü, óäàëÿòñÿ áåç ïðî÷òåíèÿ. Íî åñëè Âû õîòèòå ïîðóãàòüñÿ è âûïóñòèòü ïàð, òî ïîæàëóéñòà :-) Íàäåþñü, Âàì ñòàíåò ëåã÷å :-) Åùå ðàç èçâèíèòå, ÷òî îòíèìàþ Âàøå âðåìÿ. Óñïåõîâ âàì è âñÿ÷åñêèõ áëàã! __________________________________________________ Do You Yahoo!? Find a job, post your resume. http://careers.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Nov 12 19:39:11 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09AA137B418; Mon, 12 Nov 2001 19:39:10 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAD3WuT30354; Mon, 12 Nov 2001 19:32:56 -0800 (PST) (envelope-from bmah) Date: Mon, 12 Nov 2001 19:32:56 -0800 (PST) From: Message-Id: <200111130332.fAD3WuT30354@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, bmah@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31883: warning in Handbook about umount -f Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: warning in Handbook about umount -f State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Mon Nov 12 19:32:41 PST 2001 State-Changed-Why: Committed the last version of the patch...thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31883 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 0:19:11 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6072037B405; Tue, 13 Nov 2001 00:19:10 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAD8FNg90120; Tue, 13 Nov 2001 00:15:23 -0800 (PST) (envelope-from bmah) Date: Tue, 13 Nov 2001 00:15:23 -0800 (PST) From: Message-Id: <200111130815.fAD8FNg90120@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, bmah@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31776: addition to fdp Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: addition to fdp State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Tue Nov 13 00:15:06 PST 2001 State-Changed-Why: Committed...thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31776 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 0:50: 8 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2692B37B418 for ; Tue, 13 Nov 2001 00:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAD8o1m02096; Tue, 13 Nov 2001 00:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A9D037B416 for ; Tue, 13 Nov 2001 00:47:42 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAD8lgb01172; Tue, 13 Nov 2001 00:47:42 -0800 (PST) (envelope-from nobody) Message-Id: <200111130847.fAD8lgb01172@freefall.freebsd.org> Date: Tue, 13 Nov 2001 00:47:42 -0800 (PST) From: Jean-Francois Dockes To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: docs/31951: Improved language for the 'diskless' handbook section Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31951 >Category: docs >Synopsis: Improved language for the 'diskless' handbook section >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: Tue Nov 13 00:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jean-Francois Dockes >Release: 4.4-STABLE >Organization: >Environment: reeBSD hautmedoc 4.4-STABLE FreeBSD 4.4-STABLE #2: Mon Oct 8 18:44:52 CEST 2001 dockes@hautmedoc:/usr/src/sys/compile/HAUTMEDOC i386 >Description: The diskless section in the doc/en_US.ISO8859-1/books/handbook/advanced-networking chapter was initially committed before I could integrate some of the suggestions for language improvement. These improvements follow in the attached patch. >How-To-Repeat: >Fix: *** chapter.sgml.ori Tue Nov 13 08:50:56 2001 --- chapter.sgml Tue Nov 13 09:36:28 2001 *************** *** 1386,1392 **** tftp dgram udp wait nobody /usr/libexec/tftpd tftpd /tftpboot ! It appears that at least some PXE versions wants the TCP version of TFTP. In this case, add a second line, replacing dgram udp with stream tcp --- 1386,1392 ---- tftp dgram udp wait nobody /usr/libexec/tftpd tftpd /tftpboot ! It appears that at least some PXE versions want the TCP version of TFTP. In this case, add a second line, replacing dgram udp with stream tcp *************** *** 1399,1408 **** ! You can place the tftpboot directory anywhere on the server, but, ! of course, the actual location, the value in ! inetd.conf, and the value in ! dhcpd.conf must be consistent ! You also need to enable NFS service and export the appropriate filesystem on the NFS server --- 1399,1408 ---- ! You can place the tftpboot directory anywhere on the ! server. Make sure that the location is set in both ! inetd.conf ! dhcpd.conf You also need to enable NFS service and export the appropriate filesystem on the NFS server *************** *** 1503,1513 **** Configuring Swap ! If needed, it is possible to do swapping over NFS, to a file ! on the server. The exact bootptab or ! dhcpd.conf options are a little mysterious ! and poorly documented. Anyway, here is what worked for me, using ! isc-dhcp 3.0rc11. Add the following lines to dhcpd.conf: --- 1503,1513 ---- Configuring Swap ! If needed, a swap file located on the server can be accessed via NFS. ! The exact bootptab or ! dhcpd.conf options are not clearly documented at ! this time. The following configuration suggestions have been reported ! to work in some installations using isc-dhcp 3.0rc11. Add the following lines to dhcpd.conf: *************** *** 1578,1590 **** you will have to create the root file system on a FreeBSD machine, then copy it to its destination, using tar or cpio. ! In this situation, it seems that there are sometimes problems with the special files in /dev, ! because of differing minor/major number integer sizes. It seems ! that a solution to this problem is to run MAKEDEV ! on a FreeBSD ! machine, in a directory mounted through NFS from the final ! server. --- 1578,1590 ---- you will have to create the root file system on a FreeBSD machine, then copy it to its destination, using tar or cpio. ! In this situation, there are sometimes problems with the special files in /dev, ! due to differing major/minor integer sizes. A solution to this ! problem is to export a directory from the non-FreeBSD server, ! mount this directory onto a FreeBSD machine, and run ! MAKEDEV on the FreeBSD machine ! to create the correct device entries. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 3:40:55 2001 Delivered-To: freebsd-doc@freebsd.org Received: from relay3-gui.server.ntli.net (relay3-gui.server.ntli.net [194.168.4.200]) by hub.freebsd.org (Postfix) with ESMTP id 1B34337B417; Tue, 13 Nov 2001 03:40:53 -0800 (PST) Received: from pc3-card3-0-cust122.cdf.cable.ntl.com ([62.254.251.122] helo=rhadamanth.private.submonkey.net ident=exim) by relay3-gui.server.ntli.net with esmtp (Exim 3.03 #2) id 163bvw-0006br-00; Tue, 13 Nov 2001 11:40:52 +0000 Received: from setantae by rhadamanth.private.submonkey.net with local (Exim 3.33 #1) id 163brT-000Mnn-00; Tue, 13 Nov 2001 11:36:15 +0000 Date: Tue, 13 Nov 2001 11:36:15 +0000 From: setantae To: mpp@FreeBSD.org, doc@FreeBSD.org Subject: kernfs.5 and files that will never exist Message-ID: <20011113113615.GA87410@rhadamanth> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.23.1i Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org man 5 kernfs states that the files root, rootdev and rrootdev should exist in a kernfs file system, but that they are ``not currently enabled''. I note that kernfs has been removed from -current, so presumably these will never be enabled. Is there any interest in a patch to kernfs.5 to remove these from it, or should this just be left to rot ? Ceri -- keep a mild groove on To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 4:50: 7 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C228337B418 for ; Tue, 13 Nov 2001 04:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fADCo2801371; Tue, 13 Nov 2001 04:50:02 -0800 (PST) (envelope-from gnats) Date: Tue, 13 Nov 2001 04:50:02 -0800 (PST) Message-Id: <200111131250.fADCo2801371@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: Michael Lucas Subject: Re: docs/31934: port tag not in FDP Reply-To: Michael Lucas Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/31934; it has been noted by GNATS. From: Michael Lucas To: Giorgos Keramidas Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: docs/31934: port tag not in FDP Date: Tue, 13 Nov 2001 07:48:30 -0500 --/9DWx/yDrRhgMJTb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Nov 13, 2001 at 12:12:51AM +0200, Giorgos Keramidas wrote: > mwlucas@blackhelicopters.org wrote: > > + Use: > > + > > + Install net/ethereal to view network traffic.]]> > > I'm sure you meant "Install net/ethereal..." > I like this :-) Yes I did. How the heck does this pass "make lint"? make lint complains about just about everything (which it should), yet this obvious boneheaded cut-and-paste goof sails right through it. Corrected patch enclosed. -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons --/9DWx/yDrRhgMJTb Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=ports-markup *** en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml-dist Mon Nov 12 11:21:53 2001 --- en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Mon Nov 12 14:12:43 2001 *************** *** 2165,2170 **** --- 2165,2193 ---- value for n. + + + The name of ports + + You might need to include the name of a program from the + FreeBSD Ports Collection in the documentation. Use the + port tag to identify these. Since ports + can be installed in any number of locations, only include + the category and the port name; do not include + /usr/ports. + + + <sgmltag>portname</sgmltag> + + Use: + + Install net/ethereal to view network traffic.]]> + + Appearance: + + Install net/ethereal to view network traffic. + + --/9DWx/yDrRhgMJTb-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 6:26:29 2001 Delivered-To: freebsd-doc@freebsd.org Received: from columbus.cris.net (columbus.cris.net [212.110.128.65]) by hub.freebsd.org (Postfix) with ESMTP id D76D237B417 for ; Tue, 13 Nov 2001 06:26:00 -0800 (PST) Received: from ark.cris.net (ark.cris.net [212.110.128.68]) by columbus.cris.net (8.9.3/8.9.3) with ESMTP id QAA62368 for ; Tue, 13 Nov 2001 16:25:56 +0200 (EET) Received: (from phantom@localhost) by ark.cris.net (8.11.1/8.11.1) id fADEPQ571547; Tue, 13 Nov 2001 16:25:26 +0200 (EET) Date: Tue, 13 Nov 2001 16:25:26 +0200 From: Alexey Zelkin To: doc@FreeBSD.org Subject: [PATCH] Re: Hidden feature == hidden breakage or tidy(1) usage (was: Re: cvs commit: www/en/news/1998 index.sgml www/en/projects mozilla.sgml ...) Message-ID: <20011113162526.A71174@ark.cris.net> References: <200111121437.fACEbwi13471@freefall.freebsd.org> <20011112175729.J65585-100000@news1.macomnet.ru> <20011112210349.A5844@ark.cris.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20011112210349.A5844@ark.cris.net>; from phantom@FreeBSD.org on Mon, Nov 12, 2001 at 09:03:49PM +0200 X-Operating-System: FreeBSD 3.5-STABLE i386 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hi, This patch fixes problems with Russian and Japanese webpages in case of !defined(NO_TIDY). Feedback from Japanese people is quite welcome! As well as from other translation teams. I propose to commit it w/in one or two days. On Mon, Nov 12, 2001 at 09:03:49PM +0200, Alexey Zelkin wrote: > Maxim, > > On Mon, Nov 12, 2001 at 05:58:57PM +0300, Maxim Konovalov wrote: > > > Could you please take a look at > > > > http://www.freebsd.org/ru/news/newsflash.html > > > > It seems something broken with sgml -> html conversion. > > Thank you for notice! > > I've made small invistigations and was surprised that this problem > currently appeared at newsflash.html only. > > Main root of the problem is: > > ---------------------------- > revision 1.37 > date: 2001/10/29 10:14:33; author: murray; state: Exp; lines: +92 -50 > * Make build/install of www /usr/obj prefix clean. > * Use make variables instead of hard coding commands, paths, and > options. > * Wrap some long lines. > * Replace shell loops with make for loops, etc. > > PR: docs/31132 > Submitted by: Cyrille Lefevre > ---------------------------- > > which "silently" added tidy(1) post-processing to whole web tree > generated html files. > > We already had this problem under doc/ tree when without '-raw' or '-latin1' > flags tidy(1) had converted all russian (japanese, etc.) characters to their > sgml specifications (like îÏ×ÏÓÔÉ) > I just tried to build www/ru subtree and realized that all russian pages > are broken now in same way as newsflash.html :-( > > You also may check all translated pages updated since 31 Oct to checkout > this breakage. Index: ja/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ja/Makefile.inc,v retrieving revision 1.9 diff -u -u -r1.9 Makefile.inc --- ja/Makefile.inc 7 Nov 2000 11:37:51 -0000 1.9 +++ ja/Makefile.inc 13 Nov 2001 14:24:30 -0000 @@ -4,3 +4,5 @@ WEBBASE?= /data/ja WEB_PREFIX?= ${.CURDIR}/../.. + +TIDYFLAGS?= -raw Index: ja/conspectus/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ja/conspectus/Makefile.inc,v retrieving revision 1.2 diff -u -u -r1.2 Makefile.inc --- ja/conspectus/Makefile.inc 7 Nov 2000 11:37:53 -0000 1.2 +++ ja/conspectus/Makefile.inc 13 Nov 2001 14:24:53 -0000 @@ -4,3 +4,5 @@ WEBBASE?= /data/ja/conspectus WEB_PREFIX?= ${.CURDIR}/../../.. + +TIDYFLAGS?= -raw Index: ja/java/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ja/java/Makefile.inc,v retrieving revision 1.3 diff -u -u -r1.3 Makefile.inc --- ja/java/Makefile.inc 7 Nov 2000 11:37:55 -0000 1.3 +++ ja/java/Makefile.inc 13 Nov 2001 14:24:58 -0000 @@ -4,3 +4,5 @@ WEBBASE?= /data/ja/java WEB_PREFIX?= ${.CURDIR}/../../.. + +TIDYFLAGS?= -raw Index: ja/news/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ja/news/Makefile.inc,v retrieving revision 1.2 diff -u -u -r1.2 Makefile.inc --- ja/news/Makefile.inc 7 Nov 2000 11:37:55 -0000 1.2 +++ ja/news/Makefile.inc 13 Nov 2001 14:25:02 -0000 @@ -4,3 +4,5 @@ WEBBASE?= /data/ja/news WEB_PREFIX?= ${.CURDIR}/../../.. + +TIDYFLAGS?= -raw Index: ja/releases/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ja/releases/Makefile.inc,v retrieving revision 1.5 diff -u -u -r1.5 Makefile.inc --- ja/releases/Makefile.inc 7 Nov 2000 11:37:57 -0000 1.5 +++ ja/releases/Makefile.inc 13 Nov 2001 14:25:04 -0000 @@ -4,3 +4,5 @@ WEBBASE?= /data/ja/releases WEB_PREFIX?= ${.CURDIR}/../../.. + +TIDYFLAGS?= -raw Index: ru/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ru/Makefile.inc,v retrieving revision 1.3 diff -u -u -r1.3 Makefile.inc --- ru/Makefile.inc 10 Nov 2000 17:27:22 -0000 1.3 +++ ru/Makefile.inc 13 Nov 2001 12:57:45 -0000 @@ -4,3 +4,5 @@ WEBBASE?= /data/ru WEB_PREFIX?= ${.CURDIR}/../.. + +TIDYFLAGS?= -latin1 Index: ru/conspectus/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ru/conspectus/Makefile.inc,v retrieving revision 1.2 diff -u -u -r1.2 Makefile.inc --- ru/conspectus/Makefile.inc 10 Nov 2000 17:27:32 -0000 1.2 +++ ru/conspectus/Makefile.inc 13 Nov 2001 12:58:30 -0000 @@ -5,3 +5,5 @@ WEBBASE?= /data/ru/conspectus WEB_PREFIX?= ${.CURDIR}/../../.. + +TIDYFLAGS?= -latin1 Index: ru/java/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ru/java/Makefile.inc,v retrieving revision 1.3 diff -u -u -r1.3 Makefile.inc --- ru/java/Makefile.inc 10 Nov 2000 17:27:35 -0000 1.3 +++ ru/java/Makefile.inc 13 Nov 2001 12:58:43 -0000 @@ -5,3 +5,5 @@ WEBBASE?= /data/ru/java WEB_PREFIX?= ${.CURDIR}/../../.. + +TIDYFLAGS?= -latin1 Index: ru/news/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ru/news/Makefile.inc,v retrieving revision 1.1 diff -u -u -r1.1 Makefile.inc --- ru/news/Makefile.inc 10 Nov 2000 17:27:37 -0000 1.1 +++ ru/news/Makefile.inc 13 Nov 2001 12:58:54 -0000 @@ -5,3 +5,5 @@ WEBBASE?= /data/ru/news WEB_PREFIX?= ${.CURDIR}/../../.. + +TIDYFLAGS?= -latin1 Index: ru/ports/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ru/ports/Makefile.inc,v retrieving revision 1.1 diff -u -u -r1.1 Makefile.inc --- ru/ports/Makefile.inc 5 Jan 2000 15:34:14 -0000 1.1 +++ ru/ports/Makefile.inc 13 Nov 2001 12:59:05 -0000 @@ -2,6 +2,8 @@ # The FreeBSD Russian Documentation Project # Original revision: 1.1 +TIDYFLAGS?= -latin1 + PORTINDEX= perl5 ${.CURDIR}/portindex INDEX= INDEX PINDEX= ports/${INDEX} Index: ru/releases/Makefile.inc =================================================================== RCS file: /home/cvs/freebsd/www/ru/releases/Makefile.inc,v retrieving revision 1.3 diff -u -u -r1.3 Makefile.inc --- ru/releases/Makefile.inc 10 Nov 2000 17:27:41 -0000 1.3 +++ ru/releases/Makefile.inc 13 Nov 2001 12:59:13 -0000 @@ -5,3 +5,5 @@ WEBBASE?= /data/ru/releases WEB_PREFIX?= ${.CURDIR}/../../.. + +TIDYFLAGS?= -latin1 Index: share/mk/web.site.mk =================================================================== RCS file: /home/cvs/freebsd/www/share/mk/web.site.mk,v retrieving revision 1.39 diff -u -u -r1.39 web.site.mk --- share/mk/web.site.mk 30 Oct 2001 16:51:34 -0000 1.39 +++ share/mk/web.site.mk 13 Nov 2001 12:57:16 -0000 @@ -44,7 +44,7 @@ XSLTPROC?= ${PREFIX}/bin/xsltproc XSLTPROCFLAGS?= -nonet TIDY?= ${PREFIX}/bin/tidy -TIDYFLAGS?= -i -m -f /dev/null +TIDYOPTS?= -i -m -f /dev/null # # Install dirs derived from the above. @@ -109,7 +109,7 @@ ${SGMLNORM} ${SGMLNORMFLAGS} > ${.TARGET} || \ (${RM} -f ${.TARGET} && false) .if !defined(NO_TIDY) - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYFLAGS} ${TIDYOPTS} ${.TARGET} .endif ### @@ -126,7 +126,7 @@ .docb.html: ${SGMLFMT} ${SGMLFMTFLAGS} ${.IMPSRC} .if !defined(NO_TIDY) - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYFLAGS} ${TIDYOPTS} ${.TARGET} .endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 10: 9:15 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83ECD37B405; Tue, 13 Nov 2001 10:09:11 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fADI96o45604; Tue, 13 Nov 2001 10:09:06 -0800 (PST) (envelope-from bmah) Date: Tue, 13 Nov 2001 10:09:06 -0800 (PST) From: Message-Id: <200111131809.fADI96o45604@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, bmah@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31934: port tag not in FDP Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: port tag not in FDP State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Tue Nov 13 10:07:55 PST 2001 State-Changed-Why: Committed with suggested modification. I also moved the text to the DocBook (vs. HTML) section, and added a note that this is a FreeBSD extension. Thankyewverymuch! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31934 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 10:53: 8 2001 Delivered-To: freebsd-doc@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id DB61937B425; Tue, 13 Nov 2001 10:52:55 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id NAA34499; Tue, 13 Nov 2001 13:52:55 -0500 (EST) (envelope-from mwlucas) Date: Tue, 13 Nov 2001 13:52:55 -0500 From: Michael Lucas To: bmah@FreeBSD.org Cc: freebsd-doc@FreeBSD.org Subject: Re: docs/31934: port tag not in FDP Message-ID: <20011113135255.A34475@blackhelicopters.org> References: <200111131809.fADI96o45604@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200111131809.fADI96o45604@freefall.freebsd.org>; from bmah@FreeBSD.org on Tue, Nov 13, 2001 at 10:09:06AM -0800 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Jeez, Bruce, you're closing these PRs faster than I can open them! What gives? Must... submit... faster! On Tue, Nov 13, 2001 at 10:09:06AM -0800, bmah@FreeBSD.org wrote: > Synopsis: port tag not in FDP > > State-Changed-From-To: open->closed > State-Changed-By: bmah > State-Changed-When: Tue Nov 13 10:07:55 PST 2001 > State-Changed-Why: > Committed with suggested modification. I also moved the text to the > DocBook (vs. HTML) section, and added a note that this is a FreeBSD > extension. Thankyewverymuch! > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31934 -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 11: 6: 3 2001 Delivered-To: freebsd-doc@freebsd.org Received: from c527597-a.cstvl1.sfba.home.com (c527597-a.cstvl1.sfba.home.com [24.176.204.87]) by hub.freebsd.org (Postfix) with ESMTP id 4081A37B50C; Tue, 13 Nov 2001 11:05:47 -0800 (PST) Received: (from bmah@localhost) by c527597-a.cstvl1.sfba.home.com (8.11.6/8.11.6) id fADJ5ZH04373; Tue, 13 Nov 2001 11:05:35 -0800 (PST) (envelope-from bmah) Message-Id: <200111131905.fADJ5ZH04373@c527597-a.cstvl1.sfba.home.com> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Michael Lucas Cc: bmah@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/31934: port tag not in FDP In-Reply-To: <20011113135255.A34475@blackhelicopters.org> References: <200111131809.fADI96o45604@freefall.freebsd.org> <20011113135255.A34475@blackhelicopters.org> Comments: In-reply-to Michael Lucas message dated "Tue, 13 Nov 2001 13:52:55 -0500." From: bmah@FreeBSD.org (Bruce A. Mah) Reply-To: bmah@FreeBSD.org 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_653432283P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Tue, 13 Nov 2001 11:05:35 -0800 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --==_Exmh_653432283P Content-Type: text/plain; charset=us-ascii If memory serves me right, Michael Lucas wrote: > Jeez, Bruce, you're closing these PRs faster than I can open them! > What gives? Still stuck at home with a cold. :-( (...cough cough, sip water, patch < pr.diff, cough cough, make lint, sip water, cvs diff -u, cough cough, cvs commit, cough cough, take cough drop...) > Must... submit... faster! That's OK...I'm on some antibiotics now, hopefully I can go back to work tomorrow (or at least start doing ${REALJOB} stuff). I'm sure there will still a backlog left for some other poor soul to do. :-) Bruce. --==_Exmh_653432283P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: Exmh version 2.3.1+ 05/14/2001 iD8DBQE78W7/2MoxcVugUsMRAspgAJ90+OZ9tddP2vFKxvFM3Xp09wFf5ACfRaga E99O5WkddKWZ30GzbLDcdmc= =JeCc -----END PGP SIGNATURE----- --==_Exmh_653432283P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 11:51:21 2001 Delivered-To: freebsd-doc@freebsd.org Received: from smtp.noos.fr (descartes.noos.net [212.198.2.74]) by hub.freebsd.org (Postfix) with ESMTP id 9E58737B430 for ; Tue, 13 Nov 2001 11:50:53 -0800 (PST) Received: (qmail 43430836 invoked by uid 0); 13 Nov 2001 19:40:48 -0000 Received: from unknown (HELO gits.dyndns.org) ([212.198.229.145]) (envelope-sender ) by 212.198.2.74 (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 13 Nov 2001 19:40:48 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.6/8.11.6) id fADJekK49603; Tue, 13 Nov 2001 20:40:46 +0100 (CET) (envelope-from root) Message-Id: <200111131940.fADJekK49603@gits.dyndns.org> Subject: Re: [PATCH] Re: Hidden feature == hidden breakage or tidy(1) usage (was: Re: cvs commit: www/en/news/1998 index.sgml www/en/projects mozilla.sgml ...) In-Reply-To: <20011113162526.A71174@ark.cris.net> To: Alexey Zelkin Date: Tue, 13 Nov 2001 20:40:46 +0100 (CET) Cc: doc@FreeBSD.org Reply-To: clefevre@citeweb.net From: Cyrille Lefevre Organization: ACME X-Face: X-Mailer: ELM [version 2.4ME+ PL95a (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Alexey Zelkin wrote: [snip] > > PR: docs/31132 > > Submitted by: Cyrille Lefevre > > ---------------------------- > > > > which "silently" added tidy(1) post-processing to whole web tree > > generated html files. you are right, I forgot to talk about that in the PR description. next time, I'll take care of this. putting TIDYFLAGS in the top level Makefile.inc (in languages which need it) should suffice since it is included by all other Makefiles. also, I change all XXXOPTS to XXXFLAGS to be more homogeneous w/ -doc and all variables in www/share/mk/web.site.mk now use ?= instead of =. so, users only have to deal w/ XXXFLAGS as usual except in targets where XXXOPTS should be used instead. since I have to free some space (/dev/da1s1a 1.9G 1.8G -1.9M 100% /disk2), I don't have tested the following patch. if someone w/ a power machine could validate it... PS : I've reviewed it twince w/ my open eyes and it looks fine. Index: www/share/mk/web.site.mk =================================================================== RCS file: /home/ncvs/www/share/mk/web.site.mk,v retrieving revision 1.39 diff -u -r1.39 web.site.mk --- www/share/mk/web.site.mk 2001/10/30 16:51:34 1.39 +++ www/share/mk/web.site.mk 2001/11/13 19:33:22 @@ -42,9 +42,9 @@ TOUCH?= /usr/bin/touch XSLTPROC?= ${PREFIX}/bin/xsltproc -XSLTPROCFLAGS?= -nonet +XSLTPROCOPTS?= -nonet ${XSLTPROCFLAGS} TIDY?= ${PREFIX}/bin/tidy -TIDYFLAGS?= -i -m -f /dev/null +TIDYOPTS?= -i -m -f /dev/null ${TITYFLAGS} # # Install dirs derived from the above. @@ -79,37 +79,36 @@ .SUFFIXES: .sgml .html .if defined(REVCHECK) -PREHTML= ${WEB_PREFIX}/ja/prehtml -PREHTMLFLAGS= ${PREHTMLOPTS} +PREHTML?= ${WEB_PREFIX}/ja/prehtml CANONPREFIX0!= cd ${WEB_PREFIX}; ${ECHO_CMD} $${PWD}; CANONPREFIX= ${PWD:S/^${CANONPREFIX0}//:S/^\///} LOCALTOP!= ${ECHO_CMD} ${CANONPREFIX} | \ ${PERL} -pe 's@[^/]+@..@g; $$_.="/." if($$_ eq".."); s@^\.\./@@;' DIR_IN_LOCAL!= ${ECHO_CMD} ${CANONPREFIX} | ${PERL} -pe 's@^[^/]+/?@@;' -PREHTMLFLAGS+= -revcheck "${LOCALTOP}" "${DIR_IN_LOCAL}" +PREHTMLOPTS?= -revcheck "${LOCALTOP}" "${DIR_IN_LOCAL}" ${PREHTMLFLAGS} .else -DATESUBST= 's///' -PREHTML= ${SED} -e ${DATESUBST} +DATESUBST?= 's///' +PREHTML?= ${SED} -e ${DATESUBST} .endif .if !defined(OPENJADE) -SGMLNORM= ${PREFIX}/bin/sgmlnorm +SGMLNORM?= ${PREFIX}/bin/sgmlnorm .else -SGMLNORM= ${PREFIX}/bin/osgmlnorm +SGMLNORM?= ${PREFIX}/bin/osgmlnorm .endif LOCALBASE?= /usr/local PREFIX?= ${LOCALBASE} CATALOG?= ${PREFIX}/share/sgml/html/catalog -SGMLNORMFLAGS= -d ${SGMLNORMOPTS} -c ${CATALOG} -D ${.CURDIR} +SGMLNORMOPTS?= -d ${SGMLNORMFLAGS} -c ${CATALOG} -D ${.CURDIR} GENDOCS+= ${DOCS:M*.sgml:S/.sgml$/.html/g} ORPHANS:= ${ORPHANS:N*.sgml} .sgml.html: - ${PREHTML} ${PREHTMLFLAGS} ${.IMPSRC} | \ + ${PREHTML} ${PREHTMLOPTS} ${.IMPSRC} | \ ${SETENV} SGML_CATALOG_FILES= \ - ${SGMLNORM} ${SGMLNORMFLAGS} > ${.TARGET} || \ + ${SGMLNORM} ${SGMLNORMOPTS} > ${.TARGET} || \ (${RM} -f ${.TARGET} && false) .if !defined(NO_TIDY) - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYOPTS} ${.TARGET} .endif ### @@ -118,15 +117,15 @@ # Generate HTML from docbook SGMLFMT?= ${PREFIX}/bin/sgmlfmt -SGMLFMTFLAGS?= -d docbook -f html ${SGMLOPTS} +SGMLFMTOPTS?= -d docbook -f html ${SGMLFMTFLAGS} ${SGMLFLAGS} .SUFFIXES: .docb GENDOCS+= ${DOCS:M*.docb:S/.docb$/.html/g} ORPHANS:= ${ORPHANS:N*.docb} .docb.html: - ${SGMLFMT} ${SGMLFMTFLAGS} ${.IMPSRC} + ${SGMLFMT} ${SGMLFMTOPTS} ${.IMPSRC} .if !defined(NO_TIDY) - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYOPTS} ${.TARGET} .endif Index: www/de/Makefile =================================================================== RCS file: /home/ncvs/www/de/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- www/de/Makefile 2001/02/25 11:54:42 1.1 +++ www/de/Makefile 2001/11/13 19:13:59 @@ -34,7 +34,7 @@ DOCSUBDIR= FAQ handbook .endif -SGMLOPTS+= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr +SGMLFLAGS+= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr WEBDIR= data/de Index: www/en/Makefile =================================================================== RCS file: /home/ncvs/www/en/Makefile,v retrieving revision 1.74 diff -u -r1.74 Makefile --- www/en/Makefile 2001/10/29 10:14:30 1.74 +++ www/en/Makefile 2001/11/13 19:09:30 @@ -83,9 +83,9 @@ CLEANFILES+= index.html index.html: index.xsl news/news.xml news/press.xml includes.xsl news/includes.xsl - ${XSLTPROC} ${XSLTPROCFLAGS} -o index.html \ + ${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \ ${.CURDIR}/index.xsl ${.CURDIR}/news/news.xml - -${TIDY} ${TIDYFLAGS} index.html + -${TIDY} ${TIDYOPTS} ${.TARGET} # Handle the FAQ/ and handbook/ directories specially. CLEANFILES+= FAQ @@ -103,13 +103,13 @@ ${LN} -fs doc/en_US.ISO8859-1/books/handbook ${DOCINSTALLDIR}/handbook LINBOT?= ${PREFIX}/bin/linbot -LINBOTFLAGS?= -ab +LINBOTOPTS?= -ab ${LINBOTFLAGS} LINBOTDIR?= /linbot LINBOTINSTALLDIR?= ${DESTDIR}${LINBOTDIR} LINBOTURL?= http://www.FreeBSD.org/ linbot: @[ -d ${LINBOTINSTALLDIR} ] || ${MKDIR} ${LINBOTINSTALLDIR} - ${LINBOT} ${LINBOTFLAGS} -o ${LINBOTINSTALLDIR} ${LINBOTURL} + ${LINBOT} ${LINBOTOPTS} -o ${LINBOTINSTALLDIR} ${LINBOTURL} .include "${WEB_PREFIX}/share/mk/web.site.mk" Index: www/en/gallery/Makefile =================================================================== RCS file: /home/ncvs/www/en/gallery/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- www/en/gallery/Makefile 2001/10/29 10:14:31 1.14 +++ www/en/gallery/Makefile 2001/11/13 19:11:20 @@ -9,7 +9,7 @@ XSLTPROCFLAGS= --catalogs XSLT= ${SETENV} SGML_CATALOG_FILES=${PREFIX}/share/xml/dtd/xhtml/xhtml.soc \ - ${XSLTPROC} ${XSLTPROCFLAGS} + ${XSLTPROC} ${XSLTPROCOPTS} INDEXLINK= gallery.html @@ -19,21 +19,21 @@ gallery.html: gallery.xml gallery.xsl ../includes.xsl ${XSLT} ${.CURDIR}/gallery.xsl ${.CURDIR}/gallery.xml > ${.TARGET} - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYOPTS} ${.TARGET} cgallery.html: gallery.xml gallery-entry.xsl ${XSLT} --param type \'commercial\' \ ${.CURDIR}/gallery-entry.xsl ${.CURDIR}/gallery.xml > ${.TARGET} - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYOPTS} ${.TARGET} npgallery.html: gallery.xml gallery-entry.xsl ${XSLT} --param type \'nonprofit\' \ ${.CURDIR}/gallery-entry.xsl ${.CURDIR}/gallery.xml > ${.TARGET} - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYOPTS} ${.TARGET} pgallery.html: gallery.xml gallery-entry.xsl ${XSLT} --param type \'personal\' \ ${.CURDIR}/gallery-entry.xsl ${.CURDIR}/gallery.xml > ${.TARGET} - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYOPTS} ${.TARGET} .include "${WEB_PREFIX}/share/mk/web.site.mk" Index: www/en/news/Makefile =================================================================== RCS file: /home/ncvs/www/en/news/Makefile,v retrieving revision 1.30 diff -u -r1.30 Makefile --- www/en/news/Makefile 2001/10/29 10:14:31 1.30 +++ www/en/news/Makefile 2001/11/13 19:11:43 @@ -35,17 +35,17 @@ CLEANFILES+= newsflash.html news.rdf press.html newsflash.html: newsflash.xsl news.xml includes.xsl ../includes.xsl - ${XSLTPROC} ${XSLTPROCFLAGS} -o ${.TARGET} \ + ${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \ ${.CURDIR}/newsflash.xsl ${.CURDIR}/news.xml - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYOPTS} ${.TARGET} news.rdf: news-rdf.xsl news.xml includes.xsl ../includes.xsl - ${XSLTPROC} ${XSLTPROCFLAGS} -o ${.TARGET} \ + ${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \ ${.CURDIR}/news-rdf.xsl ${.CURDIR}/news.xml press.html: press.xsl press.xml includes.xsl ../includes.xsl - ${XSLTPROC} ${XSLTPROCFLAGS} -o ${.TARGET} \ + ${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \ ${.CURDIR}/press.xsl ${.CURDIR}/press.xml - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYOPTS} ${.TARGET} .include "${WEB_PREFIX}/share/mk/web.site.mk" Index: www/en/news/status/Makefile =================================================================== RCS file: /home/ncvs/www/en/news/status/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- www/en/news/status/Makefile 2001/10/29 10:14:32 1.9 +++ www/en/news/status/Makefile 2001/11/13 19:11:48 @@ -21,9 +21,9 @@ CLEANFILES+= ${DATA:M*.html} .xml.html: report.xsl includes.xsl - ${XSLTPROC} ${XSLTPROCFLAGS} -o ${.TARGET} \ + ${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \ ${.CURDIR}/report.xsl ${.IMPSRC} - -${TIDY} ${TIDYFLAGS} ${.TARGET} + -${TIDY} ${TIDYOPTS} ${.TARGET} INDEXLINK= status.html Index: www/es/Makefile =================================================================== RCS file: /home/ncvs/www/es/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- www/es/Makefile 2001/06/30 20:31:48 1.11 +++ www/es/Makefile 2001/11/13 19:14:19 @@ -64,10 +64,9 @@ # Extern #SUBDIR+= tutorials -#DOCSUBDIR= FAQ handbook -DOCSUBDIR= FAQ +DOCSUBDIR= FAQ # handbook .endif -SGMLOPTS+= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr +SGMLFLAGS+= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr WEBDIR= data/es Index: www/es/ports/Makefile =================================================================== RCS file: /home/ncvs/www/es/ports/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- www/es/ports/Makefile 2001/01/02 01:49:05 1.9 +++ www/es/ports/Makefile 2001/11/13 19:14:44 @@ -47,6 +47,6 @@ install: all all install clean: - (cd ${.CURDIR} &&${MAKE} ${MAKEFLAGS} -f ${.CURDIR}/Makefile.inc0 ${.TARGET}) + (cd ${.CURDIR} && ${MAKE} ${MAKEFLAGS} -f ${.CURDIR}/Makefile.inc0 ${.TARGET}) .include "${WEB_PREFIX}/share/mk/web.site.mk" Index: www/ja/Makefile =================================================================== RCS file: /home/ncvs/www/ja/Makefile,v retrieving revision 1.52 diff -u -r1.52 Makefile --- www/ja/Makefile 2001/10/30 15:09:52 1.52 +++ www/ja/Makefile 2001/11/13 19:35:43 @@ -72,7 +72,8 @@ #SUBDIR+= gifs #SUBDIR+= cgi -SGMLOPTS= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr -e EUC-JP +SGMLFLAGS+= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr +SGMLFLAGS+= -e EUC-JP WEBDIR= data/ja @@ -81,9 +82,9 @@ CLEANFILES+= index.html index.html: index.xsl news/news.xml news/press.xml includes.xsl news/includes.xsl - ${XSLTPROC} ${XSLTPROCFLAGS} -o index.html \ + ${XSLTPROC} ${XSLTPROCOPTS} -o index.html \ ${.CURDIR}/index.xsl ${.CURDIR}/news/news.xml -# -${TIDY} ${TIDYFLAGS} index.html +# -${TIDY} ${TIDYOPTS} index.html ### Revision checking REVCHECK= yes Index: www/ja/Makefile.inc =================================================================== RCS file: /home/ncvs/www/ja/Makefile.inc,v retrieving revision 1.9 diff -u -r1.9 Makefile.inc --- www/ja/Makefile.inc 2000/11/07 11:37:51 1.9 +++ www/ja/Makefile.inc 2001/11/13 19:20:23 @@ -4,3 +4,5 @@ WEBBASE?= /data/ja WEB_PREFIX?= ${.CURDIR}/../.. + +TIDYFLAGS?= -raw Index: www/ja/ports/Makefile =================================================================== RCS file: /home/ncvs/www/ja/ports/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- www/ja/ports/Makefile 2001/09/06 13:35:08 1.24 +++ www/ja/ports/Makefile 2001/11/13 19:12:10 @@ -76,7 +76,7 @@ install: all all install clean: - (cd ${.CURDIR} && ${MAKE} ${MAKEFLAGS} -f Makefile.inc0 ${.TARGET}) + (cd ${.CURDIR} && ${MAKE} ${MAKEFLAGS} -f Makefile.inc0 ${.TARGET}) .include "${WEB_PREFIX}/share/mk/web.site.mk" Index: www/ru/Makefile =================================================================== RCS file: /home/ncvs/www/ru/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- www/ru/Makefile 2001/08/08 02:08:09 1.17 +++ www/ru/Makefile 2001/11/13 19:15:04 @@ -65,12 +65,11 @@ SUBDIR+= tutorials SUBDIR+= handbook -#DOCSUBDIR= FAQ handbook -DOCSUBDIR= FAQ +DOCSUBDIR= FAQ # handbook .endif -SGMLOPTS+= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr -SGMLOPTS+= -e KOI8-R +SGMLFLAGS+= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr +SGMLFLAGS+= -e KOI8-R FORMATS= "html ps koi8-r" WEBDIR?= data/ru Index: www/ru/Makefile.inc =================================================================== RCS file: /home/ncvs/www/ru/Makefile.inc,v retrieving revision 1.3 diff -u -r1.3 Makefile.inc --- www/ru/Makefile.inc 2000/11/10 17:27:22 1.3 +++ www/ru/Makefile.inc 2001/11/13 19:20:42 @@ -4,3 +4,5 @@ WEBBASE?= /data/ru WEB_PREFIX?= ${.CURDIR}/../.. + +TIDYFLAGS?= -latin1 Index: www/ru/ports/Makefile =================================================================== RCS file: /home/ncvs/www/ru/ports/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- www/ru/ports/Makefile 2000/11/10 17:27:39 1.3 +++ www/ru/ports/Makefile 2001/11/13 19:12:29 @@ -78,6 +78,6 @@ install: all all install clean: - (cd ${.CURDIR} && ${MAKE} ${MAKEFLAGS} -f Makefile.inc0 ${.TARGET}) + (cd ${.CURDIR} && ${MAKE} ${MAKEFLAGS} -f Makefile.inc0 ${.TARGET}) .include "${WEB_PREFIX}/share/mk/web.site.mk" Index: www/zh/Makefile =================================================================== RCS file: /home/ncvs/www/zh/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- www/zh/Makefile 2000/11/07 05:20:40 1.5 +++ www/zh/Makefile 2001/11/13 19:15:42 @@ -11,9 +11,9 @@ DOCSUBDIR= FAQ .endif -SGMLOPTS= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr -SGMLOPTS+=-e big5 -FORMATS= "html ps" +SGMLFLAGS+= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr +SGMLFLAGS+= -e big5 +FORMATS= "html ps" WEBBASE= /data/zh Cyrille. -- Cyrille Lefevre mailto:clefevre@citeweb.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 13:20:11 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EAD6D37B419 for ; Tue, 13 Nov 2001 13:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fADLK0L11472; Tue, 13 Nov 2001 13:20:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 56D4237B416 for ; Tue, 13 Nov 2001 13:12:53 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fADLCrq09231; Tue, 13 Nov 2001 13:12:53 -0800 (PST) (envelope-from nobody) Message-Id: <200111132112.fADLCrq09231@freefall.freebsd.org> Date: Tue, 13 Nov 2001 13:12:53 -0800 (PST) From: Trevor Johnson To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: docs/31958: add "FreeBSD Versus Linux Revisited" article to press page Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31958 >Category: docs >Synopsis: add "FreeBSD Versus Linux Revisited" article to press page >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: Tue Nov 13 13:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: N/A >Organization: >Environment: N/A >Description: This is a follow-on to the February article in BYTE. This time, the author looks at the changes to the Linux virtual-memory subsystem and finds it has improved greatly. Now, it consistently lets him log in. From some places, it is difficult to read the BYTE Web pages. >How-To-Repeat: N/A >Fix: http://people.freebsd.org/~trevor/press.diff >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 13:30: 6 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9000837B41A for ; Tue, 13 Nov 2001 13:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fADLU1x14692; Tue, 13 Nov 2001 13:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FF6637B417 for ; Tue, 13 Nov 2001 13:27:25 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fADLRPu13907; Tue, 13 Nov 2001 13:27:25 -0800 (PST) (envelope-from nobody) Message-Id: <200111132127.fADLRPu13907@freefall.freebsd.org> Date: Tue, 13 Nov 2001 13:27:25 -0800 (PST) From: Steven Huwig To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: docs/31959: typo in section 5.7.2.1 of the Handbook Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31959 >Category: docs >Synopsis: typo in section 5.7.2.1 of the Handbook >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 Nov 13 13:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Steven Huwig >Release: 4.4-RELEASE >Organization: Case Western Reserve University >Environment: >Description: "Konqeuror" should be replaced by "Konqueror" in section 5.7.2.1 of the Handbook. >How-To-Repeat: Open your brand-new hardcopy Handbook to p. 138 :) >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 13:39:13 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E553637B416; Tue, 13 Nov 2001 13:39:11 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fADLc0617173; Tue, 13 Nov 2001 13:38:00 -0800 (PST) (envelope-from bmah) Date: Tue, 13 Nov 2001 13:38:00 -0800 (PST) From: Message-Id: <200111132138.fADLc0617173@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, bmah@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31784: new FAQ Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new FAQ State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Tue Nov 13 13:36:50 PST 2001 State-Changed-Why: Committed, with the addition of a missing close quote. Merci! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31784 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 15:59:13 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 152E237B405; Tue, 13 Nov 2001 15:59:12 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fADNvgK58615; Tue, 13 Nov 2001 15:57:42 -0800 (PST) (envelope-from bmah) Date: Tue, 13 Nov 2001 15:57:42 -0800 (PST) From: Message-Id: <200111132357.fADNvgK58615@freefall.freebsd.org> To: sjh13@po.cwru.edu, bmah@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31959: typo in section 5.7.2.1 of the Handbook Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: typo in section 5.7.2.1 of the Handbook State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Tue Nov 13 15:57:32 PST 2001 State-Changed-Why: Fixed, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31959 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 16:19:17 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6958C37B405; Tue, 13 Nov 2001 16:19:16 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAE0BQ165232; Tue, 13 Nov 2001 16:11:26 -0800 (PST) (envelope-from bmah) Date: Tue, 13 Nov 2001 16:11:26 -0800 (PST) From: Message-Id: <200111140011.fAE0BQ165232@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, bmah@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31803: Handbook make world addition Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Handbook make world addition State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Tue Nov 13 16:10:16 PST 2001 State-Changed-Why: Committed, per version of patch posted to -doc. Gracias! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31803 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Nov 13 23:10:18 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB5D737B41B for ; Tue, 13 Nov 2001 23:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAE7A1639818; Tue, 13 Nov 2001 23:10:01 -0800 (PST) (envelope-from gnats) Received: from falcon.prod.itd.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by hub.freebsd.org (Postfix) with ESMTP id 7FE1B37B405 for ; Tue, 13 Nov 2001 23:05:41 -0800 (PST) Received: from sdn-ar-008dcwashp276.dialsprint.net ([63.178.90.206] helo=moo.holy.cow) by falcon.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 163u7A-0006hz-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 13 Nov 2001 23:05:41 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id 80C2350CF2; Wed, 14 Nov 2001 02:06:49 -0500 (EST) Message-Id: <20011114070649.80C2350CF2@moo.holy.cow> Date: Wed, 14 Nov 2001 02:06:49 -0500 (EST) From: parv_@yahoo.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/31972: 'make clean' failure in www Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31972 >Category: docs >Synopsis: 'make clean' failure in www >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Nov 13 23:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: parv >Release: FreeBSD 4.4-STABLE i386 >Organization: holy.cow >Environment: System: FreeBSD moo.holy.cow 4.4-STABLE cvsup'd docs collection a few minutes ago. >Description: when 'make clean' is run in www, this message is produced... make clean ===> en /bin/rm -f Errs errs mklog applications.html auditors.html availability.html docs.html features.html register.html internet.html mailto.html publish.html relnotes.html send-pr.html support.html where.html y2kbug.html index.html FAQ handbook rm: FAQ: is a directory rm: handbook: is a directory *** Error code 1 Stop in /source/contribute/www/en. *** Error code 1 >How-To-Repeat: install docproj port; run 'make clean' in "www". an initial installation may be needed to produce the bug. >Fix: below is a reply from Cyrille Lefevre, clefevre@citeweb.net, to my post when i asked about the problem on freebsd-doc mailing list... i have this too if `make obj' has not been done before. in fact, FAQ and handbook directories should be killed from CVS so the symlinks could be created (then killed). they are not currently created since their respective directories exists and the targets don't complain for the same reason (try `make FAQ handbook' and see). it is safe to clean them since they are not referenced anymore in the Makefile as directoties (no SUBDIR+= FAQ handbook). Cyrille. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 1:50: 8 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD4DD37B418 for ; Wed, 14 Nov 2001 01:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAE9o1k79080; Wed, 14 Nov 2001 01:50:01 -0800 (PST) (envelope-from gnats) Received: from riffraff.plig.net (riffraff.plig.net [195.40.6.40]) by hub.freebsd.org (Postfix) with ESMTP id 6EFA837B419 for ; Wed, 14 Nov 2001 01:46:31 -0800 (PST) Received: by riffraff.plig.net (Postfix, from userid 3010) id 45E7D47B37; Wed, 14 Nov 2001 09:46:30 +0000 (GMT) Message-Id: <20011114094630.45E7D47B37@riffraff.plig.net> Date: Wed, 14 Nov 2001 09:46:30 +0000 (GMT) From: Marc Silver Reply-To: Marc Silver To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/31976: update to dialup firewall article Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31976 >Category: docs >Synopsis: update to dialup firewall article >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Nov 14 01:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Marc Silver >Release: FreeBSD 4.3-STABLE i386 >Organization: >Environment: System: FreeBSD riffraff.plig.net 4.3-STABLE FreeBSD 4.3-STABLE #3: Thu Jul 12 16:56:00 BST 2001 shastie@riffraff.plig.net:/usr/src/sys/compile/RIFFRAFF i386 >Description: This is merely an update of the documentation with some information changing values using sysctl. >How-To-Repeat: >Fix: Please apply the following patch: --- article.sgml.orig Wed Nov 14 09:33:37 2001 +++ article.sgml Wed Nov 14 09:42:53 2001 @@ -213,7 +213,7 @@ $fwcmd add allow tcp from any to any via tun0 established # Everyone on the internet is allowed to connect to the following -# services on the machine. This example shows that people may connect +# services on the machine. This example specifically allows connections # to ssh and apache. $fwcmd add allow tcp from any to any 80 setup $fwcmd add allow tcp from any to any 22 setup @@ -284,7 +284,9 @@ command. Alternatively, you may increase the log limit in your kernel configuration with the option as - described above. + described above. You may also change this limit (without + recompiling your kernel and having to reboot) by using the + net.inet.ip.fw.verbose_limit &man.sysctl.8; value. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 2:29:15 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 55B4B37B417; Wed, 14 Nov 2001 02:29:13 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEAPNw92432; Wed, 14 Nov 2001 02:25:23 -0800 (PST) (envelope-from sheldonh) Date: Wed, 14 Nov 2001 02:25:23 -0800 (PST) From: Message-Id: <200111141025.fAEAPNw92432@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, sheldonh@FreeBSD.org, freebsd-doc@freebsd.org, sheldonh@FreeBSD.org Subject: Re: docs/31853: addition to bibliography Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: addition to bibliography State-Changed-From-To: open->analyzed State-Changed-By: sheldonh State-Changed-When: Wed Nov 14 02:23:47 PST 2001 State-Changed-Why: Looks good, modulo whitespace issue in indentation. Responsible-Changed-From-To: freebsd-doc->sheldonh Responsible-Changed-By: sheldonh Responsible-Changed-When: Wed Nov 14 02:23:47 PST 2001 Responsible-Changed-Why: I'll take this one. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31853 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 6:59:17 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A362237B419; Wed, 14 Nov 2001 06:59:13 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEEvG193028; Wed, 14 Nov 2001 06:57:16 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 06:57:16 -0800 (PST) From: Message-Id: <200111141457.fAEEvG193028@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, murray@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31828: handbook FreeBSD Mall references? Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: handbook FreeBSD Mall references? State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Wed Nov 14 06:52:14 PST 2001 State-Changed-Why: Wind River Systems is leaving the FreeBSD business, but the FreeBSDMall will continue under the stewardship of a new company. FreeBSDMall has been around since the Walnut Creek CDROM days and just because WRS is getting out of the business, doesn't mean that the Mall is shutting down. FreeBSDMall has brought FreeBSD into many new markets and has donated hundreds of thousands of dollars to the FreeBSD Project. FreeBSDMall sells more copies of FreeBSD than any other organization, and in the last several weeks new products have been added to freebsdmall.com. I don't think that it is appropriate to remove this link. Thanks. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31828 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 7: 9:16 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9332A37B41A; Wed, 14 Nov 2001 07:09:13 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEF4gt94456; Wed, 14 Nov 2001 07:04:42 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 07:04:42 -0800 (PST) From: Message-Id: <200111141504.fAEF4gt94456@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, murray@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31854: new error for FAQ Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new error for FAQ State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Wed Nov 14 07:04:23 PST 2001 State-Changed-Why: Your change has been committed in r1.296. Thanks for the submission! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31854 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 7:49:14 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BCA737B417; Wed, 14 Nov 2001 07:49:13 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEFk2E04073; Wed, 14 Nov 2001 07:46:02 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 07:46:02 -0800 (PST) From: Message-Id: <200111141546.fAEFk2E04073@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, murray@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31886: missing markup Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: missing markup State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Wed Nov 14 07:45:49 PST 2001 State-Changed-Why: committed in r1.53, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31886 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 7:59:15 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A00237B417; Wed, 14 Nov 2001 07:59:13 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEFufP05212; Wed, 14 Nov 2001 07:56:41 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 07:56:41 -0800 (PST) From: Message-Id: <200111141556.fAEFufP05212@freefall.freebsd.org> To: jean-francois.dockes@wanadoo.fr, murray@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31951: Improved language for the 'diskless' handbook section Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Improved language for the 'diskless' handbook section State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Wed Nov 14 07:56:11 PST 2001 State-Changed-Why: Committed with minor modifications. It may take up to 24 hours for this change to reach the website. r1.110 in CVS contains the fix. Thanks for the submission! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31951 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 8: 9:15 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 270B337B416; Wed, 14 Nov 2001 08:09:14 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEG2FE06009; Wed, 14 Nov 2001 08:02:15 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 08:02:15 -0800 (PST) From: Message-Id: <200111141602.fAEG2FE06009@freefall.freebsd.org> To: marcs@riffraff.plig.net, murray@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31976: update to dialup firewall article Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: update to dialup firewall article State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Wed Nov 14 08:01:37 PST 2001 State-Changed-Why: Your change has been committed with r1.20 of article.sgml. This may take up to 24 hours to reach the web site. Thanks for your submission! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31976 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 8:19:15 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 965E337B418; Wed, 14 Nov 2001 08:19:13 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEGEVP10618; Wed, 14 Nov 2001 08:14:31 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 08:14:31 -0800 (PST) From: Message-Id: <200111141614.fAEGEVP10618@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, murray@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31857: new FAQ: proc: table is full Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new FAQ: proc: table is full State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Wed Nov 14 08:14:17 PST 2001 State-Changed-Why: Committed in r1.297. Thanks for the submission! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31857 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 8:29:15 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F15037B416; Wed, 14 Nov 2001 08:29:13 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEGPXQ11867; Wed, 14 Nov 2001 08:25:33 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 08:25:33 -0800 (PST) From: Message-Id: <200111141625.fAEGPXQ11867@freefall.freebsd.org> To: wcampbel@botbay.net, murray@FreeBSD.org, freebsd-doc@freebsd.org, murray@FreeBSD.org Subject: Re: docs/31866: Refer to fdopen and fileno in their opposite manpages Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Refer to fdopen and fileno in their opposite manpages State-Changed-From-To: open->analyzed State-Changed-By: murray State-Changed-When: Wed Nov 14 08:25:02 PST 2001 State-Changed-Why: This change has been made to -CURRENT. Thanks for the submission. Responsible-Changed-From-To: freebsd-doc->murray Responsible-Changed-By: murray Responsible-Changed-When: Wed Nov 14 08:25:02 PST 2001 Responsible-Changed-Why: My MFC reminder. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31866 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 8:39:15 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C188737B405; Wed, 14 Nov 2001 08:39:13 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEGZaH13262; Wed, 14 Nov 2001 08:35:36 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 08:35:36 -0800 (PST) From: Message-Id: <200111141635.fAEGZaH13262@freefall.freebsd.org> To: sugi@home.unpar.ac.id, murray@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/19981: Indonesian translations Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Indonesian translations State-Changed-From-To: feedback->closed State-Changed-By: murray State-Changed-When: Wed Nov 14 08:35:20 PST 2001 State-Changed-Why: feedback timeout. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19981 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 8:39:16 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 317AB37B416; Wed, 14 Nov 2001 08:39:14 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEGWGS12756; Wed, 14 Nov 2001 08:32:16 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 08:32:16 -0800 (PST) From: Message-Id: <200111141632.fAEGWGS12756@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, murray@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31830: USB mouse FAQ outdated Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: USB mouse FAQ outdated State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Wed Nov 14 08:32:01 PST 2001 State-Changed-Why: Committed with minor modifications. Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31830 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 8:59:19 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E25437B41C; Wed, 14 Nov 2001 08:59:14 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEGwkc16255; Wed, 14 Nov 2001 08:58:46 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 08:58:46 -0800 (PST) From: Message-Id: <200111141658.fAEGwkc16255@freefall.freebsd.org> To: martin@sumuk.de, murray@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31899: Markup changes for chapter Security Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Markup changes for chapter Security State-Changed-From-To: open->analyzed State-Changed-By: murray State-Changed-When: Wed Nov 14 08:57:39 PST 2001 State-Changed-Why: I've committed your second diff to r1.97 in CVS (should be on the web site within 24 hours). It might be easier if you open another PR for your remaining changes. Thanks for the submission! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31899 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 9: 0:34 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 057B137B41B for ; Wed, 14 Nov 2001 09:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEH03J16469; Wed, 14 Nov 2001 09:00:03 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 23ACF37B416 for ; Wed, 14 Nov 2001 08:50:31 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEGoVa14801; Wed, 14 Nov 2001 08:50:31 -0800 (PST) (envelope-from nobody) Message-Id: <200111141650.fAEGoVa14801@freefall.freebsd.org> Date: Wed, 14 Nov 2001 08:50:31 -0800 (PST) From: Jean-Francois Dockes To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: docs/31983: developer's handbook: isa xxx_intr needs its own Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31983 >Category: docs >Synopsis: developer's handbook: isa xxx_intr needs its own >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: Wed Nov 14 09:00:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jean-Francois Dockes >Release: 4.4-STABLE >Organization: >Environment: irrelevant >Description: I certainly can't see why poor xxx_intr would be frustated out of its own section when every other interface routine has it. >How-To-Repeat: >Fix: *** chapter.sgml.orig Wed Nov 14 17:44:06 2001 --- chapter.sgml Wed Nov 14 17:43:55 2001 *************** *** 2418,2427 **** action depends on the hardware, so we don't consider it here in any details. ! ! xxx_intr ! The interrupt handler is called when an interrupt is --- 2418,2427 ---- action depends on the hardware, so we don't consider it here in any details. + ! ! xxx_intr The interrupt handler is called when an interrupt is >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 9:19:18 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9FB637B405; Wed, 14 Nov 2001 09:19:13 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEHIa122653; Wed, 14 Nov 2001 09:18:36 -0800 (PST) (envelope-from murray) Date: Wed, 14 Nov 2001 09:18:36 -0800 (PST) From: Message-Id: <200111141718.fAEHIa122653@freefall.freebsd.org> To: jean-francois.dockes@wanadoo.fr, murray@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31983: developer's handbook: isa xxx_intr needs its own Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: developer's handbook: isa xxx_intr needs its own State-Changed-From-To: open->closed State-Changed-By: murray State-Changed-When: Wed Nov 14 09:18:13 PST 2001 State-Changed-Why: Committed in r1.4 of isa/chapter.sgml. Thanks for your submission! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31983 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 9:40: 6 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8646837B417 for ; Wed, 14 Nov 2001 09:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEHe1v25652; Wed, 14 Nov 2001 09:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20CD337B417 for ; Wed, 14 Nov 2001 09:36:36 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEHaaZ25288; Wed, 14 Nov 2001 09:36:36 -0800 (PST) (envelope-from nobody) Message-Id: <200111141736.fAEHaaZ25288@freefall.freebsd.org> Date: Wed, 14 Nov 2001 09:36:36 -0800 (PST) From: wolfram schneider To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: docs/31988: make clean is broken in www/en Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31988 >Category: docs >Synopsis: make clean is broken in www/en >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 14 09:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: wolfram schneider >Release: >Organization: >Environment: >Description: `make clean' is broken in the web tree: $ cvs -QR co www doc $ cd www/en $ make clean /bin/rm -f Errs errs mklog applications.html auditors.html availability.html docs.html features.html register.html internet.html mailto.html publish.html relnotes.html send-pr.html support.html where.html y2kbug.html index.html FAQ handbook rm: FAQ: is a directory rm: handbook: is a directory *** Error code 1 Stop in /home/wosch/tmp/www/en. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 10:39:17 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4ADAE37B418; Wed, 14 Nov 2001 10:39:14 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEIZ6Y35966; Wed, 14 Nov 2001 10:35:06 -0800 (PST) (envelope-from phantom) Date: Wed, 14 Nov 2001 10:35:06 -0800 (PST) From: Message-Id: <200111141835.fAEIZ6Y35966@freefall.freebsd.org> To: wosch@freebsd.org, phantom@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31988: make clean is broken in www/en Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: make clean is broken in www/en State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Wed Nov 14 10:34:21 PST 2001 State-Changed-Why: Fixed in rev 1.75 of www/en/Makefile http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31988 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 10:39:19 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 007FD37B41B; Wed, 14 Nov 2001 10:39:14 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEIWRP35599; Wed, 14 Nov 2001 10:32:27 -0800 (PST) (envelope-from phantom) Date: Wed, 14 Nov 2001 10:32:27 -0800 (PST) From: Message-Id: <200111141832.fAEIWRP35599@freefall.freebsd.org> To: hitmaster2k@yahoo.com, phantom@FreeBSD.org, doc@FreeBSD.org Subject: Re: docs/31787: diverting send-pr.html traffic to a local mirror Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: diverting send-pr.html traffic to a local mirror State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Wed Nov 14 10:31:46 PST 2001 State-Changed-Why: Fixed. Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31787 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 10:39:19 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EEADA37B417; Wed, 14 Nov 2001 10:39:13 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEIZtX36113; Wed, 14 Nov 2001 10:35:55 -0800 (PST) (envelope-from phantom) Date: Wed, 14 Nov 2001 10:35:55 -0800 (PST) From: Message-Id: <200111141835.fAEIZtX36113@freefall.freebsd.org> To: phantom@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31972: 'make clean' failure in www Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: 'make clean' failure in www State-Changed-From-To: open->closed State-Changed-By: phantom State-Changed-When: Wed Nov 14 10:35:28 PST 2001 State-Changed-Why: Fixed in rev 1.75 of www/en/Makefile http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31972 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 10:49:18 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D66F337B416; Wed, 14 Nov 2001 10:49:13 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEIdES36511; Wed, 14 Nov 2001 10:39:14 -0800 (PST) (envelope-from phantom) Date: Wed, 14 Nov 2001 10:39:14 -0800 (PST) From: Message-Id: <200111141839.fAEIdES36511@freefall.freebsd.org> To: phantom@FreeBSD.org, doc@FreeBSD.org, phantom@FreeBSD.org Subject: Re: docs/31570: Updated frontpage of the http://www.freebsd.org/ru/ site Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Updated frontpage of the http://www.freebsd.org/ru/ site Responsible-Changed-From-To: doc->phantom Responsible-Changed-By: phantom Responsible-Changed-When: Wed Nov 14 10:38:43 PST 2001 Responsible-Changed-Why: I'll track this issue http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31570 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 11:50:10 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 94F9837B416 for ; Wed, 14 Nov 2001 11:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEJo1H51813; Wed, 14 Nov 2001 11:50:01 -0800 (PST) (envelope-from gnats) Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 9305137B416 for ; Wed, 14 Nov 2001 11:41:29 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id OAA39477; Wed, 14 Nov 2001 14:41:29 -0500 (EST) (envelope-from mwlucas) Message-Id: <200111141941.OAA39477@blackhelicopters.org> Date: Wed, 14 Nov 2001 14:41:29 -0500 (EST) From: mwlucas@blackhelicopters.org Reply-To: mwlucas@blackhelicopters.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: docs/31990: new FAQ: imaging a data CD Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31990 >Category: docs >Synopsis: new FAQ: imaging a data CD >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: Wed Nov 14 11:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Michael Lucas >Release: FreeBSD 3.5-STABLE i386 >Organization: None >Environment: today's -doc tree >Description: "How do I copy a data CD?" -questions had many similar responses, I amalgamated them into this. >How-To-Repeat: read -questions. >Fix: *** en_US.ISO8859-1/books/faq/book.sgml-dist Wed Nov 14 14:12:52 2001 --- en_US.ISO8859-1/books/faq/book.sgml Wed Nov 14 14:32:50 2001 *************** *** 5714,5719 **** --- 5714,5744 ---- + + How can I create an image of a data CD? + + + + If you want to make a bit-by-bit copy of a CD (so you + can, for example, duplicate it with a CD burner), use + &man.dd.1;. The example given here assumes that you have + a IDE CDROM device that shows up as + acd0. If you have a SCSI CD + drive, you will want to substitute the correct device + name. + + &prompt.user; dd if=/dev/cdrom + of=file.iso bs=2048 + + This method does not work with audio CDs. + + For more on working with CDROMs, see this chapter + in the Handbook. + + + + How can I use the NT loader to boot FreeBSD? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 12: 0: 9 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A69037B417 for ; Wed, 14 Nov 2001 12:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEK02b53189; Wed, 14 Nov 2001 12:00:02 -0800 (PST) (envelope-from gnats) Date: Wed, 14 Nov 2001 12:00:02 -0800 (PST) Message-Id: <200111142000.fAEK02b53189@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: John Baldwin Subject: RE: docs/31990: new FAQ: imaging a data CD Reply-To: John Baldwin Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/31990; it has been noted by GNATS. From: John Baldwin To: mwlucas@blackhelicopters.org Cc: FreeBSD-gnats-submit@freebsd.org Subject: RE: docs/31990: new FAQ: imaging a data CD Date: Wed, 14 Nov 2001 11:59:09 -0800 (PST) On 14-Nov-01 mwlucas@blackhelicopters.org wrote: > + > + If you want to make a bit-by-bit copy of a CD (so you > + can, for example, duplicate it with a CD burner), use > + &man.dd.1;. The example given here assumes that you have > + a IDE CDROM device that shows up as > + acd0. If you have a SCSI CD > + drive, you will want to substitute the correct device > + name. > + > + &prompt.user; dd if=/dev/cdrom > + of=file.iso bs=2048 Uh, shouldn't that be /dev/acd0 according to the previous paragraph? -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 12:10:10 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 55E2537B405 for ; Wed, 14 Nov 2001 12:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAEKA3W57453; Wed, 14 Nov 2001 12:10:03 -0800 (PST) (envelope-from gnats) Date: Wed, 14 Nov 2001 12:10:03 -0800 (PST) Message-Id: <200111142010.fAEKA3W57453@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: Michael Lucas Subject: Re: docs/31990: new FAQ: imaging a data CD Reply-To: Michael Lucas Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/31990; it has been noted by GNATS. From: Michael Lucas To: John Baldwin Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/31990: new FAQ: imaging a data CD Date: Wed, 14 Nov 2001 15:02:01 -0500 --wRRV7LY7NUeQGEoC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Nov 14, 2001 at 11:59:09AM -0800, John Baldwin wrote: > Uh, shouldn't that be /dev/acd0 according to the previous paragraph? But the example worked on my system... ;) Mea culpa. Correction attached. -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons --wRRV7LY7NUeQGEoC Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=cdimage *** en_US.ISO8859-1/books/faq/book.sgml-dist Wed Nov 14 14:12:52 2001 --- en_US.ISO8859-1/books/faq/book.sgml Wed Nov 14 14:32:50 2001 *************** *** 5714,5719 **** --- 5714,5744 ---- + + How can I create an image of a data CD? + + + + If you want to make a bit-by-bit copy of a CD (so you + can, for example, duplicate it with a CD burner), use + &man.dd.1;. The example given here assumes that you have + a IDE CDROM device that shows up as + acd0. If you have a SCSI CD + drive, you will want to substitute the correct device + name. + + &prompt.user; dd if=/dev/acd0c + of=file.iso bs=2048 + + This method does not work with audio CDs. + + For more on working with CDROMs, see this chapter + in the Handbook. + + + + How can I use the NT loader to boot FreeBSD? --wRRV7LY7NUeQGEoC-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Nov 14 15:20: 6 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AB4737B416 for ; Wed, 14 Nov 2001 15:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAENK1M87536; Wed, 14 Nov 2001 15:20:01 -0800 (PST) (envelope-from gnats) Received: from pintail.mail.pas.earthlink.net (pintail.mail.pas.earthlink.net [207.217.120.122]) by hub.freebsd.org (Postfix) with ESMTP id 69AFC37B416 for ; Wed, 14 Nov 2001 15:15:57 -0800 (PST) Received: from dialup-209.245.143.107.dial1.sanjose1.level3.net ([209.245.143.107] helo=blossom.cjclark.org) by pintail.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1649G8-00002F-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 14 Nov 2001 15:15:56 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id fAENFWk80748; Wed, 14 Nov 2001 15:15:32 -0800 (PST) (envelope-from cjc) Message-Id: <200111142315.fAENFWk80748@blossom.cjclark.org> Date: Wed, 14 Nov 2001 15:15:32 -0800 (PST) From: "Crist J. Clark" Reply-To: To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/31995: "libcrypt" Typo in 4.4R Release Notes Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31995 >Category: docs >Synopsis: "libcrypt" Typo in 4.4R Release Notes >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 Nov 14 15:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Crist J. Clark >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD blossom.cjclark.org 4.4-STABLE FreeBSD 4.4-STABLE #0: Wed Nov 7 +14:50:28 PST 2001 +cjc@blossom.cjclark.org:/usr/obj/export/stable/src/sys/BLOSSOM i386 4.4-RELEASE release notes. >Description: In section "2.3 Userland Changes" of the release notes for 4.4-RELEASE, it says, libcrypt and libdescrypt have been unified to provide a configurable password authentication hash library. Both the md5 and des hash methods are provided unless the des hash is specifically compiled out. I believe this should be s/libcrypt/libscrypt/. The old libscrypt and libdescrypt are now combined into a single libcrypt. (Strictly speaking I would say, s/md5/MD5/ and s/des hash/DES hash/ but those are more style choices.) >How-To-Repeat: See, http://www.freebsd.org/releases/4.4R/relnotes-i386.html http://www.freebsd.org/releases/4.4R/relnotes-alpha.html >Fix: Note this in the errata for 4.4-RELEASE. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 3:34: 4 2001 Delivered-To: freebsd-doc@freebsd.org Received: from dual.ms.mff.cuni.cz (www.freebsd.cz [195.113.19.84]) by hub.freebsd.org (Postfix) with ESMTP id C017237B405 for ; Thu, 15 Nov 2001 03:34:01 -0800 (PST) Received: from localhost (horcicka@localhost) by dual.ms.mff.cuni.cz (8.11.3/8.11.1) with ESMTP id fAFBY0161654 for ; Thu, 15 Nov 2001 12:34:00 +0100 (CET) (envelope-from horcicka@FreeBSD.cz) Date: Thu, 15 Nov 2001 12:34:00 +0100 (CET) From: Martin Horcicka X-X-Sender: To: Subject: Why TIDY can never work correctly with ISO-8859-2 and others Message-ID: <20011115105650.W57038-100000@dual.ms.mff.cuni.cz> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, Tidy simply cannot be used correctly with (e.g.) 8-bit character sets other than Latin 1 because it does not support them. Consider HTML document in (e.g.) ISO-8859-2 encoding and some central European characters and a © entity in it. The default behavior of Tidy (char-encoding: ascii) is to use character entities instead of all non-ascii characters - it takes the central european character and encodes it as entity with the same value but interpreted (as defined by HTML specification) in ISO-8859-1 (resp. Unicode)! If you use char-encoding: latin1 - the © entity is converted to a normal character with the same value - but in ISO-8859-2! And if you use char-encoding: raw - character entities with values above 255 are not printed as entities - this is really bad in 8-bit encodings. In my opinion Tidy cannot be used for encodings it does not natively support (i.e. for Russian and Czech (- still not in main CVS) translations of pages and docs). Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 4:59:29 2001 Delivered-To: freebsd-doc@freebsd.org Received: from sekine00.ee.noda.sut.ac.jp (sekine00.ee.noda.sut.ac.jp [133.31.107.40]) by hub.freebsd.org (Postfix) with ESMTP id 8026037B417 for ; Thu, 15 Nov 2001 04:59:27 -0800 (PST) Received: from localhost (sekine01.ee.noda.sut.ac.jp [133.31.107.43]) by sekine00.ee.noda.sut.ac.jp (8.8.8+2.7Wbeta7/3.6W-12/10/97) with ESMTP id VAA05355; Thu, 15 Nov 2001 21:54:10 +0900 (JST) Date: Thu, 15 Nov 2001 21:40:17 +0900 (JST) Message-Id: <20011115.214017.71143189.hrs@sekine00.ee.noda.sut.ac.jp> To: horcicka@FreeBSD.cz Cc: freebsd-doc@FreeBSD.org Subject: Re: Why TIDY can never work correctly with ISO-8859-2 and others From: Hiroki Sato In-Reply-To: <20011115105650.W57038-100000@dual.ms.mff.cuni.cz> References: <20011115105650.W57038-100000@dual.ms.mff.cuni.cz> X-Mailer: Mew version 2.0 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Martin Horcicka wrote in <20011115105650.W57038-100000@dual.ms.mff.cuni.cz>: horcicka> And if you use char-encoding: raw - character entities with values above 255 horcicka> are not printed as entities - this is really bad in 8-bit encodings. Yes, Japanese docs also suffer from it. The input routine of tidy expands any entities first, even if -raw flag is specified. horcicka> In my opinion Tidy cannot be used for encodings it does not natively support horcicka> (i.e. for Russian and Czech (- still not in main CVS) translations of pages horcicka> and docs). I think so, too. As a workaround, we can apply a patch and use the modified version of tidy that can suppress to interpret given entities as entities themselves, but I do not know if it will be a good solution. -- | Hiroki Sato | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 5: 8:40 2001 Delivered-To: freebsd-doc@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 0F46937B419 for ; Thu, 15 Nov 2001 05:08:33 -0800 (PST) Received: from naos (naos [128.130.111.28]) by vexpert.dbai.tuwien.ac.at (8.11.6/8.11.6) with ESMTP id fAFD8VI10984 for ; Thu, 15 Nov 2001 14:08:31 +0100 (MET) Date: Thu, 15 Nov 2001 14:08:29 +0100 (CET) From: Gerald Pfeifer To: Subject: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.html Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ...has an obsolete link to "Cyclic Software" at http://www.cyclic.com. This should be replaced by http://www.cvshome.org/. Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 5:20:13 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 793DD37B41D for ; Thu, 15 Nov 2001 05:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAFDK0k54711; Thu, 15 Nov 2001 05:20:00 -0800 (PST) (envelope-from gnats) Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 5643A37B418 for ; Thu, 15 Nov 2001 05:17:34 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id IAA42780; Thu, 15 Nov 2001 08:17:25 -0500 (EST) (envelope-from mwlucas) Message-Id: <200111151317.IAA42780@blackhelicopters.org> Date: Thu, 15 Nov 2001 08:17:25 -0500 (EST) From: mwlucas@blackhelicopters.org Reply-To: mwlucas@blackhelicopters.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: docs/32002: new FAQ: what hardware to buy Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32002 >Category: docs >Synopsis: new FAQ: what hardware to buy >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: Thu Nov 15 05:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Michael Lucas >Release: FreeBSD 3.5-STABLE i386 >Organization: None >Environment: yesterday's -doc tree >Description: If anyone actually reads the FAQ before asking questions, this might help. >How-To-Repeat: Sit on -questions or -mobile for a while. >Fix: *** en_US.ISO8859-1/books/faq/book.sgml-dist Wed Nov 14 14:12:52 2001 --- en_US.ISO8859-1/books/faq/book.sgml Thu Nov 15 08:10:08 2001 *************** *** 2409,2414 **** --- 2409,2439 ---- + + I want to get a piece of hardware for my FreeBSD + system. Which model/brand/type is best? + + + + This is discussed continually on the FreeBSD mailing + lists. Since hardware changes so quickly, however, we + expect this. We still strongly + recommend that you search the mailing list + + archives before asking about the latest and + greatest hardware. Chances are a discussion about the + type of hardware you're looking for took place just last + week. + + If you're looking for a laptop, check the + FreeBSD-mobile mailing list archives. Otherwise, you + probably want the archives for FreeBSD-questions, or + possibly a specific mailing list for a particular hardware + type. + + + + What kind of hard drives does FreeBSD support? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 5:21:43 2001 Delivered-To: freebsd-doc@freebsd.org Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id F309337B416 for ; Thu, 15 Nov 2001 05:21:37 -0800 (PST) Received: from hukins.hn.org ([62.253.88.45]) by mta05-svc.ntlworld.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20011115132136.AGQ1893.mta05-svc.ntlworld.com@hukins.hn.org> for ; Thu, 15 Nov 2001 13:21:36 +0000 Received: (qmail 18184 invoked by uid 1001); 15 Nov 2001 13:21:43 -0000 Date: Thu, 15 Nov 2001 13:21:43 +0000 From: Tom Hukins To: Gerald Pfeifer Cc: doc@freebsd.org Subject: Re: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.html Message-ID: <20011115132143.A17873@eborcom.com> Mail-Followup-To: Tom Hukins , Gerald Pfeifer , doc@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from pfeifer@dbai.tuwien.ac.at on Thu, Nov 15, 2001 at 02:08:29PM +0100 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Nov 15, 2001 at 02:08:29PM +0100, Gerald Pfeifer wrote: > ...has an obsolete link to "Cyclic Software" at http://www.cyclic.com. > > This should be replaced by http://www.cvshome.org/. Committed, thanks! Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 5:50:21 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AFA3B37B418 for ; Thu, 15 Nov 2001 05:50:10 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAFDoAC65992; Thu, 15 Nov 2001 05:50:10 -0800 (PST) (envelope-from gnats) Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id B491C37B416 for ; Thu, 15 Nov 2001 05:48:23 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id IAA43064; Thu, 15 Nov 2001 08:48:23 -0500 (EST) (envelope-from mwlucas) Message-Id: <200111151348.IAA43064@blackhelicopters.org> Date: Thu, 15 Nov 2001 08:48:23 -0500 (EST) From: mwlucas@blackhelicopters.org Reply-To: mwlucas@blackhelicopters.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: docs/32004: FAQ: new error message Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32004 >Category: docs >Synopsis: FAQ: new error message >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: Thu Nov 15 05:50:05 PST 2001 >Closed-Date: >Last-Modified: >Originator: Michael Lucas >Release: FreeBSD 3.5-STABLE i386 >Organization: None >Environment: recent -doc tree >Description: Following a discussion on -questions, with tcpdump output, I believe this is the correct answer to this question. >How-To-Repeat: >Fix: *** en_US.ISO8859-1/books/faq/book.sgml-dist Wed Nov 14 14:12:52 2001 --- en_US.ISO8859-1/books/faq/book.sgml Thu Nov 15 08:29:39 2001 *************** *** 9265,9270 **** --- 9265,9287 ---- discouraged for the reasons listed above. + + + + What are these arp: unknown hardware + address format error messages? + + + + This means that some device on your local Ethernet is + using a MAC address in a format that FreeBSD does not + recognize. This is probably caused by someone + experimenting with an Ethernet card somewhere else on the + network. You'll see this most commonly on cable modem + networks. It is harmless, and should not affect the + performance of your FreeBSD machine. + + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 6: 6:18 2001 Delivered-To: freebsd-doc@freebsd.org Received: from columbus.cris.net (ns.cris.net [212.110.128.65]) by hub.freebsd.org (Postfix) with ESMTP id 6146F37B405 for ; Thu, 15 Nov 2001 06:06:12 -0800 (PST) Received: from ark.cris.net (ns2.cris.net [212.110.128.68]) by columbus.cris.net (8.9.3/8.9.3) with ESMTP id QAA62267; Thu, 15 Nov 2001 16:06:04 +0200 (EET) Received: (from phantom@localhost) by ark.cris.net (8.11.1/8.11.1) id fAFE5Wk61697; Thu, 15 Nov 2001 16:05:32 +0200 (EET) Date: Thu, 15 Nov 2001 16:05:32 +0200 From: Alexey Zelkin To: Hiroki Sato Cc: horcicka@FreeBSD.cz, freebsd-doc@FreeBSD.ORG Subject: Re: Why TIDY can never work correctly with ISO-8859-2 and others Message-ID: <20011115160532.A61351@ark.cris.net> References: <20011115105650.W57038-100000@dual.ms.mff.cuni.cz> <20011115.214017.71143189.hrs@sekine00.ee.noda.sut.ac.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20011115.214017.71143189.hrs@sekine00.ee.noda.sut.ac.jp>; from hrs@eos.ocn.ne.jp on Thu, Nov 15, 2001 at 09:40:17PM +0900 X-Operating-System: FreeBSD 3.5-STABLE i386 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hi, On Thu, Nov 15, 2001 at 09:40:17PM +0900, Hiroki Sato wrote: > horcicka> And if you use char-encoding: raw - character entities with values above 255 > horcicka> are not printed as entities - this is really bad in 8-bit encodings. > > Yes, Japanese docs also suffer from it. The input routine of tidy expands > any entities first, even if -raw flag is specified. > > horcicka> In my opinion Tidy cannot be used for encodings it does not natively support > horcicka> (i.e. for Russian and Czech (- still not in main CVS) translations of pages > horcicka> and docs). > > I think so, too. > > As a workaround, we can apply a patch and use the modified > version of tidy that can suppress to interpret given entities > as entities themselves, but I do not know if it will be a good solution. Most noticeable problem of -raw case is converting   to character with code 160. As enough workaround for Russian translation we've used -latin1 case, but anyway expanding of all entities except   and & is bad. I am working on patch for tidy(1) to add new option which should supress all entity -> character recoding. Hope it should be enough. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 7:43:31 2001 Delivered-To: freebsd-doc@freebsd.org Received: from bazooka.trit.org (bazooka.trit.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id A998037B417 for ; Thu, 15 Nov 2001 07:43:28 -0800 (PST) Received: by bazooka.trit.org (Postfix, from userid 1000) id 7054F3E84; Thu, 15 Nov 2001 15:43:27 +0000 (UTC) Received: from bazooka (localhost [127.0.0.1]) by bazooka.trit.org (Postfix) with ESMTP id 6EF663C134; Thu, 15 Nov 2001 15:43:27 +0000 (UTC) To: Michael Lucas Cc: freebsd-doc@freebsd.org Subject: Re: docs/31990: new FAQ: imaging a data CD In-Reply-To: <200111142010.fAEKA3W57453@freefall.freebsd.org>; from mwlucas@blackhelicopters.org on "Wed, 14 Nov 2001 12:10:03 -0800 (PST)" Date: Thu, 15 Nov 2001 15:43:22 +0000 From: Dima Dorfman Message-Id: <20011115154327.7054F3E84@bazooka.trit.org> Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Michael Lucas wrote: > *** en_US.ISO8859-1/books/faq/book.sgml-dist Wed Nov 14 14:12:52 2001 > --- en_US.ISO8859-1/books/faq/book.sgml Wed Nov 14 14:32:50 2001 > *************** > *** 5714,5719 **** > --- 5714,5744 ---- > > > > + > + How can I create an image of a data CD? > + > + > + > + If you want to make a bit-by-bit copy of a CD (so you > + can, for example, duplicate it with a CD burner), use > + &man.dd.1;. The example given here assumes that you have > + a IDE CDROM device that shows up as > + acd0. If you have a SCSI CD > + drive, you will want to substitute the correct device > + name. > + > + &prompt.user; dd if=/dev/acd0c > + of=file.iso bs=2048 Did you try to look at the rendered output for this? It looks really, really ugly with the line break there. , like , is whitespace-sensitive. > + > + This method does not work with audio CDs. > + > + For more on working with CDROMs, see + URL="../handbook/creating-cds.html">this chapter I think naming the chapter would help, since it's possible to render the FAQ in formats there hyperlinks don't work (e.g., txt, pdf). In those cases, this reference is absolutely useless. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 8:10:28 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E45BF37B448 for ; Thu, 15 Nov 2001 08:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAFGA2B09755; Thu, 15 Nov 2001 08:10:02 -0800 (PST) (envelope-from gnats) Received: from Daffy.timing.com (daffy.timing.com [206.168.13.218]) by hub.freebsd.org (Postfix) with ESMTP id 97ECF37B405 for ; Thu, 15 Nov 2001 08:02:44 -0800 (PST) Received: from brain.timing.com (brain.timing.com [206.168.13.195]) by Daffy.timing.com (8.11.3/8.11.3) with ESMTP id fAFG2ii66673 for ; Thu, 15 Nov 2001 09:02:44 -0700 (MST) (envelope-from jhein@timing.com) Received: (from jhein@localhost) by brain.timing.com (8.11.3/8.11.3) id fAFG2iQ50043; Thu, 15 Nov 2001 09:02:44 -0700 (MST) (envelope-from jhein) Message-Id: <200111151602.fAFG2iQ50043@brain.timing.com> Date: Thu, 15 Nov 2001 09:02:44 -0700 (MST) From: jhein@timing.com Reply-To: jhein@timing.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/32008: dhclient-script(8) error Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32008 >Category: docs >Synopsis: wrong path for dhclient.conf in dhclient-script(8) >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 Nov 15 08:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: John Hein >Release: both -STABLE & -CURRENT >Organization: Timing Solutions Corp. >Environment: -STABLE & -CURRENT System: FreeBSD brain.timing.com 4.3-RELEASE-p14-TSC FreeBSD 4.3-RELEASE-p14-TSC #1: Tue Aug 28 13:44:14 MDT 2001 imp@brain.timing.com:/uv/staging/imp/FreeBSD-tsc-4/sys/compile/BRAIN i386 >Description: Since obrien updated the paths in the dhclient-script(8) man page (src/contrib/isc-dhcp/client/dhclient-script.8, rev 1.2, 1999/02/10 21:02:32), the path to dhclient.conf has been wrong. It refers to /sbin/dhclient.conf but should be /etc/dhclient.conf. Or it should just not refer to a path at all except the man page for dhclient(8) since it can be overridden with the -cf switch anyway. >How-To-Repeat: man dhclient-script search for dhclient.conf >Fix: perl -pi -e 's,/sbin/dhclient.conf,/etc/dhclient.conf,g' dhclient-script.8 or even better (since you can invoke dhclient with -cf to override the default location)... perl -pi -e 's,/sbin/dhclient.conf,dhclient.conf,g' dhclient-script.8 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 9:10: 4 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C5CE437B405 for ; Thu, 15 Nov 2001 09:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAFHA1q21192; Thu, 15 Nov 2001 09:10:01 -0800 (PST) (envelope-from gnats) Date: Thu, 15 Nov 2001 09:10:01 -0800 (PST) Message-Id: <200111151710.fAFHA1q21192@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: "Bruce A. Mah" Subject: Re: docs/32002: new FAQ: what hardware to buy Reply-To: "Bruce A. Mah" Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/32002; it has been noted by GNATS. From: "Bruce A. Mah" To: mwlucas@blackhelicopters.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: docs/32002: new FAQ: what hardware to buy Date: Thu, 15 Nov 2001 09:08:13 -0800 If memory serves me right, mwlucas@blackhelicopters.org wrote: > + This is discussed continually on the FreeBSD mailing > + lists. Since hardware changes so quickly, however, we > + expect this. We still strongly > + recommend that you search the mailing list > + > + archives before asking about the latest and > + greatest hardware. Chances are a discussion about the > + type of hardware you're looking for took place just last > + week. Hardware list in the release documentation? Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 9:30:15 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E79837B41A for ; Thu, 15 Nov 2001 09:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAFHU1W23651; Thu, 15 Nov 2001 09:30:01 -0800 (PST) (envelope-from gnats) Date: Thu, 15 Nov 2001 09:30:01 -0800 (PST) Message-Id: <200111151730.fAFHU1W23651@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: Michael Lucas Subject: Re: docs/32002: new FAQ: what hardware to buy Reply-To: Michael Lucas Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/32002; it has been noted by GNATS. From: Michael Lucas To: "Bruce A. Mah" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: docs/32002: new FAQ: what hardware to buy Date: Thu, 15 Nov 2001 12:28:24 -0500 On Thu, Nov 15, 2001 at 09:08:13AM -0800, Bruce A. Mah wrote: > If memory serves me right, mwlucas@blackhelicopters.org wrote: > > > + This is discussed continually on the FreeBSD mailing > > + lists. Since hardware changes so quickly, however, we > > + expect this. We still strongly > > + recommend that you search the mailing list > > + > > + archives before asking about the latest and > > + greatest hardware. Chances are a discussion about the > > + type of hardware you're looking for took place just last > > + week. > > Hardware list in the release documentation? I was kind of hoping docs/30202 would be committed or rejected, which would make this easier to be more correct. -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 9:45:47 2001 Delivered-To: freebsd-doc@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 2E48037B405 for ; Thu, 15 Nov 2001 09:45:43 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id MAA44068; Thu, 15 Nov 2001 12:45:41 -0500 (EST) (envelope-from mwlucas) Date: Thu, 15 Nov 2001 12:45:41 -0500 From: Michael Lucas To: Dima Dorfman Cc: freebsd-doc@freebsd.org Subject: Re: docs/31990: new FAQ: imaging a data CD Message-ID: <20011115124541.A44037@blackhelicopters.org> References: <200111142010.fAEKA3W57453@freefall.freebsd.org> <20011115154327.7054F3E84@bazooka.trit.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20011115154327.7054F3E84@bazooka.trit.org>; from dima@trit.org on Thu, Nov 15, 2001 at 03:43:22PM +0000 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Nov 15, 2001 at 03:43:22PM +0000, Dima Dorfman wrote: > Did you try to look at the rendered output for this? It looks really, > really ugly with the line break there. , like > , is whitespace-sensitive. Ack! No, I just make lint'd it. > > + For more on working with CDROMs, see > + URL="../handbook/creating-cds.html">this chapter > > I think naming the chapter would help, since it's possible to render > the FAQ in formats there hyperlinks don't work (e.g., txt, pdf). In > those cases, this reference is absolutely useless. True. How's this? -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=cdimage *** en_US.ISO8859-1/books/faq/book.sgml-dist Wed Nov 14 14:12:52 2001 --- en_US.ISO8859-1/books/faq/book.sgml Thu Nov 15 12:41:33 2001 *************** *** 5714,5719 **** --- 5714,5743 ---- + + How can I create an image of a data CD? + + + + If you want to make a bit-by-bit copy of a CD (so you + can, for example, duplicate it with a CD burner), use + &man.dd.1;. The example given here assumes that you have + a IDE CDROM device that shows up as + acd0. If you have a SCSI CD + drive, you will want to substitute the correct device + name. + + &prompt.user; dd if=/dev/cdrom of=file.iso bs=2048 + + This method does not work with audio CDs. + + For more on working with CDROMs, see the Creating and Using + Optical Media chapter in the Handbook. + + + + How can I use the NT loader to boot FreeBSD? --XsQoSWH+UP9D9v3l-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 11:40:12 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9856D37B417 for ; Thu, 15 Nov 2001 11:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAFJe1547755; Thu, 15 Nov 2001 11:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD36537B416 for ; Thu, 15 Nov 2001 11:38:02 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAFJc2j47488; Thu, 15 Nov 2001 11:38:02 -0800 (PST) (envelope-from nobody) Message-Id: <200111151938.fAFJc2j47488@freefall.freebsd.org> Date: Thu, 15 Nov 2001 11:38:02 -0800 (PST) From: wolfram schneider To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: docs/32011: no description for BSD Vault on page http://www.freebsd.org/news/ Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32011 >Category: docs >Synopsis: no description for BSD Vault on page http://www.freebsd.org/news/ >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 Nov 15 11:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: wolfram schneider >Release: >Organization: >Environment: >Description: On the page http://www.freebsd.org/news/ there is no description for the item BSD Vault. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 11:55: 5 2001 Delivered-To: freebsd-doc@freebsd.org Received: from columbus.cris.net (columbus.cris.net [212.110.128.65]) by hub.freebsd.org (Postfix) with ESMTP id EA8A137B420; Thu, 15 Nov 2001 11:53:38 -0800 (PST) Received: from ark.cris.net (ns2.cris.net [212.110.128.68]) by columbus.cris.net (8.9.3/8.9.3) with ESMTP id VAA14562; Thu, 15 Nov 2001 21:53:16 +0200 (EET) Received: (from phantom@localhost) by ark.cris.net (8.11.1/8.11.1) id fAFJqiR08270; Thu, 15 Nov 2001 21:52:44 +0200 (EET) Date: Thu, 15 Nov 2001 21:52:44 +0200 From: Alexey Zelkin To: Hiroki Sato Cc: horcicka@FreeBSD.cz, freebsd-doc@FreeBSD.ORG, nik@FreeBSD.ORG, saken@hotel.rmta.org Subject: Re: Why TIDY can never work correctly with ISO-8859-2 and others Message-ID: <20011115215244.A7285@ark.cris.net> References: <20011115105650.W57038-100000@dual.ms.mff.cuni.cz> <20011115.214017.71143189.hrs@sekine00.ee.noda.sut.ac.jp> <20011115160532.A61351@ark.cris.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="OgqxwSJOaUobr8KG" X-Mailer: Mutt 1.0i In-Reply-To: <20011115160532.A61351@ark.cris.net>; from phantom@FreeBSD.ORG on Thu, Nov 15, 2001 at 04:05:32PM +0200 X-Operating-System: FreeBSD 3.5-STABLE i386 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --OgqxwSJOaUobr8KG Content-Type: text/plain; charset=us-ascii [ Cc'ed to maintainer of ports/www/tidy ] hi, Attached patch does a job. At least my simple tests were passed successfully. I just added new option '-preserve' to tidy. This option disables translation of characters entities to characters before processing. As "side effect" we have all entities saved correctly in output file. I would like to have feedback on this one. At least for Russian Doc Project it should do a good job and I'd like to see it commited. On Thu, Nov 15, 2001 at 04:05:32PM +0200, Alexey Zelkin wrote: > hi, > > On Thu, Nov 15, 2001 at 09:40:17PM +0900, Hiroki Sato wrote: > > > horcicka> And if you use char-encoding: raw - character entities with values above 255 > > horcicka> are not printed as entities - this is really bad in 8-bit encodings. > > > > Yes, Japanese docs also suffer from it. The input routine of tidy expands > > any entities first, even if -raw flag is specified. > > > > horcicka> In my opinion Tidy cannot be used for encodings it does not natively support > > horcicka> (i.e. for Russian and Czech (- still not in main CVS) translations of pages > > horcicka> and docs). > > > > I think so, too. > > > > As a workaround, we can apply a patch and use the modified > > version of tidy that can suppress to interpret given entities > > as entities themselves, but I do not know if it will be a good solution. > > Most noticeable problem of -raw case > is converting   to character with code 160. As enough > workaround for Russian translation we've used -latin1 case, but > anyway expanding of all entities except   and & is bad. > > I am working on patch for tidy(1) to add new option which should > supress all entity -> character recoding. Hope it should be enough. --OgqxwSJOaUobr8KG Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="tidy.preserve.entities.patch" diff -u work/tidy4aug00/config.c tidy4aug00.patched/config.c --- work/tidy4aug00/config.c Fri Aug 4 19:21:05 2000 +++ tidy4aug00.patched/config.c Thu Nov 15 21:55:25 2001 @@ -94,6 +94,7 @@ Bool TidyMark = yes; /* add meta element indicating tidied doc */ Bool Emacs = no; /* if true format error output for GNU Emacs */ Bool LiteralAttribs = no; /* if true attributes may use newlines */ +Bool PreserveEntities = no; /* if true don't convert entities to chars */ typedef struct _lex PLex; @@ -186,6 +187,7 @@ {"doctype", {(int *)&doctype_str}, ParseDocType}, {"fix-backslash", {(int *)&FixBackslash}, ParseBool}, {"gnu-emacs", {(int *)&Emacs}, ParseBool}, + {"preserve-entities", {(int *)&PreserveEntities}, ParseBool}, /* this must be the final entry */ {0, 0, 0} @@ -533,6 +535,12 @@ { QuoteAmpersand = yes; HideEndTags = no; + } + + /* Avoid &copy; in preserve-entities case */ + if (PreserveEntities) + { + QuoteAmpersand = no; } } diff -u work/tidy4aug00/html.h tidy4aug00.patched/html.h --- work/tidy4aug00/html.h Fri Aug 4 19:21:05 2000 +++ tidy4aug00.patched/html.h Thu Nov 15 21:55:26 2001 @@ -758,6 +758,7 @@ extern Bool Word2000; extern Bool Emacs; /* sasdjb 01May00 GNU Emacs error output format */ extern Bool LiteralAttribs; +extern Bool PreserveEntities; /* Parser methods for tags */ diff -u work/tidy4aug00/lexer.c tidy4aug00.patched/lexer.c --- work/tidy4aug00/lexer.c Fri Aug 4 19:21:05 2000 +++ tidy4aug00.patched/lexer.c Thu Nov 15 21:55:26 2001 @@ -1517,8 +1517,10 @@ continue; } - else if (c == '&' && mode != IgnoreMarkup) - ParseEntity(lexer, mode); + else if (c == '&' && mode != IgnoreMarkup + && !PreserveEntities) { + ParseEntity(lexer, mode); + } /* this is needed to avoid trimming trailing whitespace */ if (mode == IgnoreWhitespace) @@ -2624,7 +2626,7 @@ seen_gt = yes; } - if (c == '&') + if (c == '&') /* XXX: possibly need support for PreserveEntities */ { AddCharToLexer(lexer, c); ParseEntity(lexer, null); diff -u work/tidy4aug00/localize.c tidy4aug00.patched/localize.c --- work/tidy4aug00/localize.c Fri Aug 4 19:21:05 2000 +++ tidy4aug00.patched/localize.c Thu Nov 15 21:55:26 2001 @@ -736,6 +736,7 @@ tidy_out(out, " -xml use this when input is wellformed xml\n"); tidy_out(out, " -asxml to convert html to wellformed xml\n"); tidy_out(out, " -slides to burst into slides on h2 elements\n"); + tidy_out(out, " -preserve to preserve entities as is in source file\n"); tidy_out(out, "\n"); tidy_out(out, "Character encodings\n"); diff -u work/tidy4aug00/man_page.txt tidy4aug00.patched/man_page.txt --- work/tidy4aug00/man_page.txt Fri Aug 4 19:21:05 2000 +++ tidy4aug00.patched/man_page.txt Thu Nov 15 21:55:26 2001 @@ -12,6 +12,7 @@ .IR column ] .RB [ -upper ] .RB [ -clean ] +.RB [ -preserve ] .RB [ -raw | .B -ascii @@ -106,6 +107,9 @@ .TP .B -slides Burst into slides on

elements. +.TP +.B -preserve +Preserve source file entities as is. .TP .BR -help ", " -h List command-line options. diff -u work/tidy4aug00/tidy.c tidy4aug00.patched/tidy.c --- work/tidy4aug00/tidy.c Fri Aug 4 19:21:05 2000 +++ tidy4aug00.patched/tidy.c Thu Nov 15 21:55:26 2001 @@ -785,6 +785,8 @@ Quiet = yes; else if (strcmp(arg, "slides") == 0) BurstSlides = yes; + else if (strcmp(arg, "preserve") == 0) + PreserveEntities = yes; else if (strcmp(arg, "help") == 0 || argv[1][1] == '?'|| argv[1][1] == 'h') { --OgqxwSJOaUobr8KG-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 12:59:18 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D65F37B41A; Thu, 15 Nov 2001 12:59:16 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAFKnUs61309; Thu, 15 Nov 2001 12:49:30 -0800 (PST) (envelope-from bmah) Date: Thu, 15 Nov 2001 12:49:30 -0800 (PST) From: Message-Id: <200111152049.fAFKnUs61309@freefall.freebsd.org> To: bmah@FreeBSD.org, freebsd-doc@freebsd.org, bmah@FreeBSD.org Subject: Re: docs/31995: "libcrypt" Typo in 4.4R Release Notes Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: "libcrypt" Typo in 4.4R Release Notes Responsible-Changed-From-To: freebsd-doc->bmah Responsible-Changed-By: bmah Responsible-Changed-When: Thu Nov 15 12:49:14 PST 2001 Responsible-Changed-Why: I'll fix this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31995 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 14: 2:59 2001 Delivered-To: freebsd-doc@freebsd.org Received: from mail-2.zoominternet.net (mail-2.zoominternet.net [63.67.120.5]) by hub.freebsd.org (Postfix) with SMTP id 1DA3237B405 for ; Thu, 15 Nov 2001 14:02:54 -0800 (PST) Received: (qmail 13774 invoked from network); 15 Nov 2001 21:55:54 -0000 Received: from unknown (HELO oemcomputer) ([208.236.36.234]) (envelope-sender ) by mail-2.zoominternet.net (qmail-ldap-1.03) with SMTP for ; 15 Nov 2001 21:55:54 -0000 From: darklogik@zoominternet.net To: freebsd-doc@FreeBSD.ORG Date: Thu, 15 Nov 2001 17:01:30 -0800 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: subscribe Message-ID: <3BF3F4EA.31847.2598E35F@localhost> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org subscribe if this don't work, please send some kinda reply ;) Tom Rhodes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 14:17:38 2001 Delivered-To: freebsd-doc@freebsd.org Received: from mailhost.kconline.com (mailhost.kconline.com [216.241.132.12]) by hub.freebsd.org (Postfix) with ESMTP id 9768537B405 for ; Thu, 15 Nov 2001 14:17:36 -0800 (PST) Received: from mailhost.kconline.com (localhost.kconline.com [127.0.0.1]) by mailhost.kconline.com (8.12.1/8.12.1) with ESMTP id fAFMHZa2017108; Thu, 15 Nov 2001 17:17:35 -0500 (EST)?g (envelope-from lamar@ns.kconline.com)œ Received: from localhost (lamar@localhost) by mailhost.kconline.com (8.12.1/8.12.1/Submit) with ESMTP id fAFMHYcU017104; Thu, 15 Nov 2001 17:17:34 -0500 (EST)?g (envelope-from lamar@ns.kconline.com) X-Authentication-Warning: mailhost.kconline.com: lamar owned process doing -bs Date: Thu, 15 Nov 2001 17:17:34 -0500 (EST) From: Lamar Peugh To: Cc: Subject: Re: subscribe In-Reply-To: <3BF3F4EA.31847.2598E35F@localhost> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, 15 Nov 2001 darklogik@zoominternet.net wrote: > subscribe > > if this don't work, please send some kinda reply ;) > > > Tom Rhodes > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-doc" in the body of the message http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/eresources.html See section C.1.2 -- Lamar Peugh KC Online System Administration - sysadmin@kconline.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 14:58: 3 2001 Delivered-To: freebsd-doc@freebsd.org Received: from mail-2.zoominternet.net (mail-2.zoominternet.net [63.67.120.5]) by hub.freebsd.org (Postfix) with SMTP id ABADB37B416 for ; Thu, 15 Nov 2001 14:58:00 -0800 (PST) Received: (qmail 25079 invoked from network); 15 Nov 2001 22:57:50 -0000 Received: from unknown (HELO oemcomputer) ([208.236.36.234]) (envelope-sender ) by mail-2.zoominternet.net (qmail-ldap-1.03) with SMTP for ; 15 Nov 2001 22:57:50 -0000 From: darklogik@zoominternet.net To: doc@freebsd.org Date: Thu, 15 Nov 2001 18:03:17 -0800 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Kernel man pages/doc Message-ID: <3BF40365.14752.25D17684@localhost> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, i'm currently interested in contributing to the kernel documentation (driver functions etc), and a few other projects as well. Recently getting back into bsd and noticed that parts of the kernel docs were either out of date, were not informative enough, other and I wish to contribute my time and knowledge. Please let me know and thanks alot Tom Rhodes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 15:40: 6 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E10DF37B416 for ; Thu, 15 Nov 2001 15:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAFNe1K90340; Thu, 15 Nov 2001 15:40:01 -0800 (PST) (envelope-from gnats) Received: from mailman.packetdesign.com (dns.packetdesign.com [65.192.41.10]) by hub.freebsd.org (Postfix) with ESMTP id DA74837B416 for ; Thu, 15 Nov 2001 15:35:36 -0800 (PST) Received: from nimitz.packetdesign.com (nimitz.packetdesign.com [192.168.0.184]) by mailman.packetdesign.com (8.11.0/8.11.0) with ESMTP id fAFNZa515882 for ; Thu, 15 Nov 2001 15:35:36 -0800 (PST) (envelope-from bmah@packetdesign.com) Received: (from bmah@localhost) by nimitz.packetdesign.com (8.11.6/8.11.6) id fAFNRwB51476; Thu, 15 Nov 2001 15:27:58 -0800 (PST) (envelope-from bmah) Message-Id: <200111152327.fAFNRwB51476@nimitz.packetdesign.com> Date: Thu, 15 Nov 2001 15:27:58 -0800 (PST) From: "Bruce A. Mah" Reply-To: "Bruce A. Mah" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/32020: loader.8 manpage missing tunables Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32020 >Category: docs >Synopsis: loader.8 manpage missing tunables >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 Nov 15 15:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Bruce A. Mah >Release: FreeBSD 4.4-STABLE i386 >Organization: Packet Design >Environment: System: FreeBSD nimitz.packetdesign.com 4.4-STABLE FreeBSD 4.4-STABLE #11: Wed Nov 14 12:01:02 PST 2001 root@nimitz.packetdesign.com:/usr/obj/usr/src/sys/NIMITZ i386 >Description: loader(8) manpage has an incomplete list of loader tunables. >How-To-Repeat: % man 8 loader % cd /usr/src/sys/kern % grep TUNABLE * >Fix: Fix it. There's some notes in the release notes that will help, and I am guessing that LINT might also have some remarks. I don't have time to work on this now, but it might be a good project for somebody else. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 19:10: 8 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F334F37B417 for ; Thu, 15 Nov 2001 19:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAG3A0P39360; Thu, 15 Nov 2001 19:10:00 -0800 (PST) (envelope-from gnats) Received: from starbug.ugh.net.au (starbug.ugh.net.au [203.31.238.37]) by hub.freebsd.org (Postfix) with ESMTP id D1C4037B417 for ; Thu, 15 Nov 2001 19:05:32 -0800 (PST) Received: by starbug.ugh.net.au (Postfix, from userid 1000) id EFB8CA842; Fri, 16 Nov 2001 14:05:29 +1100 (EST) Message-Id: <20011116030529.EFB8CA842@starbug.ugh.net.au> Date: Fri, 16 Nov 2001 14:05:29 +1100 (EST) From: Andrew Reply-To: Andrew To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/32028: Missing link from readdir_r.3 to directory.3 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32028 >Category: docs >Synopsis: Missing link from readdir_r.3 to directory.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: Thu Nov 15 19:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: FreeBSD 4.4-STABLE i386 >Organization: UgH! >Environment: System: FreeBSD starbug.ugh.net.au 4.4-STABLE FreeBSD 4.4-STABLE #3: Sun Oct 7 21:30:09 EST 2001 andrew@starbug.ugh.net.au:/usr/obj/usr/src/sys/STARBUG i386 >Description: No link is created from readdir_r.3 to directory.3 hence man readdir_r fails. >How-To-Repeat: >Fix: --- /usr/src/lib/libc/gen/Makefile.inc Fri Jul 13 13:20:34 2001 +++ Makefile.inc Fri Nov 16 13:00:06 2001 @@ -62,8 +62,8 @@ crypt.3 setkey.3 MLINKS+=ctermid.3 ctermid_r.3 MLINKS+=directory.3 closedir.3 directory.3 dirfd.3 directory.3 opendir.3 \ - directory.3 readdir.3 directory.3 rewinddir.3 directory.3 seekdir.3 \ - directory.3 telldir.3 + directory.3 readdir.3 directory.3 readdir_r.3 directory.3 rewinddir.3 \ + directory.3 seekdir.3 directory.3 telldir.3 MLINKS+=dlopen.3 dlclose.3 dlopen.3 dlerror.3 dlopen.3 dlsym.3 MLINKS+=err.3 err_set_exit.3 err.3 err_set_file.3 err.3 errc.3 err.3 errx.3 \ err.3 verr.3 err.3 verrc.3 err.3 verrx.3 err.3 vwarn.3 err.3 vwarnc.3 \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 20: 9:23 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 483F237B41D; Thu, 15 Nov 2001 20:09:17 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAG3xan45516; Thu, 15 Nov 2001 19:59:36 -0800 (PST) (envelope-from bmah) Date: Thu, 15 Nov 2001 19:59:36 -0800 (PST) From: Message-Id: <200111160359.fAG3xan45516@freefall.freebsd.org> To: trevor@freebsd.org, bmah@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31958: add "FreeBSD Versus Linux Revisited" article to press page Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: add "FreeBSD Versus Linux Revisited" article to press page State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Thu Nov 15 19:58:56 PST 2001 State-Changed-Why: Committed...thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31958 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 20:28:54 2001 Delivered-To: freebsd-doc@freebsd.org Received: from snipe.prod.itd.earthlink.net (snipe.mail.pas.earthlink.net [207.217.120.62]) by hub.freebsd.org (Postfix) with ESMTP id 8252137B405; Thu, 15 Nov 2001 20:28:49 -0800 (PST) Received: from sdn-ar-007dcwashp293.dialsprint.net ([63.178.90.159] helo=moo.holy.cow) by snipe.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 164acS-0001l3-00; Thu, 15 Nov 2001 20:28:49 -0800 Received: by moo.holy.cow (Postfix, from userid 1001) id 617E650B85; Thu, 15 Nov 2001 23:30:00 -0500 (EST) Date: Thu, 15 Nov 2001 23:30:00 -0500 From: parv To: phantom@FreeBSD.org Cc: freebsd-doc@freebsd.org Subject: Re: docs/31972: 'make clean' failure in www Message-ID: <20011115233000.A39947@moo.holy.cow> Mail-Followup-To: phantom@FreeBSD.org, freebsd-doc@freebsd.org References: <200111141835.fAEIZtX36113@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200111141835.fAEIZtX36113@freefall.freebsd.org>; from phantom@FreeBSD.org on Wed, Nov 14, 2001 at 10:35:55AM -0800 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org in message <200111141835.fAEIZtX36113@freefall.freebsd.org>, wrote phantom@FreeBSD.org thusly... > > Synopsis: 'make clean' failure in www > > State-Changed-From-To: open->closed > State-Changed-By: phantom > State-Changed-When: Wed Nov 14 10:35:28 PST 2001 > State-Changed-Why: > Fixed in rev 1.75 of www/en/Makefile > > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31972 mucho gracias. -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Nov 15 20:55:29 2001 Delivered-To: freebsd-doc@freebsd.org Received: from postal.netaxs.com (postal.netaxs.com [207.8.186.39]) by hub.freebsd.org (Postfix) with ESMTP id 23C1337B405 for ; Thu, 15 Nov 2001 20:55:26 -0800 (PST) Received: from alum.mit.edu (root@unix5.netaxs.com [207.8.186.7]) by postal.netaxs.com (8.12.0.Beta7/8.12.0.Beta7) with ESMTP id fAG4tN1G016513 for ; Thu, 15 Nov 2001 23:55:24 -0500 (EST) Message-ID: <3BF49C3B.BE7A6D6F@alum.mit.edu> Date: Thu, 15 Nov 2001 23:55:23 -0500 From: Jed Clear Organization: Dis X-Mailer: Mozilla 4.78 [en] (Win98; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: freebsd-doc@FreeBSD.ORG Subject: WWW Ports Index suggestion Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msAE7C411AFA1F2FCD72FEE75E" Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------msAE7C411AFA1F2FCD72FEE75E Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Pages like http://www.freebsd.org/ports/www.html are getting a bit unwieldy. (Is this what is meant by "an embarrassment of riches"?) Suggest an abbreviated list page that has port name and short description on one line, linked to an appropriate anchor on the existing list. Another alternative would be to create sub-catagories like was done for X11. Maybe both. There are a few other candidates like Devel (666?!?!) and Perl. -Jed --------------msAE7C411AFA1F2FCD72FEE75E Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIKTAYJKoZIhvcNAQcCoIIKPTCCCjkCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC B9gwggSiMIIEC6ADAgECAhANCfHmfDVfAFaGwfXXPggrMA0GCSqGSIb3DQEBAgUAMIHMMRcw FQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29y azFGMEQGA1UECxM9d3d3LnZlcmlzaWduLmNvbS9yZXBvc2l0b3J5L1JQQSBJbmNvcnAuIEJ5 IFJlZi4sTElBQi5MVEQoYyk5ODFIMEYGA1UEAxM/VmVyaVNpZ24gQ2xhc3MgMSBDQSBJbmRp dmlkdWFsIFN1YnNjcmliZXItUGVyc29uYSBOb3QgVmFsaWRhdGVkMB4XDTAxMDgyMjAwMDAw MFoXDTAyMDgyNTIzNTk1OVowggEUMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UE CxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazFGMEQGA1UECxM9d3d3LnZlcmlzaWduLmNvbS9y ZXBvc2l0b3J5L1JQQSBJbmNvcnAuIGJ5IFJlZi4sTElBQi5MVEQoYyk5ODEeMBwGA1UECxMV UGVyc29uYSBOb3QgVmFsaWRhdGVkMTMwMQYDVQQLEypEaWdpdGFsIElEIENsYXNzIDEgLSBO ZXRzY2FwZSBGdWxsIFNlcnZpY2UxGDAWBgNVBAMUD0Vkd2FyZCBKLiBDbGVhcjEhMB8GCSqG SIb3DQEJARYSY2xlYXJAYWx1bS5taXQuZWR1MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB gQDJh0mYUAL5prrBwwyNeNSM3K/Y+EdiTwTcPBAIh6BMilZdp8uW5fWVAxejB3395dNdZ4yB O/IRQnQl8EsGehgcwtsiL6FAtV87rgRSVPetAhJ2Aby3MKRugeARsrVFK2jz/806KG/nYy6c XGTl2jgm/5/Nf2ZjXFeR01UEEn6NEQIDAQABo4IBODCCATQwCQYDVR0TBAIwADCBrAYDVR0g BIGkMIGhMIGeBgtghkgBhvhFAQcBATCBjjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cudmVy aXNpZ24uY29tL0NQUzBiBggrBgEFBQcCAjBWMBUWDlZlcmlTaWduLCBJbmMuMAMCAQEaPVZl cmlTaWduJ3MgQ1BTIGluY29ycC4gYnkgcmVmZXJlbmNlIGxpYWIuIGx0ZC4gKGMpOTcgVmVy aVNpZ24wEQYJYIZIAYb4QgEBBAQDAgeAMDAGCmCGSAGG+EUBBgcEIhYgN2Q4NGVmYWNlZWFm MTg1NzFmNzFjY2VjMWE3YmMwMzAwMwYDVR0fBCwwKjAooCagJIYiaHR0cDovL2NybC52ZXJp c2lnbi5jb20vY2xhc3MxLmNybDANBgkqhkiG9w0BAQIFAAOBgQBpcOzZaGvIomt2JSTbg9M0 T+UxxRAIQ0voKRRiAd65bsYFHH6WspfMxJ3JWXjJVfdW0YfgQDNjRXsQ/vN6P1PEz/ZELk/W 55LZuso8pTxSUuZfE8YNrUzfH4KD01nMHLsUmLBeaJwjEPMAuIIgcQNQ9wxBakRUZgx/xvyz azYKBDCCAy4wggKXoAMCAQICEQDSdi6NFAw9fbKoJV2v7g11MA0GCSqGSIb3DQEBAgUAMF8x CzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE3MDUGA1UECxMuQ2xhc3Mg MSBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw05ODA1MTIwMDAw MDBaFw0wODA1MTIyMzU5NTlaMIHMMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UE CxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazFGMEQGA1UECxM9d3d3LnZlcmlzaWduLmNvbS9y ZXBvc2l0b3J5L1JQQSBJbmNvcnAuIEJ5IFJlZi4sTElBQi5MVEQoYyk5ODFIMEYGA1UEAxM/ VmVyaVNpZ24gQ2xhc3MgMSBDQSBJbmRpdmlkdWFsIFN1YnNjcmliZXItUGVyc29uYSBOb3Qg VmFsaWRhdGVkMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7WkSKBBa7Vf0DeootlE8V eDa4DUqyb5xUv7zodyqdufBou5XZMUFweoFLuUgTVi3HCOGEQqvAopKrRFyqQvCCDgLpL/vC O7u+yScKXbawNkIztW5UiE+HSr8Z2vkV6A+HthzjzMaajn9qJJLj/OBluqexfu/J2zdqyErI CQbkmQIDAQABo3wwejARBglghkgBhvhCAQEEBAMCAQYwRwYDVR0gBEAwPjA8BgtghkgBhvhF AQcBATAtMCsGCCsGAQUFBwIBFh93d3cudmVyaXNpZ24uY29tL3JlcG9zaXRvcnkvUlBBMA8G A1UdEwQIMAYBAf8CAQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBAgUAA4GBAIi4Nzvd2pQ3 AK2qn+GBAXEekmptL/bxndPKZDjcG5gMB4ZbhRVqD7lJhaSV8Rd9Z7R/LSzdmkKewz60jqrl Cwbe8lYq+jPHvhnXU0zDvcjjF7WkSUJj7MKmFw9dWBpJPJBcVaNlIAD9GCDlX4KmsaiSxVhq wY0DPOvDzQWikK5uMYICPDCCAjgCAQEwgeEwgcwxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMu MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMUYwRAYDVQQLEz13d3cudmVyaXNp Z24uY29tL3JlcG9zaXRvcnkvUlBBIEluY29ycC4gQnkgUmVmLixMSUFCLkxURChjKTk4MUgw RgYDVQQDEz9WZXJpU2lnbiBDbGFzcyAxIENBIEluZGl2aWR1YWwgU3Vic2NyaWJlci1QZXJz b25hIE5vdCBWYWxpZGF0ZWQCEA0J8eZ8NV8AVobB9dc+CCswCQYFKw4DAhoFAKCBsTAYBgkq hkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wMTExMTYwNDU1MjNaMCMG CSqGSIb3DQEJBDEWBBREXmDa2uLhOXHvrbxyowAoiVt1fTBSBgkqhkiG9w0BCQ8xRTBDMAoG CCqGSIb3DQMHMA4GCCqGSIb3DQMCAgIAgDAHBgUrDgMCBzANBggqhkiG9w0DAgIBQDANBggq hkiG9w0DAgIBKDANBgkqhkiG9w0BAQEFAASBgLmVhN7cL6RZ+TGAHXW2OQCR7CDbgWZmd+R5 Q3UQwzrhfo9b/olR/hl0wFTkTNXrvVWcYeznTcjkMhViQ1ikl0NOp/TblJGO9QDWm4CCPj0L PdSNScta+yrtx/vHktgy4nwUUg0tU/Q98hEBRJ5mydF/Ciexo5E0lsNxC2Kba+2O --------------msAE7C411AFA1F2FCD72FEE75E-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 2:29:22 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AEE537B419; Fri, 16 Nov 2001 02:29:18 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAGAQaC10002; Fri, 16 Nov 2001 02:26:36 -0800 (PST) (envelope-from asmodai) Date: Fri, 16 Nov 2001 02:26:36 -0800 (PST) From: Message-Id: <200111161026.fAGAQaC10002@freefall.freebsd.org> To: asmodai@FreeBSD.org, asmodai@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/24869: Some text elf.5 is duplicated Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Some text elf.5 is duplicated Responsible-Changed-From-To: asmodai->freebsd-doc Responsible-Changed-By: asmodai Responsible-Changed-When: Fri Nov 16 02:26:06 PST 2001 Responsible-Changed-Why: Move back to the free pool. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24869 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 2:29:23 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C3BC937B418; Fri, 16 Nov 2001 02:29:17 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAGAQu810103; Fri, 16 Nov 2001 02:26:56 -0800 (PST) (envelope-from asmodai) Date: Fri, 16 Nov 2001 02:26:56 -0800 (PST) From: Message-Id: <200111161026.fAGAQu810103@freefall.freebsd.org> To: asmodai@FreeBSD.org, asmodai@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/22338: ugen(4) man page missing Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: ugen(4) man page missing Responsible-Changed-From-To: asmodai->freebsd-doc Responsible-Changed-By: asmodai Responsible-Changed-When: Fri Nov 16 02:26:43 PST 2001 Responsible-Changed-Why: Move back to the doc pool. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=22338 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 2:29:26 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CDE537B41A; Fri, 16 Nov 2001 02:29:18 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAGAPPj09854; Fri, 16 Nov 2001 02:25:25 -0800 (PST) (envelope-from asmodai) Date: Fri, 16 Nov 2001 02:25:25 -0800 (PST) From: Message-Id: <200111161025.fAGAPPj09854@freefall.freebsd.org> To: asmodai@FreeBSD.org, asmodai@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/25648: typos in some manpages (dependant) Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: typos in some manpages (dependant) Responsible-Changed-From-To: asmodai->freebsd-doc Responsible-Changed-By: asmodai Responsible-Changed-When: Fri Nov 16 02:24:58 PST 2001 Responsible-Changed-Why: Move back to the doc team. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25648 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 2:29:27 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6897E37B41B; Fri, 16 Nov 2001 02:29:19 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAGARGl10224; Fri, 16 Nov 2001 02:27:16 -0800 (PST) (envelope-from asmodai) Date: Fri, 16 Nov 2001 02:27:16 -0800 (PST) From: Message-Id: <200111161027.fAGARGl10224@freefall.freebsd.org> To: asmodai@FreeBSD.org, asmodai@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/21542: sigaction(2) man page is misleading Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: sigaction(2) man page is misleading Responsible-Changed-From-To: asmodai->freebsd-doc Responsible-Changed-By: asmodai Responsible-Changed-When: Fri Nov 16 02:27:03 PST 2001 Responsible-Changed-Why: Move back to the doc pool. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=21542 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 2:29:30 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4C8F37B41C; Fri, 16 Nov 2001 02:29:19 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAGARh610358; Fri, 16 Nov 2001 02:27:43 -0800 (PST) (envelope-from asmodai) Date: Fri, 16 Nov 2001 02:27:43 -0800 (PST) From: Message-Id: <200111161027.fAGARh610358@freefall.freebsd.org> To: asmodai@FreeBSD.org, asmodai@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: conf/20436: Can't make only cd0 under 4.1-STABLE Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Can't make only cd0 under 4.1-STABLE Responsible-Changed-From-To: asmodai->freebsd-doc Responsible-Changed-By: asmodai Responsible-Changed-When: Fri Nov 16 02:27:31 PST 2001 Responsible-Changed-Why: Move back to the doc pool. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=20436 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 4: 9:21 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C07237B405; Fri, 16 Nov 2001 04:09:19 -0800 (PST) Received: (from tom@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAGC8T434928; Fri, 16 Nov 2001 04:08:29 -0800 (PST) (envelope-from tom) Date: Fri, 16 Nov 2001 04:08:29 -0800 (PST) From: Message-Id: <200111161208.fAGC8T434928@freefall.freebsd.org> To: martin@sumuk.de, tom@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31899: Markup changes for chapter Security Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Markup changes for chapter Security State-Changed-From-To: analyzed->closed State-Changed-By: tom State-Changed-When: Fri Nov 16 04:07:33 PST 2001 State-Changed-Why: I've committed the third patch too. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31899 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 4:50:28 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 589AA37B418; Fri, 16 Nov 2001 04:50:25 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAGCo9t39529; Fri, 16 Nov 2001 04:50:09 -0800 (PST) (envelope-from ru) Date: Fri, 16 Nov 2001 04:50:09 -0800 (PST) From: Message-Id: <200111161250.fAGCo9t39529@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-doc@freebsd.org, ru@FreeBSD.org Subject: Re: docs/31261: man(1) doesn't say what "system' (in "-m") is. Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: man(1) doesn't say what "system' (in "-m") is. Responsible-Changed-From-To: freebsd-doc->ru Responsible-Changed-By: ru Responsible-Changed-When: Fri Nov 16 04:49:36 PST 2001 Responsible-Changed-Why: I will document this. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31261 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 7:59:20 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6746D37B405; Fri, 16 Nov 2001 07:59:18 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAGFnou91034; Fri, 16 Nov 2001 07:49:50 -0800 (PST) (envelope-from dd) Date: Fri, 16 Nov 2001 07:49:50 -0800 (PST) From: Message-Id: <200111161549.fAGFnou91034@freefall.freebsd.org> To: andrew@ugh.net.au, dd@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/32028: Missing link from readdir_r.3 to directory.3 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Missing link from readdir_r.3 to directory.3 State-Changed-From-To: open->closed State-Changed-By: dd State-Changed-When: Fri Nov 16 07:49:41 PST 2001 State-Changed-Why: Committed, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32028 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 9:39:12 2001 Delivered-To: freebsd-doc@freebsd.org Received: from mao.stokely.org (mao.stokely.org [65.84.64.228]) by hub.freebsd.org (Postfix) with ESMTP id 963A137B41C for ; Fri, 16 Nov 2001 09:38:21 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id 606C74B65D; Fri, 16 Nov 2001 09:38:20 -0800 (PST) Date: Fri, 16 Nov 2001 09:38:20 -0800 From: Murray Stokely To: darklogik@zoominternet.net Cc: doc@freebsd.org Subject: Re: Kernel man pages/doc Message-ID: <20011116093820.I27306@windriver.com> References: <3BF40365.14752.25D17684@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3BF40365.14752.25D17684@localhost>; from darklogik@zoominternet.net on Thu, Nov 15, 2001 at 06:03:17PM -0800 X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Nov 15, 2001 at 06:03:17PM -0800, darklogik@zoominternet.net wrote: > Hello, i'm currently interested in contributing to the kernel > documentation (driver functions etc), and a few other projects as > well. Recently getting back into bsd and noticed that parts of the > kernel docs were either out of date, were not informative enough, > other and I wish to contribute my time and knowledge. Please let > me know and thanks alot There are several open PRs about missing kernel man pages. We've also been working on a broad "Developer's Handbook" for FreeBSD. Your contributions would be most welcome on either of these (or anything else for that matter). - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 10:30:11 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 734E337B419 for ; Fri, 16 Nov 2001 10:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAGIU1A18625; Fri, 16 Nov 2001 10:30:01 -0800 (PST) (envelope-from gnats) Received: from mailhost1.dircon.co.uk (mailhost1.dircon.co.uk [194.112.32.65]) by hub.freebsd.org (Postfix) with ESMTP id 55A3A37B41A for ; Fri, 16 Nov 2001 10:22:59 -0800 (PST) Received: from mail.blackmans.org (dx000662.dircon.co.uk [195.157.223.19] (may be forged)) by mailhost1.dircon.co.uk (8.9.3/8.9.3) with ESMTP id SAA14124 for ; Fri, 16 Nov 2001 18:22:57 GMT Received: by mail.blackmans.org (Postfix, from userid 1001) id 6E3D7183A; Thu, 15 Nov 2001 19:26:57 +0000 (GMT) Message-Id: <20011115192657.6E3D7183A@mail.blackmans.org> Date: Thu, 15 Nov 2001 19:26:57 +0000 (GMT) From: Mark Blackman Reply-To: Mark Blackman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/32041: Add point about net.inet.tcp.portange.{first,last} sysctl tunable to tuning(7) manpage Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32041 >Category: docs >Synopsis: Add point about net.inet.tcp.portange.{first,last} sysctl tunable to tuning(7) manpage >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: Fri Nov 16 10:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mark Blackman >Release: FreeBSD 4.4-STABLE i386 >Organization: Gnomes of Zurich >Environment: System: FreeBSD maddog 4.4-STABLE FreeBSD 4.4-STABLE #124: Fri Nov 2 04:05:32 GMT 2001 root@maddog:/usr/obj/usr/src/sys/BASIC i386 >Description: tuning(7) doesn't mention the net.inet.tcp.portange.{first,last} sysctl tunables and probably ought to as at least one published benchmark failed because the benchmarkers were unaware of its existence. http://www.samag.com/documents/s=1147/sam0108q/ >How-To-Repeat: Read the man page and fail to realize that net.inet.tcp.portange.{first,last} might need adjustment. >Fix: --- tuning.7 Sat Nov 3 03:32:43 2001 +++ - Thu Nov 15 19:10:11 2001 @@ -332,6 +332,32 @@ connections. .Pp The +.Em net.inet.ip.portrange.first +and +.Em net.inet.ip.portrange.last +tunables default to 1024 and 5000, respectively. These, like many other +sysctl tunables, are designed to limit the use of kernel resources +(i.e. port number space) unless there is an explicit requirement for +more than this reasonable default. These are the port numbers +allocated to sockets which were created with a +.Xr socket 2 +call where +the port number parameter was zero. This default range of ports (3977 +in total) is likely to be insufficient for a machine running a number +of client programs of whatever description. The 'first' tunable can't +be set below 1024, but may be set higher. +The 'last' tunable will usually be the one that requires tweaking on +a machine with numerous clients (that don't make use of the IP_PORTRANGE +.Xr setsockopt 2 +option). Assuming you have enough file descriptors and your client +code uses +.Xr perror 3 , +you will see a message like "Can't assign requested address" +(EADDRNOTAVAIL) or "Resource temporarily unavailable" (EAGAIN) if this is set +too low for your application. See /usr/src/sys/netinet/in.h for more +discussion. +.Pp +The .Em kern.ipc.somaxconn sysctl limits the size of the listen queue for accepting new tcp connections. The default value of 128 is typically too low for robust handling of new >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 10:40:14 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BCB7A37B41D for ; Fri, 16 Nov 2001 10:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAGIe1k19606; Fri, 16 Nov 2001 10:40:01 -0800 (PST) (envelope-from gnats) Received: from relay3-gui.server.ntli.net (relay3-gui.server.ntli.net [194.168.4.200]) by hub.freebsd.org (Postfix) with ESMTP id 3360B37B41B; Fri, 16 Nov 2001 10:30:16 -0800 (PST) Received: from pc3-card3-0-cust122.cdf.cable.ntl.com ([62.254.251.122] helo=rhadamanth.private.submonkey.net ident=exim) by relay3-gui.server.ntli.net with esmtp (Exim 3.03 #2) id 164nkk-0006fI-00; Fri, 16 Nov 2001 18:30:14 +0000 Received: from setantae by rhadamanth.private.submonkey.net with local (Exim 3.33 #1) id 164nih-0009li-00; Fri, 16 Nov 2001 18:28:07 +0000 Message-Id: Date: Fri, 16 Nov 2001 18:28:07 +0000 From: Ceri Reply-To: Ceri To: FreeBSD-gnats-submit@freebsd.org Cc: mpp@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/32042: kernfs.5 references files that will (probably) never exist Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32042 >Category: docs >Synopsis: kernfs.5 references files that will (probably) never exist >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 Nov 16 10:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: setantae >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD rhadamanth.private.submonkey.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Fri Nov 9 15:26:50 GMT 2001 setantae@rhadamanth.private.submonkey.net:/usr/obj/usr/src/sys/RHADAMANTH i386 >Description: man 5 kernfs states that the files root, rootdev and rrootdev should exist in a kernfs file system, but that they are ``not currently enabled''. I note that kernfs has been removed from -current, so presumably these will never be enabled. >How-To-Repeat: 1) To see the files being referenced: man 5 kernfs 2) To see that they aren't enabled : mkdir /kern && mount_kernfs kern /kern && ls /kern >Fix: Apply the patch below : *** src/share/man/man5/kernfs.5.old Fri Nov 16 18:20:38 2001 --- src/share/man/man5/kernfs.5 Fri Nov 16 18:21:16 2001 *************** *** 75,93 **** The machine pagesize (decimal ASCII). .It Pa physmem The number of pages of physical memory in the machine (decimal ASCII). - .It Pa root - The system root directory. In a chroot'ed environment, - .Xr mount_kernfs 8 - can be used to create a new - .Pa /kern - mount point. - .Pa /kern/root - will then refer to the system global root, not the current - process root. Not currently enabled. - .It Pa rootdev - The root device. Not currently enabled. - .It Pa rrootdev - The raw root device. Not currently enabled. .It Pa time The second and microsecond values of the system clock (decimal ASCII). .It Pa version --- 75,80 ---- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 11:21:49 2001 Delivered-To: freebsd-doc@freebsd.org Received: from mail.hinocatv.ne.jp (mail.hinocatv.ne.jp [210.175.87.172]) by hub.freebsd.org (Postfix) with ESMTP id B3E0437B418 for ; Fri, 16 Nov 2001 11:21:44 -0800 (PST) Received: from absinthe ([10.1.115.155]) by mail.hinocatv.ne.jp (3.7W) id EAA25440 for ; Sat, 17 Nov 2001 04:20:11 +0900 (JST) Message-ID: <000d01c16ed3$f5686960$9b73010a@hinocatv.ne.jp> From: "T/WATANABE" To: Subject: =?iso-2022-jp?B?GyRCNS9GMCVVJW0lQyVUITwlRyUjJTklLztITVEkTjdvGyhC?= Date: Sat, 17 Nov 2001 04:21:56 +0900 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000A_01C16F1F.649A7D00" 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 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_000A_01C16F1F.649A7D00 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: quoted-printable UNIX=1B$B$H$O2?$+CN$j$?$/$F!"5.%5%$%H$rMxMQ$5$;$F$$$?$@$-$^$7$?!#=1B(B =1B$B%3%a%s%H$K1h$C$F5/F0%U%m%C%T!<%G%#%9%/$r:n$j=1B(B =1B$B%$%s%9%H!<%k$r
UNIX=1B$B$H$O2?$+CN$j$?$/$F!"5.%5%$%H$rMxMQ$5$;$F$$$?$@$-$^$7$?!= #=1B(B
 
=1B$B%3%a%s%H$K1h$C$F5/F0%U%m%C%T!<%G%#%9%/$r:n$j=1B(B
 
=1B$B%$%s%9%H!<%k$r
 
=1B$B%3%a%s%H$,=3DP$F$7$^$$$^$9!#=1B(B
 
=1B$B;d$N;HMQ$7$F$$$k=1B(BPC=1B$B$N%U%m%C%T!<$N%I%i%$%V$,B?J,=1B= (BFreeBSD=1B$B$KE,9g$7!!=1B(B
 
=1B$B$F$$$J$$$N$@$H;W$$$^$9$,!&!&!&=1B(B
 
=1B$B$3$s$J$IAG?M$N5?Ld$K$b$*Ez$($/$@$5$k;~4V$,$"$j$^$7$?$i!"$*J= V;v=1B(B
 
=1B$B$/$@$5$$!#=1B(B
 
=1B$B;HMQ=1B(BPC=1B$B$O!!=1B(BNEC PC9821 V200 S7=20 C3=1B$B$G$9!#=1B(B
 
------=_NextPart_000_000A_01C16F1F.649A7D00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 17:39:20 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 56C3037B405; Fri, 16 Nov 2001 17:39:19 -0800 (PST) Received: (from chern@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAH1W5D39375; Fri, 16 Nov 2001 17:32:05 -0800 (PST) (envelope-from chern) Date: Fri, 16 Nov 2001 17:32:05 -0800 (PST) From: Message-Id: <200111170132.fAH1W5D39375@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, chern@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31990: new FAQ: imaging a data CD Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new FAQ: imaging a data CD State-Changed-From-To: open->closed State-Changed-By: chern State-Changed-When: Fri Nov 16 17:31:26 PST 2001 State-Changed-Why: Added a bit more to your entry and committed it, Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31990 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Nov 16 19:50:12 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8490037B418 for ; Fri, 16 Nov 2001 19:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAH3o1w58005; Fri, 16 Nov 2001 19:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 06DC737B416 for ; Fri, 16 Nov 2001 19:41:49 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAH3fnr57341; Fri, 16 Nov 2001 19:41:49 -0800 (PST) (envelope-from nobody) Message-Id: <200111170341.fAH3fnr57341@freefall.freebsd.org> Date: Fri, 16 Nov 2001 19:41:49 -0800 (PST) From: SUZUKI Koichi To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: docs/32054: inconsistency between index.3 and rindex.3 Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32054 >Category: docs >Synopsis: inconsistency between index.3 and rindex.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 16 19:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: SUZUKI Koichi >Release: FreeBSD 4.4-stanble >Organization: jpman Project >Environment: >Description: I found some inconsistency between index.3 and rindex.3. >How-To-Repeat: >Fix: --- index.3.orig Fri Nov 16 19:24:34 2001 +++ index.3 Fri Nov 16 19:26:16 2001 @@ -62,9 +62,11 @@ is returned. If .Fa c -is '\e0', +is +.Ql \e0 , .Fn index -locates the terminating '\e0'. +locates the terminating +.Ql \e0 . .Sh SEE ALSO .Xr memchr 3 , .Xr rindex 3 , --- rindex.3.orig Fri Nov 16 19:24:40 2001 +++ rindex.3 Fri Nov 16 19:27:36 2001 @@ -50,8 +50,7 @@ The .Fn rindex function -locates the last character -matching +locates the last character matching .Fa c (converted to a .Em char ) @@ -59,7 +58,8 @@ .Fa s . .Sh RETURN VALUES A pointer to the character is returned if it is found; otherwise -NULL is returned. +.Dv NULL +is returned. If .Fa c is >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 9:53:39 2001 Delivered-To: freebsd-doc@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id F2EF637B405; Sat, 17 Nov 2001 09:53:36 -0800 (PST) Received: from pool0701.cvx5-bradley.dialup.earthlink.net ([209.178.154.191] helo=netcom1.netcom.com) by smtp10.atl.mindspring.net with esmtp (Exim 3.33 #1) id 1659ep-0007cH-00; Sat, 17 Nov 2001 12:53:36 -0500 Received: by netcom1.netcom.com (Postfix, from userid 1000) id 06E211330F; Sat, 17 Nov 2001 09:53:33 -0800 (PST) From: Mike Harding To: freebsd-doc@freebsd.org, nik@freebsd.org Subject: empty index.html in /usr/www? Message-Id: <20011117175333.06E211330F@netcom1.netcom.com> Date: Sat, 17 Nov 2001 09:53:33 -0800 (PST) Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I have been building the freebsd web site locally for a while - right now the main index.html is empty. The makefile is outputting the file, but the result is empty... 0 bytes. ... /usr/local/bin/xsltproc -nonet -o index.html /usr/www/en/index.xsl /usr/www/en/news/news.xml ... I have SGML_ROOT=/usr/local/share/sgml SGML_CATALOG_FILES=${SGML_ROOT}/jade/catalog SGML_CATALOG_FILES=${SGML_ROOT}/iso8879/catalog:$SGML_CATALOG_FILES SGML_CATALOG_FILES=${SGML_ROOT}/html/catalog:$SGML_CATALOG_FILES SGML_CATALOG_FILES=${SGML_ROOT}/docbook/catalog:$SGML_CATALOG_FILES SGML_CATALOG_FILES=/usr/doc/share/sgml/catalog:$SGML_CATALOG_FILES export SGML_CATALOG_FILES in my .profile and am using a completely up-to-date docproj port - is there something else I am missing? All of the SGML stuff seems to build fine. I also have ENGLISH_ONLY=YES NOPORTSCVS=YES PORTSBASE=/usr in /etc/make.conf Sorry for bothering the list but I see nothing special about .xsl in the documentation project intro... - Mike H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 10:31: 3 2001 Delivered-To: freebsd-doc@freebsd.org Received: from eos.ocn.ne.jp (eos.ocn.ne.jp [210.190.142.171]) by hub.freebsd.org (Postfix) with ESMTP id 5FA5F37B416; Sat, 17 Nov 2001 10:31:00 -0800 (PST) Received: from mail.hrslab.yi.org (p2192-ip02funabasi.chiba.ocn.ne.jp [61.112.100.192]) by eos.ocn.ne.jp (OCN) with ESMTP id DAA10831; Sun, 18 Nov 2001 03:29:44 +0900 (JST) Received: from localhost (alph.hrslab.yi.org [192.168.0.10]) by mail.hrslab.yi.org (8.9.3/3.7W/DomainMaster) with ESMTP id DAA34324; Sun, 18 Nov 2001 03:29:12 +0900 (JST) (envelope-from hrs@eos.ocn.ne.jp) Date: Sun, 18 Nov 2001 03:05:13 +0900 (JST) Message-Id: <20011118.030513.130244227.hrs@eos.ocn.ne.jp> To: phantom@FreeBSD.ORG Cc: horcicka@FreeBSD.cz, freebsd-doc@FreeBSD.ORG, nik@FreeBSD.ORG, saken@hotel.rmta.org Subject: Re: Why TIDY can never work correctly with ISO-8859-2 and others From: Hiroki Sato In-Reply-To: <20011115215244.A7285@ark.cris.net> References: <20011115.214017.71143189.hrs@sekine00.ee.noda.sut.ac.jp> <20011115160532.A61351@ark.cris.net> <20011115215244.A7285@ark.cris.net> X-Mailer: Mew version 2.0 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi Alexey, Alexey Zelkin wrote in <20011115215244.A7285@ark.cris.net>: phantom> Attached patch does a job. At least my simple tests were passed successfully. phantom> I just added new option '-preserve' to tidy. This option disables phantom> translation of characters entities to characters before processing. phantom> As "side effect" we have all entities saved correctly in output file. phantom> phantom> I would like to have feedback on this one. At least for Russian Doc Project phantom> it should do a good job and I'd like to see it commited. I tried it with the "-raw", "-preserve", "-i", "-m" and "-f /dev/null" for Japanese docs, and it seems to do a good job totally. Thank you for your effort. To solve tidy-related problems among the translation teams, I also would like to commit the patch into www/tidy if possible. -- | Hiroki Sato | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 11:29:23 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F5D337B416; Sat, 17 Nov 2001 11:29:21 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAHJQG696050; Sat, 17 Nov 2001 11:26:16 -0800 (PST) (envelope-from bmah) Date: Sat, 17 Nov 2001 11:26:16 -0800 (PST) From: Message-Id: <200111171926.fAHJQG696050@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, bmah@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/32004: FAQ: new error message Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: FAQ: new error message State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Sat Nov 17 11:25:31 PST 2001 State-Changed-Why: Committed...thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32004 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 11:39:41 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2733937B42F; Sat, 17 Nov 2001 11:39:21 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAHJa2f97005; Sat, 17 Nov 2001 11:36:02 -0800 (PST) (envelope-from bmah) Date: Sat, 17 Nov 2001 11:36:02 -0800 (PST) From: Message-Id: <200111171936.fAHJa2f97005@freefall.freebsd.org> To: mwlucas@blackhelicopters.org, bmah@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31935: FAQ: AIC7xxx termination Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: FAQ: AIC7xxx termination State-Changed-From-To: open->closed State-Changed-By: bmah State-Changed-When: Sat Nov 17 11:35:38 PST 2001 State-Changed-Why: Committed...thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31935 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 15:40: 7 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F1F6E37B416 for ; Sat, 17 Nov 2001 15:40:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAHNe0M40128; Sat, 17 Nov 2001 15:40:00 -0800 (PST) (envelope-from gnats) Received: from theshell.com (arsenic.theshell.com [63.236.138.5]) by hub.freebsd.org (Postfix) with SMTP id D445A37B443 for ; Sat, 17 Nov 2001 15:31:19 -0800 (PST) Received: (qmail 51741 invoked from network); 17 Nov 2001 23:31:19 -0000 Received: from radium.theshell.com (root@63.236.138.3) by arsenic.theshell.com with SMTP; 17 Nov 2001 23:31:19 -0000 Received: (from pavalos@localhost) by radium.theshell.com (8.11.6/8.11.6) id fAHNVJp57035; Sat, 17 Nov 2001 15:31:19 -0800 (PST) (envelope-from pavalos) Message-Id: <200111172331.fAHNVJp57035@radium.theshell.com> Date: Sat, 17 Nov 2001 15:31:19 -0800 (PST) From: Peter Avalos Reply-To: Peter Avalos To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: docs/32066: typo in rc.conf.5 [PATCH] Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32066 >Category: docs >Synopsis: typo in rc.conf.5 [PATCH] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 17 15:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Peter Avalos >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD radium.theshell.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Tue Oct 30 22:59:01 PST 2001 root@radium.theshell.com:/usr/obj/usr/src/sys/RADIUM i386 >Description: bring->being >How-To-Repeat: >Fix: Index: rc.conf.5 =================================================================== RCS file: /cvsroot/fbsd/src/share/man/man5/rc.conf.5,v retrieving revision 1.139 diff -u -r1.139 rc.conf.5 --- rc.conf.5 2 Nov 2001 14:59:51 -0000 1.139 +++ rc.conf.5 17 Nov 2001 23:25:41 -0000 @@ -825,7 +825,7 @@ .Dq YES , .Pa /etc/motd will be updated at boot time to reflect the kernel release -bring run. If set to +being run. If set to .Dq NO , .Pa /etc/motd will not be updated >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 16:39:23 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 95B3537B405; Sat, 17 Nov 2001 16:39:21 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAI0XVl47686; Sat, 17 Nov 2001 16:33:31 -0800 (PST) (envelope-from dd) Date: Sat, 17 Nov 2001 16:33:31 -0800 (PST) From: Message-Id: <200111180033.fAI0XVl47686@freefall.freebsd.org> To: pavalos@theshell.com, dd@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/32066: typo in rc.conf.5 [PATCH] Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: typo in rc.conf.5 [PATCH] State-Changed-From-To: open->closed State-Changed-By: dd State-Changed-When: Sat Nov 17 16:33:15 PST 2001 State-Changed-Why: COmmitted, thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=32066 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 16:40: 6 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B458637B405 for ; Sat, 17 Nov 2001 16:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAI0e2f48135; Sat, 17 Nov 2001 16:40:02 -0800 (PST) (envelope-from gnats) Date: Sat, 17 Nov 2001 16:40:02 -0800 (PST) Message-Id: <200111180040.fAI0e2f48135@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: Dima Dorfman Subject: Re: docs/32054: inconsistency between index.3 and rindex.3 Reply-To: Dima Dorfman Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/32054; it has been noted by GNATS. From: Dima Dorfman To: SUZUKI Koichi Cc: freebsd-gnats-submit@freebsd.org Subject: Re: docs/32054: inconsistency between index.3 and rindex.3 Date: Sun, 18 Nov 2001 00:36:09 +0000 SUZUKI Koichi wrote: > I found some inconsistency between index.3 and rindex.3. Is there a reason both of these shouldn't be described in one file? I know some people complained about man pages being overcrowded, but this seems pretty natural to me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 16:49:25 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B0CF37B405; Sat, 17 Nov 2001 16:49:21 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAI0m2348786; Sat, 17 Nov 2001 16:48:02 -0800 (PST) (envelope-from dd) Date: Sat, 17 Nov 2001 16:48:02 -0800 (PST) From: Message-Id: <200111180048.fAI0m2348786@freefall.freebsd.org> To: clefevre@citeweb.net, dd@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: docs/31838: qa mailing list is missing from search Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: qa mailing list is missing from search State-Changed-From-To: open->closed State-Changed-By: dd State-Changed-When: Sat Nov 17 16:47:42 PST 2001 State-Changed-Why: First patch applied, thanks. I'm not sure why you want to remove the -www list; it's still possible to search it. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31838 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 19:20: 1 2001 Delivered-To: freebsd-doc@freebsd.org Received: from smtp.noos.fr (descartes.noos.net [212.198.2.74]) by hub.freebsd.org (Postfix) with ESMTP id 08A2237B417 for ; Sat, 17 Nov 2001 19:19:56 -0800 (PST) Received: (qmail 47800739 invoked by uid 0); 18 Nov 2001 03:19:54 -0000 Received: from unknown (HELO gits.dyndns.org) ([212.198.229.145]) (envelope-sender ) by 212.198.2.74 (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 18 Nov 2001 03:19:54 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.6/8.11.6) id fAI3Jqm37189; Sun, 18 Nov 2001 04:19:52 +0100 (CET) (envelope-from root) Message-Id: <200111180319.fAI3Jqm37189@gits.dyndns.org> Subject: Re: empty index.html in /usr/www? In-Reply-To: <20011117175333.06E211330F@netcom1.netcom.com> To: Mike Harding Date: Sun, 18 Nov 2001 04:19:50 +0100 (CET) Cc: freebsd-doc@freebsd.org, nik@freebsd.org Reply-To: clefevre@citeweb.net From: Cyrille Lefevre Organization: ACME X-Face: X-Mailer: ELM [version 2.4ME+ PL95a (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Mike Harding wrote: > > I have been building the freebsd web site locally for a while - right > now the main index.html is empty. The makefile is outputting the > file, but the result is empty... 0 bytes. > > ... > /usr/local/bin/xsltproc -nonet -o index.html /usr/www/en/index.xsl /usr/www/en/news/news.xml > ... I can't reproduce the problem using the setting you give us. could you send us your plain environment obtained from the `env' command ? did you tried the command manually ? just to see if it isn't a tidy problem ? can you try it w/o SGML_CATALOG_FILES defined (unset SGML_CATALOG_FILES) ? > I have > > SGML_ROOT=/usr/local/share/sgml > SGML_CATALOG_FILES=${SGML_ROOT}/jade/catalog > SGML_CATALOG_FILES=${SGML_ROOT}/iso8879/catalog:$SGML_CATALOG_FILES > SGML_CATALOG_FILES=${SGML_ROOT}/html/catalog:$SGML_CATALOG_FILES > SGML_CATALOG_FILES=${SGML_ROOT}/docbook/catalog:$SGML_CATALOG_FILES > SGML_CATALOG_FILES=/usr/doc/share/sgml/catalog:$SGML_CATALOG_FILES > export SGML_CATALOG_FILES the order defined in /usr/doc/share/mk/doc.docbook.mk is different than yours, could you try the following setting : SGML_CATALOG_FILES=${SGML_ROOT}/docbook/dsssl/modular/catalog SGML_CATALOG_FILES=$SGML_CATALOG_FILES:${SGML_ROOT}/iso8879/catalog SGML_CATALOG_FILES=$SGML_CATALOG_FILES:${SGML_ROOT}/docbook/catalog SGML_CATALOG_FILES=$SGML_CATALOG_FILES:${SGML_ROOT}/html/catalog SGML_CATALOG_FILES=$SGML_CATALOG_FILES:${SGML_ROOT}/jade/catalog # first try w/o the following ones, then w/. DOC_ROOT=/usr/doc SGML_CATALOG_FILES=${DOC_ROOT}/share/sgml/catalog:$SGML_CATALOG_FILES SGML_CATALOG_FILES=${DOC_ROOT}/en_US.ISO8859-1/share/sgml/catalog:$SGML_CATALOG_FILES > in my .profile and am using a completely up-to-date docproj port - is > there something else I am missing? All of the SGML stuff seems to > build fine. PS : the paths order in SGML_CATALOG_FILES is really important and iso8879 *MUST* be before docbook (docbook/4.1). this has been fixed in rev 1.55 of doc.docbook.mk. well, I've just reread the fdp-primer, and it seems that sections 3.2.1 and 3.3.1.2 are wrong about that. could someone w/ more knowledge than mine confirm of infirm what I'm saying and send a PR, if needed, to fix the documentation ? thanks. Cyrille. -- Cyrille Lefevre mailto:clefevre@citeweb.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 21: 6:37 2001 Delivered-To: freebsd-doc@freebsd.org Received: from smtp.noos.fr (lafontaine.noos.net [212.198.2.72]) by hub.freebsd.org (Postfix) with ESMTP id 7FF9E37B416 for ; Sat, 17 Nov 2001 21:06:34 -0800 (PST) Received: (qmail 101602567 invoked by uid 0); 18 Nov 2001 05:06:33 -0000 Received: from unknown (HELO gits.dyndns.org) ([212.198.229.145]) (envelope-sender ) by 212.198.2.72 (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 18 Nov 2001 05:06:33 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.6/8.11.6) id fAI56Wg42399; Sun, 18 Nov 2001 06:06:32 +0100 (CET) (envelope-from root) Message-Id: <200111180506.fAI56Wg42399@gits.dyndns.org> Subject: Re: docs/31838: qa mailing list is missing from search In-Reply-To: <200111180048.fAI0m2348786@freefall.freebsd.org> To: dd@FreeBSD.org Date: Sun, 18 Nov 2001 06:06:32 +0100 (CET) Cc: freebsd-doc@FreeBSD.org Reply-To: clefevre@citeweb.net From: Cyrille Lefevre Organization: ACME X-Face: X-Mailer: ELM [version 2.4ME+ PL95a (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org dd@FreeBSD.org wrote: > Synopsis: qa mailing list is missing from search > > State-Changed-From-To: open->closed > State-Changed-By: dd > State-Changed-When: Sat Nov 17 16:47:42 PST 2001 > State-Changed-Why: > First patch applied, thanks. I'm not sure why you want to remove the -www > list; it's still possible to search it. well, I've tried to subscribe to -www w/ no luck while searching the list show that it is still open ! I will try to subscribe it again. PS : the returning message was that -www was closed. Cyrille. -- Cyrille Lefevre mailto:clefevre@citeweb.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 23: 3:13 2001 Delivered-To: freebsd-doc@freebsd.org Received: from smtp.noos.fr (lafontaine.noos.net [212.198.2.72]) by hub.freebsd.org (Postfix) with ESMTP id 79BE437B420 for ; Sat, 17 Nov 2001 23:03:05 -0800 (PST) Received: (qmail 101422686 invoked by uid 0); 18 Nov 2001 07:03:02 -0000 Received: from unknown (HELO gits.dyndns.org) ([212.198.229.145]) (envelope-sender ) by 212.198.2.72 (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 18 Nov 2001 07:03:02 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.6/8.11.6) id fAI731Q55225; Sun, 18 Nov 2001 08:03:01 +0100 (CET) (envelope-from root) Message-Id: <200111180703.fAI731Q55225@gits.dyndns.org> Subject: Re: docs/31838: qa mailing list is missing from search In-Reply-To: To: clefevre@citeweb.net Date: Sun, 18 Nov 2001 08:03:01 +0100 (CET) Cc: dd@FreeBSD.org, freebsd-doc@FreeBSD.org Reply-To: clefevre@citeweb.net From: Cyrille Lefevre Organization: ACME X-Face: X-Mailer: ELM [version 2.4ME+ PL95a (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Cyrille Lefevre wrote: [snip] > well, I've tried to subscribe to -www w/ no luck while searching > the list show that it is still open ! I will try to subscribe it > again. > > PS : the returning message was that -www was closed. here is the message I sent : > From root Sun Nov 18 06:05:18 2001 > Subject: subscribe > To: majordomo@FreeBSD.org > Date: Sun, 18 Nov 2001 06:05:18 +0100 (CET) > Reply-To: clefevre@citeweb.net > From: Cyrille Lefevre > Organization: ACME > X-Mailer: ELM [version 2.4ME+ PL95a (25)] > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Content-Type: text/plain; charset=US-ASCII > Content-Length: 45 > Status: O > > subscribe freebsd-www clefevre-lists@noos.fr and the answer : > From Majordomo@FreeBSD.ORG Sun Nov 18 07:45:32 2001 > Received: from ctw2ctrl.citeweb.net [204.198.135.111] > by localhost with POP3 (fetchmail-5.8.17) > for root@localhost (single-drop); Sun, 18 Nov 2001 07:45:32 +0100 (CET) > Received: from mx2.freebsd.org [216.136.204.119] by ctw2.citeweb.net > (SMTPD32-6.00) id A170C62100EA; Sun, 18 Nov 2001 06:04:48 +0100 > Received: from hub.freebsd.org (hub.FreeBSD.org [216.136.204.18]) > by mx2.freebsd.org (Postfix) with ESMTP id 28B8955439 > for ; Sat, 17 Nov 2001 21:05:27 -0800 (PST) > (envelope-from Majordomo-Owner@FreeBSD.ORG) > Received: by hub.freebsd.org (Postfix, from userid 538) > id D3EA237B416; Sat, 17 Nov 2001 21:05:26 -0800 (PST) > To: clefevre@citeweb.net > From: Majordomo@FreeBSD.ORG > Subject: Majordomo results: subscribe > Reply-To: Majordomo@FreeBSD.ORG > Message-ID: <20011118050526.D3EA237B416@hub.freebsd.org> > Date: Sat, 17 Nov 2001 21:05:26 -0800 (PST) > X-RCPT-TO: > X-UIDL: 4240 > Status: U > Lines: 269 > > > -- > > **** subscribe: unknown list ''. > >>>> subscribe freebsd-www clefevre-lists@noos.fr > You tried to "subscribe" to a closed list "freebsd-www" at Majordomo@FreeBSD.ORG. > > We have some closed lists: > > Some lists that are aliases for other lists. > The list "test" is an alias for "freebsd-test". > If you tried to subscribe a list of this type, > please subscribe to "freebsd-freebsd-www" instead. > > If you have any questions about the policy of the list owner, please > contact "freebsd-www-approval@FreeBSD.ORG". > > > Thanks! > > Majordomo@FreeBSD.ORG I will try www instead of freebsd-www but, IMHO, both should work... Cyrille. -- Cyrille Lefevre mailto:clefevre@citeweb.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Nov 17 23:40: 7 2001 Delivered-To: freebsd-doc@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B65E37B405 for ; Sat, 17 Nov 2001 23:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAI7e2o14244; Sat, 17 Nov 2001 23:40:02 -0800 (PST) (envelope-from gnats) Date: Sat, 17 Nov 2001 23:40:02 -0800 (PST) Message-Id: <200111180740.fAI7e2o14244@freefall.freebsd.org> To: freebsd-doc@freebsd.org Cc: From: SUZUKI Koichi Subject: Re: docs/32054: inconsistency between index.3 and rindex.3 Reply-To: SUZUKI Koichi Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/32054; it has been noted by GNATS. From: SUZUKI Koichi To: Dima Dorfman Cc: freebsd-gnats-submit@freebsd.org Subject: Re: docs/32054: inconsistency between index.3 and rindex.3 Date: Sat, 17 Nov 2001 23:30:13 -0800 This is a multi-part message in MIME format. --------------030409000304010801080506 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Dima Dorfman wrote: > SUZUKI Koichi wrote: >>I found some inconsistency between index.3 and rindex.3. > > Is there a reason both of these shouldn't be described in one file. I > know some people complained about man pages being overcrowded, but > this seems pretty natural to me. I don't know why these man pages are separated. I agree with you. I think these shoud be described together. I made a patch to index.3 rev.1.6. How about this one. You know, I'm not native. Please correct if you feel strange. -- This is my STYLE. SUZUKI Koichi --------------030409000304010801080506 Content-Type: text/plain; name="index.3.diff" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="index.3.diff" LS0tIGluZGV4LjMub3JpZwlTYXQgTm92IDE3IDIzOjEyOjU2IDIwMDEKKysrIGluZGV4LjMJ U2F0IE5vdiAxNyAyMzoxNjo0MCAyMDAxCkBAIC0zOCw3ICszOCw4IEBACiAuRHQgSU5ERVgg MwogLk9zCiAuU2ggTkFNRQotLk5tIGluZGV4CisuTm0gaW5kZXggLAorLk5tIHJpbmRleAog Lk5kIGxvY2F0ZSBjaGFyYWN0ZXIgaW4gc3RyaW5nCiAuU2ggTElCUkFSWQogLkxiIGxpYmMK QEAgLTQ2LDI4ICs0NywzNyBAQAogLkluIHN0cmluZy5oCiAuRnQgY2hhciAqCiAuRm4gaW5k ZXggImNvbnN0IGNoYXIgKnMiICJpbnQgYyIKKy5GdCBjaGFyICoKKy5GbiByaW5kZXggImNv bnN0IGNoYXIgKnMiICJpbnQgYyIKIC5TaCBERVNDUklQVElPTgogVGhlCiAuRm4gaW5kZXgK LWZ1bmN0aW9uCi1sb2NhdGVzIHRoZSBmaXJzdCBjaGFyYWN0ZXIgbWF0Y2hpbmcKK2Z1bmN0 aW9uIGxvY2F0ZXMgdGhlIGZpcnN0IGNoYXJhY3RlciBtYXRjaGluZwogLkZhIGMKIChjb252 ZXJ0ZWQgdG8gYQogLkVtIGNoYXIgKQogaW4gdGhlIG51bGwtdGVybWluYXRlZCBzdHJpbmcK IC5GYSBzIC4KKy5QcAorVGhlCisuRm4gcmluZGV4CitmdW5jdGlvbiBiZWhhdmVzIGFzIHdl bGwsIGV4Y2VwdCBsb2NhdGVzIHRoZSBsYXN0IGNoYXJhY3RlciBtYXRjaGluZworLkZhIGMg LgogLlNoIFJFVFVSTiBWQUxVRVMKIEEgcG9pbnRlciB0byB0aGUgY2hhcmFjdGVyIGlzIHJl dHVybmVkIGlmIGl0IGlzIGZvdW5kOyBvdGhlcndpc2UKIC5EdiBOVUxMCiBpcyByZXR1cm5l ZC4KIElmCiAuRmEgYwotaXMgJ1xlMCcsCitpcworLlFsIFxlMCAsCiAuRm4gaW5kZXgKLWxv Y2F0ZXMgdGhlIHRlcm1pbmF0aW5nICdcZTAnLgorYW5kCisuRm4gcmluZGV4Citsb2NhdGUg dGhlIHRlcm1pbmF0aW5nCisuUWwgXGUwIC4KIC5TaCBTRUUgQUxTTwogLlhyIG1lbWNociAz ICwKLS5YciByaW5kZXggMyAsCiAuWHIgc3RyY2hyIDMgLAogLlhyIHN0cmNzcG4gMyAsCiAu WHIgc3RycGJyayAzICwKQEAgLTc3LDcgKzg3LDkgQEAKIC5YciBzdHJzdHIgMyAsCiAuWHIg c3RydG9rIDMKIC5TaCBISVNUT1JZCi1BCitUaGUKIC5GbiBpbmRleAotZnVuY3Rpb24gYXBw ZWFyZWQgaW4KK2FuZAorLkZuIHJpbmRleAorZnVuY3Rpb25zIGFwcGVhcmVkIGluCiAuQXQg djYgLgo= --------------030409000304010801080506-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message