From owner-freebsd-doc Sun Mar 24 2:12:29 2002 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 DF71337B404 for ; Sun, 24 Mar 2002 02:12:09 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id AA3114B65D; Sun, 24 Mar 2002 02:12:09 -0800 (PST) Date: Sun, 24 Mar 2002 02:12:09 -0800 From: Murray Stokely To: freebsd-doc@FreeBSD.org Subject: FDP and the Darwin Documentation Project Message-ID: <20020324101209.GE6007@freebsdmall.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nFreZHaLTZJo0R7j" Content-Disposition: inline User-Agent: Mutt/1.3.25i 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 --nFreZHaLTZJo0R7j Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable JFYI, I recently imported a simple build infrastructure to the Darwin Documentation Project CVS repository. At this point, I didn't use much of the FDP code in share/mk (the Darwin equivalents are much simpler at this early stage), but the makefiles are still clearly derived from the FDP work. There is no copyright message at the top of the .mk files in doc/share/mk, so I simply added the following text to the comments at the top of all of the darwin files : # # Based on work done by the FreeBSD Documentation Project. # http://www.FreeBSD.org/docproj # The Darwin makefiles are all based on XML and XSLT toolchains. Saxon is used by default, but Xerces or XT can be used just as easily by typing 'bsdmake TOOL=3DXT' or 'bsdmake TOOL=3DXERCES' instead of just bsdmake. There are lots of advantages to working closer with the Darwin Documentation Project, not the least of which is improving our own XSLT support once I get it ironed out in the Darwin repo. Apple is paying professional tech writers to write Unix documentation now, so we may eventually be able to share some content as well. For the moment, my "rules of engagement" are just to add the equivalent of "Obtained from: FreeBSD Project" in CVS messages and to respect copyright notices. Please let me know if you have any additional concerns about how code is shared with the Darwin Documentation Project (with respect to credit, or whatever..). Thanks, - Murray ----- Forwarded message from Murray Stokely ----- From: Murray Stokely Subject: cvs commit: Documentation/share/mk doc.docbook.mk doc.project.mk To: cvs-log-Documentation@opensource.apple.com Date: Sun, 24 Mar 2002 01:54:14 -0800 (PST) murray 02/03/24 01:54:10 Modified: en_US.ISO8859-1/howto/kext_tutorials/hello_kext hello_kext.xml Added: . Makefile en_US.ISO8859-1 Makefile en_US.ISO8859-1/howto Makefile en_US.ISO8859-1/howto/booting_on_x86 Makefile en_US.ISO8859-1/howto/building_darwin_howto Makefile en_US.ISO8859-1/howto/building_xnu Makefile en_US.ISO8859-1/howto/darwin_developer_howto Makefile en_US.ISO8859-1/howto/darwin_doc_howto Makefile en_US.ISO8859-1/howto/darwin_howto_template Makefile en_US.ISO8859-1/howto/kext_tutorials Makefile en_US.ISO8859-1/howto/kext_tutorials/about_kext Makefile en_US.ISO8859-1/howto/kext_tutorials/hello_debugger Makefile en_US.ISO8859-1/howto/kext_tutorials/hello_iokit Makefile en_US.ISO8859-1/howto/kext_tutorials/hello_kext Makefile en_US.ISO8859-1/howto/kext_tutorials/kext_dependencies Makefile en_US.ISO8859-1/howto/kext_tutorials/packaging_kext Makefile en_US.ISO8859-1/howto/network_config Makefile share/mk doc.docbook.mk doc.project.mk Log: Add a rudimentary build infrastructure for the Documentation project. =20 This allows us to turn all of the DocBook XML documents in the 'Documentation' collection into HTML files with one of a variety of different XSLT processors (Saxon is used by default). =20 Most of the makefile logic happens in the include file. The individual makefiles are kept very simple so that we don't have to duplicate the same variables and targets in 30+ different directories. =20 doc.project.mk is the top level include, and this file includes another file, doc.docbook.mk, if we are dealing with DocBook documents (the default). This file includes rules for turning DocBook XML into a variety of different output formats with a variety of different tools. The output format is specified with the 'FORMATS' variable. At the moment, only "html" is supported, but adding a text format would be trivial, and we can add PDF format support with a little more work depending on how FOP and PassiveTeX have matured lately. =20 In the future, you should be able to type : =20 bsdmake FORMATS=3D"html pdf text" =20 to build HTML, PDF, and text version of all of the documents in the current directory (and its subdirectories, if any). =20 For now, simply type 'bsdmake'. The default directories for the DocBook stylesheets can be overridden with the STYLESHEET variable. A complete list of the relevant variables is located in the comments at the top of doc.docbook.mk. This information will migrate to the Darwin Doc HOWTO shortly. =20 Based on work done by the FreeBSD Documentation Project. =20 Reviewed by: rhayden =20 Revision Changes Path 1.1 Documentation/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:05 murray Exp $ =20 SUBDIR =3D en_US.ISO8859-1 =20 DOC_PREFIX?=3D ${.CURDIR} .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:06 murray Exp $ =20 SUBDIR =3D howto =20 DOC_PREFIX?=3D ${.CURDIR}/.. .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:06 murray Exp $ =20 SUBDIR =3D booting_on_x86 SUBDIR+=3D building_darwin_howto SUBDIR+=3D building_xnu SUBDIR+=3D darwin_developer_howto SUBDIR+=3D darwin_doc_howto SUBDIR+=3D darwin_howto_template SUBDIR+=3D kext_tutorials SUBDIR+=3D network_config =20 DOC_PREFIX?=3D ${.CURDIR}/../.. .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/booting_on_x86/M= akefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:06 murray Exp $ DOC?=3D booting_on_x86 =20 DOC_PREFIX?=3D ../../.. .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/building_darwin_= howto/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:06 murray Exp $ DOC?=3D building_darwin_howto =20 DOC_PREFIX?=3D ../../.. .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/building_xnu/Mak= efile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:06 murray Exp $ DOC?=3D building_xnu =20 DOC_PREFIX?=3D ../../.. .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/darwin_developer= _howto/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:07 murray Exp $ DOC?=3D darwin_developer_howto =20 DOC_PREFIX?=3D ../../.. .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/darwin_doc_howto= /Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:07 murray Exp $ DOC?=3D darwin_doc_howto =20 DOC_PREFIX?=3D ../../.. .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/darwin_howto_tem= plate/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:07 murray Exp $ DOC?=3D darwin_howto_template =20 DOC_PREFIX?=3D ../../.. .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/kext_tutorials/M= akefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:07 murray Exp $ SUBDIR=3D about_kext SUBDIR+=3D hello_debugger SUBDIR+=3D hello_iokit SUBDIR+=3D hello_kext SUBDIR+=3D kext_dependencies # Broken links.. # SUBDIR+=3D packaging_kext =20 DOC_PREFIX?=3D ../../../ .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/kext_tutorials/a= bout_kext/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:08 murray Exp $ DOC?=3D about_kext =20 DOC_PREFIX?=3D ../../../../ .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/kext_tutorials/h= ello_debugger/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:08 murray Exp $ DOC?=3D hello_debugger =20 DOC_PREFIX?=3D ../../../../ .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/kext_tutorials/h= ello_iokit/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:08 murray Exp $ DOC?=3D hello_iokit =20 DOC_PREFIX?=3D ../../../../ .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.2 +1 -1 Documentation/en_US.ISO8859-1/howto/kext_tutorials/h= ello_kext/hello_kext.xml =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:09 murray Exp $ DOC?=3D hello_kext =20 DOC_PREFIX?=3D ../../../../ .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/kext_tutorials/k= ext_dependencies/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:09 murray Exp $ DOC?=3D kext_dependencies =20 DOC_PREFIX?=3D ../../../../ .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/kext_tutorials/p= ackaging_kext/Makefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:09 murray Exp $ DOC?=3D packaging_kext =20 DOC_PREFIX?=3D ../../../../ .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/en_US.ISO8859-1/howto/network_config/M= akefile =20 Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # $Id: Makefile,v 1.1 2002/03/24 09:54:10 murray Exp $ DOC?=3D network_config =20 DOC_PREFIX?=3D ../../.. .include "${DOC_PREFIX}/share/mk/doc.project.mk" =20 =20 =20 1.1 Documentation/share/mk/doc.docbook.mk =20 Index: doc.docbook.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # This include file handles building and installing of DocBook # documentation in the Darwin Documentation Project. # # Documentation using DOCFORMAT=3Ddocbook is expected to be marked up # according to the DocBook DTD # # Based on work done by the FreeBSD Documentation Project. # http://www.FreeBSD.org/docproj # # $Id: doc.docbook.mk,v 1.1 2002/03/24 09:54:10 murray Exp $ # # ------------------------------------------------------------------------ # # Document-specific variables # # DOC This should be set to the name of the DocBook # marked-up file, without the .xml suffix. # =20 # It also determines the name of the output files - # ${DOC}.html. # # TOOL The XSLT or DSSSL tool used to convert the source # document into the specified output formats. # # DOCBOOKSUFFIX The suffix of your document, defaulting to .sgml # # STYLESHEET The stylesheet used to convert the document to # the specified output formats. # # FORMATS The required output formats for this build. # Currently, only html is supported. # =20 DOCBOOKSUFFIX?=3D xml MASTERDOC?=3D ${.CURDIR}/${DOC}.${DOCBOOKSUFFIX} STYLESHEET?=3D /usr/local/sgml/docbook-xsl/html/docbook.xsl TOOL?=3D SAXON FORMATS?=3D html =20 # # Look at ${FORMATS} and work out which documents need to be generated. # The generated files will always be named ${DOC}.format.# # # ${_docs} will be set to a list of all documents that must be made # up to date. # # ${CLEANFILES} is a list of files that should be removed by the "clean" # target. ${COMPRESS_EXT:S/^/${DOC}.${_cf}.&/ takes the COMPRESS_EXT # var, and prepends the filename to each listed extension, building a # second list of files with the compressed extensions added. # =20 =20 =20 # # Documents should use the +=3D format to access these. # =20 =20 .for _curformat in ${FORMATS} _cf=3D${_curformat} .if defined(DOC) _docs+=3D ${DOC}.${_curformat} CLEANFILES+=3D ${DOC}.${_curformat} .endif .endfor =20 .MAIN: all =20 .if defined(DOC) all: ${_docs} =20 clean: @${RM} -f ${CLEANFILES} .endif =20 ${DOC}.html: ${SRCS} .if ${TOOL} =3D=3D "SAXON" ${JAVA} com.icl.saxon.StyleSheet ${SAXON_OPTS} ${DOC}.${DOCBOOKSUFFIX} $= {STYLESHEET} > ${.TARGET} .elif ${TOOL} =3D=3D "XT" ${JAVA} com.jclark.xsl.sax.Driver ${XT_OPTS} ${DOC}.${DOCBOOKSUFFIX} ${S= TYLESHEET} > ${.TARGET} .elif ${TOOL} =3D=3D "XERCES" ${JAVA} org.apache.xalan.xslt.Process -in ${DOC}.${DOCBOOKSUFFIX} -xsl $= {STYLESHEET} -out ${.TARGET} .else echo "Unsupported processing tool : $(TOOL)" echo "Currently, only SAXON, XT, and XERCES are supported." .endif =20 =20 =20 1.1 Documentation/share/mk/doc.project.mk =20 Index: doc.project.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # This include file handles building and installing of DocBook # documentation in the Darwin Documentation Project. # # Documentation using DOCFORMAT=3Ddocbook is expected to be marked up # according to the DocBook DTD # # Based on work done by the FreeBSD Documentation Project. # http://www.FreeBSD.org/docproj # # $Id: doc.project.mk,v 1.1 2002/03/24 09:54:10 murray Exp $ # # ------------------------------------------------------------------------ # # Document-specific variables # # DOCFORMAT The format of the source document. Currently, # only DocBook documents are supported. # # SRCS The names of all the files that are needed to # build this document - This is useful if any of # them need to be generated. Changing any file in # SRCS causes the documents to be rebuilt. # =20 DOCFORMAT?=3D docbook =20 # Command names JAVA?=3D /usr/bin/java RM?=3D /bin/rm =20 .if ${DOCFORMAT} =3D=3D "docbook" .include "doc.docbook.mk" .else echo "WARNING: Unknown documentation format : ${DOCFORMAT}" .endif =20 .include =20 =20 =20 ----- End forwarded message ----- --nFreZHaLTZJo0R7j Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (SunOS) Comment: For info see http://www.gnupg.org iD8DBQE8naZ4tNcQog5FH30RAi4pAJ9pdScQQxRq4/WtKq2YU+yJYjprSACfWfxO SaK/2KbKtDt4msyRmkgmOcg= =gkJN -----END PGP SIGNATURE----- --nFreZHaLTZJo0R7j-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Mar 24 10:53:15 2002 Delivered-To: freebsd-doc@freebsd.org Received: from outboundx.mv.meer.net (outboundx.mv.meer.net [209.157.152.12]) by hub.freebsd.org (Postfix) with ESMTP id 9359F37B400 for ; Sun, 24 Mar 2002 10:53:12 -0800 (PST) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) by outboundx.mv.meer.net (8.11.6/8.11.6) with ESMTP id g2OIr5C91425 for ; Sun, 24 Mar 2002 10:53:05 -0800 (PST) (envelope-from gnn@neville-neil.com) Received: from neville-neil.com ([209.157.133.226]) by mail.meer.net (8.12.2/8.12.1/meer) with ESMTP id g2OIr1KQ041993 for ; Sun, 24 Mar 2002 10:53:11 -0800 (PST) Message-Id: <200203241853.g2OIr1KQ041993@mail.meer.net> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: freebsd-doc@freebsd.org Subject: One quick suggestion... Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 24 Mar 2002 10:53:01 -0800 From: "George V. Neville-Neil" 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 starting to use the DocBook/FDP stuff to write my articles (both for FreeBSD and others). I'm very impressed. It's just what I've always thought something like this would look like. One thing I'd like to see added to the Documentation Primer is the information on how to set up a bibliography. Since every article that's not a man page and every book needs such a a thing it would make sense to me. Or is there somewhere better for this to go? Thanks, George -- George V. Neville-Neil gnn@neville-neil.com Neville-Neil Consulting www.neville-neil.com "Put a twenty dollar gold piece on my watch chain So you can let all the boys know I died standing pat." - St. James Infirmary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Mar 24 13:10: 7 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C8A2B37B405 for ; Sun, 24 Mar 2002 13:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2OLA0s31190; Sun, 24 Mar 2002 13:10:00 -0800 (PST) (envelope-from gnats) Received: from wonkity.com (wonkity.com [63.93.4.4]) by hub.freebsd.org (Postfix) with ESMTP id C319E37B404 for ; Sun, 24 Mar 2002 13:05:54 -0800 (PST) Received: from wonkity.com (localhost.wonkity.com [127.0.0.1]) by wonkity.com (8.12.1/8.11.6) with ESMTP id g2OL5ruF047168 for ; Sun, 24 Mar 2002 14:05:54 -0700 (MST) (envelope-from wblock@wonkity.com) Received: (from wblock@localhost) by wonkity.com (8.12.1/8.12.1/Submit) id g2OL5rJ5047167; Sun, 24 Mar 2002 14:05:53 -0700 (MST)?g (envelope-from wblock) Message-Id: <200203242105.g2OL5rJ5047167@wonkity.com> Date: Sun, 24 Mar 2002 14:05:53 -0700 (MST) From: Warren Block Reply-To: Warren Block To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36263: Handbook section 19.4.10 skips over mergemaster step 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: 36263 >Category: docs >Synopsis: Handbook section 19.4.10 skips over mergemaster step >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 24 13:10:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Warren Block >Release: Handbook 2nd Edition >Organization: none >Environment: Paper and online version >Description: Section 19.4.10 of the Handbook (2nd Edition) skips over the use of mergemaster. It details steps to use instead of mergemaster, but mergemaster instructions are not included. >How-To-Repeat: See section 19.4.10. >Fix: Add a "Using mergemaster" title and mergemaster instructions before existing instructions in 19.4.10, and show a mergemaster command line and usage instructions. De-emphasize the manual merging method section, or at least break it from the mergemaster section with a title. >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 Mar 24 13:13:32 2002 Delivered-To: freebsd-doc@freebsd.org Received: from services.webwarrior.net (overlord-host99.dsl.visi.com [209.98.86.99]) by hub.freebsd.org (Postfix) with ESMTP id A3BEB37B400 for ; Sun, 24 Mar 2002 13:13:29 -0800 (PST) Received: from twincat.vladsempire.net (hutch-855.hutchtel.net [206.10.71.183]) by services.webwarrior.net (Postfix) with ESMTP id 77A123ED for ; Sun, 24 Mar 2002 15:13:28 -0600 (CST) Received: by twincat.vladsempire.net (Postfix, from userid 1001) id B2B213884; Sun, 24 Mar 2002 15:14:13 +0000 (GMT) Date: Sun, 24 Mar 2002 15:14:13 +0000 From: Josh Paetzel To: freebsd-doc@freebsd.org Subject: Re: docs/35723 Message-ID: <20020324151413.A19439@twincat.vladsempire.net> Mail-Followup-To: freebsd-doc@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i 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 Is there any reason not to commit this? I ran into yet another lost soul on irc tonight trying to get this driver to work. *** le.4.old Fri Mar 15 10:57:26 2002 --- le.4 Fri Mar 15 10:57:42 2002 *************** *** 93,95 **** --- 93,99 ---- .An Matt Thomas . This manual page was written by .An David E. O'Brien . + .Sh BUGS + This driver has been causing kernel panics since 4.0-RELEASE, and appears to be no + longer actively maintained. PR misc/18641 describes the known issues that have been + submitted. Josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Mar 24 15:30:23 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 772A137B41B for ; Sun, 24 Mar 2002 15:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ONU1I55529; Sun, 24 Mar 2002 15:30:01 -0800 (PST) (envelope-from gnats) Received: from melchior.cuivre.fr.eu.org (melchior.enst.fr [137.194.161.6]) by hub.freebsd.org (Postfix) with ESMTP id EB3A337B416 for ; Sun, 24 Mar 2002 15:20:07 -0800 (PST) Received: from melusine.cuivre.fr.eu.org (melusine.enst.fr [137.194.160.34]) by melchior.cuivre.fr.eu.org (Postfix) with ESMTP id C9E758725 for ; Mon, 25 Mar 2002 00:20:05 +0100 (CET) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 94BC22C3D2; Mon, 25 Mar 2002 00:20:33 +0100 (CET) Message-Id: <20020324232033.94BC22C3D2@melusine.cuivre.fr.eu.org> Date: Mon, 25 Mar 2002 00:20:33 +0100 (CET) From: Thomas Quinot Reply-To: Thomas Quinot To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36267: [patch] document boot option '-n' 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: 36267 >Category: docs >Synopsis: [patch] document boot option '-n' >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Mar 24 15:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Thomas Quinot >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD melusine.cuivre.fr.eu.org 4.5-STABLE FreeBSD 4.5-STABLE #23: Sun Mar 24 22:06:56 CET 2002 thomas@melusine.cuivre.fr.eu.org:/usr2/obj/usr2/src/sys/MELUSINE i386 A new option '-n' has been added to boot2 (see src/sys/boot/i386/boot2 rev. 1.38). The enclosed patch adds the relevant section to the man page (and also makes the two places where we list the set of all possible boot flags homogeneous.) >Description: >How-To-Repeat: >Fix: --- sbin/reboot/boot_i386.8.dist Mon Dec 24 14:31:09 2001 +++ sbin/reboot/boot_i386.8 Mon Mar 25 00:11:50 2002 @@ -115,7 +115,7 @@ .Ar bios_drive : Ns Ar interface Ns Po .Ar unit , Ns Ar part Pc .Ar filename -.Op Fl aCcDdghPprsv +.Op Fl aCcDdghnPprsv .Xc Specify boot file and flags. .Bl -tag -width indent @@ -161,7 +161,7 @@ on the specified partition). Defaults to .Pa /kernel . Symbolic links are not supported (hard links are). -.It Fl acCdDghPrsv +.It Fl aCcDdghnPprsv Boot flags: .Pp .Bl -tag -width "-CXX" -compact @@ -217,6 +217,14 @@ option described here. See the man page for .Xr sio 4 for more details. +.It Fl n +disallow any user interaction from the keyboard or +serial port. +When it is desirable to prevent users from booting +their own kernel, or a boot floppy, this flag +can be used in the +.Pa /boot.config +file. .It Fl P probe the keyboard. If no keyboard is found, the .Fl D >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 Mar 24 16:30:10 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B5E8E37B400 for ; Sun, 24 Mar 2002 16:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2P0U2767825; Sun, 24 Mar 2002 16:30:02 -0800 (PST) (envelope-from gnats) Date: Sun, 24 Mar 2002 16:30:02 -0800 (PST) Message-Id: <200203250030.g2P0U2767825@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/30809: fdisk(8) cleanup 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/30809; it has been noted by GNATS. From: Giorgos Keramidas To: Piet Delport Cc: bug-followup@freebsd.org Subject: Re: docs/30809: fdisk(8) cleanup Date: Mon, 25 Mar 2002 02:20:11 +0200 On 2001-09-24 00:43, Piet Delport wrote: > Fix various minor errors in fdisk(8). I've seen this patch last night, and tried to read it carefully. Most of the changes look fine. Last night, I took the libery to prepare a new patch for RELENG_4 that has a few differences from the original you posted. Could you take a look at the diff I uploaded to: http://people.FreeBSD.org/~keramida/diff/fdisk.diff and tell me what you think? Just reworded a few things here and there, and tried to make it hard for the reader to misunderstand things. If you feel like this is still worth it, I'd like to hear your comments/suggestions/changes and have this committed to STABLE when we bring it to a shape that we all like :-) Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Mar 24 19:54:20 2002 Delivered-To: freebsd-doc@freebsd.org Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by hub.freebsd.org (Postfix) with ESMTP id 841FC37B416 for ; Sun, 24 Mar 2002 19:54:17 -0800 (PST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by white.imgsrc.co.jp (Postfix) with ESMTP id BC9D524D2A; Mon, 25 Mar 2002 12:54:16 +0900 (JST) Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [2001:218:422:2::160]) by black.imgsrc.co.jp (Postfix) with ESMTP id 30CF01E4651; Mon, 25 Mar 2002 12:54:15 +0900 (JST) Date: Mon, 25 Mar 2002 12:54:03 +0900 Message-ID: <7mg02pb8v8.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: Documentation Team Subject: Re: www/en/conspectus is dead? In-Reply-To: <20020317215648.F5971@canyon.nothing-going-on.org> References: <7m4rjjfl08.wl@waterblue.imgsrc.co.jp> User-Agent: Wanderlust/2.9.7 (Unchained Melody) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.1 (i386--freebsd) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") 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 At Sun, 17 Mar 2002 22:19:15 +0000 (UTC), nik wrote: > My real concern is that with no pages left to 'advertise' it, we'll get > no volunteers stepping forward. > > Of course, there haven't been a huge quantity of volunteers so far. OK, let's leave them there. But, my real concern is people may feel our site unmaintained globally if they find such an unmaintained page. -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Mar 24 21: 5:53 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id CFCBF37B416 for ; Sun, 24 Mar 2002 21:05:49 -0800 (PST) Received: from localhost (c5.depaul-inst.pittsburgh.pa.us [192.168.1.5]) by pittgoth.com (8.11.6/8.11.6) with SMTP id g2P58Cq46405 for ; Mon, 25 Mar 2002 00:08:12 -0500 (EST) (envelope-from darklogik@pittgoth.com) Date: Mon, 25 Mar 2002 00:13:32 -0500 From: Tom Rhodes To: FreeBSD-doc@FreeBSD.org Subject: Patch for review, bringing back the advocacy site Message-Id: <20020325001332.77e87edc.darklogik@pittgoth.com> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; boundary="=.6Xz5b1SDf2sYIb" 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 --=.6Xz5b1SDf2sYIb Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Fellow -doc hackers ;) Awhile ago I pointed out the advocacy site links on FreeBSD.org project page turned up 404s. So, I built another site based on the other pages. This brings the idea of advocacy back to the FreeBSD project website. It contains tons of useful information and relevant links to more information. A few people have returned the request for my review, and those requests have, for the most part, been answered. Now that those ideas have been put in, I created a diff file. I then checked my diff by running cvsup, and then applying the patch to the en directory. Afterwords, a make quickly pointed out any errors, and now I have a finished patch for review: http://www.pittgoth.com/~darklogik/advocacy/advo.diff Please tell me what you think (those that are interested) so that maybe we can get this done ;) -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal --=.6Xz5b1SDf2sYIb Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8nrIAwPmgiRuevUMRAh5QAJoDH8JCBtv/6/WQD1JxdGfneUAKmQCgjaq6 YydyqKuJfMr+tjOAI8uJOuU= =652u -----END PGP SIGNATURE----- --=.6Xz5b1SDf2sYIb-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sun Mar 24 22:32: 3 2002 Delivered-To: freebsd-doc@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 729) id 3CFD537B417; Sun, 24 Mar 2002 22:32:00 -0800 (PST) To: freebsd-doc@freebsd.org Cc: murray@freebsd.org, wosch@freebsd.org Subject: [PATCH] Additions to project staff page Message-Id: <20020325063200.3CFD537B417@hub.freebsd.org> Date: Sun, 24 Mar 2002 22:32:00 -0800 (PST) From: jkoshy@FreeBSD.ORG (Joseph Koshy) 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 patch adds an entry for the project's website management team. If there are no grave objections, I'll check this change in, in a day or two. Regards, Koshy Index: share/sgml/teams.ent =================================================================== RCS file: /home/ncvs/doc/en_US.ISO8859-1/share/sgml/teams.ent,v retrieving revision 1.2 diff -u -r1.2 teams.ent --- share/sgml/teams.ent 15 Mar 2002 07:16:55 -0000 1.2 +++ share/sgml/teams.ent 25 Mar 2002 06:26:53 -0000 @@ -27,3 +27,4 @@ security-officer@FreeBSD.org"> +www@FreeBSD.org"> Index: articles/contributors/article.sgml =================================================================== RCS file: /home/ncvs/doc/en_US.ISO8859-1/articles/contributors/article.sgml,v retrieving revision 1.117 diff -u -r1.117 article.sgml --- articles/contributors/article.sgml 18 Mar 2002 15:51:15 -0000 1.117 +++ articles/contributors/article.sgml 25 Mar 2002 06:27:00 -0000 @@ -1643,18 +1643,6 @@ ]]> - - Web Changes Editor - - - &a.www; - - - -]]> - User Groups Editor @@ -1763,7 +1751,15 @@ Assistants: &a.markm;, &a.joe; + + + Website Management + + &a.www; + + + Ports Manager To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 1:57:45 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mail.freebsdmall.com (www.freebsdmall.com [66.220.2.194]) by hub.freebsd.org (Postfix) with ESMTP id 5951E37B421 for ; Mon, 25 Mar 2002 01:57:42 -0800 (PST) Received: by mail.freebsdmall.com (Postfix, from userid 2135) id DCACE2E828; Mon, 25 Mar 2002 01:57:41 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mail.freebsdmall.com (Postfix) with ESMTP id C53DD2AA43; Mon, 25 Mar 2002 01:57:41 -0800 (PST) Date: Mon, 25 Mar 2002 01:57:41 -0800 (PST) From: Chern Lee X-X-Sender: To: Tom Rhodes Cc: Subject: Re: docs/35378: Handbook has inaccurate description of freebsd-security list In-Reply-To: <200203011610.g21GA3c93435@freefall.freebsd.org> Message-ID: <20020325015550.C27820-100000@www.freebsdmall.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 Hey Tom, Have you seen the Security/Firewalls section of the Handbook? http://www.freebsd.org/handbook/firewalls.html It has a section on use and configuration of ipfw, although there is always room for improvement. Wouldn't want any duplicated efforts. - chern On Fri, 1 Mar 2002, Tom Rhodes wrote: > The following reply was made to PR docs/35378; it has been noted by GNATS. > > From: Tom Rhodes > To: Bob Johnson > Cc: freebsd-gnats-submit@FreeBSD.ORG > Subject: Re: docs/35378: Handbook has inaccurate description of freebsd-security list > Date: Fri, 01 Mar 2002 11:15:53 -0500 > > Bob Johnson wrote: > > > >> > > Handbook description of freebsd-security mailing list is "Security issues". > > Mailing list is flooded with questions about how to use ssh, how > > to log in, how to configure IPFW, etc. Problem is multiplied by > > three responses telling them they should have posted their question > > on freebsd-questions. > > Indeed the Handbook does not cover the use and configuration of ipfw(8) > as it should. I have already started writing a section for the use and > configuration of ipfw(8). As for ssh(1), we have a nice section that > has been written by Chern Lee in the security section of the handbook, > so it need not be touched unless a large update is needed. > > > -- > Tom (Darklogik) Rhodes > www.Pittgoth.com Gothic Liberation Front > www.FreeBSD.org The Power To Serve > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-doc" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 2:21:23 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0459C37B404; Mon, 25 Mar 2002 02:21:21 -0800 (PST) Received: (from chern@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2PALKl10653; Mon, 25 Mar 2002 02:21:20 -0800 (PST) (envelope-from chern) Date: Mon, 25 Mar 2002 02:21:20 -0800 (PST) From: Message-Id: <200203251021.g2PALKl10653@freefall.freebsd.org> To: martin.karlsson@visit.se, chern@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/36097: [PATCH] FAQ, user runs XFree86_4, app X depends on XFree86_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: [PATCH] FAQ, user runs XFree86_4, app X depends on XFree86_3 State-Changed-From-To: open->closed State-Changed-By: chern State-Changed-When: Mon Mar 25 02:21:07 PST 2002 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=36097 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 2:47:14 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCDF837B400; Mon, 25 Mar 2002 02:47:10 -0800 (PST) Received: (from pb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2PAlAe14968; Mon, 25 Mar 2002 02:47:10 -0800 (PST) (envelope-from pb) Date: Mon, 25 Mar 2002 02:47:10 -0800 (PST) From: Message-Id: <200203251047.g2PAlAe14968@freefall.freebsd.org> To: thomas@cuivre.fr.eu.org, pb@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/36267: [patch] document boot option '-n' 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: [patch] document boot option '-n' State-Changed-From-To: open->closed State-Changed-By: pb State-Changed-When: Mon Mar 25 02:45:57 PST 2002 State-Changed-Why: Fix to flag lists committed to -current, flag description dropped (already committed in a different wording). Will be merged to -stable later. http://www.freebsd.org/cgi/query-pr.cgi?pr=36267 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 4:55: 9 2002 Delivered-To: freebsd-doc@freebsd.org Received: from post.webmailer.de (natpost.webmailer.de [192.67.198.65]) by hub.freebsd.org (Postfix) with ESMTP id B9F9737B417 for ; Mon, 25 Mar 2002 04:55:00 -0800 (PST) Received: from hinnernote.hinner.de (pD9EB76BC.dip.t-dialin.net [217.235.118.188]) by post.webmailer.de (8.9.3/8.8.7) with ESMTP id NAA06111 for ; Mon, 25 Mar 2002 13:54:58 +0100 (MET) Message-Id: <5.1.0.14.0.20020325135323.009f67a0@post.strato.de> X-Sender: hinner%hinner.de@post.strato.de X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 25 Mar 2002 13:54:50 +0100 To: doc@FreeBSD.org From: Hinner EDV Subject: CD vendor entry 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 Hi! I'm sending this mail again, because Murray did not enter my service on your list... To link directly to the FreeBSD pages is nice and possible. Could you please use the link http://www.hinner.de/linux/indexf.html to my FreeBSD offer? Where should I send my submission info to join the vendors list? Thank you! Kajetan --- Murray Stokely wrote: On Wed, Jan 02, 2002 at 11:18:07PM +0100, Kajetan Hinner wrote: > I'm a Debian and KDE CD vendor and I'd like to sell BSD CDs also (four > 4.4 CDs for 18 Euro). Cool. You may want to join the vendors@FreeBSD.org mailing list. This is a very low traffic mailing list where announcements relevant to FreeBSD CDROM vendors will be sent. > URL: http://www.hinner.de/linux Can we link directly to the FreeBSD section? Maybe you could add a link ot the ordering information directly on this page : http://www.hinner.de/linux/freebsd.html So that potential FreeBSD users don't have to search through tons of Linux pages before finding out how to order a FreeBSD CD. > Hinner EDV will donate 1 Euro for every FreeBSD > set sold back to the FreeBSD > Project. Cool. Please donate this money to the FreeBSD Foundation, http://www.freebsdfoundation.org. - Murray ------------------------------------------------------------------------ Part 1.2Type: application/pgp-signature To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 5: 4:59 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rhadamanth.submonkey.net (pc4-card4-0-cust162.cdf.cable.ntl.com [80.4.14.162]) by hub.freebsd.org (Postfix) with ESMTP id 7B8E937B417 for ; Mon, 25 Mar 2002 05:04:56 -0800 (PST) Received: from setantae by rhadamanth.submonkey.net with local (Exim 3.35 #1) id 16pU9Z-0004gA-00; Mon, 25 Mar 2002 13:04:49 +0000 Date: Mon, 25 Mar 2002 13:04:49 +0000 From: Ceri To: Josh Paetzel Cc: freebsd-doc@freebsd.org Subject: Re: docs/35723 Message-ID: <20020325130449.GA17847@submonkey.net> Mail-Followup-To: Ceri , Josh Paetzel , freebsd-doc@freebsd.org References: <20020324151413.A19439@twincat.vladsempire.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020324151413.A19439@twincat.vladsempire.net> User-Agent: Mutt/1.3.28i 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 Sun, Mar 24, 2002 at 03:14:13PM +0000, Josh Paetzel wrote: > Is there any reason not to commit this? I ran into yet another lost > soul on irc tonight trying to get this driver to work. > > *** le.4.old Fri Mar 15 10:57:26 2002 > --- le.4 Fri Mar 15 10:57:42 2002 > *************** > *** 93,95 **** > --- 93,99 ---- > .An Matt Thomas . > This manual page was written by > .An David E. O'Brien . > + .Sh BUGS > + This driver has been causing kernel panics since 4.0-RELEASE, and > appears to be no > + longer actively maintained. PR misc/18641 describes the known > issues that have been > + submitted. Well I don't think we should refer to PRs in manpages for one. 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 Mon Mar 25 7: 5:35 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id 23B6337B405; Mon, 25 Mar 2002 07:05:31 -0800 (PST) Received: from pittgoth.com (lcl234.zbzoom.net [208.236.36.234]) by pittgoth.com (8.11.6/8.11.6) with ESMTP id g2PF7wq47164; Mon, 25 Mar 2002 10:07:58 -0500 (EST) (envelope-from darklogik@pittgoth.com) Message-ID: <3C9F3FC2.7040700@pittgoth.com> Date: Mon, 25 Mar 2002 10:18:26 -0500 From: Tom Rhodes Reply-To: darklogik@pittgoth.com User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.7) Gecko/20011221 X-Accept-Language: en-us MIME-Version: 1.0 To: Chern Lee Cc: freebsd-doc@FreeBSD.org Subject: Re: docs/35378: Handbook has inaccurate description of freebsd-security list References: <20020325015550.C27820-100000@www.freebsdmall.com> Content-Type: text/plain; charset=us-ascii; format=flowed 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 Chern Lee wrote: > Hey Tom, > > Have you seen the Security/Firewalls section of the Handbook? > http://www.freebsd.org/handbook/firewalls.html > > It has a section on use and configuration of ipfw, although there is > always room for improvement. > > Wouldn't want any duplicated efforts. > > - chern > > On Fri, 1 Mar 2002, Tom Rhodes wrote: I was reviewing that a few days ago, perhaps a link to this chapter from the natd section? Maybe a mention, you are beyond correct that information duplication wouldn't be useful in any way, for several reasons ;) Thanks for following up on this ;) -- Tom (Darklogik) Rhodes www.Pittgoth.com Gothic Liberation Front www.FreeBSD.org The Power To Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 7: 9:20 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id 0FC6F37B419 for ; Mon, 25 Mar 2002 07:09:17 -0800 (PST) Received: from pittgoth.com (lcl234.zbzoom.net [208.236.36.234]) by pittgoth.com (8.11.6/8.11.6) with ESMTP id g2PFBRq47176; Mon, 25 Mar 2002 10:11:28 -0500 (EST) (envelope-from darklogik@pittgoth.com) Message-ID: <3C9F4094.5060207@pittgoth.com> Date: Mon, 25 Mar 2002 10:21:56 -0500 From: Tom Rhodes Reply-To: darklogik@pittgoth.com User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.7) Gecko/20011221 X-Accept-Language: en-us MIME-Version: 1.0 To: Ceri Cc: Josh Paetzel , freebsd-doc@FreeBSD.ORG Subject: Re: docs/35723 References: <20020324151413.A19439@twincat.vladsempire.net> <20020325130449.GA17847@submonkey.net> Content-Type: text/plain; charset=us-ascii; format=flowed 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 Ceri wrote: > On Sun, Mar 24, 2002 at 03:14:13PM +0000, Josh Paetzel wrote: > >>Is there any reason not to commit this? I ran into yet another lost >>soul on irc tonight trying to get this driver to work. >> >>*** le.4.old Fri Mar 15 10:57:26 2002 >> --- le.4 Fri Mar 15 10:57:42 2002 >> *************** >> *** 93,95 **** >> --- 93,99 ---- >> .An Matt Thomas . >> This manual page was written by >> .An David E. O'Brien . >> + .Sh BUGS >> + This driver has been causing kernel panics since 4.0-RELEASE, and >> appears to be no >> + longer actively maintained. PR misc/18641 describes the known >> issues that have been >> + submitted. >> > > Well I don't think we should refer to PRs in manpages for one. > > Ceri > > hmmm, Ceri, why don't we cut from the PR listing down? If you can commit everything before that then we shouldn't have a problem, I agree that problem reports should not be in manpages, and think that its been pointed out as by other people as a not to do... Gimmie an opinion ;) -- Tom (Darklogik) Rhodes www.Pittgoth.com Gothic Liberation Front www.FreeBSD.org The Power To Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 7:19: 8 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rhadamanth.submonkey.net (pc4-card4-0-cust162.cdf.cable.ntl.com [80.4.14.162]) by hub.freebsd.org (Postfix) with ESMTP id CCA5637B400 for ; Mon, 25 Mar 2002 07:19:04 -0800 (PST) Received: from setantae by rhadamanth.submonkey.net with local (Exim 3.35 #1) id 16pWFG-0005AP-00; Mon, 25 Mar 2002 15:18:50 +0000 Date: Mon, 25 Mar 2002 15:18:50 +0000 From: Ceri To: Tom Rhodes Cc: Josh Paetzel , freebsd-doc@FreeBSD.ORG Subject: Re: docs/35723 Message-ID: <20020325151850.GA19695@submonkey.net> Mail-Followup-To: Ceri , Tom Rhodes , Josh Paetzel , freebsd-doc@FreeBSD.ORG References: <20020324151413.A19439@twincat.vladsempire.net> <20020325130449.GA17847@submonkey.net> <3C9F4094.5060207@pittgoth.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3C9F4094.5060207@pittgoth.com> User-Agent: Mutt/1.3.28i 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 Mon, Mar 25, 2002 at 10:21:56AM -0500, Tom Rhodes wrote: > Ceri wrote: > > >On Sun, Mar 24, 2002 at 03:14:13PM +0000, Josh Paetzel wrote: > > > >>Is there any reason not to commit this? I ran into yet another lost > >>soul on irc tonight trying to get this driver to work. > >> > >>*** le.4.old Fri Mar 15 10:57:26 2002 > >>--- le.4 Fri Mar 15 10:57:42 2002 > >>*************** > >>*** 93,95 **** > >>--- 93,99 ---- > >> .An Matt Thomas . > >> This manual page was written by > >> .An David E. O'Brien . > >>+ .Sh BUGS > >>+ This driver has been causing kernel panics since 4.0-RELEASE, and > >>appears to be no > >>+ longer actively maintained. PR misc/18641 describes the known > >>issues that have been > >>+ submitted. > >> > > > >Well I don't think we should refer to PRs in manpages for one. > > > hmmm, Ceri, why don't we cut from the PR listing down? Well I also don't think that we should say "this driver...appears to be no longer actively maintained". Which means that I don't like two thirds of the suggested patch, which is really quite a lot for a 27 word patch. Far better would something like "This driver causes kernel panics". And I don't like that either :) 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 Mon Mar 25 7:30:23 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A3A4637B404 for ; Mon, 25 Mar 2002 07:30:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2PFU5U23558; Mon, 25 Mar 2002 07:30:05 -0800 (PST) (envelope-from gnats) Date: Mon, 25 Mar 2002 07:30:05 -0800 (PST) Message-Id: <200203251530.g2PFU5U23558@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Tom Rhodes Subject: Re: docs/35723 Reply-To: Tom Rhodes 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/35723; it has been noted by GNATS. From: Tom Rhodes To: Ceri Cc: Josh Paetzel , FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/35723 Date: Mon, 25 Mar 2002 10:39:43 -0500 Ceri wrote: > On Mon, Mar 25, 2002 at 10:21:56AM -0500, Tom Rhodes wrote: > >>Ceri wrote: >> >> >>>On Sun, Mar 24, 2002 at 03:14:13PM +0000, Josh Paetzel wrote: >>> >>> >>>>Is there any reason not to commit this? I ran into yet another lost >>>>soul on irc tonight trying to get this driver to work. >>>> >>>>*** le.4.old Fri Mar 15 10:57:26 2002 >>>>--- le.4 Fri Mar 15 10:57:42 2002 >>>>*************** >>>>*** 93,95 **** >>>>--- 93,99 ---- >>>> .An Matt Thomas . >>>> This manual page was written by >>>> .An David E. O'Brien . >>>>+ .Sh BUGS >>>>+ This driver has been causing kernel panics since 4.0-RELEASE, and >>>>appears to be no >>>>+ longer actively maintained. PR misc/18641 describes the known >>>>issues that have been >>>>+ submitted. >>>> >>>> >>>Well I don't think we should refer to PRs in manpages for one. >>> >>> >>hmmm, Ceri, why don't we cut from the PR listing down? >> > > Well I also don't think that we should say "this driver...appears to be > no longer actively maintained". > Which means that I don't like two thirds of the suggested patch, which > is really quite a lot for a 27 word patch. > > Far better would something like "This driver causes kernel panics". > And I don't like that either :) > > Ceri > > This driver causes inconsistancies (sp, use i/aspell) and can sometimes lead to kernel panics. This driver is currently obsolete and may cause system instability, if this occurs please try another driver or card. Can we email the maintainer and find out if their is another driver that can be used in its place, maybe list that? How do you feel about the above sentances? I know it will be ``raising barriers'' for users, but they should be warned about a driver known to cause panics. On the other hand, I do not like mentioning the other card idea. Catch 22? -- Tom (Darklogik) Rhodes www.Pittgoth.com Gothic Liberation Front www.FreeBSD.org The Power To Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 8:29: 0 2002 Delivered-To: freebsd-doc@freebsd.org Received: from euskalherria.info (stupid.superb.net [207.228.236.31]) by hub.freebsd.org (Postfix) with SMTP id B3FE237B405 for ; Mon, 25 Mar 2002 08:28:26 -0800 (PST) Received: (qmail 66700 invoked from network); 25 Mar 2002 22:26:25 -0000 Received: from unknown (HELO haundixe) (217.127.178.10) by malato.euskalherria.info with SMTP; 25 Mar 2002 22:26:25 -0000 Content-Type: text/plain; charset="iso-8859-1" From: tikis To: doc@freebsd.org Subject: About translating some doc of FreeBSD into Basque. Date: Mon, 25 Mar 2002 17:32:52 +0100 X-Mailer: KMail [version 1.2] MIME-Version: 1.0 Message-Id: <0203251732520F.11075@haundixe> Content-Transfer-Encoding: quoted-printable 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: I don't know if this is the address that must to receive this message but= =20 I'll explain my idea. I want to translate some doc of FreeBSD into basque. Probably (as I've re= ad=20 in the doc) would be quite nice with the Installation process and the FAQ= =2E The basque is the most ancient language of Europe (well, pearhaps the=20 hungarian is the most ancient but we are something like 300.000 basque=20 speakers all over the world). It would be fantastic to put together an=20 ancient language and the best O.S. in the world.=20 Don't you think so?. 8-D I'm helping the es.freebsd.org project, translating the Handbook into spa= nish=20 but on last days the responsible probably is working too hard and can't=20 explain me what is needed. I don't think that we _need_ a eu.freebsd.org domain but if we afford thi= s=20 funny/exciting but _hard_ work would be better to do 'a bit' official. I have a lot of place on a server to put in the net the translated pages= =2E It=20 would be silly (I think) to put a FreeBSD site's mirror because our serve= r is=20 on USA. There are a lot of mirrors on USA, isn't it?. Well, I know that my english is absolutely horrible but I can understand = the=20 technical writings so good. Could you point me to the good way?. Thanks a lot. Bixen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 8:43:48 2002 Delivered-To: freebsd-doc@freebsd.org Received: from samuelstn.dhs.org (h24-64-81-248.cg.shawcable.net [24.64.81.248]) by hub.freebsd.org (Postfix) with SMTP id 623B537B417 for ; Mon, 25 Mar 2002 08:43:33 -0800 (PST) Received: (qmail 96951 invoked from network); 25 Mar 2002 16:43:27 -0000 Received: from firewall (HELO SAMCHOW1.ca.nortel.com) (192.168.1.1) by homeserver with SMTP; 25 Mar 2002 16:43:27 -0000 Message-ID: <010801c1d41c$7b3aabe0$2784412f@ca.nortel.com> From: "Samuel Chow" To: "Tom Rhodes" , "Ceri" Cc: References: <200203251530.g2PFU5U23558@freefall.freebsd.org> Subject: Re: docs/35723 Date: Mon, 25 Mar 2002 09:45:33 -0700 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.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 Hold on. Someone just posted a patch to fix the le driver. Maybe we don't have to do anything. ----- Original Message ----- From: "Tom Rhodes" To: Sent: Monday, March 25, 2002 8:30 AM Subject: Re: docs/35723 > The following reply was made to PR docs/35723; it has been noted by GNATS. > > From: Tom Rhodes > To: Ceri > Cc: Josh Paetzel , > FreeBSD-gnats-submit@FreeBSD.org > Subject: Re: docs/35723 > Date: Mon, 25 Mar 2002 10:39:43 -0500 > > Ceri wrote: > > > On Mon, Mar 25, 2002 at 10:21:56AM -0500, Tom Rhodes wrote: > > > >>Ceri wrote: > >> > >> > >>>On Sun, Mar 24, 2002 at 03:14:13PM +0000, Josh Paetzel wrote: > >>> > >>> > >>>>Is there any reason not to commit this? I ran into yet another lost > >>>>soul on irc tonight trying to get this driver to work. > >>>> > >>>>*** le.4.old Fri Mar 15 10:57:26 2002 > >>>>--- le.4 Fri Mar 15 10:57:42 2002 > >>>>*************** > >>>>*** 93,95 **** > >>>>--- 93,99 ---- > >>>> .An Matt Thomas . > >>>> This manual page was written by > >>>> .An David E. O'Brien . > >>>>+ .Sh BUGS > >>>>+ This driver has been causing kernel panics since 4.0-RELEASE, and > >>>>appears to be no > >>>>+ longer actively maintained. PR misc/18641 describes the known > >>>>issues that have been > >>>>+ submitted. > >>>> > >>>> > >>>Well I don't think we should refer to PRs in manpages for one. > >>> > >>> > >>hmmm, Ceri, why don't we cut from the PR listing down? > >> > > > > Well I also don't think that we should say "this driver...appears to be > > no longer actively maintained". > > Which means that I don't like two thirds of the suggested patch, which > > is really quite a lot for a 27 word patch. > > > > Far better would something like "This driver causes kernel panics". > > And I don't like that either :) > > > > Ceri > > > > > > This driver causes inconsistancies (sp, use i/aspell) and can > sometimes lead to kernel panics. > > This driver is currently obsolete and may cause system instability, > if this occurs please try another driver or card. > > Can we email the maintainer and find out if their is another driver > that can be used in its place, maybe list that? How do you feel > about the above sentances? I know it will be ``raising barriers'' for > users, but they should be warned about a driver known to cause > panics. On the other hand, I do not like mentioning the other card > idea. Catch 22? > > -- > Tom (Darklogik) Rhodes > www.Pittgoth.com Gothic Liberation Front > www.FreeBSD.org The Power To Serve > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-doc" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 10:31: 5 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE89737B498 for ; Mon, 25 Mar 2002 10:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2PIU4h68775; Mon, 25 Mar 2002 10:30:04 -0800 (PST) (envelope-from gnats) Date: Mon, 25 Mar 2002 10:30:04 -0800 (PST) Message-Id: <200203251830.g2PIU4h68775@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Tom Rhodes Subject: Re: docs/35378: Handbook has inaccurate description of freebsd-security list Reply-To: Tom Rhodes 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/35378; it has been noted by GNATS. From: Tom Rhodes To: freebsd-gnats-submit@FreeBSD.org, bob88@garbonzo.hos.ufl.edu Cc: Subject: Re: docs/35378: Handbook has inaccurate description of freebsd-security list Date: Mon, 25 Mar 2002 13:35:15 -0500 I reread this pr, and feel strongly that it can be closed. Any objections? I have been personally lurking the FreeBSD-security mailing list for about 2-3 weeks, and the only thing I have read about are security questions in general, mainly things like if I get this error. I feel that the security mailing list is fine how it is, as the stated problems do not seem to be occuring right now... Opions? -- Tom (Darklogik) Rhodes www.Pittgoth.com Gothic Liberation Front www.FreeBSD.org The Power To Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 11: 3:24 2002 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 E796637B400 for ; Mon, 25 Mar 2002 11:00:52 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2PJ0qV73684 for freebsd-doc@freebsd.org; Mon, 25 Mar 2002 11:00:52 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 25 Mar 2002 11:00:52 -0800 (PST) Message-Id: <200203251900.g2PJ0qV73684@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 S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/03/09] docs/35723 doc le(4) page doesn't warn about likely syst 1 problem total. 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 [2002/01/15] ports/33929 doc Section 15.15 of the FreeBSD Porter's Han o [2002/02/28] docs/35430 doc [Maintainer Update] Filtering-Bridges Art o [2002/03/06] docs/35620 doc make release fails in documentation for R o [2002/03/08] docs/35678 doc docproj Makefiles for web are broken for o [2002/03/09] docs/35724 doc www; Handbook missing link to important H o [2002/03/15] docs/35940 doc red(1) manual doesn't explain red(1). o [2002/03/21] docs/36168 doc -pthread/_THREAD_SAFE docs missing in gcc o [2002/03/24] docs/36263 doc Handbook section 19.4.10 skips over merge 10 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/08/10] docs/20528 doc sysconf(3) manpage doesn't mention posix. 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) o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string o [2001/04/29] docs/26943 doc [patch] description of :C modifier is mis 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/06] docs/27915 doc man 5 passwd does not properly explain th 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/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/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 a [2001/10/14] docs/31271 doc rl(4) discourages vender openness by disp 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/11/15] docs/32020 doc loader.8 manpage missing tunables a [2001/11/16] docs/32041 doc Add point about net.inet.tcp.portange.{fi o [2001/11/16] docs/32054 doc inconsistency between index.3 and rindex. a [2001/11/26] docs/32323 doc man page `named(8)' do not have link for o [2001/12/01] docs/32425 doc Document cvs update `P file' output o [2001/12/03] docs/32468 doc broken link in handbook: sysutils/mkisofs s [2001/12/07] docs/32578 doc A _really_ petty change to the front page o [2001/12/10] docs/32674 doc no man page for the ntp_adjtime system ca o [2001/12/30] docs/33354 doc no rsync section in mirror chapter of the o [2002/01/05] docs/33585 doc Possible Errata in ntp.conf.5 manpage o [2002/01/05] docs/33586 doc An errata in ntp.keys.5 manpage o [2002/01/05] docs/33589 doc Patch to doc.docbook.mk to post process . o [2002/01/13] docs/33852 doc split(1) man page implies that input file o [2002/01/14] docs/33877 doc Documentet behaviour of SF_flags for non- o [2002/01/15] misc/33926 doc Search function on website can not access o [2002/01/18] docs/34038 doc [NEW ARTICLE] Upgrading a.out to Elf o [2002/01/20] docs/34088 doc a.out(5) fails to explain what bss is o [2002/01/24] docs/34234 doc restore(8) man page doesn't explain rrest o [2002/01/24] docs/34239 doc tunefs(8) man page doesn't describe argum o [2002/01/24] docs/34248 doc dump(8) man page block/record/other clari o [2002/02/01] docs/34529 doc [patch] Grammar nits in usbd.conf(5) and o [2002/02/03] docs/34577 doc Some man pages still advise using "confli o [2002/02/03] docs/34583 doc DECLARE_MODULE(9) man page is broken. o [2002/02/04] docs/34626 doc Copyright on "Index of /mail/current" pag o [2002/02/05] docs/34654 doc Update UIDs for porters handbook o [2002/02/08] docs/34743 doc nfsd(8) lacking signal explanation o [2002/02/13] docs/34909 doc Porters Handbook or portlint problem o [2002/02/16] docs/35011 doc There are no commands called "diskless" o o [2002/02/20] docs/35140 doc How to enable DPMS support in XFree86-4 i o [2002/02/22] docs/35222 doc mailing list archive URL regexp suboptima o [2002/02/24] docs/35280 doc [PATCH] null-modem cable pinout in 'Seria o [2002/02/26] docs/35343 doc Old broken Unix docco Makefiles o [2002/02/26] docs/35345 doc Restore old yacc documentation o [2002/02/27] docs/35378 doc Handbook has inaccurate description of f o [2002/02/28] docs/35436 doc PAO isn't very latest-and-greatest these o [2002/03/03] docs/35523 doc manpage fixes for df(1) and ls(1) o [2002/03/04] docs/35530 doc New cvsup and www mirror in Romania o [2002/03/05] docs/35563 doc [Patch] Stop asking people to give us the o [2002/03/06] docs/35602 doc dump(8)/restore(8) pages don't explain "a o [2002/03/06] docs/35603 doc grep(1) page is missing info on zfgrep, z o [2002/03/06] docs/35604 doc arp(4) page mentions 10Mb/s but not 100Mb o [2002/03/06] docs/35605 doc chmod(1) page misleads by use of "regardl o [2002/03/06] docs/35606 doc date(1) page doesn't say which clock(s) i o [2002/03/06] docs/35607 doc dump(1) page needs discussion of scary er o [2002/03/06] docs/35608 doc mt(1) page uses "setmark" without explana o [2002/03/06] docs/35609 doc mt(1) page needs explanation of "long era o [2002/03/06] docs/35610 doc sscanf(3) page has obsolete "this release o [2002/03/06] docs/35612 doc ps(1) page "state" description doesn't me o [2002/03/07] docs/35642 doc lo(4) page maybe should document optional o [2002/03/07] docs/35644 doc lo(4) page presumes familiarity with prin o [2002/03/07] docs/35646 doc cp(1) page needs a "Bugs" section. o [2002/03/07] docs/35647 doc www; combine query-by-number and multi-fi o [2002/03/07] docs/35648 doc rc.conf; add note about "flags" to both f o [2002/03/07] docs/35649 doc mount_smbfs(8) page: "See ./examples/dot. o [2002/03/07] docs/35651 doc mount(8) man page contains references to o [2002/03/07] docs/35652 doc bsd.README seriously obsolete o [2002/03/08] docs/35684 doc INSTALL.TXT, .HTM have obsolete FIPS info o [2002/03/08] docs/35686 doc blackhole(4) page seems to contradict its o [2002/03/08] docs/35687 doc /etc/nsmb.conf missing mention of readers o [2002/03/08] docs/35688 doc fdisk(8) page extraneous "being", etc. o [2002/03/08] docs/35696 doc mount_smbfs(8) references a nonexistent n o [2002/03/09] docs/35711 doc the "gnats page" should move to its own s o [2002/03/10] docs/35732 doc adduser(8) page has obsolete reference an o [2002/03/12] docs/35823 doc [PATCH] Little Restructuring of the Devel o [2002/03/15] docs/35932 doc Insufficient description of ``log_in_vain o [2002/03/15] docs/35939 doc ipfw(8) needs explicit statement about no o [2002/03/15] docs/35941 doc cd(4) manual doesn't mention "target" use o [2002/03/15] docs/35942 doc at(1) manual doesn't describe at.allow an o [2002/03/15] docs/35943 doc at(1) config files are misplaced in /var/ o [2002/03/15] docs/35944 doc cd(9) manual refers to non-existent scsic o [2002/03/15] docs/35947 doc disklabel(8) manual missing "2" in exampl o [2002/03/15] docs/35948 doc disklabel(8) manual uses archaic "pack" a o [2002/03/15] docs/35949 doc [PATCH] rtprio(1) man page uses incorrect o [2002/03/15] docs/35951 doc disklabel(8) manual confuses partitions a o [2002/03/15] docs/35953 doc hosts.equiv(5) manual is confusing or wro o [2002/03/15] docs/35955 doc pw(8) manual doesn't explain the "-F" opt o [2002/03/15] docs/35967 doc rc.conf(5) manual missing "dumpdir" and " o [2002/03/17] docs/36019 doc [NEW ARTICLE] - Java and Jakarta Tomcat o o [2002/03/18] docs/36055 doc [PATCH] adding some help-yourself-info to 102 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 Mar 25 13:20:12 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 978E237B417 for ; Mon, 25 Mar 2002 13:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2PLK1m11149; Mon, 25 Mar 2002 13:20:01 -0800 (PST) (envelope-from gnats) Received: from home.tricknology.org (213-187-162-25.dd.nextgentel.com [213.187.162.25]) by hub.freebsd.org (Postfix) with ESMTP id 10A8037B405 for ; Mon, 25 Mar 2002 13:18:44 -0800 (PST) Received: by home.tricknology.org (Postfix, from userid 1000) id 2B1543F59; Mon, 25 Mar 2002 22:18:35 +0100 (CET) Message-Id: <20020325211835.2B1543F59@home.tricknology.org> Date: Mon, 25 Mar 2002 22:18:35 +0100 (CET) From: Oddbjorn Steffensen Reply-To: Oddbjorn Steffensen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36311: Tiny typo in articles/contributors/article.sgml 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: 36311 >Category: docs >Synopsis: Tiny typo in articles/contributors/article.sgml >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 Mar 25 13:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Oddbjorn Steffensen >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD fermat.tricknology.org 4.5-STABLE FreeBSD 4.5-STABLE #2: Wed Jan 30 10:46:17 CET 2002 root@fermat.tricknology.org:/usr/obj/usr/src/sys/FERMAT i386 >Description: Tiny typo in doc/en_US.ISO8859-1/articles/contributors/article.sgml s/Steffenson/Steffensen/ >How-To-Repeat: >Fix: --- article.sgml.orig Mon Mar 25 22:14:12 2002 +++ article.sgml Mon Mar 25 22:14:26 2002 @@ -5442,7 +5442,7 @@ - Oddbjorn Steffenson oddbjorn@tricknology.org + Oddbjorn Steffensen oddbjorn@tricknology.org >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 Mar 25 13:27:20 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mx1.datanet.hu (mx1.datanet.hu [194.149.13.160]) by hub.freebsd.org (Postfix) with ESMTP id 16F2237B400 for ; Mon, 25 Mar 2002 13:26:41 -0800 (PST) Received: from fonix.adamsfamily.xx (nilus-1724.adsl.datanet.hu [195.56.94.200]) by mx1.datanet.hu (DataNet) with ESMTP id 2DE83F950 for ; Mon, 25 Mar 2002 22:26:39 +0100 (CET) Received: from fonix.adamsfamily.xx (localhost [127.0.0.1]) by fonix.adamsfamily.xx (8.12.2/8.12.2) with ESMTP id g2PLQljm017471 for ; Mon, 25 Mar 2002 22:26:47 +0100 (CET) (envelope-from sziszi@bsd.hu) Received: (from cc@localhost) by fonix.adamsfamily.xx (8.12.2/8.12.2/Submit) id g2PLQlHl017470 for freebsd-doc@freebsd.org; Mon, 25 Mar 2002 22:26:47 +0100 (CET) X-Authentication-Warning: fonix.adamsfamily.xx: cc set sender to sziszi@bsd.hu using -f Date: Mon, 25 Mar 2002 22:26:46 +0100 From: Szilveszter Adam To: freebsd-doc@freebsd.org Subject: www/en/events breaks web build Message-ID: <20020325212646.GC1025@fonix.adamsfamily.xx> Mail-Followup-To: Szilveszter Adam , freebsd-doc@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i 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 dear -doc people, Today, the www/en/events directory was connected to the build. Unfortunately, the preparations for this were not yet complete, a small commit was still missing which broke the website build for me. (And if left so, the resulting pages would be outside the website dir structure in any case.) I have opted for an "events" directory, you may choose other if you want... The patch is trivial: Index: Makefile.inc =================================================================== RCS file: /usr/local/ncvs/freebsd//www/en/events/Makefile.inc,v retrieving revision 1.1 diff -u -r1.1 Makefile.inc --- Makefile.inc 16 Mar 2002 08:47:54 -0000 1.1 +++ Makefile.inc 25 Mar 2002 21:09:38 -0000 @@ -1,3 +1,4 @@ # $FreeBSD: www/en/events/Makefile.inc,v 1.1 2002/03/16 08:47:54 murray Exp $ WEB_PREFIX?= ${.CURDIR}/../../.. +WEBBASE?= /data/events As sobomax would say it, "Please fix":-) -- Regards: Szilveszter ADAM Szombathely Hungary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 13:41:18 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mx1.datanet.hu (mx1.datanet.hu [194.149.13.160]) by hub.freebsd.org (Postfix) with ESMTP id 2639037B421 for ; Mon, 25 Mar 2002 13:41:01 -0800 (PST) Received: from fonix.adamsfamily.xx (nilus-1724.adsl.datanet.hu [195.56.94.200]) by mx1.datanet.hu (DataNet) with ESMTP id BA62EF9B9 for ; Mon, 25 Mar 2002 22:40:59 +0100 (CET) Received: from fonix.adamsfamily.xx (localhost [127.0.0.1]) by fonix.adamsfamily.xx (8.12.2/8.12.2) with ESMTP id g2PLf7jm017569 for ; Mon, 25 Mar 2002 22:41:07 +0100 (CET) (envelope-from sziszi@bsd.hu) Received: (from cc@localhost) by fonix.adamsfamily.xx (8.12.2/8.12.2/Submit) id g2PLf734017568 for freebsd-doc@FreeBSD.ORG; Mon, 25 Mar 2002 22:41:07 +0100 (CET) X-Authentication-Warning: fonix.adamsfamily.xx: cc set sender to sziszi@bsd.hu using -f Date: Mon, 25 Mar 2002 22:41:07 +0100 From: Szilveszter Adam To: freebsd-doc@FreeBSD.ORG Subject: Re: www/en/events breaks web build Message-ID: <20020325214107.GD1025@fonix.adamsfamily.xx> Mail-Followup-To: Szilveszter Adam , freebsd-doc@FreeBSD.ORG References: <20020325212646.GC1025@fonix.adamsfamily.xx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020325212646.GC1025@fonix.adamsfamily.xx> User-Agent: Mutt/1.3.28i 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 again, [Sorry for reacting to my own post, I cannot resist it this time] While you are fixing this, there is no link to the bsdcon-devsummit.html yet from anywhere and there is no index.html in either the www/en/events or the www/en/events/2002/ directories, which makes browsing a not very pleasant experience, yet:-) Thanks! -- Regards: Szilveszter ADAM Szombathely Hungary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 13:41:54 2002 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 9FD3137B432 for ; Mon, 25 Mar 2002 13:41:32 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id 7838F4B65D; Mon, 25 Mar 2002 13:41:32 -0800 (PST) Date: Mon, 25 Mar 2002 13:41:32 -0800 From: Murray Stokely To: Szilveszter Adam Cc: freebsd-doc@freebsd.org Subject: Re: www/en/events breaks web build Message-ID: <20020325214132.GQ6007@freebsdmall.com> References: <20020325212646.GC1025@fonix.adamsfamily.xx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020325212646.GC1025@fonix.adamsfamily.xx> User-Agent: Mutt/1.3.25i 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 Mon, Mar 25, 2002 at 10:26:46PM +0100, Szilveszter Adam wrote: > Today, the www/en/events directory was connected to the build. > Unfortunately, the preparations for this were not yet complete, a small > commit was still missing which broke the website build for me. (And if Thanks, I've applied your patch. Sorry for the inconvenience. - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 13:47:29 2002 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 8402137B41A for ; Mon, 25 Mar 2002 13:47:13 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id 56C9E4B65D; Mon, 25 Mar 2002 13:47:08 -0800 (PST) Date: Mon, 25 Mar 2002 13:47:08 -0800 From: Murray Stokely To: Szilveszter Adam Cc: freebsd-doc@FreeBSD.ORG Subject: Re: www/en/events breaks web build Message-ID: <20020325214708.GR6007@freebsdmall.com> References: <20020325212646.GC1025@fonix.adamsfamily.xx> <20020325214107.GD1025@fonix.adamsfamily.xx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020325214107.GD1025@fonix.adamsfamily.xx> User-Agent: Mutt/1.3.25i 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 Mon, Mar 25, 2002 at 10:41:07PM +0100, Szilveszter Adam wrote: > Hello again, > > [Sorry for reacting to my own post, I cannot resist it this time] > > While you are fixing this, there is no link to the bsdcon-devsummit.html > yet from anywhere and there is no index.html in either the www/en/events > or the www/en/events/2002/ directories, which makes browsing a not very > pleasant experience, yet:-) That is intentional. The site may not quite be ready yet. Robert Watson will connect it when he's happy with the content. There should be a newsflash entry as well. - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 13:57:36 2002 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 A6A3937B417 for ; Mon, 25 Mar 2002 13:57:28 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id 80EB54B65D; Mon, 25 Mar 2002 13:57:23 -0800 (PST) Date: Mon, 25 Mar 2002 13:57:23 -0800 From: Murray Stokely To: Hinner EDV Cc: doc@FreeBSD.org Subject: Re: CD vendor entry Message-ID: <20020325215723.GT6007@freebsdmall.com> References: <5.1.0.14.0.20020325135323.009f67a0@post.strato.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5.1.0.14.0.20020325135323.009f67a0@post.strato.de> User-Agent: Mutt/1.3.25i 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 Mon, Mar 25, 2002 at 01:54:50PM +0100, Hinner EDV wrote: > To link directly to the FreeBSD pages is nice and possible. Could you > please use the link > > http://www.hinner.de/linux/indexf.html I'm very sorry I dropped the ball on this. I just added your site to the list. It should take about 24 hours before the web site is updated. I just used the address and phone number from your web site. Let me know if there are any corrections. > Where should I send my submission info to join the vendors list? majordomo@FreeBSD.org, as with all of our other mailing lists. Please see: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/eresources.html#ERESOURCES-MAIL - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 14:10:19 2002 Delivered-To: freebsd-doc@freebsd.org Received: from hotmail.com (f37.law11.hotmail.com [64.4.17.37]) by hub.freebsd.org (Postfix) with ESMTP id 8246837B41C for ; Mon, 25 Mar 2002 14:10:15 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 25 Mar 2002 14:10:15 -0800 Received: from 66.46.21.253 by lw11fd.law11.hotmail.msn.com with HTTP; Mon, 25 Mar 2002 22:10:14 GMT X-Originating-IP: [66.46.21.253] From: "Miroslav Pendev" To: FreeBSD-doc@FreeBSD.org Subject: translation to Bulgarian ... Date: Mon, 25 Mar 2002 17:10:14 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 25 Mar 2002 22:10:15.0261 (UTC) FILETIME=[D74810D0:01C1D449] 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 people! Is there somebody currently working on translation of the DOCs (FAQ, Handbook ...) to Bulgarian? If not, I am ready to start. After almost four years as FreeBSD admin I would like to help with something... Miroslav Pendev IT Administrator Toronto Canada _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 14:59:33 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F45A37B405; Mon, 25 Mar 2002 14:59:16 -0800 (PST) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2PMxGm34367; Mon, 25 Mar 2002 14:59:16 -0800 (PST) (envelope-from keramida) Date: Mon, 25 Mar 2002 14:59:16 -0800 (PST) From: Message-Id: <200203252259.g2PMxGm34367@freefall.freebsd.org> To: oddbjorn@tricknology.org, keramida@FreeBSD.org, freebsd-doc@FreeBSD.org, keramida@FreeBSD.org Subject: Re: docs/36311: Tiny typo in articles/contributors/article.sgml 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: Tiny typo in articles/contributors/article.sgml State-Changed-From-To: open->closed State-Changed-By: keramida State-Changed-When: Mon Mar 25 14:58:34 PST 2002 State-Changed-Why: Done. Thanks for telling us about the typo :) Responsible-Changed-From-To: freebsd-doc->keramida Responsible-Changed-By: keramida Responsible-Changed-When: Mon Mar 25 14:58:34 PST 2002 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=36311 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 16:29:17 2002 Delivered-To: freebsd-doc@freebsd.org Received: from hokkshideh2.jetcafe.org (hokkshideh2.jetcafe.org [205.147.43.8]) by hub.freebsd.org (Postfix) with ESMTP id 0AD1937B417 for ; Mon, 25 Mar 2002 16:29:15 -0800 (PST) Received: from hokkshideh2.jetcafe.org (localhost [127.0.0.1]) by hokkshideh2.jetcafe.org (8.11.6/8.11.6) with ESMTP id g2Q0S8R08285 for ; Mon, 25 Mar 2002 16:28:08 -0800 (PST) (envelope-from dave@hokkshideh2.jetcafe.org) Message-Id: <200203260028.g2Q0S8R08285@hokkshideh2.jetcafe.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: freebsd-doc@freebsd.org Subject: Mail search link broken Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 25 Mar 2002 16:28:03 -0800 From: Dave Hayes 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 "search" link at http://www.freebsd.org/support.html#mailing-list is broken. I hope this is the right list. If it's not please reply to me directly with the correct list and I'll post it there. =) ------ Dave Hayes - Consultant - Altadena CA, USA - dave@jetcafe.org >>> The opinions expressed above are entirely my own <<< "There is someone willing to argue about any point." --I don't know, but I'll argue any attribution To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Mon Mar 25 19:24:30 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by hub.freebsd.org (Postfix) with ESMTP id 8F64037B41C for ; Mon, 25 Mar 2002 19:24:23 -0800 (PST) Received: from mike ([63.205.13.125]) by mta7.pltn13.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GTK00DV29GM9K@mta7.pltn13.pbi.net> for doc@FreeBSD.org; Mon, 25 Mar 2002 19:24:23 -0800 (PST) Date: Mon, 25 Mar 2002 19:26:48 -0800 From: "Contractor Resource Inc." Subject: Special Offer from Our Partners To: doc@FreeBSD.org Message-id: <67742002322632648630@mike> MIME-version: 1.0 Content-type: multipart/alternative; boundary="Boundary_(ID_yeDoU0wCcP6nJiEXHP4RoQ)" X-Priority: 3 X-MSMail-priority: Normal X-EM-Version: 5, 0, 0, 19 X-EM-Registration: #01B0530810E603002D00 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 --Boundary_(ID_yeDoU0wCcP6nJiEXHP4RoQ) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Dear Construction Industry Professional, From time to time Contractor Resource Inc., publisher of "the Nailbag" monthly email newsletter, would like to send you information about valuable new services, products and special offers from our preferred business partners that we feel will be of interest to you. If you do not want to receive these email messages, please copy the link below in its entirety into your web browser and hit enter. http://www.contractorresource.com/mail.cgi?action=unsub&list_3rdpartyunsub=on&email=doc@FreeBSD.org Please note that replying to this email will not unsubscribe you. You must use the link above in order to remove your name from this list. --Boundary_(ID_yeDoU0wCcP6nJiEXHP4RoQ) Content-type: text/html; charset=US-ASCII Content-transfer-encoding: 7BIT Protecting Your Privacy Dear Construction Industry Professional,

From time to time Contractor Resource Inc., publisher of "the Nailbag" monthly email newsletter, would like to send you information about valuable new services, products and special offers from our preferred business partners that we feel will be of interest to you.  If you do not want to receive these email messages, please click on the unsubscribe link below. 

[unsubscribe]

Please note that replying to this email will not unsubscribe you.  You must click on the link above in order to remove your name from this list.

--Boundary_(ID_yeDoU0wCcP6nJiEXHP4RoQ)-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 0: 3:12 2002 Delivered-To: freebsd-doc@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 722B537B419 for ; Tue, 26 Mar 2002 00:03:08 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 2BD90BD62; Tue, 26 Mar 2002 00:03:08 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id AAA03596; Tue, 26 Mar 2002 00:03:03 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2Q81uP45554; Tue, 26 Mar 2002 00:01:56 -0800 (PST) (envelope-from swear@blarg.net) To: Tom Rhodes Cc: freebsd-doc@FreeBSD.ORG Subject: Re: docs/35378: Handbook has inaccurate description of freebsd-security list References: <200203251830.g2PIU4h68775@freefall.freebsd.org> From: swear@blarg.net (Gary W. Swearingen) Date: 26 Mar 2002 00:01:55 -0800 In-Reply-To: <200203251830.g2PIU4h68775@freefall.freebsd.org> Message-ID: Lines: 28 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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 Tom Rhodes writes: > I reread this pr, and feel strongly that it can be closed. > > Opions? Assuming that you don't want to do more research on it, you might give the PR author a chance to survey opinion on -security and report back. I didn't notice -security in the CC list and it seems like something that they should have some say about. My 2 cents: The -security charter has a few more words than the description's "security issues", but is nearly as nebulous. It seems fitting that the list should get a wide variety of threads. I don't know how charter changes get made around here, but it seems to me that list charters shouldn't get changed without some kind of survey of readers. If they want less variety of messages, then they should "authorize" a change of the charter AND the description. I'll also note that the list is in the "general" list of lists, not the "technical list" of lists. The PR's changes, if made, should probably also be accompanied by a move of the list to "technical" list of lists. Rant: The term "technical discussion", which gets bandied about many of the charters, seems to apply to any list except maybe -chat (and there only in the charter, not the list!), and leaves me wondering what is really meant. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 4: 0:20 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 91CA537B41B for ; Tue, 26 Mar 2002 04:00:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2QC06B23893; Tue, 26 Mar 2002 04:00:06 -0800 (PST) (envelope-from gnats) Received: from foo31-146.visit.se (foo31-146.visit.se [62.119.31.146]) by hub.freebsd.org (Postfix) with ESMTP id A2A9D37B400 for ; Tue, 26 Mar 2002 03:57:09 -0800 (PST) Received: (from martin@localhost) by foo31-146.visit.se (8.11.6/8.11.6) id g2QBuVR09220; Tue, 26 Mar 2002 12:56:31 +0100 (CET) (envelope-from martin) Message-Id: <200203261156.g2QBuVR09220@foo31-146.visit.se> Date: Tue, 26 Mar 2002 12:56:31 +0100 (CET) From: Martin Karlsson Reply-To: Martin Karlsson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36334: [PATCH:] correcting three (3) typos in the 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: 36334 >Category: docs >Synopsis: [PATCH:] correcting three (3) typos in the 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: Tue Mar 26 04:00:06 PST 2002 >Closed-Date: >Last-Modified: >Originator: Martin Karlsson >Release: FreeBSD 4.5-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD foo31-146.visit.se 4.5-RELEASE-p2 FreeBSD 4.5-RELEASE-p2 #0: Fri Mar 22 13:00:27 CET 2002 root@foo31-146.visit.se:/usr/src/sys/compile/BERTIL i386 >Description: I have found three typos in the files that make up the fdp-primer: Errorneous (Erroneous) reorganistion (reorganisation) wil (will) This patch (hopefully ;)) corrects this. Be well -- Martin Karlsson >How-To-Repeat: Read the fdp-primer. >Fix: Apply the following (-ru) patch. --- diff.fdp-primer begins here --- diff -ru fdp-primer.old/sgml-primer/chapter.sgml fdp-primer/sgml-primer/chapter.sgml --- fdp-primer.old/sgml-primer/chapter.sgml Tue Mar 26 12:14:08 2002 +++ fdp-primer/sgml-primer/chapter.sgml Tue Mar 26 12:28:28 2002 @@ -861,7 +861,7 @@ will reject documents that make that error. - Errorneous SGML comments + Erroneous SGML comments Chapters and/or directories should not be named in a fashion that reflects their ordering within the Handbook. This ordering might change as the content within the Handbook is reorganised; - this sort of reorganistion should not (generally) include the + this sort of reorganisation should not (generally) include the need to rename files (unless entire chapters are being promoted or demoted within the hierarchy). diff -ru fdp-primer.old/the-website/chapter.sgml fdp-primer/the-website/chapter.sgml --- fdp-primer.old/the-website/chapter.sgml Tue Mar 26 12:14:07 2002 +++ fdp-primer/the-website/chapter.sgml Tue Mar 26 12:37:29 2002 @@ -174,7 +174,7 @@ WEB_ONLY - If set and not empty, the makefiles wil build and install + If set and not empty, the makefiles will build and install only the HTML pages from the www directory. All documents from the doc directory (Handbook, FAQ, Tutorials) will be ignored. E.g.: --- diff.fdp-primer ends here --- >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 Mar 26 4:18:22 2002 Delivered-To: freebsd-doc@freebsd.org Received: from straylight.ringlet.net (discworld.nanolink.com [217.75.135.248]) by hub.freebsd.org (Postfix) with SMTP id 6BAF837B400 for ; Tue, 26 Mar 2002 04:18:14 -0800 (PST) Received: (qmail 49743 invoked by uid 1000); 26 Mar 2002 12:18:21 -0000 Date: Tue, 26 Mar 2002 14:18:21 +0200 From: Peter Pentchev To: Miroslav Pendev Cc: FreeBSD-doc@FreeBSD.org Subject: Re: translation to Bulgarian ... Message-ID: <20020326141821.D301@straylight.oblivion.bg> Mail-Followup-To: Miroslav Pendev , FreeBSD-doc@FreeBSD.org References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="at6+YcpfzWZg/htY" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from pendev@hotmail.com on Mon, Mar 25, 2002 at 05:10:14PM -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 --at6+YcpfzWZg/htY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 25, 2002 at 05:10:14PM -0500, Miroslav Pendev wrote: > Hi people! >=20 > Is there somebody currently working on translation > of the DOCs (FAQ, Handbook ...) to Bulgarian? >=20 > If not, I am ready to start. >=20 > After almost four years as FreeBSD admin I would like > to help with something... Another Bulgarian interested in FreeBSD documentation! Great! :) As noted in the FreeBSD monthly reports, I have started (or at least I thinking about starting :) a 'FreeBSD in Bulgarian' project; one of its goals is the translation of FreeBSD documentation into Bulgarian. However, there are some problems with the SGML tools (esp. jade) handling native Bulgarian characters (esp. the lowercase 'ja' with character code 255). I am in the process of straightening those out; after that, the real translation will begin. Your help will certainly be more than welcome; just wait a little more until I straighten out the 'non-SGML character' issues :) G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 I had to translate this sentence into English because I could not read the = original Sanskrit. --at6+YcpfzWZg/htY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjygZwwACgkQ7Ri2jRYZRVOoZwCfa5Vds9V0MlYF+nWuNgJ1HcjA qroAnAuBEJbySFg5mwbzakUgWKutBZyi =X+dk -----END PGP SIGNATURE----- --at6+YcpfzWZg/htY-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 4:45:37 2002 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 A885637B41E for ; Tue, 26 Mar 2002 04:45:30 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id g2QCjTv80698; Tue, 26 Mar 2002 07:45:29 -0500 (EST) (envelope-from mwlucas) Date: Tue, 26 Mar 2002 07:45:29 -0500 From: Michael Lucas To: tikis Cc: doc@FreeBSD.ORG Subject: Re: About translating some doc of FreeBSD into Basque. Message-ID: <20020326074529.A80675@blackhelicopters.org> References: <0203251732520F.11075@haundixe> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <0203251732520F.11075@haundixe>; from tikis@tikismikis.org on Mon, Mar 25, 2002 at 05:32:52PM +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 Hello, We would be delighted to have another translation. If you check the FreeBSD Documentation Project Primer, you'll see a whole section on translation. Thanks! ==ml On Mon, Mar 25, 2002 at 05:32:52PM +0100, tikis wrote: > Hi: > > I don't know if this is the address that must to receive this message but > I'll explain my idea. > > I want to translate some doc of FreeBSD into basque. Probably (as I've read > in the doc) would be quite nice with the Installation process and the FAQ. > > The basque is the most ancient language of Europe (well, pearhaps the > hungarian is the most ancient but we are something like 300.000 basque > speakers all over the world). It would be fantastic to put together an > ancient language and the best O.S. in the world. > > Don't you think so?. 8-D > > I'm helping the es.freebsd.org project, translating the Handbook into spanish > but on last days the responsible probably is working too hard and can't > explain me what is needed. > > I don't think that we _need_ a eu.freebsd.org domain but if we afford this > funny/exciting but _hard_ work would be better to do 'a bit' official. > > > I have a lot of place on a server to put in the net the translated pages. It > would be silly (I think) to put a FreeBSD site's mirror because our server is > on USA. There are a lot of mirrors on USA, isn't it?. > > > Well, I know that my english is absolutely horrible but I can understand the > technical writings so good. > > Could you point me to the good way?. > > > Thanks a lot. > > > Bixen > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-doc" in the body of the message -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org my FreeBSD column: http://www.oreillynet.com/pub/q/Big_Scary_Daemons http://www.blackhelicopters.org/~mwlucas/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 7:27:56 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id 63B7037B419 for ; Tue, 26 Mar 2002 07:27:51 -0800 (PST) Received: from pittgoth.com (lcl234.zbzoom.net [208.236.36.234]) by pittgoth.com (8.11.6/8.11.6) with ESMTP id g2QFUGq49332; Tue, 26 Mar 2002 10:30:16 -0500 (EST) (envelope-from darklogik@pittgoth.com) Message-ID: <3CA0967C.6020802@pittgoth.com> Date: Tue, 26 Mar 2002 10:40:44 -0500 From: Tom Rhodes Reply-To: darklogik@pittgoth.com User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.7) Gecko/20011221 X-Accept-Language: en-us MIME-Version: 1.0 To: "Gary W. Swearingen" Cc: freebsd-doc@FreeBSD.ORG Subject: Re: docs/35378: Handbook has inaccurate description of freebsd-security list References: <200203251830.g2PIU4h68775@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed 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 Gary W. Swearingen wrote: > Tom Rhodes writes: > > >> I reread this pr, and feel strongly that it can be closed. >> >> Opions? >> > > Assuming that you don't want to do more research on it, you might give > the PR author a chance to survey opinion on -security and report back. > I didn't notice -security in the CC list and it seems like something > that they should have some say about. Well, i'm still subscribed, and due to the low volume of email, I will not be unsubscribing anytime soon. Its nice to get more knowledgeable opinions on key sizes and other things ;) > > > My 2 cents: The -security charter has a few more words than the > description's "security issues", but is nearly as nebulous. It seems > fitting that the list should get a wide variety of threads. I don't > know how charter changes get made around here, but it seems to me that > list charters shouldn't get changed without some kind of survey of > readers. If they want less variety of messages, then they should > "authorize" a change of the charter AND the description. > > I'll also note that the list is in the "general" list of lists, not the > "technical list" of lists. The PR's changes, if made, should probably > also be accompanied by a move of the list to "technical" list of lists. > > Rant: The term "technical discussion", which gets bandied about many of the > charters, seems to apply to any list except maybe -chat (and there only > in the charter, not the list!), and leaves me wondering what is really > meant. > > > well, as I have stated, the current security list seems to be consumed with, what I think, relative questions about security. They have had threads concerning ssh, and ipfw(8), but nothing like ``hi, help me setup ipfw for my system'' blah blah. -- Tom (Darklogik) Rhodes www.Pittgoth.com Gothic Liberation Front www.FreeBSD.org The Power To Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 8:40:52 2002 Delivered-To: freebsd-doc@freebsd.org Received: from hotmail.com (f80.law11.hotmail.com [64.4.17.80]) by hub.freebsd.org (Postfix) with ESMTP id 5EABA37B41C for ; Tue, 26 Mar 2002 08:40:48 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 26 Mar 2002 08:40:48 -0800 Received: from 66.46.21.253 by lw11fd.law11.hotmail.msn.com with HTTP; Tue, 26 Mar 2002 16:40:47 GMT X-Originating-IP: [66.46.21.253] From: "Miroslav Pendev" To: roam@ringlet.net Cc: FreeBSD-doc@FreeBSD.org Subject: Re: translation to Bulgarian ... Date: Tue, 26 Mar 2002 11:40:47 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 26 Mar 2002 16:40:48.0285 (UTC) FILETIME=[FBA8A4D0:01C1D4E4] 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 >From: Peter Pentchev >To: Miroslav Pendev >CC: FreeBSD-doc@FreeBSD.org >Subject: Re: translation to Bulgarian ... >Date: Tue, 26 Mar 2002 14:18:21 +0200 > >On Mon, Mar 25, 2002 at 05:10:14PM -0500, Miroslav Pendev wrote: > > Hi people! > > > > Is there somebody currently working on translation > > of the DOCs (FAQ, Handbook ...) to Bulgarian? > > > > If not, I am ready to start. > > > > After almost four years as FreeBSD admin I would like > > to help with something... > >Another Bulgarian interested in FreeBSD documentation! Great! :) > >As noted in the FreeBSD monthly reports, I have started (or at least I >thinking about starting :) a 'FreeBSD in Bulgarian' project; one of its >goals is the translation of FreeBSD documentation into Bulgarian. > >However, there are some problems with the SGML tools (esp. jade) >handling native Bulgarian characters (esp. the lowercase 'ja' with >character code 255). I am in the process of straightening those out; >after that, the real translation will begin. > >Your help will certainly be more than welcome; just wait a little more >until I straighten out the 'non-SGML character' issues :) Sounds good, Peter, I thought there might be a problem with this! Just let me know, when you are ready... Nazdrave... ;) Miro _________________________________________________________________ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 13:35:20 2002 Delivered-To: freebsd-doc@freebsd.org Received: from hub.freebsd.org (hsa195.pool019.at101.earthlink.net [216.249.90.195]) by hub.freebsd.org (Postfix) with SMTP id E518B37B419 for ; Tue, 26 Mar 2002 13:35:14 -0800 (PST) From: "John P. Clarke" Date: Tue, 26 Mar 2002 13:35:42 To: doc@freebsd.org Subject: I have OCD and need help MIME-Version: 1.0 Content-Type: text/plain;charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <20020326213514.E518B37B419@hub.freebsd.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 I've read books, done therapy, and consulted with many for over 16 years without any substantial progress. Among other problems, I need to deal with a mental compulsion to break apart words and phrases into symmetrical groups, the continual counting and sorting of everything I see, and the uncontrollable parade of ideas in my head competing for attention. This interferes with concentration, impairs decision-making, and leads to frustration and depression. I would welcome suggestions, possible solutions, reference materials, referrals, anything you might recommend. Please email me at ocdhelp4me@earthlink.net Thank you for your help. Sincerely, John P. Clarke To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 14:16:11 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 5E60F37B417 for ; Tue, 26 Mar 2002 14:16:05 -0800 (PST) Received: from hades.hell.gr (patr530-a234.otenet.gr [212.205.215.234]) by mailsrv.otenet.gr (8.12.2/8.12.2) with ESMTP id g2QMG1vD004488 for ; Wed, 27 Mar 2002 00:16:02 +0200 (EET) Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.2/8.12.2) with ESMTP id g2QMFxdw041561 for ; Wed, 27 Mar 2002 00:15:59 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from charon@localhost) by hades.hell.gr (8.12.2/8.12.2/Submit) id g2QMEo24041452 for doc@FreeBSD.org; Wed, 27 Mar 2002 00:14:50 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Wed, 27 Mar 2002 00:14:50 +0200 From: Giorgos Keramidas To: doc@freebsd.org Subject: Fixing &entity stuff in doc/ Message-ID: <20020326221449.GD17467@hades.hell.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i 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've run the following to a fairly recent copy of the doc tree: % find . -type f -name '*.sgml' |\ xargs grep '&[^[:space:];&][^[:space:];]*$' | grep -v '&$' % find . -type f -name '*.sgml' |\ xargs grep '&[^[:space:];&][^[:space:];]*[[:space:]<]' |\ grep -v '&[[: space:]]' | grep -v '[[:space:]]&&[[:space:]]' Saved the output to a file, and started fixing entities that did not end with the usual ';' character. I'm running a full doc build now with: % make FORMATS="html-split" but, just in case you have comments to make, the patch is available at . Anyone with more sgml-foo than me that can enlighten me why "make lint" doesn't catch these (admittedly minor) sgml typos? Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 14:32:54 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE01637B419; Tue, 26 Mar 2002 14:32:48 -0800 (PST) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2QMWmg90953; Tue, 26 Mar 2002 14:32:48 -0800 (PST) (envelope-from keramida) Date: Tue, 26 Mar 2002 14:32:48 -0800 (PST) From: Message-Id: <200203262232.g2QMWmg90953@freefall.freebsd.org> To: martin.karlsson@visit.se, keramida@FreeBSD.org, freebsd-doc@FreeBSD.org, keramida@FreeBSD.org Subject: Re: docs/36334: [PATCH:] correcting three (3) typos in the 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: [PATCH:] correcting three (3) typos in the fdp-primer State-Changed-From-To: open->closed State-Changed-By: keramida State-Changed-When: Tue Mar 26 14:32:09 PST 2002 State-Changed-Why: Fixed! Thanks for reporting this :) Responsible-Changed-From-To: freebsd-doc->keramida Responsible-Changed-By: keramida Responsible-Changed-When: Tue Mar 26 14:32:09 PST 2002 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=36334 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 14:33:39 2002 Delivered-To: freebsd-doc@freebsd.org Received: from hpdi.ath.cx (pc2-nthf5-0-cust237.not.cable.ntl.com [80.4.35.237]) by hub.freebsd.org (Postfix) with ESMTP id 7078337B400; Tue, 26 Mar 2002 14:33:25 -0800 (PST) Received: from hpdi.ath.cx (localhost [127.0.0.1]) by hpdi.ath.cx (8.12.2/8.12.2) with ESMTP id g2QMU92S035776; Tue, 26 Mar 2002 22:30:09 GMT (envelope-from hitenp@hpdi.ath.cx) Received: (from hitenp@localhost) by hpdi.ath.cx (8.12.2/8.12.2/Submit) id g2QMU84A035775; Tue, 26 Mar 2002 22:30:08 GMT Date: Tue, 26 Mar 2002 22:30:08 +0000 From: Hiten Pandya To: keramida@FreeBSD.org Cc: doc@FreeBSD.org Subject: Re: Fixing &entity stuff in doc/ Message-ID: <20020326223008.A35755@hpdi.ath.cx> Reply-To: hiten@uk.FreeBSD.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="T4sUOijqQbZv57TR" Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD hpdi.ath.cx 5.0-CURRENT FreeBSD 5.0-CURRENT Organisation: The FreeBSD Project X-PGP-Key: http://www.pittgoth.com/~hiten/pubkey.asc 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 --T4sUOijqQbZv57TR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable > I've run the following to a fairly recent copy of the doc tree: > > % find . -type f -name '*.sgml' |\ > xargs grep '&[^[:space:];&][^[:space:];]*$' | grep -v '&$' > % find . -type f -name '*.sgml' |\ > xargs grep '&[^[:space:];&][^[:space:];]*[[:space:]<]' |\ > grep -v '&[[: space:]]' | grep -v '[[:space:]]&&[[:space:]]' > > Saved the output to a file, and started fixing entities that did not end > with the usual ';' character. I'm running a full doc build now with: > > % make FORMATS=3D"html-split" > > but, just in case you have comments to make, the patch is available at > . Anyone with mo= re > sgml-foo than me that can enlighten me why "make lint" doesn't catch these > (admittedly minor) sgml typos? I have seen the same type of weirdness with parameter entities, especially the ones which include the Authors entities in the following manner: -- example -- =20 %authors -- example -- One such example is the handbook. Although I didn't report this on the list because there are no errors reported, but I think according to the SGML EBNF syntax, it is the parameter entity followed by a semi-colon. :) Thanks, Regards, --=20 Hiten Pandya http://jfs4bsd.sf.net - JFS for FreeBSD (JFS4BSD) http://www.FreeBSD.org - The Power to Serve Public Key: http://www.pittgoth.com/~hiten/pubkey.asc --- 4FB9 C4A9 4925 CF97 9BF3 ADDA 861D 5DBD E4E3 03C3 --- --T4sUOijqQbZv57TR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8oPZwhh1dveTjA8MRArjiAKCInQSvgl3PlsICCpsblyEwm42Z3gCg2PyE czfe9HCfkzuHrcBH+kDlvDg= =dYZ3 -----END PGP SIGNATURE----- --T4sUOijqQbZv57TR-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 14:40: 3 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id CEA9D37B404 for ; Tue, 26 Mar 2002 14:39:51 -0800 (PST) Received: from hades.hell.gr (patr530-a234.otenet.gr [212.205.215.234]) by mailsrv.otenet.gr (8.12.2/8.12.2) with ESMTP id g2QMdmvD025616; Wed, 27 Mar 2002 00:39:49 +0200 (EET) Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.2/8.12.2) with ESMTP id g2QMdkdw044854; Wed, 27 Mar 2002 00:39:47 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from charon@localhost) by hades.hell.gr (8.12.2/8.12.2/Submit) id g2QMdkR6044843; Wed, 27 Mar 2002 00:39:46 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Wed, 27 Mar 2002 00:39:44 +0200 From: Giorgos Keramidas To: Hiten Pandya Cc: doc@freebsd.org Subject: Re: Fixing &entity stuff in doc/ Message-ID: <20020326223944.GB42139@hades.hell.gr> References: <20020326223008.A35755@hpdi.ath.cx> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="9jxsPFA5p3P2qPhR" Content-Disposition: inline In-Reply-To: <20020326223008.A35755@hpdi.ath.cx> User-Agent: Mutt/1.3.28i 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 --9jxsPFA5p3P2qPhR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On 2002-03-26 22:30, Hiten Pandya wrote: > I have seen the same type of weirdness with parameter entities, > especially the ones which include the Authors entities in the following > manner: > > -- example -- > > > %authors Nice catch :) I'll probably try to find these too, when my doc build finishes. It takes the better part of an hour on my lowly Pentium PC. --9jxsPFA5p3P2qPhR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8oPiw1g+UGjGGA7YRAiFHAJ9+e1Q8afE3UqztYYBDguN7mx/n3ACgmMIJ LR4pN3lJDWl1U1OhSjcQUCg= =OTiv -----END PGP SIGNATURE----- --9jxsPFA5p3P2qPhR-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 16:11:18 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE44137B428 for ; Tue, 26 Mar 2002 16:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2R0A3L12793; Tue, 26 Mar 2002 16:10:03 -0800 (PST) (envelope-from gnats) Received: from neroon.user.acm.rpi.edu (neroon.user.acm.rpi.edu [128.213.5.66]) by hub.freebsd.org (Postfix) with ESMTP id 1018737B404; Tue, 26 Mar 2002 16:05:44 -0800 (PST) Received: (from rooneg@localhost) by neroon.user.acm.rpi.edu (8.11.6/8.11.6) id g2R00QO85847; Tue, 26 Mar 2002 19:00:26 -0500 (EST) (envelope-from rooneg) Message-Id: <200203270000.g2R00QO85847@neroon.user.acm.rpi.edu> Date: Tue, 26 Mar 2002 19:00:26 -0500 (EST) From: garrett rooney Reply-To: garrett rooney To: FreeBSD-gnats-submit@FreeBSD.org Cc: dillon@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36350: [PATCH] new mtx_pool.9 man 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: 36350 >Category: docs >Synopsis: [PATCH] new mtx_pool.9 man page >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 26 16:10:02 PST 2002 >Closed-Date: >Last-Modified: >Originator: garrett rooney >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD snowcrash.electricjellyfish.net 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sun Mar 24 23:41:30 EST 2002 rooneg@snowcrash:/usr/obj/usr/src/sys/SNOWCRASH i386 >Description: the mtx_pool API lacks a man page. >How-To-Repeat: man mtx_pool ;-) >Fix: apply the following patch in src/share/man/man9. --- /dev/null Tue Mar 26 18:44:00 2002 +++ mtx_pool.9 Tue Mar 26 18:53:49 2002 @@ -0,0 +1,134 @@ +.\" +.\" Copyright (C) 2002 Garrett Rooney . All +.\" rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice(s), this list of conditions and the following disclaimer as +.\" the first lines of this file unmodified other than the possible +.\" addition of one or more copyright notices. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice(s), this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY +.\" EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +.\" DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY +.\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +.\" CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +.\" DAMAGE. +.\" +.\" $FreeBSD$ +.\" +.Dd March 25, 2002 +.Dt MTX_POOL 9 +.Os +.Sh NAME +.Nm mtx_pool , +.Nm mtx_pool_alloc , +.Nm mtx_pool_find , +.Nm mtx_lock_lock , +.Nm mtx_lock_unlock +.Nd mutex pool routines +.Sh SYNOPSIS +.In sys/mutex.h +.Ft struct mtx * +.Fn mtx_pool_alloc "void" +.Ft struct mtx * +.Fn mtx_pool_find "void *ptr" +.Ft void +.Fn mtx_pool_lock "void *ptr" +.Ft void +.Fn mtx_pool_unlock "void *ptr" +.Sh DESCRIPTION +Mutex pools are designed to be used as short term leaf mutexes, e.g. the +last mutex you might acquire other than calling +.Fn msleep . +They operate using a shared pool of mutexes. +A mutex is chosen from the pool based on the supplied pointer (which may or +may not be valid). +.Pp +The shared mutex managed by the pool module are standard, non-recursive, +blockable mutexes, and should only be used in appropriate situations. +.Pp +The caller can lock and unlock mutexes returned by the pool routines, but +since the mutexes are shared, the caller should not attempt to destroy them +or modify their characteristics. +While pool mutexes are normally 'leaf' mutexes, meaning that you cannot +depend on any ordering guarantees after obtaining one, you can still obtain +other mutexes under carefully controlled circumstances. +Specifically, if you have a private mutex (that you allocate and +.Fn mtx_init +yourself), and you carefully manage the ordering issues, you can obtain your +private mutex after obtaining the pool mutex. +In these cases the private mute winds up being the true 'leaf' mutex. +.Pp +Mutex pools have the following advantages: +.Bl -enum +.It +No structural overhead. +Mutexes can be associated with structures without adding bloat to the structures. +.It +Mutexes can be obtained for invalid pointers, which is useful when one uses +mutexes to interlock destructor operations. +.It +No initialization/destruction overhead. +.It +Can be used with msleep. +.El +.Pp +And the following disadvantages: +.Bl -enum +.It +Should generally only be used as leaf mutexes. +.It +Pool/pool dependency ordering cannot be depended on. +.It +Possible L1 cache mastership contention between CPUs. +.El +.Pp +.Fn mtx_pool_alloc +obtains a shared mutex from the pool. +This routine uses a simple rover to choose one of the shared mutexes managed +by the module. +.Pp +.Fn mtx_pool_find +returns the shared mutex associated with the specified address. +This routine will create a hash out of the arbitrary pointer passed into it +and will choose a shared mutex based on the hash. +The pointer need not point to anything real. +.Pp +.Fn mtx_pool_lock +locks the shared mutex associated with the specified address. +This routine provides an easy-to-use combination of +.Fn mtx_pool_find +and +.Fn mtx_pool_lock . +Note that because it must hash the pointer passed to it, this will not be +as fast as storing the pointer returned by a previous +.Fn mtx_pool_find . +.Pp +.Fn mtx_pool_unlock +unlocks the shared mutex associated with the specified address. +This routine provides an easy-to-use combination of +.Fn mtx_pool_find +and +.Fn mtx_pool_unlock . +Note that because it must hash the pointer passed to it, this will not be +as fast as storing the pointer returned by a previous +.Fn mtx_pool_find . +.Pp +.Sh SEE ALSO +.Xr mutex 9 , +.Xr msleep 9 +.Sh HISTORY +These +functions appeared in +.Fx 5.0 . Index: Makefile =================================================================== RCS file: /home/ncvs/src/share/man/man9/Makefile,v retrieving revision 1.154 diff -u -r1.154 Makefile --- Makefile 2002/03/13 01:42:33 1.154 +++ Makefile 2002/03/27 00:00:14 @@ -49,7 +49,7 @@ lock.9 \ make_dev.9 malloc.9 mbchain.9 mbuf.9 mdchain.9 \ mi_switch.9 microseq.9 microtime.9 microuptime.9 \ - module.9 mutex.9 \ + module.9 mtx_pool.9 mutex.9 \ namei.9 \ panic.9 pbuf.9 pfil.9 pfind.9 pgfind.9 \ physio.9 posix4.9 printf.9 pseudofs.9 psignal.9 \ @@ -309,6 +309,9 @@ MLINKS+=microtime.9 getnanotime.9 MLINKS+=microuptime.9 getmicrouptime.9 microuptime.9 nanouptime.9 MLINKS+=microuptime.9 getnanouptime.9 + +MLINKS+=mtx_pool.9 mtx_pool_alloc.9 mtx_pool.9 mtx_pool_find.9 +MLINKS+=mtx_pool.9 mtx_pool_lock.9 mtx_pool.9 mtx_pool_unlock.9 MLINKS+=mutex.9 mtx_init.9 MLINKS+=mutex.9 mtx_lock.9 mutex.9 mtx_lock_flags.9 Index: condvar.9 =================================================================== RCS file: /home/ncvs/src/share/man/man9/condvar.9,v retrieving revision 1.7 diff -u -r1.7 condvar.9 --- condvar.9 2001/12/26 23:14:04 1.7 +++ condvar.9 2002/03/27 00:00:15 @@ -195,6 +195,7 @@ .El .Sh SEE ALSO .Xr msleep 9 , +.Xr mtx_pool 9 , .Xr mutex 9 , .Xr sema 9 , .Xr sx 9 Index: mutex.9 =================================================================== RCS file: /home/ncvs/src/share/man/man9/mutex.9,v retrieving revision 1.23 diff -u -r1.23 mutex.9 --- mutex.9 2002/01/09 11:43:48 1.23 +++ mutex.9 2002/03/27 00:00:17 @@ -465,6 +465,7 @@ .Sh SEE ALSO .Xr condvar 9 , .Xr msleep 9 , +.Xr mtx_pool 9 , .Xr sema 9 , .Xr sx 9 .Sh HISTORY Index: sema.9 =================================================================== RCS file: /home/ncvs/src/share/man/man9/sema.9,v retrieving revision 1.5 diff -u -r1.5 sema.9 --- sema.9 2001/12/26 23:14:04 1.5 +++ sema.9 2002/03/27 00:00:17 @@ -107,5 +107,6 @@ will be returned to indicate success. .Sh SEE ALSO .Xr condvar 9 , +.Xr mtx_pool 9 , .Xr mutex 9 , .Xr sx 9 Index: sx.9 =================================================================== RCS file: /home/ncvs/src/share/man/man9/sx.9,v retrieving revision 1.15 diff -u -r1.15 sx.9 --- sx.9 2001/11/21 11:47:55 1.15 +++ sx.9 2002/03/27 00:00:17 @@ -146,6 +146,7 @@ attempting to do so will result in deadlock. .Sh SEE ALSO .Xr condvar 9 , +.Xr mtx_pool 9 , .Xr mutex 9 , .Xr sema 9 .Sh BUGS >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 Mar 26 16:30:10 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F54F37B400 for ; Tue, 26 Mar 2002 16:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2R0U2c16001; Tue, 26 Mar 2002 16:30:02 -0800 (PST) (envelope-from gnats) Date: Tue, 26 Mar 2002 16:30:02 -0800 (PST) Message-Id: <200203270030.g2R0U2c16001@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Hiten Pandya Subject: Re: docs/36019 (article update) Reply-To: Hiten Pandya 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/36019; it has been noted by GNATS. From: Hiten Pandya To: bug-followup@FreeBSD.org Cc: Subject: Re: docs/36019 (article update) Date: Wed, 27 Mar 2002 00:17:48 +0000 I have made some updates to the article, and the above copy should not be used. I am not planning to make the size of this PR anything near to _big_ so I am referencing a URL where the updated UUencoded file can be downloaded from: http://www.pittgoth.com/~hiten/java-tomcat.uue Thanks, Regards, -- Hiten Pandya http://jfs4bsd.sf.net - JFS for FreeBSD (JFS4BSD) http://www.FreeBSD.org - The Power to Serve Public Key: http://www.pittgoth.com/~hiten/pubkey.asc --- 4FB9 C4A9 4925 CF97 9BF3 ADDA 861D 5DBD E4E3 03C3 --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 17:56:57 2002 Delivered-To: freebsd-doc@freebsd.org Received: from cfcl.com (cpe-24-221-169-54.ca.sprintbbd.net [24.221.169.54]) by hub.freebsd.org (Postfix) with ESMTP id 7324A37B400 for ; Tue, 26 Mar 2002 17:56:53 -0800 (PST) Received: from [192.168.254.205] (cerberus [192.168.254.205]) by cfcl.com (8.11.1/8.11.1) with ESMTP id g2R1xYU72173 for ; Tue, 26 Mar 2002 17:59:34 -0800 (PST) (envelope-from rdm@cfcl.com) Mime-Version: 1.0 Message-Id: In-Reply-To: <20020326141821.D301@straylight.oblivion.bg> References: <20020326141821.D301@straylight.oblivion.bg> Date: Tue, 26 Mar 2002 17:46:43 -0800 To: FreeBSD-doc@FreeBSD.ORG From: Rich Morin Subject: Re: translation to Bulgarian ... 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 At 2:18 PM +0200 3/26/02, Peter Pentchev wrote: >after that, the real translation will begin. > >Your help will certainly be more than welcome; just wait a little more >until I straighten out the 'non-SGML character' issues :) In my experience, the hard part is getting the words right; mark-up is usually a fairly minor issue. So, perhaps Miroslav should start work on translating some part of the docs, with the understanding that he will have to go back later and tidy up. This could also let other folk look at his work in the meanwhile, possibly making useful comments. -r -- email: rdm@cfcl.com; phone: +1 650-873-7841 http://www.cfcl.com/rdm - my home page, resume, etc. http://www.cfcl.com/Meta - The FreeBSD Browser, Meta Project, etc. http://www.ptf.com/dossier - Prime Time Freeware's DOSSIER series http://www.ptf.com/tdc - Prime Time Freeware's Darwin Collection To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 17:56:57 2002 Delivered-To: freebsd-doc@freebsd.org Received: from cfcl.com (cpe-24-221-169-54.ca.sprintbbd.net [24.221.169.54]) by hub.freebsd.org (Postfix) with ESMTP id E65F037B417 for ; Tue, 26 Mar 2002 17:56:53 -0800 (PST) Received: from [192.168.254.205] (cerberus [192.168.254.205]) by cfcl.com (8.11.1/8.11.1) with ESMTP id g2R1xZU72176 for ; Tue, 26 Mar 2002 17:59:35 -0800 (PST) (envelope-from rdm@cfcl.com) Mime-Version: 1.0 Message-Id: Date: Tue, 26 Mar 2002 17:56:49 -0800 To: freebsd-doc@FreeBSD.ORG From: Rich Morin Subject: DOSSIER: new volumes, translations(?), etc. 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 I'm pleased to report that there are now 14 DOSSIER volumes, many of which are based on FreeBSD documentation. For details, see: http://www.ptf.com/dossier http://www.ptf.com/dossier/sets/Free.shtml I am starting to get interested in the possibility of printing versions of FreeBSD documentation in languages other than English. DOSSIER's use of demand printing and mechanized editing makes it a reasonable way to publish material which is highly specialized and/or fast-moving. So, if some FreeBSD material is getting to the point where printed copies would be desirable, please let me know! -r -- email: rdm@cfcl.com; phone: +1 650-873-7841 http://www.cfcl.com/rdm - my home page, resume, etc. http://www.cfcl.com/Meta - The FreeBSD Browser, Meta Project, etc. http://www.ptf.com/dossier - Prime Time Freeware's DOSSIER series http://www.ptf.com/tdc - Prime Time Freeware's Darwin Collection To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 18:20:13 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4033537B421 for ; Tue, 26 Mar 2002 18:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2R2K2950654; Tue, 26 Mar 2002 18:20:02 -0800 (PST) (envelope-from gnats) Date: Tue, 26 Mar 2002 18:20:02 -0800 (PST) Message-Id: <200203270220.g2R2K2950654@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Dima Dorfman Subject: Re: docs/35575: Pw(8) man page makes no mention of /var/log/userlog 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/35575; it has been noted by GNATS. From: Dima Dorfman To: dannyman@toldme.com Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: docs/35575: Pw(8) man page makes no mention of /var/log/userlog Date: Wed, 27 Mar 2002 02:10:11 +0000 dannyman@toldme.com wrote: > Apparently, there's this really nice log that pw keeps, in > /var/log/userlog. There is absolutely no mention of this functionality > in the pw man page. > > This would be very useful information for a SysAdmin who bothers to read > the pw man page to know. :) This functionality is described in pw.conf(5). Many of pw(8)'s features are only described there (and not in pw(8)), and I don't see why this should be an exception. Perhaps the existence of pw.conf(5) should be made more obvious somehow. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 18:30:16 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9953937B422 for ; Tue, 26 Mar 2002 18:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2R2U2L51872; Tue, 26 Mar 2002 18:30:02 -0800 (PST) (envelope-from gnats) Date: Tue, 26 Mar 2002 18:30:02 -0800 (PST) Message-Id: <200203270230.g2R2U2L51872@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Dima Dorfman Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man page 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/36350; it has been noted by GNATS. From: Dima Dorfman To: dillon@FreeBSD.org Cc: FreeBSD-gnats-submit@FreeBSD.org, garrett rooney Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man page Date: Wed, 27 Mar 2002 02:22:57 +0000 garrett rooney wrote: > >Description: > the mtx_pool API lacks a man page. Matt, If you could review the manual page submitted here for technical validity, I'll fix up the markup and English bogons and commit it. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 18:30:17 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5308B37B428 for ; Tue, 26 Mar 2002 18:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2R2U4651885; Tue, 26 Mar 2002 18:30:04 -0800 (PST) (envelope-from gnats) Date: Tue, 26 Mar 2002 18:30:04 -0800 (PST) Message-Id: <200203270230.g2R2U4651885@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Garrett Rooney Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man page Reply-To: Garrett Rooney 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/36350; it has been noted by GNATS. From: Garrett Rooney To: Dima Dorfman Cc: dillon@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man page Date: Tue, 26 Mar 2002 21:24:45 -0500 On Wed, Mar 27, 2002 at 02:22:57AM +0000, Dima Dorfman wrote: > garrett rooney wrote: > > >Description: > > the mtx_pool API lacks a man page. > > Matt, > > If you could review the manual page submitted here for technical > validity, I'll fix up the markup and English bogons and commit it. actually, i already ran an earlier version past matt, and this has his suggestions added in. it would be good if he could give it a once over though, in case i messed something up. -garrett -- garrett rooney Unix was not designed to stop you from rooneg@electricjellyfish.net doing stupid things, because that would http://electricjellyfish.net/ stop you from doing clever things. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 19:10: 6 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EAA9637B405 for ; Tue, 26 Mar 2002 19:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2R3A2W60789; Tue, 26 Mar 2002 19:10:02 -0800 (PST) (envelope-from gnats) Date: Tue, 26 Mar 2002 19:10:02 -0800 (PST) Message-Id: <200203270310.g2R3A2W60789@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Danny Howard Subject: Re: docs/35575: Pw(8) man page makes no mention of /var/log/userlog Reply-To: Danny Howard 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/35575; it has been noted by GNATS. From: Danny Howard To: Dima Dorfman Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: docs/35575: Pw(8) man page makes no mention of /var/log/userlog Date: Tue, 26 Mar 2002 19:08:23 -0800 On Wed, Mar 27, 2002 at 02:10:11AM +0000, Dima Dorfman wrote: > This functionality is described in pw.conf(5). Many of pw(8)'s > features are only described there (and not in pw(8)), and I don't see > why this should be an exception. Perhaps the existence of pw.conf(5) > should be made more obvious somehow. Well, in pw(8) there is a list of 9 files that pw uses to go about its business. Even temporary files are documented. One would expect if so many files are listed, but no log file is mentioned, that there is no log file. Pw.conf(5) on the other hand, lists four files, with no descriptions, and does not mention the log in the files section. Also, at least as of 4.5-RELEASE, the default log file is not mentioned in pw.conf(5) either. The logfile config is mentioned, but no default value is specified. The logical conclusion being that if you want pw to log anything, you need to explicitly spell it out, although it has already been logging to the unobviously-named /var/log/userlog all along! -danny To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 19:50:11 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6C6F37B417 for ; Tue, 26 Mar 2002 19:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2R3o2666845; Tue, 26 Mar 2002 19:50:02 -0800 (PST) (envelope-from gnats) Date: Tue, 26 Mar 2002 19:50:02 -0800 (PST) Message-Id: <200203270350.g2R3o2666845@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Matthew Dillon Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man page Reply-To: Matthew Dillon 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/36350; it has been noted by GNATS. From: Matthew Dillon To: Garrett Rooney Cc: Dima Dorfman , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man page Date: Tue, 26 Mar 2002 19:46:51 -0800 (PST) : :On Wed, Mar 27, 2002 at 02:22:57AM +0000, Dima Dorfman wrote: :> garrett rooney wrote: :> > >Description: :> > the mtx_pool API lacks a man page. :> :> Matt, :> :> If you could review the manual page submitted here for technical :> validity, I'll fix up the markup and English bogons and commit it. : :actually, i already ran an earlier version past matt, and this has his :suggestions added in. it would be good if he could give it a once :over though, in case i messed something up. : :-garrett : :-- :garrett rooney Unix was not designed to stop you from Hi guys! Yah, it already contains the suggestions I made. Dima, please go ahead and fix the markup & english bogons you see and then go ahead and commit it! Thanks! I noticed one spelling error in the PR: In these cases the private mute winds to In these cases the private mutex winds -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Tue Mar 26 20: 0:12 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D43537B419 for ; Tue, 26 Mar 2002 20:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2R405i68109; Tue, 26 Mar 2002 20:00:05 -0800 (PST) (envelope-from gnats) Date: Tue, 26 Mar 2002 20:00:05 -0800 (PST) Message-Id: <200203270400.g2R405i68109@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Garrett Rooney Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man page Reply-To: Garrett Rooney 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/36350; it has been noted by GNATS. From: Garrett Rooney To: Matthew Dillon Cc: Dima Dorfman , FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man page Date: Tue, 26 Mar 2002 22:55:18 -0500 On Tue, Mar 26, 2002 at 07:46:51PM -0800, Matthew Dillon wrote: > Hi guys! Yah, it already contains the suggestions I made. Dima, > please go ahead and fix the markup & english bogons you see and > then go ahead and commit it! Thanks! > > I noticed one spelling error in the PR: > > In these cases the private mute winds > > to > > In these cases the private mutex winds gah! that'll teach me to trust spell checkers... i can't believe i didn't see that one... btw, Dima, if you could just let me know what kind of markup errors you find, that would be great. i'm fairly new at writing man pages, and any tips on things to avoid in the future would be much appreciated. thanks, -garrett -- garrett rooney Unix was not designed to stop you from rooneg@electricjellyfish.net doing stupid things, because that would http://electricjellyfish.net/ stop you from doing clever things. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 1:17: 2 2002 Delivered-To: freebsd-doc@freebsd.org Received: from relay-1v.club-internet.fr (relay-1v.club-internet.fr [194.158.96.112]) by hub.freebsd.org (Postfix) with ESMTP id 0884537B405 for ; Wed, 27 Mar 2002 01:16:53 -0800 (PST) Received: from caroline.turen@captivmail.com (lns04a-2-204.w.club-internet.fr [212.194.73.204]) by relay-1v.club-internet.fr (Postfix) with ESMTP id EBD2A1822 for ; Wed, 27 Mar 2002 10:16:49 +0100 (CET) Received: from Spooler by caroline.turen@captivmail.com (Mercury/32 v3.21c) ID MO0001B1; 27 Mar 02 10:14:50 +0100 Received: from spooler by (Mercury/32 v3.21c); 27 Mar 02 10:14:48 +0100 Received: from Recrutonline (127.0.0.1) by (Mercury/32 v3.21c) ID MG0001B0; 27 Mar 02 10:14:46 +0100 Date: Wed, 27 Mar 2002 10:14:46 -0100 Subject: Vos futurs contacts ! To: doc@FreeBSD.org From: caroline.turen@captivmail.com Reply-To: caroline.turen@captivmail.com Message-ID: <38A08361E85@> 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 Bonjour, J'ai trouvй votre email sur Internet et je me permets de vous йcrire car nous proposons un outil qui devrait vous intйresser. Captivmail est un outil de prospection en ligne qui vous permet de constituer vos propres bases d'adresses emails en fonction de mots clйs. Comment зa marche : Vous tapez un mot clй, vous choisissez un pays et Captivmail vous trouve des milliers d'adresses emails en rapport avec ce mot clй dans ce pays... Essayer ? Rien de plus simple ! Rendez vous sur http://www.captivmail.com pour ouvrir un compte et lancer vos collectes d'emails. Tout ceci est gratuit et ne vous prendra que quelques minutes ! Cordialement. Caroline Turen. http://www.captivmail.com __________________________________________________________ Si vous ne souhaitez plus recevoir de message de ma part concernant le site captivmail, cliquez ci-dessous : http://www.captivmail.com/contact.php3?ml=doc@FreeBSD.org __________________________________________________________ Pour information, Captivmail existe en 5 langues > ENGLISH > ESPANOL > FRANCAIS > DEUTSCH > ITALIANO To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 3:42:48 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C5A037B404; Wed, 27 Mar 2002 03:42:46 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2RBgkr86896; Wed, 27 Mar 2002 03:42:46 -0800 (PST) (envelope-from murray) Date: Wed, 27 Mar 2002 03:42:46 -0800 (PST) From: Message-Id: <200203271142.g2RBgkr86896@freefall.freebsd.org> To: swear@blarg.net, murray@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/35967: rc.conf(5) manual missing "dumpdir" and "savecore_flags", etc. 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: rc.conf(5) manual missing "dumpdir" and "savecore_flags", etc. State-Changed-From-To: open->feedback State-Changed-By: murray State-Changed-When: Wed Mar 27 03:41:49 PST 2002 State-Changed-Why: I do see a dumpdir description in rc.conf(5), so it's not clear to me what needs to be changed. Can you please generate a diff against the -CURRENT version of the rc.conf man page? Thanks for all your work cleaning up our docs. http://www.freebsd.org/cgi/query-pr.cgi?pr=35967 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 9: 0:22 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B062237B41D for ; Wed, 27 Mar 2002 09:00:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2RH08977515; Wed, 27 Mar 2002 09:00:08 -0800 (PST) (envelope-from gnats) Received: from mile.nevermind.kiev.ua (freebsddiary.org.ua [213.186.199.26]) by hub.freebsd.org (Postfix) with ESMTP id DE0E037B416 for ; Wed, 27 Mar 2002 08:55:10 -0800 (PST) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.11.6/8.11.6) id g2RGt5a51485; Wed, 27 Mar 2002 18:55:05 +0200 (EET) (envelope-from never) Message-Id: <200203271655.g2RGt5a51485@mile.nevermind.kiev.ua> Date: Wed, 27 Mar 2002 18:55:05 +0200 (EET) From: Nevermind Reply-To: Nevermind To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36375: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml 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: 36375 >Category: docs >Synopsis: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml >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 Mar 27 09:00:08 PST 2002 >Closed-Date: >Last-Modified: >Originator: Nevermind >Release: FreeBSD 4.5-STABLE i386 >Organization: Net.Style Ltd. >Environment: System: FreeBSD mile.nevermind.kiev.ua 4.5-STABLE FreeBSD 4.5-STABLE #0: Sat Mar 23 13:57:09 EET 2002 root@mile.nevermind.kiev.ua:/usr/obj/usr/src/sys/mile i386 >Description: Typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml, should be 'place' instead of 'pace'. >How-To-Repeat: Look at doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml >Fix: Index: chapter.sgml =================================================================== RCS file: /usr/home/ncvs/doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml,v retrieving revision 1.112 diff -u -r1.112 chapter.sgml --- chapter.sgml 22 Mar 2002 14:50:30 -0000 1.112 +++ chapter.sgml 27 Mar 2002 16:51:29 -0000 @@ -331,7 +331,7 @@ -STABLE &os.stable; is our development branch from which major releases - are made. Changes go into this branch at a different pace, and + are made. Changes go into this branch at a different place, and with the general assumption that they have first gone into &os.current; first for testing. This is still a development branch, however, and this means that at any given time, >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 Mar 27 9:10: 9 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5328B37B41B for ; Wed, 27 Mar 2002 09:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2RHA3982819; Wed, 27 Mar 2002 09:10:03 -0800 (PST) (envelope-from gnats) Date: Wed, 27 Mar 2002 09:10:03 -0800 (PST) Message-Id: <200203271710.g2RHA3982819@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Ceri Subject: Re: docs/36375: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Reply-To: Ceri 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/36375; it has been noted by GNATS. From: Ceri To: Nevermind Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/36375: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Date: Wed, 27 Mar 2002 17:05:16 +0000 On Wed, Mar 27, 2002 at 06:55:05PM +0200, Nevermind wrote: > > &os.stable; is our development branch from which major releases > - are made. Changes go into this branch at a different pace, and > + are made. Changes go into this branch at a different place, and > with the general assumption that they have first gone into > &os.current; first for testing. This is still > a development branch, however, and this means that at any given time, I think "pace" is the appropriate noun here. 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 Wed Mar 27 9:31:56 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E3CC37B4A3 for ; Wed, 27 Mar 2002 09:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2RHU4B85766; Wed, 27 Mar 2002 09:30:04 -0800 (PST) (envelope-from gnats) Date: Wed, 27 Mar 2002 09:30:04 -0800 (PST) Message-Id: <200203271730.g2RHU4B85766@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Tom Rhodes Subject: Re: docs/36375: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Reply-To: Tom Rhodes 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/36375; it has been noted by GNATS. From: Tom Rhodes To: Nevermind Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: docs/36375: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Date: Wed, 27 Mar 2002 12:32:39 -0500 --=.HBmhFnpZIe,u8O Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Wed, 27 Mar 2002 18:55:05 +0200 (EET) Nevermind wrote: > > >Number: 36375 > >Category: docs > >Synopsis: [PATCH] typo in > >doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml > >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 Mar 27 09:00:08 PST 2002 > >Closed-Date: > >Last-Modified: > >Originator: Nevermind > >Release: FreeBSD 4.5-STABLE i386 > >Organization: > Net.Style Ltd. > >Environment: > System: FreeBSD mile.nevermind.kiev.ua 4.5-STABLE FreeBSD 4.5-STABLE > #0: Sat Mar 23 13:57:09 EET 2002 > root@mile.nevermind.kiev.ua:/usr/obj/usr/src/sys/mile i386 > > > >Description: > Typo in > doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml, > should be 'place' instead of 'pace'. > > >How-To-Repeat: > Look at > doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml> > Fix: > Index: chapter.sgml =================================================================== RCS file: /usr/home/ncvs/doc/en_US.ISO8859-1/books/handbook/cutting-edge/chap ter.sgml,v retrieving revision 1.112 diff -u -r1.112 chapter.sgml --- chapter.sgml 22 Mar 2002 14:50:30 -0000 1.112 +++ chapter.sgml 27 Mar 2002 16:51:29 -0000 @@ -331,7 +331,7 @@ -STABLE &os.stable; is our development branch from which major releases- are made. Changes go into this branch at a different pace, and+ are made. Changes go into this branch at a different place, and with the general assumption that they have first gone into &os.current; first for testing. This is still a development branch, however, and this means that at any given time, > I think what the original author is trying to say is: pace > different pace > different time and a different way. and place would be a different spot. What do you think? Thanks alot for the submission though -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@ {Pittgoth.com, FreeBSD.org} --=.HBmhFnpZIe,u8O Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8ogI8wPmgiRuevUMRArG7AJ0TCpvMG99MsbvZJAtCoItmxAzZugCeNEOc SogpI49JM0wYeb9JloxErOI= =5AE+ -----END PGP SIGNATURE----- --=.HBmhFnpZIe,u8O-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 9:53:27 2002 Delivered-To: freebsd-doc@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id D674337B41A; Wed, 27 Mar 2002 09:53:23 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 8805ABD7F; Wed, 27 Mar 2002 09:53:23 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id JAA30945; Wed, 27 Mar 2002 09:53:23 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2RHq6N72116; Wed, 27 Mar 2002 09:52:06 -0800 (PST) (envelope-from swear@blarg.net) To: murray@FreeBSD.org Cc: freebsd-doc@FreeBSD.org Subject: Re: docs/35967: rc.conf(5) manual missing "dumpdir" and "savecore_flags", etc. References: <200203271142.g2RBgkr86896@freefall.freebsd.org> From: swear@blarg.net (Gary W. Swearingen) Date: 27 Mar 2002 09:52:06 -0800 In-Reply-To: <200203271142.g2RBgkr86896@freefall.freebsd.org> Message-ID: <0tzo0tj3uh.o0t@localhost.localdomain> Lines: 16 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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 murray@FreeBSD.org writes: > I do see a dumpdir description in rc.conf(5), so it's not clear to me > what needs to be changed. It's not in mine from STABLE csvup'd about 03'mar. Only a "dumpdev" description which I thought could use improvement. I provided new entries for "dumpdev", "dumpdir", and "savecore_flags". If the current version of -STABLE has SOME description of all three, this PR should be closed. (I can worry about the descriptions later.) > Can you please generate a diff against the > -CURRENT version of the rc.conf man page? Please assume that I won't be providing diffs for any PRs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 10:10:21 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D46CE37B41E for ; Wed, 27 Mar 2002 10:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2RIA2Y96416; Wed, 27 Mar 2002 10:10:02 -0800 (PST) (envelope-from gnats) Date: Wed, 27 Mar 2002 10:10:02 -0800 (PST) Message-Id: <200203271810.g2RIA2Y96416@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Nevermind Subject: Re: docs/36375: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Reply-To: Nevermind 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/36375; it has been noted by GNATS. From: Nevermind To: Tom Rhodes Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: docs/36375: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Date: Wed, 27 Mar 2002 20:07:52 +0200 Hello, Tom Rhodes! On Wed, Mar 27, 2002 at 12:32:39PM -0500, you wrote: > > >Number: 36375 > > >Category: docs > > >Synopsis: [PATCH] typo in > > >doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml [snip] > I think what the original author is trying to say is: > > pace > different pace > different time and a different way. > > and place would be a different spot. What do you think? Yes, you are right, I misunderstood author's idea :) Please, close this PR. -- NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 10:20:26 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 913C037B421 for ; Wed, 27 Mar 2002 10:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2RIK1w97747; Wed, 27 Mar 2002 10:20:01 -0800 (PST) (envelope-from gnats) Received: from hpdi.ath.cx (pc2-nthf5-0-cust237.not.cable.ntl.com [80.4.35.237]) by hub.freebsd.org (Postfix) with ESMTP id 9ECEF37B419 for ; Wed, 27 Mar 2002 10:16:06 -0800 (PST) Received: from hpdi.ath.cx (localhost [127.0.0.1]) by hpdi.ath.cx (8.12.2/8.12.2) with ESMTP id g2RICn5a005670 for ; Wed, 27 Mar 2002 18:12:49 GMT (envelope-from hitenp@hpdi.ath.cx) Received: (from hitenp@localhost) by hpdi.ath.cx (8.12.2/8.12.2/Submit) id g2RICnQE005669; Wed, 27 Mar 2002 18:12:49 GMT Message-Id: <200203271812.g2RICnQE005669@hpdi.ath.cx> Date: Wed, 27 Mar 2002 18:12:49 GMT From: Hiten Pandya Reply-To: Hiten Pandya To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36377: kernel path needs to be changed in -current manual pages 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: 36377 >Category: docs >Synopsis: kernel path needs to be changed in -current manual pages >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Mar 27 10:20:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Hiten Pandya >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD hpdi.ath.cx 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Thu Mar 21 20:05:18 GMT 2002 hitenp@hpdi.ath.cx:/c1/obj/data/dev/src/sys/CURRENT5 i386 >Description: Some manual pages in -current need to be changed which refer to the /kernel file patch. FreeBSD-CURRENT man pages have to make use of /boot/kernel/kernel and not /kernel. I am attaching a patch for a taster. If this patch is agreed upon, then I can submit more patches for the same change, which has to be made to say.. a _lot_ of (not) utilities not limited to: o iostat(8) o pstat(8) o getextattr(8) I am attaching a patch which will change the path in the kgmon(8) manual page. If more are needed for other man pages as described above, please submit a followup to this list, and I will make the patches personally and submit them as a followup to this PR. Thanks, Regards, -- Hiten Pandya -- P.S. : I have submitted this PR under the update class as this is not a bug under -STABLE, which refers to /kernel AFAIK. >How-To-Repeat: Look at the kgmon(8) manual page (in -CURRENT) as a sampler. >Fix: Index: kgmon.8 =================================================================== RCS file: /home/ncvs/src/usr.sbin/kgmon/kgmon.8,v retrieving revision 1.10 diff -u -r1.10 kgmon.8 --- kgmon.8 2001/07/15 08:02:07 1.10 +++ kgmon.8 2002/03/27 18:02:39 @@ -87,7 +87,7 @@ .It Fl N Extract the name list from the specified system instead of the default -.Pa /kernel . +.Pa /boot/kernel/kernel . .El .Pp If neither @@ -108,7 +108,7 @@ of the profile data is changed. .Sh FILES .Bl -tag -width /dev/kmemx -compact -.It Pa /kernel +.It Pa /boot/kernel/kernel the default system .It Pa /dev/kmem the default memory >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 Mar 27 11:17:31 2002 Delivered-To: freebsd-doc@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id B852937B41A for ; Wed, 27 Mar 2002 11:17:24 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id B3B84BD8C; Wed, 27 Mar 2002 11:17:23 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id LAA29860; Wed, 27 Mar 2002 11:17:23 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2RJG5p73276; Wed, 27 Mar 2002 11:16:05 -0800 (PST) (envelope-from swear@blarg.net) To: Danny Howard Cc: freebsd-doc@FreeBSD.ORG Subject: Re: docs/35575: Pw(8) man page makes no mention of /var/log/userlog References: <200203270310.g2R3A2W60789@freefall.freebsd.org> From: swear@blarg.net (Gary W. Swearingen) Date: 27 Mar 2002 11:16:05 -0800 In-Reply-To: <200203270310.g2R3A2W60789@freefall.freebsd.org> Message-ID: Lines: 48 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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 Danny Howard writes: > Well, in pw(8) there is a list of 9 files that pw uses to go about its > business. Even temporary files are documented. One would expect if so > many files are listed, but no log file is mentioned, that there is no > log file. Yes, especially since the file is written even if the rw.conf doesn't exist and/or the user as never had reason to read its manual. And I just noticed a bunch of files with strange names like "/etc/pw.DCCtvU~". Are those coming from "pw" or "vipw", the manuals of which don't mention "/etc/pw.*~" files, or what? But I'm sure that the issue of which info goes in which of the two manuals is a very troublesome one and it's probably not worth worrying a lot about. Just say in each manual: This manual omits some relevant information which is covered by the other_manual() manual to avoid duplication, so both manuals should be consulted. How would you propose listing "logfile"? Just list the default file, or somehow mention the configuration-named file or both? > Pw.conf(5) on the other hand, lists four files, with no descriptions, > and does not mention the log in the files section. It's debatable whether it should mention anything EXCEPT "logfile" and its default. > Also, at least as of 4.5-RELEASE, the default log file is not mentioned > in pw.conf(5) either. The logfile config is mentioned, but no default > value is specified. The logical conclusion being that if you want pw to > log anything, you need to explicitly spell it out, although it has > already been logging to the unobviously-named /var/log/userlog all > along! I infer from the "logfile" description, that there IS no default file, but I find no "userlog" under /etc and yet the file is used anyway. What does "leave the field blank" mean? Use "logfile=" or not use "logfile" at all or both? (If you change the description, please change "field" too; I guess it's not totally inappropriate, but it sounds weird for a configuration file variable=value kind of thing.) P.S. I just noticed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 12: 6:36 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 431BD37B41E; Wed, 27 Mar 2002 12:06:12 -0800 (PST) Received: (from ceri@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2RK6CF22014; Wed, 27 Mar 2002 12:06:12 -0800 (PST) (envelope-from ceri) Date: Wed, 27 Mar 2002 12:06:12 -0800 (PST) From: Message-Id: <200203272006.g2RK6CF22014@freefall.freebsd.org> To: never@nevermind.kiev.ua, ceri@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/36375: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml 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: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml State-Changed-From-To: open->closed State-Changed-By: ceri State-Changed-When: Wed Mar 27 12:05:27 PST 2002 State-Changed-Why: Originator agrees that the current text accurately reflects the authors' intentions. http://www.freebsd.org/cgi/query-pr.cgi?pr=36375 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 13:20:25 2002 Delivered-To: freebsd-doc@freebsd.org Received: from smtp.web.de (smtp01.web.de [194.45.170.210]) by hub.freebsd.org (Postfix) with ESMTP id 164F137B404 for ; Wed, 27 Mar 2002 13:20:22 -0800 (PST) Received: from [217.184.143.93] (helo=217.184.143.93) by smtp.web.de with esmtp (WEB.DE(Exim) 4.43 #48) id 16qKqC-00039w-00 for freebsd-doc@FreeBSD.ORG; Wed, 27 Mar 2002 22:20:20 +0100 Date: Wed, 27 Mar 2002 22:20:50 +0100 From: Frank Thies X-Mailer: The Bat! (v1.53d) Reply-To: Frank Thies X-Priority: 3 (Normal) Message-ID: <14115016632.20020327222050@web.de> To: freebsd-doc@FreeBSD.ORG 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 freebsd-doc, -- In His grip, Frank To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 13:21:52 2002 Delivered-To: freebsd-doc@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 617BF37B41F for ; Wed, 27 Mar 2002 13:21:32 -0800 (PST) Received: from cs.binghamton.edu (cs.binghamton.edu [128.226.123.101]) by bingnet2.cc.binghamton.edu (8.11.6/8.11.6) with ESMTP id g2RLLRY16333 for ; Wed, 27 Mar 2002 16:21:27 -0500 (EST) Received: from agate.cs.binghamton.edu (agate [128.226.182.164]) by cs.binghamton.edu (8.11.6+Sun/8.11.6) with ESMTP id g2RLLQ210215 for ; Wed, 27 Mar 2002 16:21:26 -0500 (EST) Received: from localhost (shafer@localhost) by agate.cs.binghamton.edu (8.11.6+Sun/8.11.6) with ESMTP id g2RLKhs04459 for ; Wed, 27 Mar 2002 16:20:43 -0500 (EST) X-Authentication-Warning: agate.cs.binghamton.edu: shafer owned process doing -bs Date: Wed, 27 Mar 2002 16:20:43 -0500 (EST) From: Steven Shafer X-Sender: shafer@agate To: freebsd-doc@FreeBSD.ORG 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 Hi, I am having some trouble with the handbook. I have downloaded several versions of it, and can't seem to get a totally readable copy. I've never had this problem before. The pdf version won't even display at all. The rtf and ps versions won't display the graphics. I had gotten rid of my previous version when I downloaded the most recent copy, so now I am without a handbook! I would appreciate any help you can spare. Thanks. - Steve Shafer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 13:57:40 2002 Delivered-To: freebsd-doc@freebsd.org Received: from hotmail.com (f212.law11.hotmail.com [64.4.17.212]) by hub.freebsd.org (Postfix) with ESMTP id 4AE9E37B400 for ; Wed, 27 Mar 2002 13:57:37 -0800 (PST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 27 Mar 2002 13:57:37 -0800 Received: from 66.46.21.253 by lw11fd.law11.hotmail.msn.com with HTTP; Wed, 27 Mar 2002 21:57:36 GMT X-Originating-IP: [66.46.21.253] From: "Miroslav Pendev" To: FreeBSD-doc@FreeBSD.org Subject: Re: translation to Bulgarian ... Date: Wed, 27 Mar 2002 16:57:36 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 27 Mar 2002 21:57:37.0116 (UTC) FILETIME=[6837D1C0:01C1D5DA] 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 ----- Original Message ----- From: "Rich Morin" To: Sent: Tuesday, March 26, 2002 8:46 PM Subject: Re: translation to Bulgarian ... >At 2:18 PM +0200 3/26/02, Peter Pentchev wrote: > >after that, the real translation will begin. > > > >Your help will certainly be more than welcome; just wait a little more > >until I straighten out the 'non-SGML character' issues :) > >In my experience, the hard part is getting the words right; mark-up is >usually a fairly minor issue. So, perhaps Miroslav should start work >on translating some part of the docs, with the understanding that he >will have to go back later and tidy up. This could also let other folk >look at his work in the meanwhile, possibly making useful comments. Yep, that is a good idea! I can get back later for the mark-up, as Rich suggested. What you think Peter? Miro _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 14:17:12 2002 Delivered-To: freebsd-doc@freebsd.org Received: from web20305.mail.yahoo.com (web20305.mail.yahoo.com [216.136.226.86]) by hub.freebsd.org (Postfix) with SMTP id 68EBA37B416 for ; Wed, 27 Mar 2002 14:17:10 -0800 (PST) Message-ID: <20020327221710.10738.qmail@web20305.mail.yahoo.com> Received: from [12.34.252.66] by web20305.mail.yahoo.com via HTTP; Wed, 27 Mar 2002 14:17:10 PST Date: Wed, 27 Mar 2002 14:17:10 -0800 (PST) From: Aaron Long-Jordan Subject: Doc Project Assistance -- I am interested To: freebsd-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 To whom it may concern: I am interested in assisting with the FreeBSD Documentation Project. However, I am not sure what help I can offer. I am fluent in HTML 4.0. I am not the most experienced user/sys admin, but I am capable. Please let me know if/how I can help, even if it is just taking text and making it into web pages or what-not. Thanks, and I look forward to hearing from you, Aaron Long-Jordan alongjordan@yahoo.com __________________________________________________ Do You Yahoo!? Yahoo! Movies - coverage of the 74th Academy Awards® http://movies.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 15: 0:58 2002 Delivered-To: freebsd-doc@freebsd.org Received: from host4.espaweb.org (host4.espaweb.org [209.239.38.225]) by hub.freebsd.org (Postfix) with ESMTP id CE12837B48E for ; Wed, 27 Mar 2002 15:00:39 -0800 (PST) Received: from lycos.com (pax-210.cis.ru [212.109.192.210]) by host4.espaweb.org (8.10.2/8.10.2) with SMTP id g2RN0a131147 for ; Wed, 27 Mar 2002 18:00:37 -0500 Message-Id: <200203272300.g2RN0a131147@host4.espaweb.org> From: "Paul" To: Subject: Software Development from Russia ($20-$25 per hour) Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Thu, 28 Mar 2002 05:00:38 +0600 Reply-To: "Paul" X-Priority: 1 (Highest) 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 Dear IT Manager, Have you ever thought of redesigning your website or creating an on-line database, in short, anything that has to do with software development, this offer is right for you. Our highly skilled off-shore programmers are capable and ready to develop any of your e-commerce software dreams and needs. We develop for ALL WINDOWS AND UNIX PLATFORMS Auctions, Hosting Solutions, Shopping Carts, databases, networks, plus Perl, PHP, C++, ASP, Cold Fusion, Java, Wap, XML, MS Access, SQL, etc. From business analysis and consulting to web design, from coding to testing we provide a full cycle of IT services. Typical rates are 20-25 USD per hour. For more complete information about the company and services provided please visit http://www.smtprogramming.com I will be glad to answer any of your questions (bestdeal411@lycos.com). Feel free to contact us any time and all the estimates will be done for you FREE of charge. Thanks! Paul PS. It's one time message. You are not on a list. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 15:38:35 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 0CF6437B417 for ; Wed, 27 Mar 2002 15:38:22 -0800 (PST) Received: from hades.hell.gr (patr530-a207.otenet.gr [212.205.215.207]) by mailsrv.otenet.gr (8.12.2/8.12.2) with ESMTP id g2RNcGvD009948; Thu, 28 Mar 2002 01:38:17 +0200 (EET) Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.2/8.12.2) with ESMTP id g2RNc9tA012512; Thu, 28 Mar 2002 01:38:14 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from charon@localhost) by hades.hell.gr (8.12.2/8.12.2/Submit) id g2RMtHhk012032; Thu, 28 Mar 2002 00:55:17 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Thu, 28 Mar 2002 00:55:16 +0200 (EET) From: Giorgos Keramidas X-X-Sender: charon@hades To: "Gary W. Swearingen" Cc: freebsd-doc@freebsd.org Subject: Re: docs/35967: rc.conf(5) manual missing "dumpdir" and "savecore_flags", etc. In-Reply-To: <0tzo0tj3uh.o0t@localhost.localdomain> Message-ID: <20020328005150.D11900-100000@hades> 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 2002-03-27 09:52, Gary W. Swearingen wrote: > murray@FreeBSD.org writes: > > > I do see a dumpdir description in rc.conf(5), so it's not clear to me > > what needs to be changed. > > It's not in mine from STABLE csvup'd about 03'mar. Only a "dumpdev" > description which I thought could use improvement. A description of dumpdir was commit in revisionn 1.64.2.41 of rc.conf.5. You can always check the CVS logs and latest versions of the files (as they appear on the CVS repository of freefall.freebsd.org) on the web, to make sure that the changes you want to make haven't been done already. http://cvsweb.freebsd.org/ is your friend :) - Giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 15:40:15 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DD0B37B400 for ; Wed, 27 Mar 2002 15:40:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2RNe7g68583; Wed, 27 Mar 2002 15:40:07 -0800 (PST) (envelope-from gnats) Date: Wed, 27 Mar 2002 15:40:07 -0800 (PST) Message-Id: <200203272340.g2RNe7g68583@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36375: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml 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/36375; it has been noted by GNATS. From: Giorgos Keramidas To: Nevermind Cc: bug-followup@freebsd.org Subject: Re: docs/36375: [PATCH] typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Date: Thu, 28 Mar 2002 00:47:04 +0200 (EET) On 2002-03-27 18:55, Nevermind wrote: > >Description: > Typo in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml, > should be 'place' instead of 'pace'. Well, I think the original author meant to use "rate" instead of "place", in an effort to emphasize on the relative "stability" of the STABLE branches, and the smaller number of commits that are in general expected to happen in the STABLE branch, compared to the "lively" state of the HEAD branch where CURRENT lives. If the original text seems confusing, I'll agree that it needs to be made as clear as possible though. In Michael Lucas' spirit, we need to make it ``impossible for the reader to misunderstand what is written.'' Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 15:40:25 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D06B537B404 for ; Wed, 27 Mar 2002 15:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2RNe4l68566; Wed, 27 Mar 2002 15:40:04 -0800 (PST) (envelope-from gnats) Date: Wed, 27 Mar 2002 15:40:04 -0800 (PST) Message-Id: <200203272340.g2RNe4l68566@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36377: kernel path needs to be changed in -current manual pages 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/36377; it has been noted by GNATS. From: Giorgos Keramidas To: Hiten Pandya Cc: bug-followup@freebsd.org Subject: Re: docs/36377: kernel path needs to be changed in -current manual pages Date: Thu, 28 Mar 2002 01:20:34 +0200 (EET) On 2002-03-27 18:12, Hiten Pandya wrote: > >Description: > > Some manual pages in -current need to be changed which refer to > the /kernel file patch. Good catch :) I just did the following: % cd /usr/src % find . -name '*.[0-9]' | xargs grep /kernel | grep -v /boot/kernel and the files that were caught by the greps are shown below (just in case you want to attack them one by one, and submit patches for those that need to be changed/updated). This is a lot more work that it initially seems though. One needs to check if the manpage describes what the code does. There might be utilities left that use /kernel, instead of the currently used /boot/kernel/kernel, to find the kernel. This means that before the manpage is changed, the appropriate source files need to be checked, to make sure that the manpage reflects what really happens in the programs themselves. We don't want to blindly substitute /boot/kernel/kernel for all the instances of /kernel, and make the manpages inconsistent with the source, right? But, enough with the words. Here is the file list: src/bin/ps/ps.1 src/lib/libc/gen/getbootfile.3 src/sbin/nextboot/nextboot.8 src/sbin/reboot/boot_i386.8 src/sbin/savecore/savecore.8 src/share/man/man4/vinum.4 src/share/man/man8/crash.8 src/share/man/man9/DECLARE_MODULE.9 src/share/man/man9/DEV_MODULE.9 src/share/man/man9/DRIVER_MODULE.9 src/share/man/man9/SYSCALL_MODULE.9 src/share/man/man9/VFS_SET.9 src/share/man/man9/domain.9 src/share/man/man9/module.9 src/share/man/man9/taskqueue.9 src/share/man/man9/uio.9 src/sys/boot/common/loader.8 src/sys/boot/forth/loader.conf.5 src/usr.bin/fstat/fstat.1 src/usr.bin/ipcs/ipcs.1 src/usr.bin/nfsstat/nfsstat.1 src/usr.bin/symorder/symorder.1 src/usr.bin/systat/systat.1 src/usr.bin/vmstat/vmstat.8 src/usr.bin/w/uptime.1 src/usr.bin/w/w.1 src/usr.sbin/getextattr/getextattr.8 src/usr.sbin/iostat/iostat.8 src/usr.sbin/kernbb/kernbb.8 src/usr.sbin/kgmon/kgmon.8 src/usr.sbin/pstat/pstat.8 src/usr.sbin/rwhod/rwhod.8 src/usr.sbin/setextattr/setextattr.8 src/usr.sbin/trpt/trpt.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 15:43:50 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id E31E937B400 for ; Wed, 27 Mar 2002 15:43:45 -0800 (PST) Received: from hades.hell.gr (patr530-a207.otenet.gr [212.205.215.207]) by mailsrv.otenet.gr (8.12.2/8.12.2) with ESMTP id g2RNhhvD013641; Thu, 28 Mar 2002 01:43:44 +0200 (EET) Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.2/8.12.2) with ESMTP id g2RNhgt4012763; Thu, 28 Mar 2002 01:43:42 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from charon@localhost) by hades.hell.gr (8.12.2/8.12.2/Submit) id g2RNhgqL012762; Thu, 28 Mar 2002 01:43:42 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Thu, 28 Mar 2002 01:43:42 +0200 (EET) From: Giorgos Keramidas X-X-Sender: charon@hades To: Aaron Long-Jordan Cc: freebsd-doc@freebsd.org Subject: Re: Doc Project Assistance -- I am interested In-Reply-To: <20020327221710.10738.qmail@web20305.mail.yahoo.com> Message-ID: <20020328014122.M12698-100000@hades> 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 2002-03-27 14:17, Aaron Long-Jordan wrote: > To whom it may concern: > > I am interested in assisting with the FreeBSD Documentation Project. That would be great :) > Please let me know if/how I can help, even if it is just taking text and > making it into web pages or what-not. You can always start at http://www.FreeBSD.org/docproj/ or the "FreeBSD Documentation Project Primer for New Contributors". Find it at: http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/fdp-primer/ - Giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 15:50:12 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF1A837B41D for ; Wed, 27 Mar 2002 15:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2RNo3070329; Wed, 27 Mar 2002 15:50:03 -0800 (PST) (envelope-from gnats) Date: Wed, 27 Mar 2002 15:50:03 -0800 (PST) Message-Id: <200203272350.g2RNo3070329@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Hiten Pandya Subject: Re: docs/36377: kernel path needs to be changed in -current manual pages Reply-To: Hiten Pandya 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/36377; it has been noted by GNATS. From: Hiten Pandya To: Giorgos Keramidas Cc: bug-followup@freebsd.org Subject: Re: docs/36377: kernel path needs to be changed in -current manual pages Date: Wed, 27 Mar 2002 15:48:21 -0800 (PST) --- Giorgos Keramidas wrote: > Good catch :) > I just did the following: > > % cd /usr/src > % find . -name '*.[0-9]' | xargs grep /kernel | grep -v /boot/kernel > > and the files that were caught by the greps are shown below (just in case > you want to attack them one by one, and submit patches for those that need > to be changed/updated). This is a lot more work that it initially seems > though. One needs to check if the manpage describes what the code does. > There might be utilities left that use /kernel, instead of the currently > used /boot/kernel/kernel, to find the kernel. This means that before the > manpage is changed, the appropriate source files need to be checked, to > make sure that the manpage reflects what really happens in the programs > themselves. We don't want to blindly substitute /boot/kernel/kernel for > all the instances of /kernel, and make the manpages inconsistent with the > source, right? Yup, you are absolutely right, but I according to my limited knowledge, I think it doesn't matter if the file is /kernel or /boot/kernel/kernel, as nothing is actually hard-coded which points directly to /kernel.. although I may be wrong... maybe someone superior than me has some input to make on this issue.. 8-) > [ .. snip .. snip .. ] src/usr.sbin/kgmon/kgmon.8 - This one is done. All it needs is the patch attached in this PR to be committed as I have checked this in my system as, and probably so can you... you will need the "profile" option in your kernel and you can do the following on a -CURRENT system if you are unsure about my change: %su [..magic password..] #kgmon -B (or -b) -N /boot/kernel/kernel The above will work fine with a profile kernel, so in a nutshell, my attached patch will not hurt this utility. For the rest in the list you gave me, I am sure it will not take more than two to three days to get it sorted, as I am having holidays... :) I am working on the list you have provided, and patches should be seen on this PR in a few days. :) Btw, thanks for the list. Thanks, -- Hiten Pandya -- __________________________________________________ Do You Yahoo!? Yahoo! Movies - coverage of the 74th Academy Awards® http://movies.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 20:18: 0 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 246D437B417; Wed, 27 Mar 2002 20:17:59 -0800 (PST) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2S4HxM33451; Wed, 27 Mar 2002 20:17:59 -0800 (PST) (envelope-from trhodes) Date: Wed, 27 Mar 2002 20:17:59 -0800 (PST) From: Message-Id: <200203280417.g2S4HxM33451@freefall.freebsd.org> To: trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Subject: Re: docs/34038: [NEW ARTICLE] Upgrading a.out to Elf 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 ARTICLE] Upgrading a.out to Elf Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Wed Mar 27 20:14:05 PST 2002 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=34038 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 20:21:52 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id BDDC837B41E; Wed, 27 Mar 2002 20:21:43 -0800 (PST) Received: from localhost (c5.depaul-inst.pittsburgh.pa.us [192.168.1.5]) by pittgoth.com (8.11.6/8.11.6) with SMTP id g2S4OFq54528; Wed, 27 Mar 2002 23:24:16 -0500 (EST) (envelope-from darklogik@pittgoth.com) Date: Wed, 27 Mar 2002 23:29:33 -0500 From: Tom Rhodes To: Cc: trhodes@FreeBSD.ORG, freebsd-doc@FreeBSD.ORG Subject: Re: docs/34038: [NEW ARTICLE] Upgrading a.out to Elf Message-Id: <20020327232933.50f3d770.darklogik@pittgoth.com> In-Reply-To: <200203280417.g2S4HxM33451@freefall.freebsd.org> References: <200203280417.g2S4HxM33451@freefall.freebsd.org> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; boundary="=.Pf'(c'5y5B8_L_" 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 --=.Pf'(c'5y5B8_L_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Wed, 27 Mar 2002 20:17:59 -0800 (PST) wrote: > Synopsis: [NEW ARTICLE] Upgrading a.out to Elf > > Responsible-Changed-From-To: freebsd-doc->trhodes > Responsible-Changed-By: trhodes > Responsible-Changed-When: Wed Mar 27 20:14:05 PST 2002 > Responsible-Changed-Why: > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=34038 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-doc" in the body of the message > It did not accept my ``why'' field... SORRY EVERYONE!! :) -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@ {Pittgoth.com, FreeBSD.org} --=.Pf'(c'5y5B8_L_ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8opwywPmgiRuevUMRAvMCAKCfx6LjJ1JZnXgqqrv0veELN6EDIgCgtozR 4VttpGNRgbD5KijZv9sjuPY= =4pWF -----END PGP SIGNATURE----- --=.Pf'(c'5y5B8_L_-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 21:48:44 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id CFFD737B405; Wed, 27 Mar 2002 21:48:40 -0800 (PST) Received: from localhost (c5.depaul-inst.pittsburgh.pa.us [192.168.1.5]) by pittgoth.com (8.11.6/8.11.6) with SMTP id g2S5pCq54696; Thu, 28 Mar 2002 00:51:13 -0500 (EST) (envelope-from darklogik@pittgoth.com) Date: Thu, 28 Mar 2002 00:56:31 -0500 From: Tom Rhodes To: Nik Clayton Cc: FreeBSD-doc@FreeBSD.org Subject: Re: Patch for review, bringing back the advocacy site Message-Id: <20020328005631.26e8b2f4.darklogik@pittgoth.com> In-Reply-To: <20020325001332.77e87edc.darklogik@pittgoth.com> References: <20020325001332.77e87edc.darklogik@pittgoth.com> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; boundary="=.r6vlUH:)Z+iwcq" 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 --=.r6vlUH:)Z+iwcq Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Mon, 25 Mar 2002 00:13:32 -0500 Tom Rhodes wrote: > A few people have returned the request for my review, and > those requests have, for the most part, been answered. Now that > those ideas have been put in, I created a diff file. I then checked > my diff by running cvsup, and then applying the patch to the en > directory. Afterwords, a make quickly pointed out any errors, > and now I have a finished patch for review: > > http://www.pittgoth.com/~darklogik/advocacy/advo.diff > > I have got alot of positive feedback on the direction that I am taking this. No objections to this diff? If I do not hear any by Monday, i'll reguest its application to the website. Thanks in advance. -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@ {Pittgoth.com, FreeBSD.org} --=.r6vlUH:)Z+iwcq Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8orCSwPmgiRuevUMRAv1nAKCI5zIiQd2LjYGvY/TSdllNPk+GNwCfVia3 CDQD4HQdkWXgfkouNkz2EjM= =OC06 -----END PGP SIGNATURE----- --=.r6vlUH:)Z+iwcq-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Wed Mar 27 21:59:21 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8236B37B400; Wed, 27 Mar 2002 21:59:18 -0800 (PST) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2S5xIi52050; Wed, 27 Mar 2002 21:59:18 -0800 (PST) (envelope-from trhodes) Date: Wed, 27 Mar 2002 21:59:18 -0800 (PST) From: Message-Id: <200203280559.g2S5xIi52050@freefall.freebsd.org> To: trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Subject: Re: docs/35530: New cvsup and www mirror in Romania 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 cvsup and www mirror in Romania Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Wed Mar 27 21:57:48 PST 2002 Responsible-Changed-Why: I originally sent the patches in, and will oversee this pr http://www.freebsd.org/cgi/query-pr.cgi?pr=35530 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 1:28:59 2002 Delivered-To: freebsd-doc@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id 68FD337B416 for ; Thu, 28 Mar 2002 01:28:57 -0800 (PST) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id D46522172; Thu, 28 Mar 2002 10:28:54 +0100 (CET) Date: Thu, 28 Mar 2002 10:28:54 +0100 From: Jeroen Ruigrok/asmodai To: Steven Shafer Cc: freebsd-doc@FreeBSD.ORG Subject: Docbuild broken Message-ID: <20020328092854.GI13206@daemon.ninth-circle.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises 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 [20020327 22:30], Steven Shafer (shafer@cs.binghamton.edu) wrote: >I am having some trouble with the handbook. I have downloaded >several versions of it, and can't seem to get a totally readable >copy. Quite correct, I am looking into it now. Thanks for alerting. -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ A place for everything, and everything in its place... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 1:32: 2 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3918037B416; Thu, 28 Mar 2002 01:31:59 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2S9VxZ00596; Thu, 28 Mar 2002 01:31:59 -0800 (PST) (envelope-from murray) Date: Thu, 28 Mar 2002 01:31:59 -0800 (PST) From: Message-Id: <200203280931.g2S9VxZ00596@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-doc@FreeBSD.org, murray@FreeBSD.org Subject: Re: docs/34583: DECLARE_MODULE(9) man page is broken. 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: DECLARE_MODULE(9) man page is broken. Responsible-Changed-From-To: freebsd-doc->murray Responsible-Changed-By: murray Responsible-Changed-When: Thu Mar 28 01:31:46 PST 2002 Responsible-Changed-Why: I will take a look at this. http://www.freebsd.org/cgi/query-pr.cgi?pr=34583 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 1:40:27 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D7EE937B42C; Thu, 28 Mar 2002 01:40:18 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2S9eII01913; Thu, 28 Mar 2002 01:40:18 -0800 (PST) (envelope-from murray) Date: Thu, 28 Mar 2002 01:40:18 -0800 (PST) From: Message-Id: <200203280940.g2S9eII01913@freefall.freebsd.org> To: murray@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: bin/34955: [PATCH] ps(1) is out of touch with reality 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: [PATCH] ps(1) is out of touch with reality Responsible-Changed-From-To: freebsd-bugs->freebsd-doc Responsible-Changed-By: murray Responsible-Changed-When: Thu Mar 28 01:40:11 PST 2002 Responsible-Changed-Why: docs bug. http://www.freebsd.org/cgi/query-pr.cgi?pr=34955 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 1:43:20 2002 Delivered-To: freebsd-doc@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id 4C3C737B416 for ; Thu, 28 Mar 2002 01:43:18 -0800 (PST) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id D57762172; Thu, 28 Mar 2002 10:43:16 +0100 (CET) Date: Thu, 28 Mar 2002 10:43:16 +0100 From: Jeroen Ruigrok/asmodai To: Garrett Rooney Cc: freebsd-doc@FreeBSD.org Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man page Message-ID: <20020328094316.GJ13206@daemon.ninth-circle.org> References: <200203270400.g2R405i68109@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203270400.g2R405i68109@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises 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 [20020327 05:15], Garrett Rooney (rooneg@electricjellyfish.net) wrote: > btw, Dima, if you could just let me know what kind of markup errors > you find, that would be great. i'm fairly new at writing man pages, > and any tips on things to avoid in the future would be much > appreciated. Hard sentence break for example. We break sentences at the commas or other logical position in the sentence so that, when we next touch/rewrite a manual page, we can easily alter the flow of the sentences without obfuscating the diffs much. -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ O, what a tangle web we weave, when first we practice to deceive... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 1:43:56 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C4FA837B404; Thu, 28 Mar 2002 01:43:53 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2S9hrY02759; Thu, 28 Mar 2002 01:43:53 -0800 (PST) (envelope-from murray) Date: Thu, 28 Mar 2002 01:43:53 -0800 (PST) From: Message-Id: <200203280943.g2S9hrY02759@freefall.freebsd.org> To: kstailey@surfbest.net, murray@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/35011: There are no commands called "diskless" or "jail". 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: There are no commands called "diskless" or "jail". State-Changed-From-To: open->analyzed State-Changed-By: murray State-Changed-When: Thu Mar 28 01:43:32 PST 2002 State-Changed-Why: diskless should be moved to man7. I've asked Ruslan for his approval before requesting this from the CVS meisters. http://www.freebsd.org/cgi/query-pr.cgi?pr=35011 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 2:37: 0 2002 Delivered-To: freebsd-doc@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 3989637B404; Thu, 28 Mar 2002 02:36:46 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2SAaaJ20340; Thu, 28 Mar 2002 12:36:36 +0200 (EET) (envelope-from ru) Date: Thu, 28 Mar 2002 12:36:36 +0200 From: Ruslan Ermilov To: Murray Stokely Cc: Dima Dorfman , Chris Costello , freebsd-doc@FreeBSD.org Subject: Re: Cleaning up section 8 (Re: docs/35011) Message-ID: <20020328103636.GA17147@sunbay.com> References: <20020304165226.A7081@holly.calldei.com> <20020305004434.D76BC3E2F@bazooka.trit.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020305004434.D76BC3E2F@bazooka.trit.org> User-Agent: Mutt/1.3.27i 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 Tue, Mar 05, 2002 at 12:44:29AM +0000, Dima Dorfman wrote: > Chris Costello wrote: > > On Saturday, February 16, 2002, Chris Costello wrote: > > > Actually, there is a command called `jail'. However, > > > diskless(8) should probably become diskless(7). > > > > Moreover, I propose that we move all non-commands out of > > section 8: > > > > adding_user.8 diskless.8 sticky.8 > > crash.8 picobsd.8 yp.8 > > > > I vote that they be moved into section 7 (Miscellaneous > > Information Manual). Anybody agree with me? > > I agree in general, but please talk to ru before changing yp(8) to > yp(7); he just recently changed it from yp(4), and perhaps he had a > reason to choose section 8 over 7 ({Open,Net}BSD compatibility?). > I disagree. According to intro(8), this section contains information related to system operation and maintenance. adding_user(8) - procedure for adding new users crash(8) - FreeBSD system failures diskless(8) - booting a system over the network picobsd(8) - floppy disk based FreeBSD system sticky(8) - sticky text and append-only directories yp(8) - description of the YP/NIS system IMO all these relate to system operation and/or maintenance. Most of them also describe real commands. They fit nicely into this category. adding_user: chpass(1) and vipw(8) crash: dumpcore(8), savedump(8) and gdb(1) diskless: /etc/rc.diskless1 and /etc/rc.diskless2 (compare to rc(8)) picobsd: customized /etc/rc* sticky: explains sticky bit on dirs that strongly relates to maintenance yp: this manual is incomplete; OpenBSD and NetBSD have a more complete one with all YP commands referenced in SYNOPSIS Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 3: 9:53 2002 Delivered-To: freebsd-doc@freebsd.org Received: from smtp.hccnet.nl (smtp.hccnet.nl [62.251.0.13]) by hub.freebsd.org (Postfix) with ESMTP id 92EAB37B417 for ; Thu, 28 Mar 2002 03:09:49 -0800 (PST) Received: from there by smtp.hccnet.nl via uds114-60.dial.hccnet.nl [62.251.60.114] with SMTP id MAA26174 (8.8.8/1.13); Thu, 28 Mar 2002 12:09:47 +0100 (MET) Message-Id: <200203281109.MAA26174@smtp.hccnet.nl> Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan Organization: FreeBSD Project To: Ceri Subject: Re: Java project is a subproject of the Doc project ? Date: Thu, 28 Mar 2002 11:55:57 +0100 X-Mailer: KMail [version 1.3.2] References: <20020323131239.GA42532@submonkey.net> In-Reply-To: <20020323131239.GA42532@submonkey.net> Cc: doc@FreeBSD.org 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 Ceri, I know that Maxim (sobomax) has been doing some work on the FreeBSD Java doc pages too. Ernst On Saturday 23 March 2002 14:12, Ceri wrote: > I've just been looking over the staff lists in the contributors article, > and on the documentation project page, we have this : > > FreeBSD Java Project > Patrick S. Gardella > > Doesn't that belong somewhere else ? > > Ceri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 4:12: 5 2002 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 D330837B417 for ; Thu, 28 Mar 2002 04:12:03 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id AF4014B669; Thu, 28 Mar 2002 04:12:03 -0800 (PST) Date: Thu, 28 Mar 2002 04:12:03 -0800 From: Murray Stokely To: doc@FreeBSD.org Subject: Exploding number of open doc PRs Message-ID: <20020328121203.GI15413@freebsdmall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.25i 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 The number of open doc PRs has more than doubled from 45 to over 110 in just a few months. I will buy a beer (or non-alcoholic beverage) at Usenix for everyone that closes more doc PRs than I do from now until Usenix. If you won't be at Usenix, please help close some PRs anyway! ;) - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 4:16: 9 2002 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 D617437B405 for ; Thu, 28 Mar 2002 04:16:04 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id B08124B669; Thu, 28 Mar 2002 04:16:04 -0800 (PST) Date: Thu, 28 Mar 2002 04:16:04 -0800 From: Murray Stokely To: Aaron Long-Jordan Cc: freebsd-doc@freebsd.org Subject: Re: Doc Project Assistance -- I am interested Message-ID: <20020328121604.GJ15413@freebsdmall.com> References: <20020327221710.10738.qmail@web20305.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline In-Reply-To: <20020327221710.10738.qmail@web20305.mail.yahoo.com> User-Agent: Mutt/1.3.25i 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 --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Mar 27, 2002 at 02:17:10PM -0800, Aaron Long-Jordan wrote: > I am interested in assisting with the FreeBSD > Documentation Project. However, I am not sure what > help I can offer. I am fluent in HTML 4.0. I am not > the most experienced user/sys admin, but I am capable. Since you are fluent in HTML it should be very easy to learn DocBook. Please browse through the FreeBSD Documentation Project Primer, available online at : http://www.freebsd.org/docproj/ You don't have to become a SGML/XML expert to help out. If you find areas where the documentation is lacking, you can submit the material in text or HTML and someone will convert it to DocBook for you. There are also a lot of updates for man pages in the PR database. You may want to browse bugs.freebsd.org (search for bugs that 'freebsd-doc' is responsible for). In short, we'd like your help however you can offer it. ;) Please read through the Doc Project Primer, and some of the documentation bugs to see what you'd like to work on. Then email us if you have any more questions. Thanks, - Murray --lrZ03NoBR/3+SXJZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (SunOS) Comment: For info see http://www.gnupg.org iD8DBQE8owmEtNcQog5FH30RAmCBAJsEtriWfzCMGNY+XenhGRQDrYcW7ACfbHnK j5veMSma+QEBEbXmgDlIM3o= =BLTe -----END PGP SIGNATURE----- --lrZ03NoBR/3+SXJZ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 4:19:44 2002 Delivered-To: freebsd-doc@freebsd.org Received: from isris.pair.com (isris.pair.com [209.68.2.39]) by hub.freebsd.org (Postfix) with SMTP id AC60237B400 for ; Thu, 28 Mar 2002 04:19:41 -0800 (PST) Received: (qmail 90771 invoked by uid 3130); 28 Mar 2002 12:19:40 -0000 Date: Thu, 28 Mar 2002 07:19:40 -0500 From: Garrett Rooney To: Jeroen Ruigrok/asmodai Cc: freebsd-doc@FreeBSD.org Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man page Message-ID: <20020328121940.GC13351@electricjellyfish.net> References: <200203270400.g2R405i68109@freefall.freebsd.org> <20020328094316.GJ13206@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020328094316.GJ13206@daemon.ninth-circle.org> User-Agent: Mutt/1.3.25i 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, Mar 28, 2002 at 10:43:16AM +0100, Jeroen Ruigrok/asmodai wrote: > -On [20020327 05:15], Garrett Rooney (rooneg@electricjellyfish.net) wrote: > > btw, Dima, if you could just let me know what kind of markup errors > > you find, that would be great. i'm fairly new at writing man pages, > > and any tips on things to avoid in the future would be much > > appreciated. > > Hard sentence break for example. > > We break sentences at the commas or other logical position in the sentence > so that, when we next touch/rewrite a manual page, we can easily alter the > flow of the sentences without obfuscating the diffs much. ahh, so that's the reason. i had noticed that being done at the end of sentences, and wondered why, so now it makes much more sense. thanks, -garrett -- garrett rooney Unix was not designed to stop you from rooneg@electricjellyfish.net doing stupid things, because that would http://electricjellyfish.net/ stop you from doing clever things. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 4:26:12 2002 Delivered-To: freebsd-doc@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id DE84837B404 for ; Thu, 28 Mar 2002 04:26:09 -0800 (PST) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id F2E6A2172; Thu, 28 Mar 2002 13:26:08 +0100 (CET) Date: Thu, 28 Mar 2002 13:26:08 +0100 From: Jeroen Ruigrok/asmodai To: freebsd-doc@FreeBSD.org Subject: DocBook XML/SGML Message-ID: <20020328122608.GL13206@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises 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 Is there any reason textproc/docbook-xml does not have a version identifer like the docbook SGML ports, e.g. 40, 41, 42 and the likes. -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ One who knows that enough is enough will always have enough... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 4:48:20 2002 Delivered-To: freebsd-doc@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id 6DCA337B41F for ; Thu, 28 Mar 2002 04:48:15 -0800 (PST) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id B9CE82170; Thu, 28 Mar 2002 13:48:13 +0100 (CET) Date: Thu, 28 Mar 2002 13:48:13 +0100 From: Jeroen Ruigrok/asmodai To: freebsd-doc@freebsd.org Subject: Build problems for PDF Message-ID: <20020328124813.GM13206@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises 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 Guys, am I missing something (couldn't find anything in the archives relating to this): /usr/local/bin/jade -V tex-backend -ioutput.print -d /usr/doc/en_US.ISO8859-1/articles/releng/../../../share/sgml/default.dsl -ioutput.print.pdf -D /usr/obj/usr/doc/en_US.ISO8859-1/articles/releng -c /usr/doc/en_US.ISO8859-1/articles/releng/../../../en_US.ISO8859-1/share/sgml/catalog -c /usr/doc/en_US.ISO8859-1/articles/releng/../../../share/sgml/catalog -c /usr/local/share/sgml/docbook/dsssl/modular/catalog -c /usr/local/share/sgml/iso8879/catalog -c /usr/local/share/sgml/docbook/catalog -c /usr/local/share/sgml/jade/catalog -t tex -o /dev/stdout /usr/doc/en_US.ISO8859-1/articles/releng/article.sgml >> article.tex-pdf ==> PDFTeX pass 1/3 /usr/local/bin/pdftex "&pdfjadetex" ' \nonstopmode\input{article.tex-pdf}' This is pdfTeX, Version 3.14159-13d (Web2C 7.3.1) [/usr/local/share/texmf/pdftex/config/pdftex.cfg] JadeTeX 2002/01/25: 3.12 (article.tex-pdf (/usr/local/share/texmf/tex/latex/psnfss/t1ptm.fd) Elements will be labelled Jade begin document sequence at 21 No file article.aux. (/usr/local/share/texmf/tex/latex/cyrillic/t2acmr.fd) (/usr/local/share/texmf/tex/latex/base/ts1cmr.fd) (/usr/local/share/texmf/tex/context/base/supp-pdf.tex (/usr/local/share/texmf/tex/context/base/supp-mis.tex loading : Context Support Macros / Missing ) loading : Context Support Macros / PDF ) (/usr/local/share/texmf/tex/latex/hyperref/nameref.sty) (/usr/local/share/texmf/tex/latex/psnfss/t1phv.fd) (/usr/local/share/texmf/tex/latex/psnfss/t1pcr.fd) [1.0.9[/usr/local/share/texm f/dvips/config/pdftex.map]] (/usr/local/share/texmf/tex/latex/psnfss/ts1ptm.fd) [2.0.9] Overfull \hbox (9.90002pt too wide) in paragraph at lines 1196--1249 [] Error (323): PDF version 1.3 -- xpdf supports version 1.2 (continuing anyway) Segmentation fault - core dumped *** Error code 139 (ignored) -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ What is the short meaning of this long speech..? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 4:58:27 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E826537B43F; Thu, 28 Mar 2002 04:58:08 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2SCw8g60941; Thu, 28 Mar 2002 04:58:08 -0800 (PST) (envelope-from dd) Date: Thu, 28 Mar 2002 04:58:08 -0800 (PST) From: Message-Id: <200203281258.g2SCw8g60941@freefall.freebsd.org> To: rooneg@electricjellyfish.net, dd@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/36350: [PATCH] new mtx_pool.9 man 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: [PATCH] new mtx_pool.9 man page State-Changed-From-To: open->closed State-Changed-By: dd State-Changed-When: Thu Mar 28 04:57:57 PST 2002 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=36350 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 8:15: 9 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id 85A7837B41A; Thu, 28 Mar 2002 08:15:04 -0800 (PST) Received: from localhost (lcl234.zbzoom.net [208.236.36.234]) by pittgoth.com (8.11.6/8.11.6) with SMTP id g2SGHZq56169; Thu, 28 Mar 2002 11:17:36 -0500 (EST) (envelope-from darklogik@pittgoth.com) Date: Thu, 28 Mar 2002 11:22:54 -0500 From: Tom Rhodes To: Murray Stokely Cc: doc@FreeBSD.ORG Subject: Re: Exploding number of open doc PRs Message-Id: <20020328112254.3d86b8f3.darklogik@pittgoth.com> In-Reply-To: <20020328121203.GI15413@freebsdmall.com> References: <20020328121203.GI15413@freebsdmall.com> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; boundary="=.QKYRj)zsh0Zh)r" 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 --=.QKYRj)zsh0Zh)r Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 28 Mar 2002 04:12:03 -0800 Murray Stokely wrote: > The number of open doc PRs has more than doubled from 45 to over > 110 in just a few months. > > I will buy a beer (or non-alcoholic beverage) at Usenix for > everyone that closes more doc PRs than I do from now until Usenix. > > If you won't be at Usenix, please help close some PRs anyway! ;) > > - Murray > I'm working on it Murray, I currently have 3 assigned to me, and I am planning to take another one! Perhaps the mergemaster(8) pr would be nice... I'll get back with you hehe Everyone else, grab yer doctools, lets go pr hunting!! :) *wonders why everyone is glaring at him as if to be some sort of nut* Hey, its fun! -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@ {Pittgoth.com, FreeBSD.org} --=.QKYRj)zsh0Zh)r Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8o0NhwPmgiRuevUMRAn2KAKDq90ZyHrHquPadR5A7gTVo1PQwFACeKWgj Tw8dqyn0WAIxi6UnCMaaBoM= =Txb7 -----END PGP SIGNATURE----- --=.QKYRj)zsh0Zh)r-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 8:51:12 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED42637B405; Thu, 28 Mar 2002 08:51:09 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2SGmpN30666; Thu, 28 Mar 2002 08:48:51 -0800 (PST) (envelope-from dannyboy) Date: Thu, 28 Mar 2002 08:48:51 -0800 (PST) From: Message-Id: <200203281648.g2SGmpN30666@freefall.freebsd.org> To: dannyboy@FreeBSD.org, freebsd-doc@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: docs/33586: An errata in ntp.keys.5 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 Synopsis: An errata in ntp.keys.5 manpage Responsible-Changed-From-To: freebsd-doc->sheldonh Responsible-Changed-By: dannyboy Responsible-Changed-When: Thu Mar 28 08:47:56 PST 2002 Responsible-Changed-Why: Over to maintainer. This is a trivial (and correct) change as far as I can see. http://www.freebsd.org/cgi/query-pr.cgi?pr=33586 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 8:51:30 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 48E6337B419; Thu, 28 Mar 2002 08:51:27 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2SGo5F30945; Thu, 28 Mar 2002 08:50:05 -0800 (PST) (envelope-from dannyboy) Date: Thu, 28 Mar 2002 08:50:05 -0800 (PST) From: Message-Id: <200203281650.g2SGo5F30945@freefall.freebsd.org> To: dannyboy@FreeBSD.org, freebsd-doc@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: docs/33585: Possible Errata in ntp.conf.5 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 Synopsis: Possible Errata in ntp.conf.5 manpage Responsible-Changed-From-To: freebsd-doc->sheldonh Responsible-Changed-By: dannyboy Responsible-Changed-When: Thu Mar 28 08:49:44 PST 2002 Responsible-Changed-Why: To maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=33585 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 9: 0:52 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 7B28F37B434; Thu, 28 Mar 2002 09:00:44 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020328170044.CIHC1147.rwcrmhc52.attbi.com@bmah.dyndns.org>; Thu, 28 Mar 2002 17:00:44 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.2/8.12.2) with ESMTP id g2SH0hd8034368; Thu, 28 Mar 2002 09:00:43 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.2/8.12.2/Submit) id g2SH0h5i034367; Thu, 28 Mar 2002 09:00:43 -0800 (PST) Message-Id: <200203281700.g2SH0h5i034367@intruder.bmah.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Niall Brady Cc: bmah@freebsd.org, nik@freebsd.org, freebsd-doc@freebsd.org Subject: Re: docproj port problem In-reply-to: <200203240003.aa95290@salmon.maths.tcd.ie> References: <200203240003.aa95290@salmon.maths.tcd.ie> Comments: In-reply-to Niall Brady message dated "Sun, 24 Mar 2002 00:03:07 +0000." 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: text/plain; charset=us-ascii Date: Thu, 28 Mar 2002 09:00:43 -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 If memory serves me right, Niall Brady wrote: > On Thu, 21 Mar 2002 14:25:35 PST, bmah@freebsd.org said: > > > >With my RE team hat on, I'll say we can probably hold a day or two. I > >put the rest of RE on notice that there's a small problem so there > >won't be any surprises. > > Best to back it out... I'm a bit all over the place with work these > days... no point holding up the release ;-) I'll fix it after... OK, done. Actually, I realized later that we don't actually do releases using JADETEX=yes anyways, so technically speaking it won't break the release. Still, we need to figure this out. One alternative might be to have Yet Another Knob that says, in essence, "don't assume that TeX is installed in the normal place, but use kpsewhich from an existing TeX installation to find it". Thanks! Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 9: 6:40 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9327037B405; Thu, 28 Mar 2002 09:06:36 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2SH6al38205; Thu, 28 Mar 2002 09:06:36 -0800 (PST) (envelope-from dannyboy) Date: Thu, 28 Mar 2002 09:06:36 -0800 (PST) From: Message-Id: <200203281706.g2SH6al38205@freefall.freebsd.org> To: erik@smluc.org, dannyboy@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/35140: How to enable DPMS support in XFree86-4 isn't mentioned in 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: How to enable DPMS support in XFree86-4 isn't mentioned in the handbook State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Thu Mar 28 09:06:11 PST 2002 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=35140 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 11:57:50 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C04FA37B400; Thu, 28 Mar 2002 11:57:47 -0800 (PST) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2SJvln77236; Thu, 28 Mar 2002 11:57:47 -0800 (PST) (envelope-from trhodes) Date: Thu, 28 Mar 2002 11:57:47 -0800 (PST) From: Message-Id: <200203281957.g2SJvln77236@freefall.freebsd.org> To: trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, trhodes@FreeBSD.org Subject: Re: docs/36263: Handbook section 19.4.10 skips over mergemaster step 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 section 19.4.10 skips over mergemaster step Responsible-Changed-From-To: freebsd-doc->trhodes Responsible-Changed-By: trhodes Responsible-Changed-When: Thu Mar 28 11:53:59 PST 2002 Responsible-Changed-Why: I have already written 3 paragraphs for this pr, and will submit a patch for review in a day or so. Thanks for pointing this out. http://www.freebsd.org/cgi/query-pr.cgi?pr=36263 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 12:13: 3 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 6CB6F37B41B; Thu, 28 Mar 2002 12:12:43 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020328201242.IMED1147.rwcrmhc52.attbi.com@bmah.dyndns.org>; Thu, 28 Mar 2002 20:12:42 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.2/8.12.2) with ESMTP id g2SKCgd8038298; Thu, 28 Mar 2002 12:12:42 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.2/8.12.2/Submit) id g2SKCgBC038297; Thu, 28 Mar 2002 12:12:42 -0800 (PST) Message-Id: <200203282012.g2SKCgBC038297@intruder.bmah.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Nik Clayton Cc: doc@FreeBSD.ORG Subject: Re: Teaching ports/textproc/docproj/Makefile about FORMATS In-reply-to: <20020319223326.C5971@canyon.nothing-going-on.org> References: <20020319223326.C5971@canyon.nothing-going-on.org> Comments: In-reply-to Nik Clayton message dated "Tue, 19 Mar 2002 22:33:26 +0000." From: "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: text/plain; charset=us-ascii Date: Thu, 28 Mar 2002 12:12:42 -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 If memory serves me right, Nik Clayton wrote: > Here's a diff to teach textproc/docproj/Makefile about the FORMATS > variable. Very lightly tested. Feedback welcome. I *think* this is a good idea...I'm a little concerned about different "versions" of the docproj port being built, but hey, we already have $(JADETEX) and $(WITH_OPENJADE). :-p > -# This dependency list should be kept in sync with the list of > +# Support the FORMATS variable for deciding what to depend on. > +# > +# Default to supporting HTML and TXT outputs, which seems to be the=20 > +# default most people want > +FORMATS?=3D html txt > + > +# The complete dependency list should be kept in sync with the list of > # required ports in src/release/Makefile.inc.docports. Well, strictly you only need to keep in sync with the ports that are required, given the make options used by src/release/Makefile when it builds the docproj port. > +# The basic list of dependencies, before you even decide what output forma= > t(s) > +# you want to generate > +BASE_RUN_DEPENDS=3D\ > ${PREFIX}/share/sgml/docbook/dsssl/modular:${PORTSDIR}/textproc > /dsssl-do= > cbook-modular \ > - ${PREFIX}/share/sgml/html/catalog:${PORTSDIR}/textproc/html \ > - ${PREFIX}/share/sgml/linuxdoc:${PORTSDIR}/textproc/linuxdoc \ > ${PREFIX}/share/sgml/docbook/4.1/docbook.dtd:${PORTSDIR}/textpr > oc/docboo= > k-410 \ > ${PREFIX}/share/sgml/iso8879:${PORTSDIR}/textproc/iso8879 \ > - ${PREFIX}/share/xml/dtd/xhtml/xhtml.soc:${PORTSDIR}/textproc/xh > tml \ > + ${PREFIX}/bin/xsltproc:${PORTSDIR}/textproc/libxslt Why's libxslt in BASE_RUN_DEPENDS? I thought this was only used for the Web site build. (Well, at least for now.) > +PDB_RUN_DEPENDS=3D \ > + ${HTML_RUN_DEPENDS} \ > + ${PREFIX}/bin/iSiloBSD:${PORTSDIR}/palm/isilo Comment: I tried once to upgrade the isilo port to a more recent version, but this would have required some non-trivial FDP infrastructure changes, so I gave up. +# Turn off various options that some of the dependencies default to +# requiring, but that aren't needed for the doc build +.if !defined(WITHOUT_PYTHON) +WITHOUT_PYTHON= yes We really need this, but I couldn't make it work. Like when I did a "make install", make still wanted to build python as a dependency for libxml2 and libxslt. I don't know why. Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 12:18:50 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id 506DF37B416; Thu, 28 Mar 2002 12:18:44 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020328201844.KZNK1214.rwcrmhc54.attbi.com@bmah.dyndns.org>; Thu, 28 Mar 2002 20:18:44 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.2/8.12.2) with ESMTP id g2SKIhd8038386; Thu, 28 Mar 2002 12:18:43 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.2/8.12.2/Submit) id g2SKIhYh038385; Thu, 28 Mar 2002 12:18:43 -0800 (PST) Message-Id: <200203282018.g2SKIhYh038385@intruder.bmah.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Nik Clayton Cc: doc@FreeBSD.ORG Subject: Re: Teaching ports/textproc/docproj/Makefile about FORMATS In-reply-to: <20020319223326.C5971@canyon.nothing-going-on.org> References: <20020319223326.C5971@canyon.nothing-going-on.org> Comments: In-reply-to Nik Clayton message dated "Tue, 19 Mar 2002 22:33:26 +0000." From: "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: text/plain; charset=us-ascii Date: Thu, 28 Mar 2002 12:18:43 -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 If memory serves me right, Nik Clayton wrote: Typo: > +.if ${_cf} =3D=3D "pdf" s/pdf/pdb/ > +RUN_DEPENDS+=3D ${PDB_RUN_DEPENDS} > +.endif Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 12:40:24 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBB7B37B41C for ; Thu, 28 Mar 2002 12:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2SKe1S87956; Thu, 28 Mar 2002 12:40:01 -0800 (PST) (envelope-from gnats) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by hub.freebsd.org (Postfix) with ESMTP id A993537B42F for ; Thu, 28 Mar 2002 12:36:20 -0800 (PST) Received: (from marck@localhost) by woozle.rinet.ru (8.11.6/8.11.6) id g2SKaIM44289; Thu, 28 Mar 2002 23:36:18 +0300 (MSK) (envelope-from marck) Message-Id: <200203282036.g2SKaIM44289@woozle.rinet.ru> Date: Thu, 28 Mar 2002 23:36:18 +0300 (MSK) From: Dmitry Morozovsky Reply-To: Dmitry Morozovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36432: Proposal for doc/share/mk: make folded books using psutils 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: 36432 >Category: docs >Synopsis: Proposal for doc/share/mk: make folded books using psutils >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Mar 28 12:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Dmitry Morozovsky >Release: FreeBSD 4-STABLE i386 >Organization: Cronyx Plus LLC (RiNet ISP) >Environment: System: FreeBSD 4-STABLE. Docs tree as of today. >Description: I suppose it would be useful to have ability to make folded printable books by docproj (psbook and psnup binaries from print/psutils* port are required). Personally, I have made handbook and many articles from docproj in folded format, print them and have very good time reading well-formed books (or brochures) ;-) Patches for share/mk files are here. Proposed formats are folded.ps and folded.pdf respectively. >How-To-Repeat: - empty - >Fix: Index: doc.docbook.mk =================================================================== RCS file: /home/ncvs/doc/share/mk/doc.docbook.mk,v retrieving revision 1.62 diff -u -r1.62 doc.docbook.mk --- doc.docbook.mk 2002/02/25 14:24:51 1.62 +++ doc.docbook.mk 2002/03/28 20:30:21 @@ -135,7 +135,7 @@ JADEOPTS= ${JADEFLAGS} ${SGMLFLAGS} ${CATALOGS} KNOWN_FORMATS= html html.tar html-split html-split.tar \ - txt rtf ps pdf tex dvi tar pdb + txt rtf ps folded.ps pdf folded.pdf tex dvi tar pdb CSS_SHEET?= ${DOC_PREFIX}/share/misc/docbook.css PDFTEX_DEF?= ${DOC_PREFIX}/share/web2c/pdftex.def @@ -191,6 +191,13 @@ .if defined(PAPERSIZE) DVIPSOPTS?= -t ${PAPERSIZE:L} ${DVIPSFLAGS} .endif +PSBOOK?= ${PREFIX}/bin/psbook +PSBOOKSIGSZ?= 16 +PSBMAXSIGPG?= 24 +PSBOOKOPTS?= -s${PSBOOKSIGSZ} +PSNUP?= ${PREFIX}/bin/psnup +PSNUPOPTS?= -2 +PS2PDF?= ${PREFIX}/bin/ps2pdf GZIP?= -9 GZIP_CMD?= gzip -qf ${GZIP} @@ -278,11 +285,19 @@ CLEANFILES+= ${DOC}.aux ${DOC}.log .elif ${_cf} == "ps" -CLEANFILES+= ${DOC}.aux ${DOC}.dvi ${DOC}.log ${DOC}.tex-ps +CLEANFILES+= ${DOC}.aux ${DOC}.dvi ${DOC}.log ${DOC}.tex-ps ${DOC}.tex +.elif ${_cf} == "folded.ps" +CLEANFILES+= ${DOC}.aux ${DOC}.dvi ${DOC}.log ${DOC}.tex-ps ${DOC}.tex \ + ${DOC}.ps ${DOC}.ps.gz + .elif ${_cf} == "pdf" CLEANFILES+= ${DOC}.aux ${DOC}.dvi ${DOC}.log ${DOC}.out ${DOC}.tex-pdf +.elif ${_cf} == "folded.pdf" +CLEANFILES+= ${DOC}.aux ${DOC}.dvi ${DOC}.log ${DOC}.tex-ps ${DOC}.tex \ + ${DOC}.ps ${DOC}.folded.ps + .elif ${_cf} == "pdb" _docs+= ${.CURDIR:T}.pdb CLEANFILES+= ${.CURDIR:T}.pdb @@ -436,6 +451,23 @@ ${DOC}.ps: ${DOC}.dvi ${DVIPS} ${DVIPSOPTS} -o ${.TARGET} ${.ALLSRC} +${DOC}.folded.ps: ${DOC}.ps + @TOTALPAGES=`grep '^%%Pages: ' ${.ALLSRC} | \ + head -1 | sed 's/%%Pages://'`; \ + echo Total pages: $$TOTALPAGES; \ + if test $$TOTALPAGES -gt ${PSBMAXSIGPG}; then \ + echo Splitting by ${PSBOOKOPTS}; \ + ${PSBOOK} ${PSBOOKOPTS} ${.ALLSRC} | \ + ${PSNUP} ${PSNUPOPTS} > ${.TARGET}; \ + else \ + echo Splitting as on sig; \ + ${PSBOOK} ${.ALLSRC} | \ + ${PSNUP} ${PSNUPOPTS} > ${.TARGET}; \ + fi; true + +${DOC}.folded.pdf: ${DOC}.folded.ps + ${PS2PDF} ${.ALLSRC} ${.TARGET} + ${DOC}.tar: ${SRCS} ${LOCAL_IMAGES} ${LOCAL_CSS_SHEET} ${TAR} cf ${.TARGET} -C ${.CURDIR} ${SRCS} \ -C ${.OBJDIR} ${IMAGES} ${CSS_SHEET:T} Index: doc.project.mk =================================================================== RCS file: /home/ncvs/doc/share/mk/doc.project.mk,v retrieving revision 1.12 diff -u -r1.12 doc.project.mk --- doc.project.mk 2002/02/25 14:24:51 1.12 +++ doc.project.mk 2002/03/28 20:30:21 @@ -61,7 +61,7 @@ # Master list of known target formats. The doc..mk files implement # the code to convert from their source format to one or more of these target # formats -ALL_FORMATS= html html.tar html-split html-split.tar txt rtf ps pdf tex dvi tar pdb +ALL_FORMATS= html html.tar html-split html-split.tar txt rtf ps folded.ps pdf folded.pdf tex dvi tar pdb # User-modifiable LOCALBASE?= /usr/local >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 Mar 28 13: 9: 9 2002 Delivered-To: freebsd-doc@freebsd.org Received: from ecdimail.com (64.83.20.119.dsl119-static-ric.cavtel.net [64.83.20.119]) by hub.freebsd.org (Postfix) with SMTP id BDFD137B42C for ; Thu, 28 Mar 2002 13:08:42 -0800 (PST) From: "The SPEED Staff" To: "doc@freebsd.org" Subject: Discount SPEED Tickets! Date: Thu, 28 Mar 2002 16:10:05 -0500 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal Reply-To: "The SPEED Staff" Organization: The Richmond Speed X-Mailer: Internet Mail Service Content-Type: multipart/alternative; boundary="----_NextPart_6547121496" Message-Id: <20020328210842.BDFD137B42C@hub.freebsd.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 This is a multi-part message in MIME format. ------_NextPart_6547121496 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: QUOTED-PRINTABLE 2001 American Conference Champions, THE RICHMOND SPEED defend their title on: OPENING NIGHT SATURDAY MARCH 30th 7:00 p.m. Order your SPEED tickets by phone - it 's the ONLY way to get this special price. Call the RICHMOND SPEED office: 1-804-780-2352 and order your tickets today! If you would prefer not to receive SPEED E-mailings, click here to unsubscribe. ------_NextPart_6547121496 Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: QUOTED-PRINTABLE Richmond Speed
   

2001 American
Conference Champions,

THE RICHMOND SPEED

defend their title on:


OPENING NIGHT
SATURDAY
MARCH 30th
7:00 p.m.


Order your SPEED tickets by phone - it 's the ONLY way to get this special price.

Call the RICHMOND SPEED office:

1-804-780-2352
and order your tickets today!

 
 
If you would prefer not to receive SPEED E-mailings, click here to unsubscribe.
 

------_NextPart_6547121496-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 13:24:34 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mx1.datanet.hu (mx1.datanet.hu [194.149.13.160]) by hub.freebsd.org (Postfix) with ESMTP id 2199437B43B for ; Thu, 28 Mar 2002 13:23:48 -0800 (PST) Received: from fonix.adamsfamily.xx (nilus-1347.adsl.datanet.hu [195.56.93.77]) by mx1.datanet.hu (DataNet) with ESMTP id 9BBD5F988 for ; Thu, 28 Mar 2002 22:23:46 +0100 (CET) Received: from fonix.adamsfamily.xx (localhost [127.0.0.1]) by fonix.adamsfamily.xx (8.12.2/8.12.2) with ESMTP id g2SLO0j3001476 for ; Thu, 28 Mar 2002 22:24:00 +0100 (CET) (envelope-from sziszi@bsd.hu) Received: (from cc@localhost) by fonix.adamsfamily.xx (8.12.2/8.12.2/Submit) id g2SLO04G001475 for doc@FreeBSD.ORG; Thu, 28 Mar 2002 22:24:00 +0100 (CET) X-Authentication-Warning: fonix.adamsfamily.xx: cc set sender to sziszi@bsd.hu using -f Date: Thu, 28 Mar 2002 22:23:59 +0100 From: Szilveszter Adam To: doc@FreeBSD.ORG Subject: Re: Teaching ports/textproc/docproj/Makefile about FORMATS Message-ID: <20020328212359.GD886@fonix.adamsfamily.xx> Mail-Followup-To: Szilveszter Adam , doc@FreeBSD.ORG References: <20020319223326.C5971@canyon.nothing-going-on.org> <200203282012.g2SKCgBC038297@intruder.bmah.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203282012.g2SKCgBC038297@intruder.bmah.org> User-Agent: Mutt/1.3.28i 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, On Thu, Mar 28, 2002 at 12:12:42PM -0800, Bruce A. Mah wrote: > +# Turn off various options that some of the dependencies default to > +# requiring, but that aren't needed for the doc build > +.if !defined(WITHOUT_PYTHON) > +WITHOUT_PYTHON= yes > > We really need this, but I couldn't make it work. Like when I did a > "make install", make still wanted to build python as a dependency for > libxml2 and libxslt. I don't know why. You need to use WITHOUT_PYTHON=yes for both make and make install if you do them separately, also the port's name changes if it is built without python. (It becomes libxslt-nopython-xxx, for example) This worked for me for both of these prots. You also may need to specify the same options to make and make install (in general not just here) so that the plist does not get messed up. -- Regards: Szilveszter ADAM Szombathely Hungary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 13:48:27 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id A93EF37B4B3 for ; Thu, 28 Mar 2002 13:48:07 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020328214807.OECF1214.rwcrmhc54.attbi.com@bmah.dyndns.org>; Thu, 28 Mar 2002 21:48:07 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.2/8.12.2) with ESMTP id g2SLm7d8039427; Thu, 28 Mar 2002 13:48:07 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.2/8.12.2/Submit) id g2SLm6FR039426; Thu, 28 Mar 2002 13:48:06 -0800 (PST) Message-Id: <200203282148.g2SLm6FR039426@intruder.bmah.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Jeroen Ruigrok/asmodai Cc: freebsd-doc@FreeBSD.ORG Subject: Re: Build problems for PDF In-reply-to: <20020328124813.GM13206@daemon.ninth-circle.org> References: <20020328124813.GM13206@daemon.ninth-circle.org> Comments: In-reply-to Jeroen Ruigrok/asmodai message dated "Thu, 28 Mar 2002 13:48:13 +0100." From: "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: text/plain; charset=us-ascii Date: Thu, 28 Mar 2002 13:48:06 -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 If memory serves me right, Jeroen Ruigrok/asmodai wrote: > am I missing something (couldn't find anything in the archives relating to > this): This looks familiar. Try updating your ghostscript port to at least ghostscript-gnu-6.52_5 (if applicable)...there was a bug in ps2epsi that caused PDF builds to fail on the releng article. See ports/print/ghostscript-gnu/files/patch-lib:ps2epsi for the gory details. Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 14:44:38 2002 Delivered-To: freebsd-doc@freebsd.org Received: from constans.gldis.ca (constans.gldis.ca [216.187.105.233]) by hub.freebsd.org (Postfix) with ESMTP id 80CCD37B419; Thu, 28 Mar 2002 14:44:24 -0800 (PST) Received: (from gldisater@localhost) by constans.gldis.ca (8.11.6/8.11.6) id g2SHipi01362; Thu, 28 Mar 2002 17:44:51 GMT (envelope-from gldisater) Date: Thu, 28 Mar 2002 17:44:51 +0000 From: Jeremy Faulkner To: Wayne Lubin Cc: freebsd-questions@freebsd.org, freebsd-doc@freebsd.org Subject: Re: Getting source tree via ftp Message-ID: <20020328174451.A1309@constans.gldis.ca> References: <20020328221900.34725.qmail@web14708.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020328221900.34725.qmail@web14708.mail.yahoo.com>; from wayneclubin@yahoo.com on Thu, Mar 28, 2002 at 02:19:00PM -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 On Thu, Mar 28, 2002 at 02:19:00PM -0800, Wayne Lubin wrote: > I tried to get the stable source tree as a tar file by > going into usr.bin directory and typing get lex.tar as > the handbook explains. The server I ftp'd into was of > course ftp.freebsd.org. When I typed get lex.tar I > got "no such file or directory". What is going on? > > Also is usr.bin supposed to be inside the src > directory, because the way the handbook is written, > literaly it is saying that it should be found in > Freebsd-stable directory. > > Thanks, > > Wayne Not all ftp servers support that functionality, it would appear that ftp.beastie.tdk.net (aka ftp.freebsd.org) does not. stable.freebsd.org on the other hand, does. for freebsd-doc http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/current-stable.html -- Jeremy Faulkner http://www.gldis.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 15:41:43 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 6063537B400 for ; Thu, 28 Mar 2002 15:41:39 -0800 (PST) Received: from hades.hell.gr (patr530-a078.otenet.gr [212.205.215.78]) by mailsrv.otenet.gr (8.12.2/8.12.2) with ESMTP id g2SNfag1008015 for ; Fri, 29 Mar 2002 01:41:37 +0200 (EET) Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.2/8.12.2) with ESMTP id g2SNfaom004519 for ; Fri, 29 Mar 2002 01:41:36 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from charon@localhost) by hades.hell.gr (8.12.2/8.12.2/Submit) id g2SNfZhm004518 for freebsd-doc@FreeBSD.org; Fri, 29 Mar 2002 01:41:35 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Fri, 29 Mar 2002 01:41:34 +0200 From: Giorgos Keramidas To: freebsd-doc@freebsd.org Subject: rewrite of filtering-bridges article Message-ID: <20020328234134.GA4262@hades.hell.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i 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 Alex Dupre has taken the time to rewrite the filtering-bridges article, and submitted it in PR docs/35430. Since I can only review the article for SGML stuff and my experience with bridging, the way it works, and technical details is not that great, any help you can provide is invaluable. I've done a few preliminary checks to the article, and I'm currently reading both the old article.sgml and the new one. You can find the old article at http://www.FreeBSD.org/doc/en_US.ISO8859-1/articles/filtering-bridges/ and the new one at http://people.FreeBSD.org/~keramida/files/filtering-bridges/ Let me know your comments, suggestions, complaints, whatever :) Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 16: 0:13 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA9B137B404 for ; Thu, 28 Mar 2002 16:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T003731035; Thu, 28 Mar 2002 16:00:03 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 16:00:03 -0800 (PST) Message-Id: <200203290000.g2T003731035@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/35378: Handbook has inaccurate description of freebsd-security list 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/35378; it has been noted by GNATS. From: Giorgos Keramidas To: Bob Johnson Cc: bug-followup@freebsd.org Subject: Re: docs/35378: Handbook has inaccurate description of freebsd-security list Date: Fri, 29 Mar 2002 01:58:32 +0200 Adding to audit trail: | | Date: Tue, 26 Mar 2002 14:58:04 -0500 | From: Bob Johnson | To: darklogik@pittgoth.com | | Tom Rhodes wrote: | > | > I reread this pr, and feel strongly that it can be closed. | > Any objections? I have been personally lurking the FreeBSD-security | > mailing list for about 2-3 weeks, and the only thing I have read about | > are security questions in general, mainly things like if I get this | > error. I feel that the security mailing list is fine how it is, as | > the stated problems do not seem to be occuring right now... | > | | Well, I object. The list charter clearly states, "This is a | technical mailing list for which strictly technical content | is expected." So in addition to the original PR, it would be | appropriate to move -security from the general lists section | to the technical lists section. I know the word "technical" | gets thrown around a lot without definition, but a little | consistency would be nice. | | The threads in -security on Saturday (digest #464) were: a long | rambling speculative discussion about how to provide remote root | login without a password (I don't know what the original question | was); someone who needed help reading the su(1) man page; a | question about how to configure maildrop and whether maildrop or | procmail has better security; the usual FAQ about "microuptime | went backwards"; and a question about file permissions in /tmp. | Of these, only the last is both FreeBSD-specific and security-specific | and thus clearly within the list charter (although it was probably | resolved by reading a man page somewhere and is probably a FAQ). | All of the rest either clearly belong on -questions or are | arguably more appropriate there. | | In other words, the stated problem IS occuring now. | | All of that is, in my opinion, only marginally relevant. The | issue at hand is that the Handbook description of -security does | not accurately summarize the list charter (however vague it may | be), and should be refined to do so. Perhaps "Technical discussion | of FreeBSD-specific security issues" would do it. | | I'll be happy to post the issue on the -security list and | see what people think, but I believe it is clear that either | the list charter or the Handbook description needs to be changed | so they are consistent with each other. | | And it may be that there should be another list: -security-questions, | which would absorb most of the questions now posted on -security, | and allow it to return to technical discussions of FreeBSD-specific | security issues, and what to do about them. | | > Opions? | | Now you have mine. I'll post the issue on -security and see if | there is a clear consensus. I'll probably regret it, since it | doesn't fall within the list charter 8) | | - Bob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 17:30:17 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BF19537B41A for ; Thu, 28 Mar 2002 17:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T1U1J53662; Thu, 28 Mar 2002 17:30:01 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id E047237B417 for ; Thu, 28 Mar 2002 17:26:33 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 9CB09BD60 for ; Thu, 28 Mar 2002 17:26:33 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id RAA12020 for ; Thu, 28 Mar 2002 17:26:32 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T1P7f96276; Thu, 28 Mar 2002 17:25:07 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 28 Mar 2002 17:25:07 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36448: intro(8) manual is missing command status explanation 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: 36448 >Category: docs >Synopsis: intro(8) manual is missing command status explanation >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 Mar 28 17:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The "Description" section of the intro(8) manual should have a new second paragraph which is a (near) copy of the command status explanation from the intro(1) manual. ================ >How-To-Repeat: n/a ================ >Fix: Either add this exact copy from intro(1): - - - - - - .Pp All commands set a status value upon exit which may be tested to see if the command completed normally. Traditionally, the value 0 signifies successful completion of the command, while a value >0 indicates an error. Some commands attempt to describe the nature of the failure by using errors codes as defined in .Xr sysexits 3 , while others simply set the status to an arbitrary value >0 (typically 1). - - - - - - Or, better yet, add this new-and-improved version: - - - - - - .Pp All commands set an exit status. Its value may be tested to see if the command completed normally. Unless otherwise noted (rare), the value 0 signifies successful completion of the command, while a value >0 indicates an error. Some commands attempt to describe the nature of the failure by using errors codes defined in .Xr sysexits 3 , or set the status to arbitrary values >0 (typically 1), but many such values are not described in the manuals. >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 Mar 28 17:30:23 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C38737B416 for ; Thu, 28 Mar 2002 17:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T1U1653653; Thu, 28 Mar 2002 17:30:01 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 19E4937B41C for ; Thu, 28 Mar 2002 17:24:44 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id BCE62BDF8 for ; Thu, 28 Mar 2002 17:24:43 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id RAA11297 for ; Thu, 28 Mar 2002 17:24:42 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T1NH996251; Thu, 28 Mar 2002 17:23:17 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 28 Mar 2002 17:23:17 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36447: chown(8) manual misdescribes handling of symlinks 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: 36447 >Category: docs >Synopsis: chown(8) manual misdescribes handling of symlinks >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 Mar 28 17:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The chown(8) manual says: Chown sets the user ID and/or the group ID of the specified files. and -h If the file is a symbolic link, change the user ID and/or the group ID of the link itself rather than the file that the link points to. But without the -h option, symlinks given as arguments do not have their IDs changed (as implied by the first quote) nor are the symlinks followed (as implied by the second quote). ================ >How-To-Repeat: su cd /tmp touch jjjr ln -s jjjr jjjl l jjj* chown bin.bin jjjl l jjj* chown -h bin.bin jjjl l jjj* ================ >Fix: It should say: Chown changes the user ID and/or the group ID of the specified files. Symbolic links named by arguments are silently left unchanged unless "-h" is used. See the symlink(7) manual for the handling of symlinks with a trailing slash. and -h If the file is a symbolic link, change the user ID and/or the group ID of the link itself rather than silently leaving the link unchanged. Maybe the "symlink(7)" sentence should be omitted. No other manuals currently discuss the trailing slash feature/bug including symlink(7). I'll file a PR on the latter soon, so I say include the sentence. On the other hand, maybe the "-h" description SHOULD mention that it is ignored for symlinks with a trailing slash. But maybe not, if we assume that people are supposed to learn in the symlink(7) manual that a name with a trailing slash is never naming a symlink, but what it points to. I'm saying "not", for now. >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 Mar 28 17:40:13 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7CD8937B41A for ; Thu, 28 Mar 2002 17:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T1e4f57088; Thu, 28 Mar 2002 17:40:04 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 17:40:04 -0800 (PST) Message-Id: <200203290140.g2T1e4f57088@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36447: chown(8) manual misdescribes handling of symlinks 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/36447; it has been noted by GNATS. From: Giorgos Keramidas To: "Gary W. Swearingen" Cc: bug-followup@freebsd.org Subject: Re: docs/36447: chown(8) manual misdescribes handling of symlinks Date: Fri, 29 Mar 2002 03:35:31 +0200 True. But one who has read the descriptionn of -H, -L and -R above already knows that chown(1) handles symlinks specially. No need to repeat what has already been written above, IMHO. - Giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 18:11: 2 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pc-62-31-80-192-ll.blueyonder.co.uk (pc-62-31-80-192-ll.blueyonder.co.uk [62.31.80.192]) by hub.freebsd.org (Postfix) with SMTP id DC8B337B416 for ; Thu, 28 Mar 2002 18:10:59 -0800 (PST) Received: (qmail 1720 invoked from network); 29 Mar 2002 02:10:58 -0000 Received: from spatula.home (HELO cream.org) (192.168.0.4) by myriad.home with SMTP; 29 Mar 2002 02:10:58 -0000 Message-ID: <3CA3CD78.1060109@cream.org> Date: Fri, 29 Mar 2002 02:12:08 +0000 From: Andrew Boothman User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.9) Gecko/20020311 X-Accept-Language: en-gb, en-us MIME-Version: 1.0 To: Jeremy Faulkner Cc: Wayne Lubin , freebsd-doc@freebsd.org Subject: Re: Getting source tree via ftp References: <20020328221900.34725.qmail@web14708.mail.yahoo.com> <20020328174451.A1309@constans.gldis.ca> Content-Type: text/plain; charset=us-ascii; format=flowed 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 Jeremy Faulkner wrote: >On Thu, Mar 28, 2002 at 02:19:00PM -0800, Wayne Lubin wrote: > >>I tried to get the stable source tree as a tar file by >>going into usr.bin directory and typing get lex.tar as >>the handbook explains. The server I ftp'd into was of >>course ftp.freebsd.org. When I typed get lex.tar I >>got "no such file or directory". What is going on? >> > >Not all ftp servers support that functionality, it would >appear that ftp.beastie.tdk.net (aka ftp.freebsd.org) does >not. > This is undoubtedly a feature that was supported by the old ftp.freebsd.org (aka ftp.cdrom.com). If the current ftp.freebsd.org doesn't support it, I guess we should remove this from the handbook, as I was unable to track down an ftp mirror that does still support this feature. I'll do a PR. Wayne, thanks for pointing out this problem to -doc! Andrew. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 18:30:12 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7581F37B404 for ; Thu, 28 Mar 2002 18:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T2U1770803; Thu, 28 Mar 2002 18:30:01 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 264E037B41B for ; Thu, 28 Mar 2002 18:26:26 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id D1E3BBD86 for ; Thu, 28 Mar 2002 18:26:25 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id SAA29788 for ; Thu, 28 Mar 2002 18:26:25 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T2Oxh97227; Thu, 28 Mar 2002 18:24:59 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 28 Mar 2002 18:24:58 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36449: symlink(7) manual doesn't mention trailing slash, etc. 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: 36449 >Category: docs >Synopsis: symlink(7) manual doesn't mention trailing slash, etc. >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 Mar 28 18:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The symlink(7) manual doesn't mention how many/most/all commands handle symbolic link arguments which have trailing slashes. And the "Commands not traversing ..." section omits rule-violators "chown/chmod/chgrp" which also do not follow symlinks without a trailing slash. (Note that some commands, like "cat" (and presumably all others) do follow symlinks without a trailing slash.) ================ >How-To-Repeat: n/a ================ >Fix: This probably requires long study and research to confidently fix this manual. Probably an interim fix should just add something about the three other rule-violators and a warning (in it's own section or near the beginning of the description section) something like this: The handling of symbolic links cannot easily be described for all cases, but in most cases, referring to a symbolic link by using its name followed immediately by one or more slashes ("/") will cause the system to treat it as the name of the thing the symbolic link refers to. This "following of the link" goes no further if the thing referred to is also a symbolic link. Note that when other parts of this file refer to "symbolic links named as command arguments", they only refer to such links which do not have trailing slashes. If nothing else can be done soon, the manual should say: This manual is untrustworthy, especially regarding symbolic links named with trailing slashes which can cause suprising behavior. >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 Mar 28 19: 0:10 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 13E6A37B41E for ; Thu, 28 Mar 2002 19:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T301G75214; Thu, 28 Mar 2002 19:00:01 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 7B9B237B400 for ; Thu, 28 Mar 2002 18:54:18 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 34500BCDD for ; Thu, 28 Mar 2002 18:54:18 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id SAA04711 for ; Thu, 28 Mar 2002 18:54:17 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T2qqO97744; Thu, 28 Mar 2002 18:52:52 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 28 Mar 2002 18:52:52 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36450: chpass(1) manual has erroneous "usage" for -d and -h 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: 36450 >Category: docs >Synopsis: chpass(1) manual has erroneous "usage" for -d and -h >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 Mar 28 19:00:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The chpass(1) manual has erroneous "usage" : usage: chpass [-l] [-y] [-d domain [-h host]] ... ================ >How-To-Repeat: chpass -h xxx ================ >Fix: Change "[-d domain [-h host]]" to "[-d domain] [-h host]". >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 Mar 28 19: 9:20 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0818037B431; Thu, 28 Mar 2002 19:09:17 -0800 (PST) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T39Gp83195; Thu, 28 Mar 2002 19:09:16 -0800 (PST) (envelope-from keramida) Date: Thu, 28 Mar 2002 19:09:16 -0800 (PST) From: Message-Id: <200203290309.g2T39Gp83195@freefall.freebsd.org> To: swear@blarg.net, keramida@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/36450: chpass(1) manual has erroneous "usage" for -d and -h 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: chpass(1) manual has erroneous "usage" for -d and -h State-Changed-From-To: open->closed State-Changed-By: keramida State-Changed-When: Thu Mar 28 19:07:43 PST 2002 State-Changed-Why: Actually the manpage is not in error. You need YP/NIS support compiled into chpass to be able to use the -h and -d options. http://www.freebsd.org/cgi/query-pr.cgi?pr=36450 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 19:30: 8 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2ADB037B419 for ; Thu, 28 Mar 2002 19:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T3U1m85527; Thu, 28 Mar 2002 19:30:01 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 60AE737B419 for ; Thu, 28 Mar 2002 19:28:34 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 07DE7BD13 for ; Thu, 28 Mar 2002 19:28:34 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id TAA13194 for ; Thu, 28 Mar 2002 19:28:33 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T3R7H98383; Thu, 28 Mar 2002 19:27:07 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 28 Mar 2002 19:27:07 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36453: compress(1) manual has erroneous description of "zcat". 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: 36453 >Category: docs >Synopsis: compress(1) manual has erroneous description of "zcat". >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 Mar 28 19:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The compress(1) manual documents the command "zcat" which is better documented by the zcat(1) manual and which doesn't belong in this manual. The given description is wrong in any case because "zcat" doesn't insist that the filename end with ".Z" as "uncompress -c" does. ================ >How-To-Repeat: n/a ================ >Fix: Remove all mention of "zcat" (four places) and add zcat(1) to the "See Also" section. Maybe also mention it in the description of "-c". >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 Mar 28 19:40:34 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE1C337B421 for ; Thu, 28 Mar 2002 19:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T3e2886649; Thu, 28 Mar 2002 19:40:02 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id E0E6A37B420 for ; Thu, 28 Mar 2002 19:39:13 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 6627EBD7C for ; Thu, 28 Mar 2002 19:39:13 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id TAA16105 for ; Thu, 28 Mar 2002 19:39:07 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T3bgR98577; Thu, 28 Mar 2002 19:37:42 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: <8c8z8cgi2i.z8c@localhost.localdomain> Date: 28 Mar 2002 19:37:41 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36456: csh(1) manual references wrong "signal.h". 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: 36456 >Category: docs >Synopsis: csh(1) manual references wrong "signal.h". >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 Mar 28 19:40:02 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The csh(1) manual references "/usr/include/signal.h" while it should reference "/usr/include/sys/signal.h". ================ >How-To-Repeat: n/a ================ >Fix: In the "kill" description, change "signal.h" to "sys/signal.h". >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 Mar 28 20: 0:15 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6606E37B41C for ; Thu, 28 Mar 2002 20:00:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T407989918; Thu, 28 Mar 2002 20:00:07 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 20:00:07 -0800 (PST) Message-Id: <200203290400.g2T407989918@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36456: csh(1) manual references wrong "signal.h". 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/36456; it has been noted by GNATS. From: Giorgos Keramidas To: "Gary W. Swearingen" Cc: bug-followup@freebsd.org Subject: Re: docs/36456: csh(1) manual references wrong "signal.h". Date: Fri, 29 Mar 2002 05:59:51 +0200 On 2002-03-28 19:37, Gary W. Swearingen wrote: > The csh(1) manual references "/usr/include/signal.h" while it should > reference "/usr/include/sys/signal.h". Why? Anyone who knows enough C to read /usr/include/signal.h can easily spot the #include that leads to /usr/include/sys/signal.h: hades:~$ grep 'signal.h>' /usr/include/signal.h #include > In the "kill" description, change "signal.h" to "sys/signal.h". But more importantly, csh.1 is hard linked to tcsh.1.gz which comes from contrib/ source (the source of /usr/src/contrib/tcsh). If any changes are made to that file, they should probably be made in the tcsh developer's source and imported to FreeBSD verbatim when a newer version of tcsh is imported to our source. Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 20: 0:21 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E83CB37B41A for ; Thu, 28 Mar 2002 20:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T405p89912; Thu, 28 Mar 2002 20:00:05 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 8F03437B417 for ; Thu, 28 Mar 2002 19:54:16 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 410C4BD86 for ; Thu, 28 Mar 2002 19:54:16 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id TAA19954 for ; Thu, 28 Mar 2002 19:54:15 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T3qoH98802; Thu, 28 Mar 2002 19:52:50 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 28 Mar 2002 19:52:49 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36457: timed(8) manual missing word after "timed, ntp". 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: 36457 >Category: docs >Synopsis: timed(8) manual missing word after "timed, ntp". >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 Mar 28 20:00:05 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The timed(8) manual is garbled in the first sentence of the WARNING: If two or more time daemons, whether timed, NTP, try to adjust... ================ >How-To-Repeat: n/a ================ >Fix: Change it to: If two or more time daemons, whether timed, ntpd(8), or others, try to adjust... >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 Mar 28 20:10:12 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F4B837B41B for ; Thu, 28 Mar 2002 20:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T4A3J95233; Thu, 28 Mar 2002 20:10:03 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 20:10:03 -0800 (PST) Message-Id: <200203290410.g2T4A3J95233@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36453: compress(1) manual has erroneous description of "zcat". 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/36453; it has been noted by GNATS. From: Giorgos Keramidas To: "Gary W. Swearingen" Cc: bug-followup@freebsd.org Subject: Re: docs/36453: compress(1) manual has erroneous description of "zcat". Date: Fri, 29 Mar 2002 06:07:02 +0200 On 2002-03-28 19:27, Gary W. Swearingen wrote: > The compress(1) manual documents the command "zcat" which is better > documented by the zcat(1) manual and which doesn't belong in this manual. > > Remove all mention of "zcat" (four places) and add zcat(1) to the "See > Also" section. Maybe also mention it in the description of "-c". How about this? I haven't added zcat(1) to SEE ALSO, since it's not referenced anywhere in the manpage. Also had a few reservations about adding only zcat(1). If we add this, then we should probably add other compress-tools too, like gzip(1), gunzip(1), zmore(1), etc. What do you think? Index: compress.1 =================================================================== RCS file: /home/ncvs/src/usr.bin/compress/compress.1,v retrieving revision 1.11 diff -2 -u -r1.11 compress.1 --- compress.1 11 Sep 2001 12:27:15 -0000 1.11 +++ compress.1 29 Mar 2002 04:04:06 -0000 @@ -42,6 +42,5 @@ .Sh NAME .Nm compress , -.Nm uncompress , -.Nm zcat +.Nm uncompress .Nd compress and expand data .Sh SYNOPSIS @@ -53,6 +52,4 @@ .Op Fl cfv .Op Ar -.Nm zcat -.Op Ar .Sh DESCRIPTION .Nm Compress @@ -154,5 +151,5 @@ time to compute. .Sh DIAGNOSTICS -.Ex -std compress uncompress zcat +.Ex -std compress uncompress .Sh SEE ALSO .Rs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 20:20: 8 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B309937B405 for ; Thu, 28 Mar 2002 20:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T4K2m96558; Thu, 28 Mar 2002 20:20:02 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 20:20:02 -0800 (PST) Message-Id: <200203290420.g2T4K2m96558@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36457: timed(8) manual missing word after "timed, ntp". 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/36457; it has been noted by GNATS. From: Giorgos Keramidas To: "Gary W. Swearingen" Cc: bug-followup@freebsd.org Subject: Re: docs/36457: timed(8) manual missing word after "timed, ntp". Date: Fri, 29 Mar 2002 06:15:56 +0200 On 2002-03-28 19:52, Gary W. Swearingen wrote: > The timed(8) manual is garbled in the first sentence of the WARNING: > > If two or more time daemons, whether timed, NTP, try to adjust... And here's the diff. I have to go to bed soon, so no commits for me. Anyone who wants to make the change, feel free. >>> Index: timed.8 =================================================================== RCS file: /home/ncvs/src/usr.sbin/timed/timed/timed.8,v retrieving revision 1.11 diff -2 -u -r1.11 timed.8 --- timed.8 15 Jul 2001 08:06:15 -0000 1.11 +++ timed.8 29 Mar 2002 04:13:19 -0000 @@ -220,4 +220,5 @@ .Nm , .Tn NTP , +or others, try to adjust the same clock, temporal chaos will result. If both >>> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 20:20:11 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 90F3E37B41B for ; Thu, 28 Mar 2002 20:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T4K1P96551; Thu, 28 Mar 2002 20:20:01 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id B6FF137B400 for ; Thu, 28 Mar 2002 20:15:30 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 63B8EBCDD for ; Thu, 28 Mar 2002 20:15:30 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id UAA25015 for ; Thu, 28 Mar 2002 20:15:30 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T4E4D99073; Thu, 28 Mar 2002 20:14:04 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: <0szo0sf1tf.o0s@localhost.localdomain> Date: 28 Mar 2002 20:14:04 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36459: tftp(1) manual's "get" syntax/description is confusing 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: 36459 >Category: docs >Synopsis: tftp(1) manual's "get" syntax/description is confusing >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 Mar 28 20:20:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The tftp(1) manual's "get" command syntax/description is very confusing. -- The first two syntax lines seem redundant, given the third, except that the second form seems to have a special behavior of renaming the file, but it's unclear how that's different from just requesting two files from the remote system. -- The description refers to "source" (underlined) which isn't mentioned in the syntax statements. And the things mentioned in the systax statements aren't mentioned in the description. -- Similarly for the "put" command. ================ >How-To-Repeat: n/a ================ >Fix: Determine how to specify a "get" of two files and how to specify a "get" of one file to be renamed locally and rewrite the whole thing. Similarly for "put". >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 Mar 28 20:50: 8 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BFC437B41C for ; Thu, 28 Mar 2002 20:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T4o2o00560; Thu, 28 Mar 2002 20:50:02 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 9803837B419 for ; Thu, 28 Mar 2002 20:45:56 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 2F1B9BD72 for ; Thu, 28 Mar 2002 20:45:56 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id UAA01203 for ; Thu, 28 Mar 2002 20:45:55 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T4iTj99529; Thu, 28 Mar 2002 20:44:29 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 28 Mar 2002 20:44:29 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36461: dd(1) manual has fatal spaces after "conv=" 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: 36461 >Category: docs >Synopsis: dd(1) manual has fatal spaces after "conv=" >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 Mar 28 20:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The dd(1) manual has extra spaces after the "conv=" operand syntax line, which, if used in a command, is fatal. ================ >How-To-Repeat: dd if=/dev/zero of=/dev/null conv= lcase dd if=/dev/zero of=/dev/null conv=lcase, sparse ================ >Fix: Change "conv= value[, value ...]" to "conv=value[,value,...]". Maybe add to description "spaces are not allowed". >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 Mar 28 21: 0:20 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 74C9737B420 for ; Thu, 28 Mar 2002 21:00:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T509401863; Thu, 28 Mar 2002 21:00:09 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id ADDA637B417 for ; Thu, 28 Mar 2002 20:59:24 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 5D98ABD8B for ; Thu, 28 Mar 2002 20:59:24 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id UAA04424 for ; Thu, 28 Mar 2002 20:59:24 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T4vvh99716; Thu, 28 Mar 2002 20:57:57 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: <7git7gezsa.t7g@localhost.localdomain> Date: 28 Mar 2002 20:57:57 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36464: diff(1) manual doesn't explain "=format". 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: 36464 >Category: docs >Synopsis: diff(1) manual doesn't explain "=format". >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 28 21:00:09 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The diff(1) manual uses "=format" at the end of many option syntax lines, but nowhere describes what "format" may be. ================ >How-To-Repeat: n/a ================ >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 Mar 28 21: 0:28 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF67A37B41D for ; Thu, 28 Mar 2002 21:00:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T508T01839; Thu, 28 Mar 2002 21:00:08 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 96F4037B41A for ; Thu, 28 Mar 2002 20:52:41 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 4803DBD8A for ; Thu, 28 Mar 2002 20:52:41 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id UAA02852 for ; Thu, 28 Mar 2002 20:52:41 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T4pE699617; Thu, 28 Mar 2002 20:51:14 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 28 Mar 2002 20:51:14 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36462: dev.handbook grammar nit "try and" 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: 36462 >Category: docs >Synopsis: dev.handbook grammar nit "try and" >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 Mar 28 21:00:08 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: In section "2.5.2 Example of using make" of http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/x663.html "try and explain" should be "try to explain". ================ >How-To-Repeat: n/a ================ >Fix: See above. >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 Mar 28 21:18: 3 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id 0CDA137B41D; Thu, 28 Mar 2002 21:17:38 -0800 (PST) Received: from localhost (c5.depaul-inst.pittsburgh.pa.us [192.168.1.5]) by pittgoth.com (8.11.6/8.11.6) with SMTP id g2T5KCq57989; Fri, 29 Mar 2002 00:20:12 -0500 (EST) (envelope-from darklogik@pittgoth.com) Date: Fri, 29 Mar 2002 00:25:24 -0500 From: Tom Rhodes To: Giorgos Keramidas Cc: freebsd-doc@FreeBSD.ORG Subject: Re: docs/36453: compress(1) manual has erroneous description of "zcat". Message-Id: <20020329002524.63fa97ec.darklogik@pittgoth.com> In-Reply-To: <200203290410.g2T4A3J95233@freefall.freebsd.org> References: <200203290410.g2T4A3J95233@freefall.freebsd.org> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; boundary="=.xOAjKVHFvr17ik" 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 --=.xOAjKVHFvr17ik Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 28 Mar 2002 20:10:03 -0800 (PST) Giorgos Keramidas wrote: > The following reply was made to PR docs/36453; it has been noted by > GNATS. > > From: Giorgos Keramidas > To: "Gary W. Swearingen" > Cc: bug-followup@freebsd.org > Subject: Re: docs/36453: compress(1) manual has erroneous > description of "zcat". Date: Fri, 29 Mar 2002 06:07:02 +0200 > > On 2002-03-28 19:27, Gary W. Swearingen wrote: > > The compress(1) manual documents the command "zcat" which is > > better documented by the zcat(1) manual and which doesn't belong > > in this manual. > > > > Remove all mention of "zcat" (four places) and add zcat(1) to the > > "See Also" section. Maybe also mention it in the description of > > "-c". > > How about this? I haven't added zcat(1) to SEE ALSO, since it's > not referenced anywhere in the manpage. Also had a few > reservations about adding only zcat(1). If we add this, then we > should probably add other compress-tools too, like gzip(1), > gunzip(1), zmore(1), etc. Could we list the MOST used ones? Or perhaps ones that are only part of the base system. In essance, things like bzip wouldn't be listed... Unless that was your plan ;) > > What do you think? > > -.Ex -std compress uncompress zcat > +.Ex -std compress uncompress > .Sh SEE ALSO > .Rs > I like, lets get Gary's opinion and maybe we can close this ;) -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@ {Pittgoth.com, FreeBSD.org} --=.xOAjKVHFvr17ik Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8o/rIwPmgiRuevUMRAohvAKCTd7+ZDgPJAeFhHplN5x6byQQITQCfdPas Jo5FB6AJlNDVZGB8d52sSeY= =EZSn -----END PGP SIGNATURE----- --=.xOAjKVHFvr17ik-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 21:20: 8 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4140937B405 for ; Thu, 28 Mar 2002 21:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T5K3h08337; Thu, 28 Mar 2002 21:20:03 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 21:20:03 -0800 (PST) Message-Id: <200203290520.g2T5K3h08337@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Tom Rhodes Subject: Re: docs/36457: timed(8) manual missing word after "timed, ntp". Reply-To: Tom Rhodes 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/36457; it has been noted by GNATS. From: Tom Rhodes To: swear@blarg.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: docs/36457: timed(8) manual missing word after "timed, ntp". Date: Fri, 29 Mar 2002 00:18:18 -0500 --=.z9tRcF6ZTAVjBh Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On 28 Mar 2002 19:52:49 -0800 "Gary W. Swearingen" wrote: > >Description: > > The timed(8) manual is garbled in the first sentence of the WARNING: > > If two or more time daemons, whether timed, NTP, try to > adjust... Your right, that does look horrorshow... -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@ {Pittgoth.com, FreeBSD.org} --=.z9tRcF6ZTAVjBh Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8o/kfwPmgiRuevUMRAoeiAKC2uJRWhMU0MBkN6/ZBhprRzYsEkgCg/O62 eGDcVA8r6vRqKEiIRwslr7Q= =pZES -----END PGP SIGNATURE----- --=.z9tRcF6ZTAVjBh-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 21:50:11 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C37537B41B for ; Thu, 28 Mar 2002 21:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T5o1B12056; Thu, 28 Mar 2002 21:50:01 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id BF3AD37B435 for ; Thu, 28 Mar 2002 21:43:09 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id B9E93BD29 for ; Thu, 28 Mar 2002 21:42:51 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id VAA16037 for ; Thu, 28 Mar 2002 21:42:51 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T5fPk00506; Thu, 28 Mar 2002 21:41:25 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 28 Mar 2002 21:41:24 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36465: dumpon(8) manual misleads about single/multi-user usability 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: 36465 >Category: docs >Synopsis: dumpon(8) manual misleads about single/multi-user usability >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 Mar 28 21:50:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The dumpon(8) manual's NOTES section has this: Since dumpon can only be called after the system enters single-user mode, it can not be used to create dumps for system panics during kernel initialization. In such cases use dumpdev tunable provided by loader(8) instead. from which some will infer that dumpon may not be used in multi-user mode. ================ >How-To-Repeat: n/a ================ >Fix: Replace the whole paragraph with: Since _dumpon_ cannot be used during kernel initialization, the _dumpdev_ variable of loader(8) must be used to enable dumps for system panics during kernel initialization. >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 Mar 28 21:51:38 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F319C37B405; Thu, 28 Mar 2002 21:51:36 -0800 (PST) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T5paR12184; Thu, 28 Mar 2002 21:51:36 -0800 (PST) (envelope-from trhodes) Date: Thu, 28 Mar 2002 21:51:36 -0800 (PST) From: Message-Id: <200203290551.g2T5paR12184@freefall.freebsd.org> To: trhodes@FreeBSD.org, freebsd-doc@FreeBSD.org, ceri@FreeBSD.org Subject: Re: docs/35563: [Patch] Stop asking people to give us their postal address for no reason 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: [Patch] Stop asking people to give us their postal address for no reason Responsible-Changed-From-To: freebsd-doc->ceri Responsible-Changed-By: trhodes Responsible-Changed-When: Thu Mar 28 21:49:19 PST 2002 Responsible-Changed-Why: This is Ceri's pr, let him close it as he also provided a patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=35563 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 22: 0:14 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E104E37B422 for ; Thu, 28 Mar 2002 22:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T602d13167; Thu, 28 Mar 2002 22:00:02 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id F1D9437B41C for ; Thu, 28 Mar 2002 21:58:21 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 9BF68BDC2 for ; Thu, 28 Mar 2002 21:58:21 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id VAA19522 for ; Thu, 28 Mar 2002 21:58:20 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T5us200723; Thu, 28 Mar 2002 21:56:54 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 28 Mar 2002 21:56:54 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36467: ed(4) manual has skimpy synopsis, etc. 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: 36467 >Category: docs >Synopsis: ed(4) manual has skimpy synopsis, etc. >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 Mar 28 22:00:02 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The ed(4) manual has an inadequate synopsis: "device ed" Also, the manual doesn't say that "device miibus" is also needed. ================ >How-To-Repeat: n/a ================ >Fix: Change the synosis to: device ed# at isa? port # irq # iomem # Add this new first paragraph to the "Caveats" section: Use of this device requires the use of "device miibus". >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 Mar 28 22:20:10 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 79CCF37B41A for ; Thu, 28 Mar 2002 22:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T6K3q19448; Thu, 28 Mar 2002 22:20:03 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 22:20:03 -0800 (PST) Message-Id: <200203290620.g2T6K3q19448@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Tom Rhodes Subject: Re: docs/36465: [PATCH] dumpon(8) Reply-To: Tom Rhodes 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/36465; it has been noted by GNATS. From: Tom Rhodes To: Gary Swearingen Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/36465: [PATCH] dumpon(8) Date: Fri, 29 Mar 2002 01:25:00 -0500 --k=.p6QG5iGe6m)ra Content-Type: multipart/mixed; boundary="Multipart_Fri__29_Mar_2002_01:25:00_-0500_08182600" --Multipart_Fri__29_Mar_2002_01:25:00_-0500_08182600 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Gary, Could you review this diff, see if this will be good for ya? My mdoc(7) skills arn't the best in the world ;) -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@ {Pittgoth.com, FreeBSD.org} --Multipart_Fri__29_Mar_2002_01:25:00_-0500_08182600 Content-Type: application/txt; name="dumpon.8.diff" Content-Disposition: attachment; filename="dumpon.8.diff" Content-Transfer-Encoding: base64 LS0tIGR1bXBvbi44Lm9sZAlGcmkgTWFyIDI5IDAxOjIxOjUyIDIwMDIKKysrIGR1bXBvbi44CUZy aSBNYXIgMjkgMDE6MjI6MDAgMjAwMgpAQCAtOTYsOCArOTYsMTEgQEAKIC5QcAogU2luY2UKIC5O bQotY2FuIG9ubHkgYmUgY2FsbGVkIGFmdGVyIHRoZSBzeXN0ZW0gZW50ZXJzIHNpbmdsZS11c2Vy IG1vZGUsCi1pdCBjYW4gbm90IGJlIHVzZWQgdG8gY3JlYXRlIGR1bXBzIGZvciBzeXN0ZW0gcGFu aWNzIGR1cmluZworY2Fubm90IGJlIHVzZWQgZHVyaW5nIGtlcm5lbCBpbml0aWFsaXphdGlvbiwg dGhlCisuVmEgZHVtcGRldgordmFyaWFibGUgb2YKKy5YciBsb2FkZXIgOAorbXVzdCBiZSB1c2Vk IHRvIGVuYWJsZSBkdW1wcyBmb3Igc3lzdGVtIHBhbmljcyBkdXJpbmcKIGtlcm5lbCBpbml0aWFs aXphdGlvbi4KIEluIHN1Y2ggY2FzZXMgdXNlCiAuVmEgZHVtcGRldgo= --Multipart_Fri__29_Mar_2002_01:25:00_-0500_08182600-- --k=.p6QG5iGe6m)ra Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8pAjBwPmgiRuevUMRAkAVAKDwYwaCpTkjw06WODzGppgvV2+zaQCeJYR9 /28Mk+BaCAl055mP5eyXGYo= =O88x -----END PGP SIGNATURE----- --k=.p6QG5iGe6m)ra-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 22:30: 6 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B364937B419 for ; Thu, 28 Mar 2002 22:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T6U2u20681; Thu, 28 Mar 2002 22:30:02 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 22:30:02 -0800 (PST) Message-Id: <200203290630.g2T6U2u20681@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: trhodes@FreeBSD.ORG (Tom Rhodes) Subject: Re: docs/36465: [PATCH] dumpon(8) Reply-To: trhodes@FreeBSD.ORG (Tom Rhodes) 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/36465; it has been noted by GNATS. From: trhodes@FreeBSD.ORG (Tom Rhodes) To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: docs/36465: [PATCH] dumpon(8) Date: Thu, 28 Mar 2002 22:25:45 -0800 (PST) --- dumpon.8.old Fri Mar 29 01:21:52 2002 +++ dumpon.8 Fri Mar 29 01:22:00 2002 @@ -96,8 +96,11 @@ .Pp Since .Nm -can only be called after the system enters single-user mode, -it can not be used to create dumps for system panics during +cannot be used during kernel initialization, the +.Va dumpdev +variable of +.Xr loader 8 +must be used to enable dumps for system panics during kernel initialization. In such cases use .Va dumpdev Review the above, sorry about that, my new mailer program is odd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 22:40:14 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83D1C37B41A for ; Thu, 28 Mar 2002 22:40:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T6e7R22245; Thu, 28 Mar 2002 22:40:07 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 22:40:07 -0800 (PST) Message-Id: <200203290640.g2T6e7R22245@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: swear@blarg.net (Gary W. Swearingen) Subject: Re: docs/36447: chown(8) manual misdescribes handling of symlinks Reply-To: swear@blarg.net (Gary W. Swearingen) 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/36447; it has been noted by GNATS. From: swear@blarg.net (Gary W. Swearingen) To: Giorgos Keramidas Cc: bug-followup@freebsd.org Subject: Re: docs/36447: chown(8) manual misdescribes handling of symlinks Date: 28 Mar 2002 22:31:55 -0800 Giorgos Keramidas writes: > True. But one who has read the descriptionn of -H, -L and -R above already > knows that chown(1) handles symlinks specially. No need to repeat what has > already been written above, IMHO. First, those only apply when using -R. Second, it's not enough to know that there is special handling; something needs to describe the handling and it shouldn't, like the -h description, describe it wrongly. I don't see that I've repeated anything, except the mention of -h in the program description because the current description is not true without -h. Does not the -h description imply that "the file that the link points to" will be changed in the absense of -h? In fact, that file will not be changed (unless that dangerous trailing slash feature/bug is used). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 22:42: 9 2002 Delivered-To: freebsd-doc@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 6320237B41E; Thu, 28 Mar 2002 22:42:07 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 1E19BBCE8; Thu, 28 Mar 2002 22:42:07 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id WAA28989; Thu, 28 Mar 2002 22:42:06 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2T6eeV01291; Thu, 28 Mar 2002 22:40:40 -0800 (PST) (envelope-from swear@blarg.net) To: keramida@FreeBSD.org Cc: freebsd-doc@FreeBSD.org Subject: Re: docs/36450: chpass(1) manual has erroneous "usage" for -d and -h References: <200203290309.g2T39Gp83195@freefall.freebsd.org> From: swear@blarg.net (Gary W. Swearingen) Date: 28 Mar 2002 22:40:39 -0800 In-Reply-To: <200203290309.g2T39Gp83195@freefall.freebsd.org> Message-ID: Lines: 6 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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 keramida@FreeBSD.org writes: > Actually the manpage is not in error. I knew that; the program's "usage" message is bad. :( Sorry for the trouble. I'll refile. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 23: 0:11 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6BBF37B41B for ; Thu, 28 Mar 2002 23:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T705E25271; Thu, 28 Mar 2002 23:00:05 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 23:00:05 -0800 (PST) Message-Id: <200203290700.g2T705E25271@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: swear@blarg.net (Gary W. Swearingen) Subject: Re: docs/36453: compress(1) manual has erroneous description of "zcat". Reply-To: swear@blarg.net (Gary W. Swearingen) 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/36453; it has been noted by GNATS. From: swear@blarg.net (Gary W. Swearingen) To: Giorgos Keramidas Cc: bug-followup@freebsd.org Subject: Re: docs/36453: compress(1) manual has erroneous description of "zcat". Date: 28 Mar 2002 22:53:15 -0800 Giorgos Keramidas writes: > What do you think? I think I agree, except that I didn't see that your removed "zcat" and it's erroneous description from the DESCRIPTION section. (See subject! :) It seems like you meant to remove it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 23:20: 6 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F6C837B41B for ; Thu, 28 Mar 2002 23:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T7K3i31943; Thu, 28 Mar 2002 23:20:03 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 23:20:03 -0800 (PST) Message-Id: <200203290720.g2T7K3i31943@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: swear@blarg.net (Gary W. Swearingen) Subject: Re: docs/36456: csh(1) manual references wrong "signal.h". Reply-To: swear@blarg.net (Gary W. Swearingen) 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/36456; it has been noted by GNATS. From: swear@blarg.net (Gary W. Swearingen) To: Giorgos Keramidas Cc: bug-followup@freebsd.org Subject: Re: docs/36456: csh(1) manual references wrong "signal.h". Date: 28 Mar 2002 23:11:35 -0800 Giorgos Keramidas writes: > Why? Anyone who knows enough C to read /usr/include/signal.h can easily > spot the #include that leads to /usr/include/sys/signal.h: Because man page readers might not know any C so he can find the correct file but anyone can easily recognize the list of signals in the correct file. Even C readers, especially if not Unix people familiar with signals, would waste considerable time figuring it out. It took me a while. > But more importantly, csh.1 is hard linked to tcsh.1.gz which comes from > contrib/ source (the source of /usr/src/contrib/tcsh). If any changes are > made to that file, they should probably be made in the tcsh developer's > source and imported to FreeBSD verbatim when a newer version of tcsh is > imported to our source. I suspect that it's wrong because the tcsh developer's layout is different, but that's about all I have to say on it. (If you don't want to fix it one way or the other, I don't see any good reason to not leave it open for someone who cares about this low-priority stuff.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 23:30: 9 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6872737B41D for ; Thu, 28 Mar 2002 23:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T7U3433241; Thu, 28 Mar 2002 23:30:03 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 23:30:03 -0800 (PST) Message-Id: <200203290730.g2T7U3433241@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: swear@blarg.net (Gary W. Swearingen) Subject: Re: docs/36457: timed(8) manual missing word after "timed, ntp". Reply-To: swear@blarg.net (Gary W. Swearingen) 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/36457; it has been noted by GNATS. From: swear@blarg.net (Gary W. Swearingen) To: Giorgos Keramidas Cc: bug-followup@freebsd.org Subject: Re: docs/36457: timed(8) manual missing word after "timed, ntp". Date: 28 Mar 2002 23:24:54 -0800 Giorgos Keramidas writes: > --- timed.8 15 Jul 2001 08:06:15 -0000 1.11 > +++ timed.8 29 Mar 2002 04:13:19 -0000 > @@ -220,4 +220,5 @@ > .Nm , > .Tn NTP , ^^^----- I suggested "ntpd(8)" as a better companion to "timed", but I can live with this, as the price of not providing patches. (In case this was an oversight, not a choice.) > +or others, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 23:30:21 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50E7737B422 for ; Thu, 28 Mar 2002 23:30:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T7U7O33258; Thu, 28 Mar 2002 23:30:07 -0800 (PST) (envelope-from gnats) Date: Thu, 28 Mar 2002 23:30:07 -0800 (PST) Message-Id: <200203290730.g2T7U7O33258@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Subject: Re: docs/36461: [PATCH] dd(1) Reply-To: 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/36461; it has been noted by GNATS. From: To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: docs/36461: [PATCH] dd(1) Date: Thu, 28 Mar 2002 23:27:41 -0800 (PST) Gary, this may be ``illegal'' mdoc, but could you tell me what you think about the following changes? I have removed the old values and changed added new ones according to the pr report. Little doubt is in my mind that you or ru, or Giorgos will say ``Hey Tom, there IS a backspace macro or something... Oh well, the output looked ok when I did an nroff -man dd.1 on my machine... -- Tom Rhodes --- dd.1.old Fri Mar 29 02:11:03 2002 +++ dd.1 Fri Mar 29 02:22:47 2002 @@ -151,8 +151,7 @@ For all other devices, the correct number of blocks is read without distinguishing between a partial or complete block being read. .It Xo -.Cm conv= -.Ns Cm value Ns Op \&, Cm value \&... +.Cm conv=value[,value,...] .Xc Where .Cm value To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Thu Mar 28 23:50: 6 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B7ABC37B405 for ; Thu, 28 Mar 2002 23:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T7o1o38554; Thu, 28 Mar 2002 23: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 2FE7A37B425 for ; Thu, 28 Mar 2002 23:43:01 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2T7h1o37446; Thu, 28 Mar 2002 23:43:01 -0800 (PST) (envelope-from nobody) Message-Id: <200203290743.g2T7h1o37446@freefall.freebsd.org> Date: Thu, 28 Mar 2002 23:43:01 -0800 (PST) From: John Nielsen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: docs/36471: typo in ng_ether(4) 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: 36471 >Category: docs >Synopsis: typo in ng_ether(4) >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 Mar 28 23:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: John Nielsen >Release: 4.5-stable >Organization: >Environment: FreeBSD buff 4.5-STABLE FreeBSD 4.5-STABLE #3: Fri Mar 8 09:23:39 MST 2002 >Description: The second example in the EXAMPLES section says "ed0" instead of "fxp0" the first time it refers to the interface but not the second: "This command sends the contents of foo.pkt out the interface ed0: cat foo.pkt | nghook fxp0: orphans" >How-To-Repeat: man 4 ng_ether >Fix: Replace "ed0" with "fxp0" on line 187 of src/share/man/man4/ng_ether.4. >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 Mar 29 0: 2: 7 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 3D10637B404 for ; Fri, 29 Mar 2002 00:02:05 -0800 (PST) Received: from max ([12.254.136.195]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with SMTP id <20020329080204.CSEL1147.rwcrmhc52.attbi.com@max> for ; Fri, 29 Mar 2002 08:02:04 +0000 Message-ID: <009501c1d6f8$0544c130$0900a8c0@max> From: "John Nielsen" To: Subject: another quick typo fix for someone.. :) Date: Fri, 29 Mar 2002 01:02:06 -0700 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 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 Submitting typo fixes is _almost_ as good as submitting code, right? :) ----- Original Message ----- From: To: "John Nielsen" Sent: Friday, March 29, 2002 12:50 AM Subject: Re: docs/36471: typo in ng_ether(4) > Thank you very much for your problem report. > It has the internal identification `docs/36471'. > The individual assigned to look at your > report is: freebsd-doc. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=36471 > > >Category: docs > >Responsible: freebsd-doc > >Synopsis: typo in ng_ether(4) > >Arrival-Date: Thu Mar 28 23:50:01 PST 2002 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 0:33:27 2002 Delivered-To: freebsd-doc@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id 480ED37B41B; Fri, 29 Mar 2002 00:33:24 -0800 (PST) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id 3E67B2171; Fri, 29 Mar 2002 09:33:18 +0100 (CET) Date: Fri, 29 Mar 2002 09:33:18 +0100 From: Jeroen Ruigrok/asmodai To: "Bruce A. Mah" Cc: freebsd-doc@FreeBSD.ORG Subject: Re: Build problems for PDF Message-ID: <20020329083317.GP13206@daemon.ninth-circle.org> References: <20020328124813.GM13206@daemon.ninth-circle.org> <200203282148.g2SLm6FR039426@intruder.bmah.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203282148.g2SLm6FR039426@intruder.bmah.org> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises 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 [20020328 23:00], Bruce A. Mah (bmah@FreeBSD.ORG) wrote: >This looks familiar. Try updating your ghostscript port to at least >ghostscript-gnu-6.52_5 (if applicable)...there was a bug in ps2epsi that >caused PDF builds to fail on the releng article. Ah ok, I guess that might've been the problem on the box at work. Need to check that once I get there on tuesday. If so, I think textproc/docproj needs an explicit depends on that portversion of ghostscript. Of course, doing a: FORMATS="pdf" make in the en_US.ISO8859-1 dir now goes; /usr/local/bin/epstopdf --outfile=install/edit-inetd-conf.pdf install/edit-inetd-conf.eps /usr/bin/touch book.tex-pdf /usr/local/bin/ps2pdf book.ps book.pdf *** Signal 11 Stop in /usr/doc/en_US.ISO8859-1/books/handbook. *** Error code 1 And I have a nice gs backtrace here. Mmm. -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ There is time in life for everything... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 3: 5:25 2002 Delivered-To: freebsd-doc@freebsd.org Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by hub.freebsd.org (Postfix) with ESMTP id 9819937B404 for ; Fri, 29 Mar 2002 03:05:21 -0800 (PST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by white.imgsrc.co.jp (Postfix) with ESMTP id CD9A824D58; Fri, 29 Mar 2002 20:05:20 +0900 (JST) Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [2001:218:422:2::160]) by black.imgsrc.co.jp (Postfix) with ESMTP id 2A37D1E46E4; Fri, 29 Mar 2002 20:05:18 +0900 (JST) Date: Fri, 29 Mar 2002 20:05:17 +0900 Message-ID: <7mk7rveis2.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: Jeroen Ruigrok/asmodai Cc: freebsd-doc@FreeBSD.org Subject: Re: DocBook XML/SGML In-Reply-To: <20020328122608.GL13206@daemon.ninth-circle.org> References: <20020328122608.GL13206@daemon.ninth-circle.org> User-Agent: Wanderlust/2.9.7 (Unchained Melody) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.1 (i386--freebsd) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") 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 At Thu, 28 Mar 2002 12:26:16 +0000 (UTC), Jeroen Ruigrok/asmodai wrote: > Is there any reason textproc/docbook-xml does not have a version identifer > like the docbook SGML ports, e.g. 40, 41, 42 and the likes. Do you want to use different version of docbook-xml at same time? I think docbook-xml is on-going project, so I prefer to use *latest* distribution of docbook-xml. If docbook-xml project branches like as -stable and -current, I'll fork this port to have version-number in port name. -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 3:49:31 2002 Delivered-To: freebsd-doc@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id 5C28737B419 for ; Fri, 29 Mar 2002 03:49:23 -0800 (PST) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id E50A72170; Fri, 29 Mar 2002 12:49:20 +0100 (CET) Date: Fri, 29 Mar 2002 12:49:20 +0100 From: Jeroen Ruigrok/asmodai To: Jun Kuriyama Cc: freebsd-doc@FreeBSD.org Subject: Re: DocBook XML/SGML Message-ID: <20020329114920.GQ13206@daemon.ninth-circle.org> References: <20020328122608.GL13206@daemon.ninth-circle.org> <7mk7rveis2.wl@waterblue.imgsrc.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7mk7rveis2.wl@waterblue.imgsrc.co.jp> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises 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 [20020329 12:15], Jun Kuriyama (kuriyama@imgsrc.co.jp) wrote: [difference between SGML and XML DocBook] >Do you want to use different version of docbook-xml at same time? Yes. >I think docbook-xml is on-going project, so I prefer to use *latest* >distribution of docbook-xml. So is DocBook-SGML. With 4.1.2 being the latest for XML and 4.1 for SGML and both being DocBook 4.1. 4.2 will introduce no backwards incompatible changes, but 5.0 will if I remember the discussions correctly. >If docbook-xml project branches like as -stable and -current, I'll >fork this port to have version-number in port name. The DocBook project at OASIS creates new revisions of the DocBook ``language'' with distinct version numbers to signify major changes and/or minor changes/fixes. The then release this in the form of DTDs and related files in XML and SGML form. Other than the abstract language to describe the DocBook language there is no difference between the XML and SGML DocBook release, and every version has different semantics, for example: DocBook v4.x[.x] changed a number of tags from 3.x, like Comment became remark. Some got removed: BookBiblio and SeriesInfo, some tags got more options, like RevHistory on QandAEntry. If we keep on tracking docbook-xml in one port we will bump into these problems sooner or later, since we are using features which will not be present in a newer version or now have slightly different semantics. In this way it acts just like the SGML ports. I hope this clarifies the issue some, -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ In molten Aeons caged Desire dared Phantasma us much higher... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 7: 0:10 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54F8637B41A for ; Fri, 29 Mar 2002 07:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2TF04a50251; Fri, 29 Mar 2002 07:00:04 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 07:00:04 -0800 (PST) Message-Id: <200203291500.g2TF04a50251@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36453: compress(1) manual has erroneous description of "zcat". 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/36453; it has been noted by GNATS. From: Giorgos Keramidas To: "Gary W. Swearingen" Cc: bug-followup@freebsd.org Subject: Re: docs/36453: compress(1) manual has erroneous description of "zcat". Date: Fri, 29 Mar 2002 16:56:41 +0200 On 2002-03-28 22:53, Gary W. Swearingen wrote: > I think I agree, except that I didn't see that your removed "zcat" and > it's erroneous description from the DESCRIPTION section. (See subject! :) > It seems like you meant to remove it. Indeed. I'll make the following changes later tonight, unless someone comes up with a good idea for the references in the SEE ALSO section. %%% Index: compress.1 =================================================================== RCS file: /home/ncvs/src/usr.bin/compress/compress.1,v retrieving revision 1.11 diff -2 -u -r1.11 compress.1 --- compress.1 11 Sep 2001 12:27:15 -0000 1.11 +++ compress.1 29 Mar 2002 14:52:27 -0000 @@ -42,6 +42,5 @@ .Sh NAME .Nm compress , -.Nm uncompress , -.Nm zcat +.Nm uncompress .Nd compress and expand data .Sh SYNOPSIS @@ -53,6 +52,4 @@ .Op Fl cfv .Op Ar -.Nm zcat -.Op Ar .Sh DESCRIPTION .Nm Compress @@ -75,8 +72,4 @@ extension. .Pp -.Nm Zcat -is an alias for -.Dq "uncompress -c" . -.Pp If renaming the files would cause files to be overwritten and the standard input device is a terminal, the user is prompted (on the standard error @@ -154,5 +147,5 @@ time to compute. .Sh DIAGNOSTICS -.Ex -std compress uncompress zcat +.Ex -std compress uncompress .Sh SEE ALSO .Rs %%% Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 7:53:57 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 4999037B41B; Fri, 29 Mar 2002 07:53:40 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020329155339.IWST2928.rwcrmhc53.attbi.com@bmah.dyndns.org>; Fri, 29 Mar 2002 15:53:39 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.2/8.12.2) with ESMTP id g2TFrdd8047965; Fri, 29 Mar 2002 07:53:39 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.2/8.12.2/Submit) id g2TFrdwk047964; Fri, 29 Mar 2002 07:53:39 -0800 (PST) Message-Id: <200203291553.g2TFrdwk047964@intruder.bmah.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Jeroen Ruigrok/asmodai Cc: "Bruce A. Mah" , freebsd-doc@FreeBSD.ORG Subject: Re: Build problems for PDF In-reply-to: <20020329083317.GP13206@daemon.ninth-circle.org> References: <20020328124813.GM13206@daemon.ninth-circle.org> <200203282148.g2SLm6FR039426@intruder.bmah.org> <20020329083317.GP13206@daemon.ninth-circle.org> Comments: In-reply-to Jeroen Ruigrok/asmodai message dated "Fri, 29 Mar 2002 09:33:18 +0100." From: "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: text/plain; charset=us-ascii Date: Fri, 29 Mar 2002 07:53:39 -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 If memory serves me right, Jeroen Ruigrok/asmodai wrote: > -On [20020328 23:00], Bruce A. Mah (bmah@FreeBSD.ORG) wrote: > >This looks familiar. Try updating your ghostscript port to at least > >ghostscript-gnu-6.52_5 (if applicable)...there was a bug in ps2epsi that > >caused PDF builds to fail on the releng article. > > Ah ok, I guess that might've been the problem on the box at work. Need to > check that once I get there on tuesday. > If so, I think textproc/docproj needs an explicit depends on that > portversion of ghostscript. I'm not sure if this is the right thing to do or not...in any case my ports-fu isn't up to the task. BTW, if you need to fix this in a hurry, just apply the ps2epsi patch to the executable Perl script. > Of course, doing a: > > FORMATS="pdf" make in the en_US.ISO8859-1 dir now goes; > > /usr/local/bin/epstopdf --outfile=install/edit-inetd-conf.pdf install/edit-i > netd-conf.eps > /usr/bin/touch book.tex-pdf > /usr/local/bin/ps2pdf book.ps book.pdf > *** Signal 11 > > Stop in /usr/doc/en_US.ISO8859-1/books/handbook. > *** Error code 1 > > And I have a nice gs backtrace here. Mmm. Hmmm. I've just kicked off one of my doc distribution tests (doc/ release/Makefile) on my 5.0-DP1 test box (the one with a docproj port built yesterday). Usually, if something odd happens to the PDF toolchain, I'll run into it pretty quickly. Let's see what happens... Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 8:40:19 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EF6F37B404 for ; Fri, 29 Mar 2002 08:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2TGe1x72854; Fri, 29 Mar 2002 08:40:01 -0800 (PST) (envelope-from gnats) Received: from roc-66-66-72-6.rochester.rr.com (roc-66-66-72-6.rochester.rr.com [66.66.72.6]) by hub.freebsd.org (Postfix) with ESMTP id 25EB037B405 for ; Fri, 29 Mar 2002 08:35:11 -0800 (PST) Received: by roc-66-66-72-6.rochester.rr.com (Postfix, from userid 1000) id BFE15901A00; Fri, 29 Mar 2002 11:33:50 -0500 (EST) Message-Id: <20020329163350.BFE15901A00@roc-66-66-72-6.rochester.rr.com> Date: Fri, 29 Mar 2002 11:33:50 -0500 (EST) From: mpd Reply-To: mpd To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36492: Missing file in /usr/src/share/man/man5/Makefile 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: 36492 >Category: docs >Synopsis: Missing file in /usr/src/share/man/man5/Makefile >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: Fri Mar 29 08:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: mpd >Release: FreeBSD 4.5-STABLE i386 >Organization: >Environment: System: FreeBSD roc-66-66-72-6.rochester.rr.com 4.5-STABLE FreeBSD 4.5-STABLE #0: Thu Mar 7 12:49:41 EST 2002 root@roc-66-66-72-6.rochester.rr.com:/usr/obj/usr/src/sys/VATICAN i386 >Description: The file host.conf.5 is missing from the MAN assignment in /usr/src/share/man/man5/Makefile. This prevents that particular man page from being built and installed. >How-To-Repeat: build/install world >Fix: add host.conf.5 to the MAN assignment in the stated Makefile. >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 Mar 29 8:48:22 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id CB40637B405 for ; Fri, 29 Mar 2002 08:48:18 -0800 (PST) Received: from hades.hell.gr (patr530-b226.otenet.gr [212.205.244.234]) by mailsrv.otenet.gr (8.12.2/8.12.2) with ESMTP id g2TGmDQA000919; Fri, 29 Mar 2002 18:48:14 +0200 (EET) Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.2/8.12.2) with ESMTP id g2TGm6FB001918; Fri, 29 Mar 2002 18:48:13 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from charon@localhost) by hades.hell.gr (8.12.2/8.12.2/Submit) id g2TG7MAi001628; Fri, 29 Mar 2002 18:07:22 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Fri, 29 Mar 2002 18:07:21 +0200 From: Giorgos Keramidas To: John Nielsen Cc: freebsd-doc@freebsd.org Subject: Re: another quick typo fix for someone.. :) Message-ID: <20020329160721.GF1311@hades.hell.gr> References: <009501c1d6f8$0544c130$0900a8c0@max> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <009501c1d6f8$0544c130$0900a8c0@max> User-Agent: Mutt/1.3.28i 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 2002-03-29 01:02, John Nielsen wrote: > Submitting typo fixes is _almost_ as good as submitting code, right? :) IMHO, you can safely drop the "_almost_" part :) - Giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 8:48:33 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id D32CD37B400 for ; Fri, 29 Mar 2002 08:48:25 -0800 (PST) Received: from hades.hell.gr (patr530-b226.otenet.gr [212.205.244.234]) by mailsrv.otenet.gr (8.12.2/8.12.2) with ESMTP id g2TGmMQA001108; Fri, 29 Mar 2002 18:48:22 +0200 (EET) Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.2/8.12.2) with ESMTP id g2TGm6FN001918; Fri, 29 Mar 2002 18:48:22 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from charon@localhost) by hades.hell.gr (8.12.2/8.12.2/Submit) id g2TFSFbi001309; Fri, 29 Mar 2002 17:28:15 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Fri, 29 Mar 2002 17:28:15 +0200 (EET) From: Giorgos Keramidas X-X-Sender: charon@hades To: Tom Rhodes Cc: freebsd-doc@freebsd.org Subject: Re: docs/36453: compress(1) manual has erroneous description of "zcat". In-Reply-To: <20020329002524.63fa97ec.darklogik@pittgoth.com> Message-ID: <20020329172526.B1154-100000@hades> 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 2002-03-29 00:25, Tom Rhodes wrote: > Giorgos Keramidas wrote: > > How about this? I haven't added zcat(1) to SEE ALSO, since it's > > not referenced anywhere in the manpage. Also had a few > > reservations about adding only zcat(1). If we add this, then we > > should probably add other compress-tools too, like gzip(1), > > gunzip(1), zmore(1), etc. > > Could we list the MOST used ones? Or perhaps ones that are only > part of the base system. In essance, things like bzip wouldn't be > listed... Unless that was your plan ;) Only problem is bzip2 *is* in the base system: hades:~$ ls -ld /usr/src/contrib/bzip2 drwxr-xr-x 3 root wheel - 1024 Feb 1 21:07 /usr/src/contrib/bzip2/ but your idea of adding cross-references to all the compression tools available in the base system is certainly fine. - Giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 8:50:16 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7351C37B41C for ; Fri, 29 Mar 2002 08:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2TGo4k74359; Fri, 29 Mar 2002 08:50:04 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 08:50:04 -0800 (PST) Message-Id: <200203291650.g2TGo4k74359@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36457: timed(8) manual missing word after "timed, ntp". 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/36457; it has been noted by GNATS. From: Giorgos Keramidas To: "Gary W. Swearingen" Cc: bug-followup@freebsd.org Subject: Re: docs/36457: timed(8) manual missing word after "timed, ntp". Date: Fri, 29 Mar 2002 17:42:32 +0200 On 2002-03-28 23:24, Gary W. Swearingen wrote: > Giorgos Keramidas writes: > > > --- timed.8 15 Jul 2001 08:06:15 -0000 1.11 > > +++ timed.8 29 Mar 2002 04:13:19 -0000 > > @@ -220,4 +220,5 @@ > > .Nm , > > .Tn NTP , > ^^^----- I suggested "ntpd(8)" as a better companion to "timed", > but I can live with this, as the price of not providing patches. > (In case this was an oversight, not a choice.) > > +or others, Easy to fix. I'll replace ".Tn NTP" with ".Xr ntpd 8". Thanks for pointing this out :) Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 8:50:26 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D97F037B41F for ; Fri, 29 Mar 2002 08:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2TGo5W74365; Fri, 29 Mar 2002 08:50:05 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 08:50:05 -0800 (PST) Message-Id: <200203291650.g2TGo5W74365@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36456: csh(1) manual references wrong "signal.h". 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/36456; it has been noted by GNATS. From: Giorgos Keramidas To: "Gary W. Swearingen" Cc: mp@freebsd.org, obrien@freebsd.org, ache@freebsd.org, bug-followup@freebsd.org Subject: Re: docs/36456: csh(1) manual references wrong "signal.h". Date: Fri, 29 Mar 2002 17:50:19 +0200 On 2002-03-28 23:11, Gary W. Swearingen wrote: > Giorgos Keramidas writes: > > But more importantly, csh.1 is hard linked to tcsh.1.gz which comes from > > contrib/ source (the source of /usr/src/contrib/tcsh). If any changes are > > made to that file, they should probably be made in the tcsh developer's > > source and imported to FreeBSD verbatim when a newer version of tcsh is > > imported to our source. > > I suspect that it's wrong because the tcsh developer's layout is > different, but that's about all I have to say on it. (If you don't want > to fix it one way or the other, I don't see any good reason to not leave > it open for someone who cares about this low-priority stuff.) It's not easy to fix this one. The /usr/include/sys/signal.h file is not guaranteed to be there in other systems, AFAIK. The /usr/include/signal.h is something one can depend on, being there on all Unix systems that are out there. The tcsh developers chose to refer to /usr/include to avoid writing things like: "If you are on FreeBSD ..., but if you are on Linux ..., ..." The problem here is that FreeBSD uses CVS to track the changes made to "vendor code", and making local changes to files that come from the vendor branch of a program like tcsh means that this file has to be manually merged every time a new version of tcsh is imported :/ I've Cc:'ed the people who have done imports of tcsh to the CVS tree. They are the ones that know better than me if such a change needs to be done :) - Giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 8:50:46 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E34E37B420 for ; Fri, 29 Mar 2002 08:50:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2TGo7n74370; Fri, 29 Mar 2002 08:50:07 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 08:50:07 -0800 (PST) Message-Id: <200203291650.g2TGo7n74370@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36464: diff(1) manual doesn't explain "=format". 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/36464; it has been noted by GNATS. From: Giorgos Keramidas To: "Gary W. Swearingen" Cc: bug-followup@freebsd.org Subject: Re: docs/36464: diff(1) manual doesn't explain "=format". Date: Fri, 29 Mar 2002 17:24:28 +0200 (EET) On 2002-03-28 20:57, Gary W. Swearingen wrote: > The diff(1) manual uses "=format" at the end of many option syntax > lines, but nowhere describes what "format" may be. There is a description of "formats" in the GNU diff info documentation. You're right that we probably need to point the user to info docs in the manpage though. GNU programs tend to have more complete and up to date info documentation than manpages :-/ Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 8:50:54 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8007B37B417 for ; Fri, 29 Mar 2002 08:50:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2TGo8n74375; Fri, 29 Mar 2002 08:50:08 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 08:50:08 -0800 (PST) Message-Id: <200203291650.g2TGo8n74375@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36462: dev.handbook grammar nit "try and" 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/36462; it has been noted by GNATS. From: Giorgos Keramidas To: "Gary W. Swearingen" Cc: bug-followup@freebsd.org Subject: Re: docs/36462: dev.handbook grammar nit "try and" Date: Fri, 29 Mar 2002 17:18:31 +0200 (EET) On 2002-03-28 20:51, Gary W. Swearingen wrote: > In section "2.5.2 Example of using make" of > http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/x663.html > "try and explain" should be "try to explain". Good catch. There are many places that use " try and" as you can see from the following. Is "try and" an acceptable thing in English syntax, or should we go through the docs and eliminate it? $ cd a/doc/en_US.ISO8859-1 $ find . -name \*sgml | xargs grep ' try and' | cut -d: -f1 | sort -u ./books/fdp-primer/sgml-primer/chapter.sgml ./books/fdp-primer/structure/chapter.sgml ./books/fdp-primer/translations/chapter.sgml ./books/handbook/basics/chapter.sgml ./books/handbook/contrib/chapter.sgml ./books/handbook/cutting-edge/chapter.sgml ./books/handbook/install/chapter.sgml ./books/handbook/introduction/chapter.sgml ./books/handbook/policies/chapter.sgml ./developers-handbook/policies/chapter.sgml ./developers-handbook/tools/chapter.sgml ./faq/book.sgml Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 8:55:15 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 45D1737B41D for ; Fri, 29 Mar 2002 08:55:06 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020329165506.KTRQ2928.rwcrmhc53.attbi.com@bmah.dyndns.org>; Fri, 29 Mar 2002 16:55:06 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.2/8.12.2) with ESMTP id g2TGt5d8062056; Fri, 29 Mar 2002 08:55:05 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.2/8.12.2/Submit) id g2TGt5Ia062055; Fri, 29 Mar 2002 08:55:05 -0800 (PST) Message-Id: <200203291655.g2TGt5Ia062055@intruder.bmah.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Szilveszter Adam Cc: doc@FreeBSD.ORG Subject: Re: Teaching ports/textproc/docproj/Makefile about FORMATS In-reply-to: <20020328212359.GD886@fonix.adamsfamily.xx> References: <20020319223326.C5971@canyon.nothing-going-on.org> <200203282012.g2SKCgBC038297@intruder.bmah.org> <20020328212359.GD886@fonix.adamsfamily.xx> Comments: In-reply-to Szilveszter Adam message dated "Thu, 28 Mar 2002 22:23:59 +0100." From: "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: text/plain; charset=us-ascii Date: Fri, 29 Mar 2002 08:55:05 -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 If memory serves me right, Szilveszter Adam wrote: > Hello, > > On Thu, Mar 28, 2002 at 12:12:42PM -0800, Bruce A. Mah wrote: > > +# Turn off various options that some of the dependencies default to > > +# requiring, but that aren't needed for the doc build > > +.if !defined(WITHOUT_PYTHON) > > +WITHOUT_PYTHON= yes > > > > We really need this, but I couldn't make it work. Like when I did a > > "make install", make still wanted to build python as a dependency for > > libxml2 and libxslt. I don't know why. > > You need to use WITHOUT_PYTHON=yes for both make and make install if you > do them separately, also the port's name changes if it is built > without python. (It becomes libxslt-nopython-xxx, for example) That's not the problem. textproc/docproj/Makefile sets WITHOUT_PYTHON=yes for me if it's not set already. So it shouldn't matter what options I give when I build the docproj meta-port. Right? Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 10: 0:10 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B0A637B416 for ; Fri, 29 Mar 2002 10:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2TI04988470; Fri, 29 Mar 2002 10:00:04 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 10:00:04 -0800 (PST) Message-Id: <200203291800.g2TI04988470@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: swear@blarg.net (Gary W. Swearingen) Subject: Re: docs/36465: [PATCH] dumpon(8) Reply-To: swear@blarg.net (Gary W. Swearingen) 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/36465; it has been noted by GNATS. From: swear@blarg.net (Gary W. Swearingen) To: Tom Rhodes Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: docs/36465: [PATCH] dumpon(8) Date: 29 Mar 2002 09:52:17 -0800 Tom Rhodes writes: > Could you review this diff, see if this will be good for ya? > My mdoc(7) skills arn't the best in the world ;) Nor are mine, making testing a required part of patching. Your diff looks good, except that the sentence starting "In such cases use" (see below) should be removed too (it was incorporated in the new part). +.Xr loader 8 +must be used to enable dumps for system panics during kernel initialization. In such cases use .Va dumpdev And if you don't mind, you could remove a possible (but nonsensical) second meaning in the new text by inserting "which occur" between "panics" and "during" (see above). Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 10:39:15 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id 3767A37B419 for ; Fri, 29 Mar 2002 10:39:10 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020329183909.SQUY2626.rwcrmhc51.attbi.com@bmah.dyndns.org> for ; Fri, 29 Mar 2002 18:39:09 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.2/8.12.2) with ESMTP id g2TId9d8067282 for ; Fri, 29 Mar 2002 10:39:09 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.2/8.12.2/Submit) id g2TId9DH067281; Fri, 29 Mar 2002 10:39:09 -0800 (PST) Message-Id: <200203291839.g2TId9DH067281@intruder.bmah.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: freebsd-doc@FreeBSD.ORG Subject: Sweeps through docs (was Re: docs/36462: dev.handbook grammar nit "try and") In-reply-to: <200203291650.g2TGo8n74375@freefall.freebsd.org> References: <200203291650.g2TGo8n74375@freefall.freebsd.org> Comments: In-reply-to Giorgos Keramidas message dated "Fri, 29 Mar 2002 08:50:08 -0800." From: "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: text/plain; charset=us-ascii Date: Fri, 29 Mar 2002 10:39:09 -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 If memory serves me right, Giorgos Keramidas wrote: > Good catch. There are many places that use " try and" as you can see from t > he > following. Is "try and" an acceptable thing in English syntax, or should we > go > through the docs and eliminate it? IANAProfessionalWriter, but I'm pretty sure it's not proper English, although it's fairly common, colloquial, spoken American. :-) The point I really wanted to make is that while people are doing sweeps through doc/ for grammar nits, minor SGML fixups, and so on, I'd encourage people to try these fixes on src/release/doc/ as well. (Giorgos has actually been doing this, BTW, which I appreciate.) Thanks all! Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 10:40:11 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 24C9237B404 for ; Fri, 29 Mar 2002 10:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2TIe3F97682; Fri, 29 Mar 2002 10:40:03 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 10:40:03 -0800 (PST) Message-Id: <200203291840.g2TIe3F97682@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: swear@blarg.net (Gary W. Swearingen) Subject: Re: docs/36456: csh(1) manual references wrong "signal.h". Reply-To: swear@blarg.net (Gary W. Swearingen) 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/36456; it has been noted by GNATS. From: swear@blarg.net (Gary W. Swearingen) To: Giorgos Keramidas Cc: mp@freebsd.org, obrien@freebsd.org, ache@freebsd.org, bug-followup@freebsd.org Subject: Re: docs/36456: csh(1) manual references wrong "signal.h". Date: 29 Mar 2002 10:34:37 -0800 Giorgos Keramidas writes: > out there. The tcsh developers chose to refer to /usr/include to avoid > writing things like: > > "If you are on FreeBSD ..., but if you are on Linux ..., ..." Looks like that could be avoided by referring to use of "kill -l" for signal names & numbers; the ksh manual implies that that is a POSIX- standard option for that purpose, and it's supported by tcsh's built- in "kill". P.S. If anyone cares more than I do, the tcsh manual refers to the first of these as two "forms" and the second as one "form". kill [-s signal] %job|pid ... migrate [-site] pid|%jobid ... (+) which, in context, had me wasting time trying to determine which form was being referred to in the description. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 11:10:11 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8C5C37B405 for ; Fri, 29 Mar 2002 11:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2TJA2j05806; Fri, 29 Mar 2002 11:10:02 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 11:10:02 -0800 (PST) Message-Id: <200203291910.g2TJA2j05806@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: swear@blarg.net (Gary W. Swearingen) Subject: Re: docs/36462: dev.handbook grammar nit "try and" Reply-To: swear@blarg.net (Gary W. Swearingen) 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/36462; it has been noted by GNATS. From: swear@blarg.net (Gary W. Swearingen) To: Giorgos Keramidas Cc: bug-followup@freebsd.org Subject: Re: docs/36462: dev.handbook grammar nit "try and" Date: 29 Mar 2002 11:03:58 -0800 Giorgos Keramidas writes: > Good catch. There are many places that use " try and" as you can see from the > following. Is "try and" an acceptable thing in English syntax, or should we go > through the docs and eliminate it? Like I said, it's a "nit". One hears it often and so also sees it in e-mail, but it's in the same category as "ain't" -- much frowned upon by the grammarians, and seldom seen in professionally-editted text. My American Heritage Dictionary is nearly 30 years old, but 79% of their "Usage Panel" found an example containing "to try and force compliance" to be "unacceptable". I'll not comment on whether you should "go through the docs". I just calls 'em as I sees 'em. But if you think that's a good thing to do, consider also cataloging (on www.freebsd.org, preferably) a lot of these commonly inserted nits for yearly sweeps, etc. You could leave it for those in-the-know, or ask there for people to send content to you directly or just put in PRs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 11:20:11 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 642D637B41B for ; Fri, 29 Mar 2002 11:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2TJK2B07291; Fri, 29 Mar 2002 11:20:02 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 11:20:02 -0800 (PST) Message-Id: <200203291920.g2TJK2B07291@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: swear@blarg.net (Gary W. Swearingen) Subject: Re: docs/36464: diff(1) manual doesn't explain "=format". Reply-To: swear@blarg.net (Gary W. Swearingen) 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/36464; it has been noted by GNATS. From: swear@blarg.net (Gary W. Swearingen) To: Giorgos Keramidas Cc: bug-followup@freebsd.org Subject: Re: docs/36464: diff(1) manual doesn't explain "=format". Date: 29 Mar 2002 11:16:22 -0800 Giorgos Keramidas writes: > There is a description of "formats" in the GNU diff info documentation. > You're right that we probably need to point the user to info docs in the > manpage though. GNU programs tend to have more complete and up to date > info documentation than manpages :-/ Good idea; I should have thought of the info pages. Most of the Linux GNUish manuals have, close to the top, a very ugly comment about the manual being obsolete trash and how you should be using info. I'm sure you'll show more tact. (I actually prefer the info scheme to manual pages, but that's a PR I'll never write. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 12: 2:36 2002 Delivered-To: freebsd-doc@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 27CB337B400 for ; Fri, 29 Mar 2002 12:02:33 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id CD96FBD07; Fri, 29 Mar 2002 12:02:32 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id MAA13235; Fri, 29 Mar 2002 12:02:31 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2TK10W11126; Fri, 29 Mar 2002 12:01:00 -0800 (PST) (envelope-from swear@blarg.net) To: Giorgos Keramidas Cc: Tom Rhodes , freebsd-doc@FreeBSD.ORG Subject: Re: docs/36453: compress(1) manual has erroneous description of "zcat". References: <20020329172526.B1154-100000@hades> From: swear@blarg.net (Gary W. Swearingen) Date: 29 Mar 2002 12:01:00 -0800 In-Reply-To: <20020329172526.B1154-100000@hades> Message-ID: Lines: 19 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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 Giorgos Keramidas writes: > but your idea of adding cross-references to all the compression tools > available in the base system is certainly fine. Except that the "bzip" tools won't deal with "compress" files or vice-versa (unlike the "gzip" tools) so it's debatebly stretching the purpose of "See Also" to mention them in "compress". But I'm sure I've wished for such weakly-related entries too sometimes. (There probably should be two categories (and/or accompaning "whatis" short descriptions), but that'll never happen.) Bottom line: I don't care. If someone is a glutton for punishment, he could reference the compression(7) manual or some Handbook Section and write that. :) (But there must be some reason I never see the handbook referenced and I can guess what it is.) Methinks the FDP could use a "Policy Manual" to cover issues like the purpose of "See Also". (I shoulda been a bureaucrat.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 12:34:20 2002 Delivered-To: freebsd-doc@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 7C7A237B405; Fri, 29 Mar 2002 12:34:17 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 33EEABDE2; Fri, 29 Mar 2002 12:34:17 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id MAA24300; Fri, 29 Mar 2002 12:34:16 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2TKWkd11721; Fri, 29 Mar 2002 12:32:46 -0800 (PST) (envelope-from swear@blarg.net) To: Cc: freebsd-doc@FreeBSD.ORG Subject: Re: docs/36461: [PATCH] dd(1) References: <200203290730.g2T7U7O33258@freefall.freebsd.org> From: swear@blarg.net (Gary W. Swearingen) Date: 29 Mar 2002 12:32:46 -0800 In-Reply-To: <200203290730.g2T7U7O33258@freefall.freebsd.org> Message-ID: <1npu1ncdxt.u1n@localhost.localdomain> Lines: 16 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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 writes: > macro or something... Oh well, the output looked ok when I did an > nroff -man dd.1 on my machine... You probably know mdoc at least as well as I do. I'm trying to avoid doing something that urgently needs doing, so I tried your patch with: -- groff -mandoc -Tascii $@ | less [my little script; I don't know what the best "man" imitator is] -- man [gzip'd it next to dd.1.gz as xxx.1.gz] -- xemacs's manual-entry It is probably wrong in bolding things other than "conv" and "value", but I wouldn't worry about that if I were you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 14:11:53 2002 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 75CA937B416 for ; Fri, 29 Mar 2002 14:11:51 -0800 (PST) Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.11.0/8.11.0) id g2TMBnx32329; Fri, 29 Mar 2002 14:11:49 -0800 Date: Fri, 29 Mar 2002 14:11:49 -0800 From: Brooks Davis To: "Gary W. Swearingen" Cc: freebsd-doc@FreeBSD.ORG Subject: Re: docs/36462: dev.handbook grammar nit "try and" Message-ID: <20020329141149.A19933@Odin.AC.HMC.Edu> References: <200203291910.g2TJA2j05806@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="sdtB3X0nJg68CQEu" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200203291910.g2TJA2j05806@freefall.freebsd.org>; from swear@blarg.net on Fri, Mar 29, 2002 at 11:10:02AM -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 --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Mar 29, 2002 at 11:10:02AM -0800, Gary W. Swearingen wrote: > Like I said, it's a "nit". One hears it often and so also sees it in > e-mail, but it's in the same category as "ain't" -- much frowned upon by > the grammarians, and seldom seen in professionally-editted text. My > American Heritage Dictionary is nearly 30 years old, but 79% of their > "Usage Panel" found an example containing "to try and force compliance" > to be "unacceptable". My 1997 edition drops that to 65%. -- 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 --sdtB3X0nJg68CQEu 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 iD8DBQE8pOalXY6L6fI4GtQRAmShAJ0UYAh38uNVh85HwGfcGvwmfu4HLQCg2EXc YWDiJddjmNoKV3PT9f2OLeg= =v81z -----END PGP SIGNATURE----- --sdtB3X0nJg68CQEu-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 14:22:42 2002 Delivered-To: freebsd-doc@freebsd.org Received: from mail14.speakeasy.net (mail14.speakeasy.net [216.254.0.214]) by hub.freebsd.org (Postfix) with ESMTP id E16F437B41B for ; Fri, 29 Mar 2002 14:22:35 -0800 (PST) Received: (qmail 14949 invoked from network); 29 Mar 2002 22:22:34 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail14.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 29 Mar 2002 22:22:34 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g2TMNMv01919; Fri, 29 Mar 2002 17:23:22 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20020329141149.A19933@Odin.AC.HMC.Edu> Date: Fri, 29 Mar 2002 17:22:36 -0500 (EST) From: John Baldwin To: Brooks Davis Subject: Re: docs/36462: dev.handbook grammar nit "try and" Cc: freebsd-doc@FreeBSD.ORG, "Gary W. Swearingen" 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 29-Mar-2002 Brooks Davis wrote: > On Fri, Mar 29, 2002 at 11:10:02AM -0800, Gary W. Swearingen wrote: >> Like I said, it's a "nit". One hears it often and so also sees it in >> e-mail, but it's in the same category as "ain't" -- much frowned upon by >> the grammarians, and seldom seen in professionally-editted text. My >> American Heritage Dictionary is nearly 30 years old, but 79% of their >> "Usage Panel" found an example containing "to try and force compliance" >> to be "unacceptable". > > My 1997 edition drops that to 65%. Personally I find "try and" to be wordy and "weak". If you did something, say you did it, don't dawdle around about trying to do it unless you say it as "I tried to force compliance". All IMHO of course. -- 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 Fri Mar 29 14:31:27 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id 6006137B405; Fri, 29 Mar 2002 14:31:22 -0800 (PST) Received: from localhost (c5.depaul-inst.pittsburgh.pa.us [192.168.1.5]) by pittgoth.com (8.11.6/8.11.6) with SMTP id g2TMXgq59984; Fri, 29 Mar 2002 17:33:42 -0500 (EST) (envelope-from darklogik@pittgoth.com) Date: Fri, 29 Mar 2002 17:38:58 -0500 From: Tom Rhodes To: swear@blarg.net (Gary W. Swearingen) Cc: trhodes@FreeBSD.ORG, freebsd-doc@FreeBSD.ORG Subject: Re: docs/36461: [PATCH] dd(1) Message-Id: <20020329173858.17fcf743.darklogik@pittgoth.com> In-Reply-To: <1npu1ncdxt.u1n@localhost.localdomain> References: <200203290730.g2T7U7O33258@freefall.freebsd.org> <1npu1ncdxt.u1n@localhost.localdomain> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; boundary="=.T7W.YzBZ4VHL6G" 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 --=.T7W.YzBZ4VHL6G Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On 29 Mar 2002 12:32:46 -0800 swear@blarg.net (Gary W. Swearingen) wrote: > writes: > > > macro or something... Oh well, the output looked ok when I did > > an nroff -man dd.1 on my machine... > > You probably know mdoc at least as well as I do. I'm trying to > avoid doing something that urgently needs doing, so I tried your > patch with: > > -- groff -mandoc -Tascii $@ | less > [my little script; I don't know what the best "man" imitator is] > -- man > [gzip'd it next to dd.1.gz as xxx.1.gz] > -- xemacs's manual-entry > > It is probably wrong in bolding things other than "conv" and > "value", but I wouldn't worry about that if I were you. Then I guess were good? Patch ok and can be applied? (I may ask ru to review first and then continue with it) -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@ {Pittgoth.com, FreeBSD.org} --=.T7W.YzBZ4VHL6G Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8pO0HwPmgiRuevUMRAoe+AJsHly8tNWJoMqz7mIiPjV5ixyvQ1QCg9LNv 99npUSMGXSNGwC/VjnZiveo= =g6i8 -----END PGP SIGNATURE----- --=.T7W.YzBZ4VHL6G-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 14:34:45 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id 2393037B416 for ; Fri, 29 Mar 2002 14:34:42 -0800 (PST) Received: from localhost (c5.depaul-inst.pittsburgh.pa.us [192.168.1.5]) by pittgoth.com (8.11.6/8.11.6) with SMTP id g2TMZsq59999; Fri, 29 Mar 2002 17:35:54 -0500 (EST) (envelope-from darklogik@pittgoth.com) Date: Fri, 29 Mar 2002 17:41:10 -0500 From: Tom Rhodes To: Giorgos Keramidas Cc: oniblerz@attbi.com, freebsd-doc@FreeBSD.ORG Subject: Re: another quick typo fix for someone.. :) Message-Id: <20020329174110.75e8ac43.darklogik@pittgoth.com> In-Reply-To: <20020329160721.GF1311@hades.hell.gr> References: <009501c1d6f8$0544c130$0900a8c0@max> <20020329160721.GF1311@hades.hell.gr> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; boundary="=.zhpyl7Y_l(yOSV" 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 --=.zhpyl7Y_l(yOSV Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Fri, 29 Mar 2002 18:07:21 +0200 Giorgos Keramidas wrote: > On 2002-03-29 01:02, John Nielsen wrote: > > Submitting typo fixes is _almost_ as good as submitting code, > > right? :) > > IMHO, you can safely drop the "_almost_" part :) > > - Giorgos Add me to the list, in my book, you can definatly drop the ``almost'' -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@ {Pittgoth.com, FreeBSD.org} --=.zhpyl7Y_l(yOSV Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) iD8DBQE8pO2LwPmgiRuevUMRAqgRAJ9lkiiOaYUX4F43kncXrFF6QPjrTgCgjsf/ NuRSQ4cclWJZr/e64rJO4jQ= =Ehaq -----END PGP SIGNATURE----- --=.zhpyl7Y_l(yOSV-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 16:21:17 2002 Delivered-To: freebsd-doc@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 70DC737B41E; Fri, 29 Mar 2002 16:20:58 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020330002058.YGKB2928.rwcrmhc53.attbi.com@bmah.dyndns.org>; Sat, 30 Mar 2002 00:20:58 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.2/8.12.2) with ESMTP id g2U0Kvd8082270; Fri, 29 Mar 2002 16:20:57 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.2/8.12.2/Submit) id g2U0KvmD082269; Fri, 29 Mar 2002 16:20:57 -0800 (PST) Message-Id: <200203300020.g2U0KvmD082269@intruder.bmah.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: freebsd-doc@freebsd.org Cc: bmah@freebsd.org Subject: Conditional text 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: text/plain; charset=us-ascii Date: Fri, 29 Mar 2002 16:20:57 -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 As you may know, conditional text is something I've been grappling with for the release documentation. I stumbled across (documentation for) an XSLT stylesheet that seems to solve almost all of the problems I've encountered. Can some DocBook/ SGML/XML guru tell me if there's any way of doing the thing that's described below, using our existing FDP toolchain? http://docbook.sourceforge.net/projects/xsl/doc/tools/profiling.html Thanks! Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 17:33:33 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pc-62-31-80-192-ll.blueyonder.co.uk (pc-62-31-80-192-ll.blueyonder.co.uk [62.31.80.192]) by hub.freebsd.org (Postfix) with SMTP id 6A06F37B405 for ; Fri, 29 Mar 2002 17:33:26 -0800 (PST) Received: (qmail 1521 invoked from network); 30 Mar 2002 01:33:24 -0000 Received: from spatula.home (HELO cream.org) (192.168.0.4) by myriad.home with SMTP; 30 Mar 2002 01:33:24 -0000 Message-ID: <3CA5162B.1010104@cream.org> Date: Sat, 30 Mar 2002 01:34:35 +0000 From: Andrew Boothman User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.9) Gecko/20020311 X-Accept-Language: en-gb, en-us MIME-Version: 1.0 To: Andrew Boothman Cc: Jeremy Faulkner , Wayne Lubin , freebsd-doc@freebsd.org Subject: Re: Getting source tree via ftp References: <20020328221900.34725.qmail@web14708.mail.yahoo.com> <20020328174451.A1309@constans.gldis.ca> <3CA3CD78.1060109@cream.org> Content-Type: text/plain; charset=us-ascii; format=flowed 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 Andrew Boothman wrote: > Jeremy Faulkner wrote: > >> On Thu, Mar 28, 2002 at 02:19:00PM -0800, Wayne Lubin wrote: >> >>> I tried to get the stable source tree as a tar file by >>> going into usr.bin directory and typing get lex.tar as >>> the handbook explains. The server I ftp'd into was of >>> course ftp.freebsd.org. When I typed get lex.tar I >>> got "no such file or directory". What is going on? >> >> >> Not all ftp servers support that functionality, it would >> appear that ftp.beastie.tdk.net (aka ftp.freebsd.org) does >> not. > > This is undoubtedly a feature that was supported by the old > ftp.freebsd.org (aka ftp.cdrom.com). > > If the current ftp.freebsd.org doesn't support it, I guess we should > remove this from the handbook, as I was unable to track down an ftp > mirror that does still support this feature. I'll do a PR. In the cold light of day, I've re-read the page in question, and it does explicitly say "Some of out FTP mirrors may allow...", which I think makes the situation clear enough. Please feel free to e-mail back if you disagree ;-) Thanks anyway. Andrew. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 17:50:47 2002 Delivered-To: freebsd-doc@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id B057337B400; Fri, 29 Mar 2002 17:50:44 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 5CA69BDEC; Fri, 29 Mar 2002 17:50:44 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id RAA27707; Fri, 29 Mar 2002 17:50:43 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2U1nBB15699; Fri, 29 Mar 2002 17:49:11 -0800 (PST) (envelope-from swear@blarg.net) To: Tom Rhodes Cc: trhodes@FreeBSD.ORG, freebsd-doc@FreeBSD.ORG Subject: Re: docs/36461: [PATCH] dd(1) References: <200203290730.g2T7U7O33258@freefall.freebsd.org> <1npu1ncdxt.u1n@localhost.localdomain> <20020329173858.17fcf743.darklogik@pittgoth.com> From: swear@blarg.net (Gary W. Swearingen) Date: 29 Mar 2002 17:49:10 -0800 In-Reply-To: <20020329173858.17fcf743.darklogik@pittgoth.com> Message-ID: <8a8z8addux.z8a@localhost.localdomain> Lines: 10 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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 Tom Rhodes writes: > > Then I guess were good? Patch ok and can be applied? (I may ask ru to > review first and then continue with it) Yes. Yes. (If I was going to bother ru at all, I'd just flat out ask him how to implement that one line so he doesn't have to wade through the trivial stuff. But that's your business, of course.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 18:10: 8 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C1B2D37B41A for ; Fri, 29 Mar 2002 18:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2U2A2W96338; Fri, 29 Mar 2002 18:10:02 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 18:10:02 -0800 (PST) Message-Id: <200203300210.g2U2A2W96338@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: docs/36461: [PATCH] dd(1) 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/36461; it has been noted by GNATS. From: Giorgos Keramidas To: "Gary W. Swearingen" Cc: Tom Rhodes , Subject: Re: docs/36461: [PATCH] dd(1) Date: Sat, 30 Mar 2002 04:00:16 +0200 (EET) On 2002-03-29 17:49, Gary W. Swearingen wrote: > (If I was going to bother ru at all, I'd just flat out ask him how to > implement that one line so he doesn't have to wade through the trivial > stuff. But that's your business, of course.) If you (Gary or Tom, that is) prefer the arguments to in "italics", you will probably like the following: %%% Index: dd.1 =================================================================== RCS file: /home/ncvs/src/bin/dd/dd.1,v retrieving revision 1.18 diff -2 -u -r1.18 dd.1 --- dd.1 15 Aug 2001 09:09:34 -0000 1.18 +++ dd.1 29 Mar 2002 15:07:18 -0000 @@ -152,6 +152,5 @@ distinguishing between a partial or complete block being read. .It Xo -.Cm conv= -.Ns Cm value Ns Op \&, Cm value \&... +.Cm conv= Ns Cm value Ns Op \&, Ns Cm value Ns \&, Ns \&... .Xc Where %%% To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 19:47: 0 2002 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 69C3137B404 for ; Fri, 29 Mar 2002 19:46:56 -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 g2U3ksVZ004761 for ; Fri, 29 Mar 2002 22:46:54 -0500 (EST) Message-ID: <3CA53529.DB9CD7A2@alum.mit.edu> Date: Fri, 29 Mar 2002 22:46:49 -0500 From: Jed Clear Organization: Dis X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: doc@FreeBSD.org Subject: Gnat on CVSup collection list Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msB3D92CEEFD1B7A3E0D40526E" 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. --------------msB3D92CEEFD1B7A3E0D40526E Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit On http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html, the collections: src-secure and src-sbin are the only two not in alphabetical order. Told you it was a gnat. -Jed --------------msB3D92CEEFD1B7A3E0D40526E 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 hkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wMjAzMzAwMzQ2NDlaMCMG CSqGSIb3DQEJBDEWBBTu3eVsM56UM+5bMkgZjK6L2oSqvTBSBgkqhkiG9w0BCQ8xRTBDMAoG CCqGSIb3DQMHMA4GCCqGSIb3DQMCAgIAgDAHBgUrDgMCBzANBggqhkiG9w0DAgIBQDANBggq hkiG9w0DAgIBKDANBgkqhkiG9w0BAQEFAASBgGQXlcTlwa6CIl2WAbU61EXTxrRP0URDiXIz aD+8xsKxMIqrQTGwAae6dHD416t2TRQ00GK9d5U9dDMwXhkp+4wEJIXotSvlG5ODiMPlaSkQ JjL5pRLf5FY9Vq06msUHdDh8XZ2/17cDAsDlktifhJ2gVJ4ZL8WN4Z1sU5xiRgcN --------------msB3D92CEEFD1B7A3E0D40526E-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 19:50:27 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 523DC37B428 for ; Fri, 29 Mar 2002 19:50:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2U3o3H10927; Fri, 29 Mar 2002 19:50:03 -0800 (PST) (envelope-from gnats) Date: Fri, 29 Mar 2002 19:50:03 -0800 (PST) Message-Id: <200203300350.g2U3o3H10927@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: swear@blarg.net (Gary W. Swearingen) Subject: Re: docs/36461: [PATCH] dd(1) Reply-To: swear@blarg.net (Gary W. Swearingen) 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/36461; it has been noted by GNATS. From: swear@blarg.net (Gary W. Swearingen) To: Giorgos Keramidas Cc: Tom Rhodes , Subject: Re: docs/36461: [PATCH] dd(1) Date: 29 Mar 2002 19:39:44 -0800 Giorgos Keramidas writes: > > If you (Gary or Tom, that is) prefer the arguments to in "italics", > you will probably like the following: ... > +.Cm conv= Ns Cm value Ns Op \&, Ns Cm value Ns \&, Ns \&... Well, the "before" version uses "Cm", but the other operands seem to use "Ar", so this seems better: .Cm conv= Ns Ar value Ns Op \&, Ns Ar value Ns \&, Ns \&... .Xc Where .Ar value To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 20:50: 9 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (unknown [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98FA137B404 for ; Fri, 29 Mar 2002 20:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2U4o1421263; Fri, 29 Mar 2002 20:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (unknown [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 880EF37B419 for ; Fri, 29 Mar 2002 20:48:12 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2U4mCm21130; Fri, 29 Mar 2002 20:48:12 -0800 (PST) (envelope-from nobody) Message-Id: <200203300448.g2U4mCm21130@freefall.freebsd.org> Date: Fri, 29 Mar 2002 20:48:12 -0800 (PST) From: "James B. Wilkinson" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: docs/36524: bad links on handbook index 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: 36524 >Category: docs >Synopsis: bad links on handbook index page >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 29 20:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: James B. Wilkinson >Release: >Organization: The College of Charleston >Environment: >Description: There are a lot of links on this page: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/i28148.html All of the ones I tried simply lead back to the top of the same page. This doesn't seem right somehow. Thanks >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 Fri Mar 29 21: 1:48 2002 Delivered-To: freebsd-doc@freebsd.org Received: from outbox.attcanada.ca (outbox.attcanada.ca [207.245.244.41]) by hub.freebsd.org (Postfix) with ESMTP id A5F7F37B405 for ; Fri, 29 Mar 2002 21:01:46 -0800 (PST) Received: from default (trt-on63-155.netcom.ca [142.154.112.187]) by outbox.attcanada.ca (Postfix) with ESMTP id 983817A80 for ; Sat, 30 Mar 2002 00:01:40 -0500 (EST) Message-ID: <4186-22002363062231600@default> X-Priority: 3 Reply-To: "Barbara Caldwell" X-MSMail-Priority: Normal From: "Barbara Caldwell" To: "doc@freebsd.org" Subject: The United States Healthcare Directory Date: Sat, 30 Mar 2002 00:22:31 -0600 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable 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 We are publishers of specialized reports and directories=20 dealing with public affairs=2E Our new directory,=20 "The United States Healthcare Directory" covers hospitals,=20 nursing homes, HMOs, pharmaceutical companies, pharmacies,=20 group medical practices, medical manufacturers, etc=2E It is available=20= at an introductory price of $245=2E If you are interested=20 in receiving this directory, please provide us with your mailing=20 address or visit our website at www=2Enational-directories=2Ecom=2E Please be advised that this E-mail is not SPAM under the Federal=20 Regulatory laws of the United States=2E This message is being sent=20 to you in compliance with the proposed Federal Legislation for=20 commercial e-mail (H=2ER=2E 4176-Section 101, Paragraph (e) (1) (A)) and=20= Bill s=2E 1618 Title III passed by the 105th US Congress=2E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Fri Mar 29 23:30:12 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (unknown [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C81D37B41D for ; Fri, 29 Mar 2002 23:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2U7U1F51950; Fri, 29 Mar 2002 23:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (unknown [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB56C37B41B for ; Fri, 29 Mar 2002 23:21:21 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2U7LLP50812; Fri, 29 Mar 2002 23:21:21 -0800 (PST) (envelope-from nobody) Message-Id: <200203300721.g2U7LLP50812@freefall.freebsd.org> Date: Fri, 29 Mar 2002 23:21:21 -0800 (PST) From: Joshua Goodall To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: docs/36528: Donors Gallery is out-to-date 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: 36528 >Category: docs >Synopsis: Donors Gallery is out-to-date >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 Mar 29 23:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Joshua Goodall >Release: n/a >Organization: >Environment: n/a >Description: If the page http://www.freebsd.org/doc/en_US.ISO8859-1/articles/contributors/index.html is to be believed, then freefall is a 200mhz PPro with 128mb of memory and a 4gb hard disk. This is possibly no longer the case. There are other entries that seem outdated whilst giving the impression that they are current. It's time this document was updated to reflect reality! >How-To-Repeat: >Fix: I don't have the facts, so I can't provide a diff. Joshua >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 Mar 30 2:53:57 2002 Delivered-To: freebsd-doc@freebsd.org Received: from gnome05.sovam.com (gnome05.sovam.com [194.67.1.186]) by hub.freebsd.org (Postfix) with ESMTP id 4F0B437B41E; Sat, 30 Mar 2002 02:53:52 -0800 (PST) Received: from ts18-a128.dial.sovam.com ([195.239.5.128]:23047 "HELO mail" ident: "NO-IDENT-SERVICE[2]" whoson: "nwp22@online.ru" smtp-auth: TLS-CIPHER: TLS-PEER: ) by gnome05.sovam.com with SMTP id ; Sat, 30 Mar 2002 13:53:37 +0300 From: Иринка@FreeBSD.ORG To: @Привет.FreeBSD.ORG Subject: Я нашла отличный подарок! X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Date: Sat, 30 Mar 2002 13:43:46 +0300 Mime-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Message-Id: <20020330105339Z828720-134+3384@gnome05.sovam.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 Привет! Я нашла отличный подарок! Уверена, что тебе понравится. Смотри, в интернете есть магазин Постеров. http://www.newposter.ru/?ref=mart Там продаются разные красивые и прикольные картинки, причем все они уже в рамках и под стеклом. Смотрится очень красиво и солидно. Да и цены не высокие. Я себе уже купила два постера. Один за 450 рублей, второй за 700 рублей. Просто красота. Так что теперь вопрос с подарками решен. Да и домой советую прикупить. Ну все, УДАЧИ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Mar 30 8:10: 9 2002 Delivered-To: freebsd-doc@freebsd.org Received: from pompom.freestart.hu (pompom.freestart.hu [213.197.64.6]) by hub.freebsd.org (Postfix) with ESMTP id D984737B419 for ; Sat, 30 Mar 2002 08:10:06 -0800 (PST) Received: from line-74-99.dial.freestart.hu ([213.197.74.99] helo=10.g-p) by freestart.hu with smtp (Freestart relay 1 (FS-Lin)) id 16rLML-0008Ad-00 for ; Sat, 30 Mar 2002 17:05:41 +0100 To: doc@freebsd.org From: de1ton@freestart.hu (-DELTON-) Subject: Kellemes Hъsvйti Ьnnepeket! X-Mailer: West Wind Web Connection 3.0 Importance: Normal Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Message-Id: Date: Sat, 30 Mar 2002 17:05:41 +0100 X-Scanner: exiscan by Freestart 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 Kedves Partnerьnk! Kellemes Hъsvйti Ьnnepeket Kнvбnunk! DELTON www.delton.hu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Mar 30 12: 0:18 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (unknown [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A247637B41F for ; Sat, 30 Mar 2002 12:00:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2UK09442991; Sat, 30 Mar 2002 12:00:09 -0800 (PST) (envelope-from gnats) Received: from mars.wanadoo.fr (ca-ol-sqy-22-165.abo.wanadoo.fr [80.8.59.165]) by hub.freebsd.org (Postfix) with ESMTP id 7E73837B417 for ; Sat, 30 Mar 2002 11:50:08 -0800 (PST) Received: (from dak@localhost) by mars.wanadoo.fr (8.11.6/8.11.6) id g2UJngu01289; Sat, 30 Mar 2002 20:49:42 +0100 (CET) (envelope-from dak) Message-Id: <200203301949.g2UJngu01289@mars.wanadoo.fr> Date: Sat, 30 Mar 2002 20:49:42 +0100 (CET) From: dak Reply-To: dak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: docs/36544: Typo in bpf(4) 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: 36544 >Category: docs >Synopsis: Typo in bpf(4) manpage >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 Mar 30 12:00:09 PST 2002 >Closed-Date: >Last-Modified: >Originator: dak >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: System: FreeBSD mars 4.5-STABLE FreeBSD 4.5-STABLE #42: Mon Mar 25 07:23:24 CET 2002 dak@mars:/usr/src/sys/compile/laptop i386 >Description: In the second paragraph of bpf(4) manpage, there's a typo: 'A given interface can be shared be multiple listeners [...]' It should be 'by multiple listeners' instead of 'be multiple listeners'. >How-To-Repeat: Just type man 4 bpf :> >Fix: Change one letter. >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 Mar 30 12:10: 6 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (unknown [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 77A7737B400 for ; Sat, 30 Mar 2002 12:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2UKA3648135; Sat, 30 Mar 2002 12:10:03 -0800 (PST) (envelope-from gnats) Date: Sat, 30 Mar 2002 12:10:03 -0800 (PST) Message-Id: <200203302010.g2UKA3648135@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Tom Rhodes Subject: Re: docs/36461: [PATCH] dd(1) Reply-To: Tom Rhodes 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/36461; it has been noted by GNATS. From: Tom Rhodes To: swear@blarg.net (Gary W. Swearingen) Cc: keramida@freebsd.org, trhodes@freebsd.org, bug-followup@freebsd.org Subject: Re: docs/36461: [PATCH] dd(1) Date: Sat, 30 Mar 2002 15:09:08 -0500 On 29 Mar 2002 19:39:44 -0800 swear@blarg.net (Gary W. Swearingen) wrote: > Giorgos Keramidas writes: > > > > If you (Gary or Tom, that is) prefer the arguments to in > > "italics", you will probably like the following: Italics isn't really a huge deal in my opinion, the only REAL worry I had was markup. Limited knowledge of mdoc(7) tells me to either have a more experianced person review my work before application into the system. This is your call Gary, if you want it in italics just say so and Keramida can commit his patch. -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@ {Pittgoth.com, FreeBSD.org} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Mar 30 15:18:18 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9699437B429; Sat, 30 Mar 2002 15:18:13 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2UNIDo87709; Sat, 30 Mar 2002 15:18:13 -0800 (PST) (envelope-from dd) Date: Sat, 30 Mar 2002 15:18:13 -0800 (PST) From: Message-Id: <200203302318.g2UNIDo87709@freefall.freebsd.org> To: mpd@rochester.rr.com, dd@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/36492: Missing file in /usr/src/share/man/man5/Makefile 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 file in /usr/src/share/man/man5/Makefile State-Changed-From-To: open->closed State-Changed-By: dd State-Changed-When: Sat Mar 30 15:18:03 PST 2002 State-Changed-Why: fixed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=36492 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Mar 30 15:19:52 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8F6537B41B; Sat, 30 Mar 2002 15:19:28 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2UNJSw87980; Sat, 30 Mar 2002 15:19:28 -0800 (PST) (envelope-from dd) Date: Sat, 30 Mar 2002 15:19:28 -0800 (PST) From: Message-Id: <200203302319.g2UNJSw87980@freefall.freebsd.org> To: dak@klemm.delta6.net, dd@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/36544: Typo in bpf(4) 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 Synopsis: Typo in bpf(4) manpage State-Changed-From-To: open->closed State-Changed-By: dd State-Changed-When: Sat Mar 30 15:19:21 PST 2002 State-Changed-Why: Fixed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=36544 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Mar 30 15:21:17 2002 Delivered-To: freebsd-doc@freebsd.org Received: from excel.net (209-103-231-194.ply-p3-04.excel.net [209.103.231.194]) by hub.freebsd.org (Postfix) with SMTP id 157D237B400 for ; Sat, 30 Mar 2002 15:21:06 -0800 (PST) Content-Type: text/plain; charset=US-ASCII Date: Sat, 30 Mar 2002 17:24:51 -0600 To: doc@freebsd.org From: cabineteaz@excel.net X-Mailer: Version 5.0 Subject: Do you sell cabinets? Organization: Cabinet Eaz Message-Id: <20020330232106.157D237B400@hub.freebsd.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 If you sell, install or make cabinets, take a moment. This product is well worth looking into. 1. Reduce damage to cabinets tremendously; 2. The faces of the cabinets will be flush, the tops and bottoms even; 3. Cuts installation time by 1/2 or more with less fatigue; 4. One man cabinet installation with Micro Adjusting accuracy. These are only a few benefits. Quality workmanship reflects: Your name Your image Your product Remember, the women always look at the kitchen. For the discriminate cabinet maker and installer. http://www.quicksitemaker.com/members/bbiles If you are a cabinet manufacturer your distributers will benefit. Cabinet Eaz makes the difference. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Mar 30 15:27:27 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 233EA37B426; Sat, 30 Mar 2002 15:24:02 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2UNO1G88659; Sat, 30 Mar 2002 15:24:01 -0800 (PST) (envelope-from dd) Date: Sat, 30 Mar 2002 15:24:01 -0800 (PST) From: Message-Id: <200203302324.g2UNO1G88659@freefall.freebsd.org> To: zoobie@bsdconspiracy.net, dd@FreeBSD.org, freebsd-doc@FreeBSD.org Subject: Re: docs/36471: typo in ng_ether(4) 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 ng_ether(4) State-Changed-From-To: open->closed State-Changed-By: dd State-Changed-When: Sat Mar 30 15:23:51 PST 2002 State-Changed-Why: Fixed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=36471 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Mar 30 15:29:33 2002 Delivered-To: freebsd-doc@freebsd.org Received: from excel.net (209-103-231-194.ply-p3-04.excel.net [209.103.231.194]) by hub.freebsd.org (Postfix) with SMTP id 5432A37B41E for ; Sat, 30 Mar 2002 15:23:56 -0800 (PST) Content-Type: text/plain; charset=US-ASCII Date: Sat, 30 Mar 2002 17:27:53 -0600 To: freebsd-doc@freebsd.org From: cabineteaz@excel.net X-Mailer: Version 5.0 Subject: Do you sell cabinets? Organization: Cabinet Eaz Message-Id: <20020330232356.5432A37B41E@hub.freebsd.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 If you sell, install or make cabinets, take a moment. This product is well worth looking into. 1. Reduce damage to cabinets tremendously; 2. The faces of the cabinets will be flush, the tops and bottoms even; 3. Cuts installation time by 1/2 or more with less fatigue; 4. One man cabinet installation with Micro Adjusting accuracy. These are only a few benefits. Quality workmanship reflects: Your name Your image Your product Remember, the women always look at the kitchen. For the discriminate cabinet maker and installer. http://www.quicksitemaker.com/members/bbiles If you are a cabinet manufacturer your distributers will benefit. Cabinet Eaz makes the difference. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Mar 30 17: 4:53 2002 Delivered-To: freebsd-doc@freebsd.org Received: from totem.fix.no (totem.fix.no [80.91.32.29]) by hub.freebsd.org (Postfix) with ESMTP id 344C637B41B for ; Sat, 30 Mar 2002 17:04:52 -0800 (PST) Received: by totem.fix.no (Postfix, from userid 1000) id 9F42C204BB; Sun, 31 Mar 2002 03:05:00 +0200 (CEST) Date: Sun, 31 Mar 2002 03:05:00 +0200 From: Anders Nordby To: doc@freebsd.org Subject: Addendum to make world help in the handbook? Message-ID: <20020331010500.GB63183@totem.fix.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.27i X-message-flag: Outlook : A program to spread viri, but it can do mail too. X-PGP-Key: http://anders.fix.no/pgp/ X-PGP-Key-FingerPrint: 1E0F C53C D8DF 6A8F EAAD 19C5 D12A BC9F 0083 5956 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, It seems users are failing to update RELENG_4 systems these days because of the missing smmsp user. How about adding info on the fact that users should check for new users (in src/etc/master.passwd) as well as groups before doing installworld/world in doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml? The document mentions new groups, but not really new users.. Cheers, -- Anders. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Mar 30 19:20: 7 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 047B737B416 for ; Sat, 30 Mar 2002 19:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2V3K2T56668; Sat, 30 Mar 2002 19:20:03 -0800 (PST) (envelope-from gnats) Date: Sat, 30 Mar 2002 19:20:03 -0800 (PST) Message-Id: <200203310320.g2V3K2T56668@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: swear@blarg.net (Gary W. Swearingen) Subject: Re: docs/36461: [PATCH] dd(1) Reply-To: swear@blarg.net (Gary W. Swearingen) 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/36461; it has been noted by GNATS. From: swear@blarg.net (Gary W. Swearingen) To: Tom Rhodes Cc: keramida@freebsd.org, trhodes@freebsd.org, bug-followup@freebsd.org Subject: Re: docs/36461: [PATCH] dd(1) Date: 30 Mar 2002 19:09:44 -0800 Tom Rhodes writes: > Italics isn't really a huge deal in my opinion, the only REAL worry > I had was markup. Limited knowledge of mdoc(7) tells me to either > have a more experianced person review my work before application into > the system. This is your call Gary, if you want it in italics just > say so and Keramida can commit his patch. I didn't know why italics was mentioned -- I never see it in manuals. But I just now read that ".Em" usually gives italics while I see underlined text from both ".Em" and ".Ar" (but bold text from ".Cm"). I notice that the nslookup(8) manual uses Ar right of "=", but then it is describing interactive commands (.It Ic port= Ns Ar value). My call is Giorgos' last effort except with "Ar" on the right side of the "=" like the rest of the operands have, plus "Ar" on the corresponding reference to "value" in the description. But I'll not complain if the committer wants it otherwise (as long as it has no spaces, of course). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message From owner-freebsd-doc Sat Mar 30 21:10: 7 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B708237B417 for ; Sat, 30 Mar 2002 21:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2V5A0q91344; Sat, 30 Mar 2002 21:10:00 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 1840437B419 for ; Sat, 30 Mar 2002 21:01:26 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id AFBEBBD2A for ; Sat, 30 Mar 2002 21:01:25 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id VAA18785 for ; Sat, 30 Mar 2002 21:01:25 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2V4xjV38181; Sat, 30 Mar 2002 20:59:45 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: Date: 30 Mar 2002 20:59:45 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36558: support.html#gnats needs a link to Problem Reports 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: 36558 >Category: docs >Synopsis: support.html#gnats needs a link to Problem Reports article. >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: Sat Mar 30 21:10:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: http://www.freebsd.org/support.html#gnats has a list of links to which this should be added: Writing FreeBSD Problem Reports (article) http://www.freebsd.org/doc/en_US.ISO8859-1/articles/problem-reports/article.html (I almost didn't submit this because I fear that the very time-consuming and usually useless "background search" that the article says "should" be done before submitting a PR will discourage too many PR submittals. (I don't see a problem in a growing PR database, though I do see a problem in their not being listed somewhere with a non-submitter's assigned priority/importance value.)) ================ >How-To-Repeat: n/a ================ >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 Sat Mar 30 23:30:11 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AA9837B41E for ; Sat, 30 Mar 2002 23:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2V7U1p15561; Sat, 30 Mar 2002 23:30:01 -0800 (PST) (envelope-from gnats) Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 07F3C37B41E for ; Sat, 30 Mar 2002 23:21:34 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id B7BC6BD2F for ; Sat, 30 Mar 2002 23:21:33 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id XAA08669 for ; Sat, 30 Mar 2002 23:21:33 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id g2V7Jre42696; Sat, 30 Mar 2002 23:19:53 -0800 (PST) (envelope-from swear@blarg.net) Message-Id: <898z89b3vr.z89@localhost.localdomain> Date: 30 Mar 2002 23:19:52 -0800 From: "Gary W. Swearingen" Reply-To: swear@blarg.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: docs/36563: fdisk(8) program doesn't honor -t (test) when using -I. 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: 36563 >Category: docs >Synopsis: fdisk(8) program doesn't honor -t (test) when using -I. >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 30 23:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Gary W. Swearingen >Release: FreeBSD 4.5-STABLE i386 >Organization: none >Environment: n/a ================ >Description: The fdisk(8) program's man page says it doesn't write the partition table when the -t option is used, but it does do so if the -I option is also used, or at least that seems clear to me from the -I code in the "main" function in "/usr/src/sbin/i386/fdisk/fdisk.c" and following the functions calls to write_s0 and write_disk which don't use the "t_flag" to protect against writing the partition table. (The .../pc98/... version doesn't have a -I option.) ================ >How-To-Repeat: If you have a free disk that can have all it's data destroyed, you could try "fdisk -I -t ". ================ >Fix: (untested) --- /usr/src/sbin/i386/fdisk/fdisk.c Sat Mar 2 15:58:41 2002 +++ /tmp/fdisk.c Sat Mar 30 23:16:14 2002 @@ -346,7 +346,10 @@ dos(partp); if (v_flag) print_s0(-1); - write_s0(); + if (!t_flag) + { + write_s0(); + } exit(0); } if (f_flag) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message