From owner-svn-doc-head@FreeBSD.ORG Sun May 20 00:37:20 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8150A106566C; Sun, 20 May 2012 00:37:20 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2EA3B8FC08; Sun, 20 May 2012 00:37:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4K0bJ6k055650; Sun, 20 May 2012 00:37:19 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4K0bJwn055648; Sun, 20 May 2012 00:37:19 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205200037.q4K0bJwn055648@svn.freebsd.org> From: Glen Barber Date: Sun, 20 May 2012 00:37:19 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: svn commit: r38842 - head/en_US.ISO8859-1/books/fdp-primer/overview X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 00:37:20 -0000 Author: gjb Date: Sun May 20 00:37:19 2012 New Revision: 38842 URL: http://svn.freebsd.org/changeset/doc/38842 Log: Update the FDP Primer Overview chapter to reflect the CVS->SVN repository conversion: - Update an overview of where (as in, what repository) various parts of the documentation project are located. - Update CVS->Subversion/svn where necessary. - Remove references to CVSup, CTM. - Update commands for checking out the documentation tree. - In an example, prefer to use 'svn export foo bar' instead of 'cp -R foo bar', since the latter will also copy '.svn' directories (if they exist). 'svn export' is much cleaner, and will produce a diff that makes sense. Modified: head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sat May 19 23:49:28 2012 (r38841) +++ head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sun May 20 00:37:19 2012 (r38842) @@ -133,15 +133,21 @@ - These four groups of documentation are all available in the - FreeBSD CVS tree. This means that the logs of changes to these - files are visible to anyone, and anyone can use a program such - as CVSup or - CTM to keep local copies of this - documentation. + The documentation for the web site, &os; Handbook, and FAQ + are available in the doc/ Subversion + repository, which is located at + svn://svn.FreeBSD.org/doc/. + + Manual pages are available in the src/ + Subversion repository, which is available at + svn://svn.FreeBSD.org/base/. + + This means that the logs of changes to these + files are visible to anyone, and anyone can use + svn to view the changes. In addition, many people have written tutorials or other web - sites relating to FreeBSD. Some of these are stored in the CVS + sites relating to FreeBSD. Some of these are stored in the Subversion repository as well (where the author has agreed to this). In other cases the author has decided to keep his documentation separate from the main FreeBSD repository. The FDP endeavors to @@ -158,11 +164,7 @@ How to maintain an up-to-date local copy of the FreeBSD documentation by maintaining a local copy of the - FreeBSD CVS repository (using CVS - and either CVSup or - CTM) or by using - CVSup to download just a - checked-out copy. + FreeBSD Subversion repository using svn. @@ -191,23 +193,23 @@ Get a local copy of the FreeBSD doc - tree. Either use CVSup in checkout mode - to do this, or get a full copy of the CVS repository - locally. - - If you have the CVS repository locally then as a minimum - you will need to checkout the - doc/share, and - doc/en_US.ISO8859-1/share - directories. + tree using svn. - &prompt.user; cvs checkout doc/share -&prompt.user; cvs checkout doc/en_US.ISO8859-1/share + If network bandwidth or local drive space is a concern, + then at minimum, the head/share and + head/language/share + directories will need to be checked out. For + example: + + &prompt.user; mkdir -p head/share +&prompt.user; mkdir -p head/en_US.ISO8859-1/share +&prompt.user; svn checkout svn://svn.freebsd.org/doc/head/share head/share +&prompt.user; svn checkout svn://svn.freebsd.org/doc/head/en_US.ISO8859-1/share head/en_US.ISO8859-1/share If you have plenty of disk space then you could check out everything. - &prompt.user; cvs checkout doc + &prompt.user; svn checkout svn://svn.freebsd.org/doc/head head @@ -225,7 +227,7 @@ Check out the articles directory. - &prompt.user; cvs checkout doc/en_US.ISO8859-1/articles + &prompt.user; svn checkout svn://svn.freebsd.org/doc/head/en_US.ISO8859-1/articles @@ -234,17 +236,17 @@ belongs in a directory called vpn-w2k. - &prompt.user; cd doc/en_US.ISO8859-1/articles -&prompt.user; cp -R committers-guide vpn-w2k + &prompt.user; cd head/en_US.ISO8859-1/articles +&prompt.user; svn export committers-guide vpn-w2k If you wanted to edit an existing document, such as the FAQ, which is in - doc/en_US.ISO8859-1/books/faq you would + head/en_US.ISO8859-1/books/faq you would check it out of the repository like this. - &prompt.user; cvs checkout doc/en_US.ISO8859-1/books/faq + &prompt.user; svn checkout svn://svn.freebsd.org/doc/head/en_US.ISO8859-1/books/faq @@ -268,7 +270,7 @@ pdf, and rtf are supported. The most up to date list of supported formats is listed at the top of the - doc/share/mk/doc.docbook.mk file. Make + head/share/mk/doc.docbook.mk file. Make sure to use quotes around the list of formats when you build more than one format with a single command. From owner-svn-doc-head@FreeBSD.ORG Sun May 20 00:50:16 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B428106564A; Sun, 20 May 2012 00:50:16 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D0C568FC0A; Sun, 20 May 2012 00:50:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4K0oFPq056235; Sun, 20 May 2012 00:50:15 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4K0oFrq056231; Sun, 20 May 2012 00:50:15 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205200050.q4K0oFrq056231@svn.freebsd.org> From: Glen Barber Date: Sun, 20 May 2012 00:50:15 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: svn commit: r38843 - in head/en_US.ISO8859-1/books/fdp-primer: examples sgml-markup X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 00:50:16 -0000 Author: gjb Date: Sun May 20 00:50:15 2012 New Revision: 38843 URL: http://svn.freebsd.org/changeset/doc/38843 Log: - Update CVS->Subversion - Replace URLs to CVSWeb->SVNWeb - Single-word change to the appendix, replacing 'collection' with 'repository' Modified: head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml Sun May 20 00:37:19 2012 (r38842) +++ head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml Sun May 20 00:50:15 2012 (r38843) @@ -42,9 +42,9 @@ elements you might want to use, particularly in your document's front matter. For more examples of DocBook markup you should examine the SGML source for this and other documents, available in the - CVSup doc collection, or + svn doc repository, or available online starting at - . + . To avoid confusion, these examples use the standard DocBook 4.1 DTD rather than the FreeBSD extension. They also use the stock stylesheets Modified: head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sun May 20 00:37:19 2012 (r38842) +++ head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sun May 20 00:50:15 2012 (r38843) @@ -747,9 +747,9 @@ The &os; extensions are not (currently) in the - Ports Collection. They are stored in the &os; CVS tree, + Ports Collection. They are stored in the &os; Subversion tree, as doc/share/sgml/freebsd.dtd. + url="http://svnweb.FreeBSD.org/doc/head/share/sgml/freebsd.dtd">head/share/sgml/freebsd.dtd. @@ -2414,7 +2414,7 @@ This is the file called 'foo2' the .png extension. These are the only formats in which - images should be committed to the CVS repository. + images should be committed to the Subversion repository. Use the right format for the right image. It is to be expected that your documentation will have a mix of EPS and From owner-svn-doc-head@FreeBSD.ORG Sun May 20 03:40:38 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26CFD106567E; Sun, 20 May 2012 03:40:38 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 077EE8FC08; Sun, 20 May 2012 03:40:38 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4K3ebbS064237; Sun, 20 May 2012 03:40:37 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4K3ebJ7064235; Sun, 20 May 2012 03:40:37 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205200340.q4K3ebJ7064235@svn.freebsd.org> From: Warren Block Date: Sun, 20 May 2012 03:40:37 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: svn commit: r38844 - head/en_US.ISO8859-1/books/fdp-primer/doc-build X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 03:40:38 -0000 Author: wblock Date: Sun May 20 03:40:37 2012 New Revision: 38844 URL: http://svn.freebsd.org/changeset/doc/38844 Log: Fix title capitalization and markup. Modified: head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sun May 20 00:50:15 2012 (r38843) +++ head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sun May 20 03:40:37 2012 (r38844) @@ -105,7 +105,7 @@ - Understanding Makefiles in the Documentation tree + Understanding <filename>Makefile</filename>s in the Documentation Tree There are three main types of Makefiles in the FreeBSD Documentation Project tree. @@ -134,7 +134,7 @@ - Subdirectory Makefiles + Subdirectory <filename>Makefile</filename>s These Makefiles usually take the form of: @@ -192,7 +192,7 @@ DOC_PREFIX?= ${.CURDIR}/.. - Documentation Makefiles + Documentation <filename>Makefile</filename>s These Makefiles set a bunch of make variables that describe how to @@ -248,7 +248,7 @@ DOC_PREFIX?= ${.CURDIR}/../../.. - FreeBSD Documentation Project make includes + FreeBSD Documentation Project <application>Make</application> Includes This is best explained by inspection of the code. Here are the system include files: @@ -279,7 +279,7 @@ DOC_PREFIX?= ${.CURDIR}/../../.. - doc.project.mk + <filename>doc.project.mk</filename> By inspection: @@ -345,7 +345,7 @@ PRI_LANG?= en_US.ISO8859-1 - doc.subdir.mk + <filename>doc.subdir.mk</filename> This is too long to explain by inspection, you should be able to work it out with the knowledge gained from the @@ -379,7 +379,7 @@ PRI_LANG?= en_US.ISO8859-1 - Targets and macros + Targets and Macros Dependencies are described by target: @@ -429,7 +429,7 @@ PRI_LANG?= en_US.ISO8859-1 up. - Provided targets + Provided Targets @@ -454,7 +454,7 @@ PRI_LANG?= en_US.ISO8859-1 - More on conditionals + More on Conditionals @@ -476,7 +476,7 @@ PRI_LANG?= en_US.ISO8859-1 - Looping constructs in make (.for) + Looping Constructs in <command>make (.for)</command> .for provides a way to repeat a set of instructions for each space-separated element in a From owner-svn-doc-head@FreeBSD.ORG Sun May 20 03:43:45 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D1D2106566B; Sun, 20 May 2012 03:43:45 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D5DD88FC0A; Sun, 20 May 2012 03:43:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4K3hisl064403; Sun, 20 May 2012 03:43:44 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4K3hiib064401; Sun, 20 May 2012 03:43:44 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205200343.q4K3hiib064401@svn.freebsd.org> From: Warren Block Date: Sun, 20 May 2012 03:43:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: svn commit: r38845 - head/en_US.ISO8859-1/books/fdp-primer/doc-build X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 03:43:45 -0000 Author: wblock Date: Sun May 20 03:43:43 2012 New Revision: 38845 URL: http://svn.freebsd.org/changeset/doc/38845 Log: Whitespace-only changes, wrap long lines and fix indents. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sun May 20 03:40:37 2012 (r38844) +++ head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sun May 20 03:43:43 2012 (r38845) @@ -105,7 +105,9 @@ - Understanding <filename>Makefile</filename>s in the Documentation Tree + + Understanding <filename>Makefile</filename>s in the + Documentation Tree There are three main types of Makefiles in the FreeBSD Documentation Project tree. @@ -248,7 +250,8 @@ DOC_PREFIX?= ${.CURDIR}/../../.. - FreeBSD Documentation Project <application>Make</application> Includes + FreeBSD Documentation Project + <application>Make</application> Includes This is best explained by inspection of the code. Here are the system include files: @@ -397,7 +400,7 @@ PRI_LANG?= en_US.ISO8859-1 A special dependency .USE defines the equivalent of a macro. -_SUBDIRUSE: .USE + _SUBDIRUSE: .USE .for entry in ${SUBDIR} @${ECHO} "===> ${DIRPRFX}${entry}" @(cd ${.CURDIR}/${entry} && \ @@ -416,7 +419,7 @@ PRI_LANG?= en_US.ISO8859-1 contains the name of the target currently being built. -clean: _SUBDIRUSE + clean: _SUBDIRUSE rm -f ${CLEANFILES} In the above, clean will use @@ -476,14 +479,15 @@ PRI_LANG?= en_US.ISO8859-1 - Looping Constructs in <command>make (.for)</command> + Looping Constructs in <command>make + (.for)</command> .for provides a way to repeat a set of instructions for each space-separated element in a variable. It does this by assigning a variable to contain the current element in the list being examined. -_SUBDIRUSE: .USE + _SUBDIRUSE: .USE .for entry in ${SUBDIR} @${ECHO} "===> ${DIRPRFX}${entry}" @(cd ${.CURDIR}/${entry} && \ From owner-svn-doc-head@FreeBSD.ORG Sun May 20 03:49:06 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB906106564A; Sun, 20 May 2012 03:49:06 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A5A6F8FC0A; Sun, 20 May 2012 03:49:06 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4K3n6we064693; Sun, 20 May 2012 03:49:06 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4K3n6ds064691; Sun, 20 May 2012 03:49:06 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205200349.q4K3n6ds064691@svn.freebsd.org> From: Warren Block Date: Sun, 20 May 2012 03:49:06 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: svn commit: r38846 - head/en_US.ISO8859-1/books/fdp-primer/examples X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 03:49:06 -0000 Author: wblock Date: Sun May 20 03:49:06 2012 New Revision: 38846 URL: http://svn.freebsd.org/changeset/doc/38846 Log: Fix title capitalization. Modified: head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml Sun May 20 03:43:43 2012 (r38845) +++ head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml Sun May 20 03:49:06 2012 (r38846) @@ -164,7 +164,7 @@ Using Jade - Converting DocBook to HTML (one large file) + Converting DocBook to HTML (One Large File) &prompt.user; jade -V nochunks \ -c /usr/local/share/sgml/docbook/dsssl/modular/catalog \ @@ -208,7 +208,7 @@ - Converting DocBook to HTML (several small files) + Converting DocBook to HTML (Several Small Files) &prompt.user; jade \ -c /usr/local/share/sgml/docbook/dsssl/modular/catalog \ From owner-svn-doc-head@FreeBSD.ORG Sun May 20 04:02:22 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 56BDF106564A; Sun, 20 May 2012 04:02:22 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 043928FC08; Sun, 20 May 2012 04:02:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4K42Ldh065315; Sun, 20 May 2012 04:02:21 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4K42LPB065313; Sun, 20 May 2012 04:02:21 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205200402.q4K42LPB065313@svn.freebsd.org> From: Warren Block Date: Sun, 20 May 2012 04:02:21 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: svn commit: r38847 - head/en_US.ISO8859-1/books/fdp-primer/examples X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 04:02:22 -0000 Author: wblock Date: Sun May 20 04:02:21 2012 New Revision: 38847 URL: http://svn.freebsd.org/changeset/doc/38847 Log: Whitespace-only fixes, mostly wrapping long lines. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml Sun May 20 03:49:06 2012 (r38846) +++ head/en_US.ISO8859-1/books/fdp-primer/examples/appendix.sgml Sun May 20 04:02:21 2012 (r38847) @@ -33,24 +33,25 @@ Examples - This appendix contains example SGML files and command lines you can - use to convert them from one output format to another. If you have - successfully installed the Documentation Project tools then you should - be able to use these examples directly. - - These examples are not exhaustive—they do not contain all the - elements you might want to use, particularly in your document's front - matter. For more examples of DocBook markup you should examine the SGML - source for this and other documents, available in the - svn doc repository, or - available online starting at + This appendix contains example SGML files and command lines + you can use to convert them from one output format to another. If + you have successfully installed the Documentation Project tools + then you should be able to use these examples directly. + + These examples are not exhaustive—they do not contain + all the elements you might want to use, particularly in your + document's front matter. For more examples of DocBook markup you + should examine the SGML source for this and other documents, + available in the svn + doc repository, or available online starting at . - To avoid confusion, these examples use the standard DocBook 4.1 DTD - rather than the FreeBSD extension. They also use the stock stylesheets - distributed by Norm Walsh, rather than any customizations made to those - stylesheets by the FreeBSD Documentation Project. This makes them more - useful as generic DocBook examples. + To avoid confusion, these examples use the standard DocBook + 4.1 DTD rather than the FreeBSD extension. They also use the + stock stylesheets distributed by Norm Walsh, rather than any + customizations made to those stylesheets by the FreeBSD + Documentation Project. This makes them more useful as generic + DocBook examples. DocBook <sgmltag>book</sgmltag> @@ -152,20 +153,21 @@ Producing Formatted Output - This section assumes that you have installed the software listed in - the textproc/docproj port, either by hand, or by - using the port. Further, it is assumed that your software is installed - in subdirectories under /usr/local/, and the - directory where binaries have been installed is in your - PATH. Adjust the paths as necessary for your - system. + This section assumes that you have installed the software + listed in the textproc/docproj port, either by + hand, or by using the port. Further, it is assumed that your + software is installed in subdirectories under + /usr/local/, and the directory where + binaries have been installed is in your PATH. + Adjust the paths as necessary for your system. Using Jade Converting DocBook to HTML (One Large File) - + &prompt.user; jade -V nochunks \ -c /usr/local/share/sgml/docbook/dsssl/modular/catalog \ -c /usr/local/share/sgml/docbook/catalog \ @@ -175,41 +177,48 @@ - Specifies the nochunks parameter to the - stylesheets, forcing all output to be written to - the standard output (using Norm Walsh's stylesheets). + Specifies the nochunks parameter + to the stylesheets, forcing all output to be written to + the standard output (using Norm Walsh's + stylesheets). - Specifies the catalogs that Jade will need to process. - Three catalogs are required. The first is a catalog that - contains information about the DSSSL stylesheets. The second - contains information about the DocBook DTD. The third contains - information specific to Jade. + Specifies the catalogs that + Jade will need to process. + Three catalogs are required. The first is a catalog + that contains information about the DSSSL stylesheets. + The second contains information about the DocBook DTD. + The third contains information specific to + Jade. - Specifies the full path to the DSSSL stylesheet that Jade - will use when processing the document. + Specifies the full path to the DSSSL stylesheet that + Jade will use when processing + the document. - Instructs Jade to perform a - transformation from one DTD to another. In - this case, the input is being transformed from the DocBook DTD - to the HTML DTD. + Instructs Jade to perform + a transformation from one DTD to + another. In this case, the input is being transformed + from the DocBook DTD to the HTML DTD. - Specifies the file that Jade should process, and redirects - output to the specified .html file. + Specifies the file that + Jade should process, and + redirects output to the specified + .html file. - Converting DocBook to HTML (Several Small Files) - + Converting DocBook to HTML (Several Small + Files) + &prompt.user; jade \ -c /usr/local/share/sgml/docbook/dsssl/modular/catalog \ -c /usr/local/share/sgml/docbook/catalog \ @@ -219,42 +228,48 @@ - Specifies the catalogs that Jade will need to process. - Three catalogs are required. The first is a catalog that - contains information about the DSSSL stylesheets. The second - contains information about the DocBook DTD. The third contains - information specific to Jade. + Specifies the catalogs that + Jade will need to process. + Three catalogs are required. The first is a catalog + that contains information about the DSSSL stylesheets. + The second contains information about the DocBook DTD. + The third contains information specific to Jade. - Specifies the full path to the DSSSL stylesheet that Jade - will use when processing the document. + Specifies the full path to the DSSSL stylesheet that + Jade will use when processing + the document. - Instructs Jade to perform a - transformation from one DTD to another. In - this case, the input is being transformed from the DocBook DTD - to the HTML DTD. + Instructs Jade to perform + a transformation from one DTD to + another. In this case, the input is being transformed + from the DocBook DTD to the HTML DTD. - Specifies the file that Jade should process. The - stylesheets determine how the individual HTML files will be - named, and the name of the root file (i.e., the - one that contains the start of the document. + Specifies the file that + Jade should process. The + stylesheets determine how the individual HTML files will + be named, and the name of the root file + (i.e., the one that contains the start of the + document. - This example may still only generate one HTML file, depending on - the structure of the document you are processing, and the - stylesheet's rules for splitting output. + This example may still only generate one HTML file, + depending on the structure of the document you are + processing, and the stylesheet's rules for splitting + output. Converting DocBook to Postscript - The source SGML file must be converted to a &tex; file. + The source SGML file must be converted to a &tex; + file. &prompt.user; jade -V tex-backend \ -c /usr/local/share/sgml/docbook/dsssl/modular/catalog \ @@ -268,51 +283,56 @@ Customizes the stylesheets to use various options specific to producing output for &tex;. - + - Specifies the catalogs that Jade will need to process. Three - catalogs are required. The first is a catalog that contains - information about the DSSSL stylesheets. The second contains - information about the DocBook DTD. The third contains - information specific to Jade. + Specifies the catalogs that + Jade will need to process. + Three catalogs are required. The first is a catalog + that contains information about the DSSSL stylesheets. + The second contains information about the DocBook DTD. + The third contains information specific to Jade. Specifies the full path to the DSSSL stylesheet that - Jade will use when processing the document. + Jade will use when processing + the document. - Instructs Jade to convert the output to &tex;. + Instructs Jade to convert + the output to &tex;. - The generated .tex file must now be run - through tex, specifying the + The generated .tex file must now be + run through tex, specifying the &jadetex macro package. - + &prompt.user; tex "&jadetex" file.tex You have to run tex at - least three times. The first run processes the - document, and determines areas of the document which are referenced - from other parts of the document, for use in indexing, and so - on. + least three times. The first run processes the + document, and determines areas of the document which are + referenced from other parts of the document, for use in + indexing, and so on. Do not be alarmed if you see warning messages such as - LaTeX Warning: Reference `136' on page 5 undefined on input - line 728. at this point. - - The second run reprocesses the document now that certain pieces - of information are known (such as the document's page length). This - allows index entries and other cross-references to be fixed - up. + LaTeX Warning: Reference `136' on page 5 + undefined on input line 728. at this + point. + + The second run reprocesses the document now that certain + pieces of information are known (such as the document's page + length). This allows index entries and other + cross-references to be fixed up. + + The third pass performs any final cleanup + necessary. - The third pass performs any final cleanup necessary. - The output from this stage will be file.dvi. - + Finally, run dvips to convert the .dvi file to Postscript. @@ -327,17 +347,18 @@ jade command line (). - When the .tex file has been generated you - run pdfTeX. However, use the &pdfjadetex macro package - instead. + When the .tex file has been + generated you run pdfTeX. + However, use the &pdfjadetex macro + package instead. &prompt.user; pdftex "&pdfjadetex" file.tex Again, run this command three times. This will generate - file.pdf, which does - not need to be processed any further. + file.pdf, + which does not need to be processed any further. From owner-svn-doc-head@FreeBSD.ORG Sun May 20 04:05:36 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B24C106566B; Sun, 20 May 2012 04:05:36 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B48BE8FC12; Sun, 20 May 2012 04:05:34 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4K45YQd065493; Sun, 20 May 2012 04:05:34 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4K45X7i065491; Sun, 20 May 2012 04:05:33 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205200405.q4K45X7i065491@svn.freebsd.org> From: Warren Block Date: Sun, 20 May 2012 04:05:33 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: svn commit: r38848 - head/en_US.ISO8859-1/books/fdp-primer/overview X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 04:05:36 -0000 Author: wblock Date: Sun May 20 04:05:33 2012 New Revision: 38848 URL: http://svn.freebsd.org/changeset/doc/38848 Log: Whitespace-only fixes, wrapping long lines. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sun May 20 04:02:21 2012 (r38847) +++ head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sun May 20 04:05:33 2012 (r38848) @@ -147,12 +147,12 @@ svn to view the changes. In addition, many people have written tutorials or other web - sites relating to FreeBSD. Some of these are stored in the Subversion - repository as well (where the author has agreed to this). In - other cases the author has decided to keep his documentation - separate from the main FreeBSD repository. The FDP endeavors to - provide links to as much of this documentation as - possible. + sites relating to FreeBSD. Some of these are stored in the + Subversion repository as well (where the author has agreed to + this). In other cases the author has decided to keep his + documentation separate from the main FreeBSD repository. The + FDP endeavors to provide links to as much of this documentation + as possible. @@ -163,8 +163,9 @@ How to maintain an up-to-date local copy of the FreeBSD - documentation by maintaining a local copy of the - FreeBSD Subversion repository using svn. + documentation by maintaining a local copy of the FreeBSD + Subversion repository using + svn. @@ -243,8 +244,8 @@ If you wanted to edit an existing document, such as the FAQ, which is in - head/en_US.ISO8859-1/books/faq you would - check it out of the repository like this. + head/en_US.ISO8859-1/books/faq you + would check it out of the repository like this. &prompt.user; svn checkout svn://svn.freebsd.org/doc/head/en_US.ISO8859-1/books/faq @@ -270,9 +271,9 @@ pdf, and rtf are supported. The most up to date list of supported formats is listed at the top of the - head/share/mk/doc.docbook.mk file. Make - sure to use quotes around the list of formats when you build - more than one format with a single command. + head/share/mk/doc.docbook.mk file. + Make sure to use quotes around the list of formats when you + build more than one format with a single command. For example, to convert the document to html only, you would use: From owner-svn-doc-head@FreeBSD.ORG Sun May 20 04:14:08 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46445106566B; Sun, 20 May 2012 04:14:08 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 181208FC14; Sun, 20 May 2012 04:14:08 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4K4E7Gj065898; Sun, 20 May 2012 04:14:07 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4K4E7EQ065896; Sun, 20 May 2012 04:14:07 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205200414.q4K4E7EQ065896@svn.freebsd.org> From: Warren Block Date: Sun, 20 May 2012 04:14:07 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: svn commit: r38849 - head/en_US.ISO8859-1/books/fdp-primer/sgml-markup X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 04:14:08 -0000 Author: wblock Date: Sun May 20 04:14:07 2012 New Revision: 38849 URL: http://svn.freebsd.org/changeset/doc/38849 Log: Fix title capitalization. Modified: head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sun May 20 04:05:33 2012 (r38848) +++ head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sun May 20 04:14:07 2012 (r38849) @@ -53,7 +53,7 @@ the &a.doc;. - Inline vs. Block + Inline Versus Block In the remainder of this document, when describing elements, inline means that the element can occur @@ -147,7 +147,7 @@ <sgmltag>h1</sgmltag>, <sgmltag>h2</sgmltag>, - etc. + Etc. Use: @@ -452,7 +452,7 @@ Using <literal>rowspan</literal> and - <literal>colspan</literal> together + colspan Together Use: @@ -660,7 +660,7 @@ after a # symbol. - Linking to A Named Part of Another Document + Linking to a Named Part of Another Document Assume that the para1 example resides in a document called @@ -677,7 +677,7 @@ #). - Linking to A Named Part of the Same Document + Linking to a Named Part of the Same Document Assume that the para1 example resides in this document: @@ -708,7 +708,7 @@ presented. - Formal vs. Informal + Formal Versus Informal Some elements may exist in two forms, formal and informal. @@ -1945,8 +1945,8 @@ This is the file called 'foo2' /usr/ports. - <sgmltag>filename</sgmltag> tag with - <literal>package</literal> role + <sgmltag>filename</sgmltag> Tag with + <literal>package</literal> Role Use: From owner-svn-doc-head@FreeBSD.ORG Sun May 20 04:19:29 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EED69106566B; Sun, 20 May 2012 04:19:29 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D97088FC16; Sun, 20 May 2012 04:19:29 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4K4JSbB066195; Sun, 20 May 2012 04:19:28 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4K4JS2G066193; Sun, 20 May 2012 04:19:28 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205200419.q4K4JS2G066193@svn.freebsd.org> From: Warren Block Date: Sun, 20 May 2012 04:19:28 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: svn commit: r38850 - head/en_US.ISO8859-1/books/fdp-primer/sgml-markup X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 04:19:30 -0000 Author: wblock Date: Sun May 20 04:19:28 2012 New Revision: 38850 URL: http://svn.freebsd.org/changeset/doc/38850 Log: Whitespace-only fixes, mostly wrapping long lines. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sun May 20 04:14:07 2012 (r38849) +++ head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sun May 20 04:19:28 2012 (r38850) @@ -747,8 +747,8 @@ The &os; extensions are not (currently) in the - Ports Collection. They are stored in the &os; Subversion tree, - as head/share/sgml/freebsd.dtd. @@ -827,6 +827,7 @@ + <book> <bookinfo> <title>Your Title Here</title> @@ -876,6 +877,7 @@ + <article> <articleinfo> <title>Your title here</title> @@ -2414,7 +2416,8 @@ This is the file called 'foo2' the .png extension. These are the only formats in which - images should be committed to the Subversion repository. + images should be committed to the Subversion + repository. Use the right format for the right image. It is to be expected that your documentation will have a mix of EPS and From owner-svn-doc-head@FreeBSD.ORG Sun May 20 04:38:04 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5DF1B106564A; Sun, 20 May 2012 04:38:04 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 481578FC0A; Sun, 20 May 2012 04:38:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4K4c4HD067090; Sun, 20 May 2012 04:38:04 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4K4c44x067088; Sun, 20 May 2012 04:38:04 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205200438.q4K4c44x067088@svn.freebsd.org> From: Warren Block Date: Sun, 20 May 2012 04:38:04 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: svn commit: r38851 - head/en_US.ISO8859-1/books/fdp-primer/sgml-markup X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 04:38:04 -0000 Author: wblock Date: Sun May 20 04:38:03 2012 New Revision: 38851 URL: http://svn.freebsd.org/changeset/doc/38851 Log: Turns out "etc." is hideous and no matter from which angle you look at it, it's even more hideous. Modified: head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sun May 20 04:19:28 2012 (r38850) +++ head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sun May 20 04:38:03 2012 (r38851) @@ -147,7 +147,7 @@ <sgmltag>h1</sgmltag>, <sgmltag>h2</sgmltag>, - Etc. + and Other Header Tags Use: From owner-svn-doc-head@FreeBSD.ORG Sun May 20 04:45:01 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D32B0106566C for ; Sun, 20 May 2012 04:45:01 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from glenbarber.us (onyx.glenbarber.us [199.48.134.227]) by mx1.freebsd.org (Postfix) with SMTP id 97EF38FC1A for ; Sun, 20 May 2012 04:44:58 +0000 (UTC) Received: (qmail 12966 invoked by uid 0); 20 May 2012 00:44:58 -0400 Received: from unknown (HELO glenbarber.us) (76.124.49.145) by 0 with SMTP; 20 May 2012 00:44:58 -0400 Date: Sun, 20 May 2012 00:44:56 -0400 From: Glen Barber To: Warren Block Cc: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Message-ID: <20120520044456.GM1396@glenbarber.us> References: <201205200438.q4K4c44x067088@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="3CAnR4CLEnEWqRMR" Content-Disposition: inline In-Reply-To: <201205200438.q4K4c44x067088@svn.freebsd.org> X-Operating-System: FreeBSD 10.0-CURRENT amd64 User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: svn commit: r38851 - head/en_US.ISO8859-1/books/fdp-primer/sgml-markup X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 04:45:01 -0000 --3CAnR4CLEnEWqRMR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 20, 2012 at 04:38:04AM +0000, Warren Block wrote: > Author: wblock > Date: Sun May 20 04:38:03 2012 > New Revision: 38851 > URL: http://svn.freebsd.org/changeset/doc/38851 >=20 > Log: > Turns out "etc." is hideous and no matter from which angle you look at > it, it's even more hideous. >=20 > Modified: > head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml >=20 > Modified: head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sun Ma= y 20 04:19:28 2012 (r38850) > +++ head/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sun Ma= y 20 04:38:03 2012 (r38851) > @@ -147,7 +147,7 @@ > =20 > > <sgmltag>h1</sgmltag>, <sgmltag>h2</sgmltag>, > - Etc. > + and Other Header Tags > =20 Thanks! :) Glen --3CAnR4CLEnEWqRMR Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQEcBAEBCAAGBQJPuHbIAAoJEFJPDDeguUaj6NMH/1y3hqN8EEMXrhh1KMq/cJu6 aioC+dKgHF+/y+XQwaZJyFJOg1RLGgPGxiPnjfd8jMB5KavBfP6/MQLnmFMO/5ID mxHYemtjcYDUj8J8NWkiXOsBe+GVWJOyawpKvV1Tf5QJmwL2XlvLdUbfLJKioSp7 CjxChB3OSetFEmhz6VeY5n7EDlgX3DWGoD0fmG0xK0r/eSb3kYhsMTU3UpcApRrx w6UfWqEtcy5fk9J0xDi6y98pk2MAvio65+Tdb+Ily8jZpwS2LN8ClHZYsbsS6FUD ph4mds2Om+7pPy9N3WFuGMKEDbc60RXT1XePOHpxONsRNDypl0OO3oGPZXglNVE= =w0Gj -----END PGP SIGNATURE----- --3CAnR4CLEnEWqRMR-- From owner-svn-doc-head@FreeBSD.ORG Sun May 20 14:01:41 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 227E71065670; Sun, 20 May 2012 14:01:41 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C28B88FC08; Sun, 20 May 2012 14:01:40 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4KE1eRS095707; Sun, 20 May 2012 14:01:40 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4KE1d2b095614; Sun, 20 May 2012 14:01:39 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201205201401.q4KE1d2b095614@svn.freebsd.org> From: Rene Ladan Date: Sun, 20 May 2012 14:01:39 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38852 - in head/nl_NL.ISO8859-1: . articles articles/contributing articles/contributing-ports articles/explaining-bsd articles/problem-reports articles/solid-state books books/handbook... X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 14:01:41 -0000 Author: rene Date: Sun May 20 14:01:38 2012 New Revision: 38852 URL: http://svn.freebsd.org/changeset/doc/38852 Log: Administrative-only commit (no content changes): - replace all SRCID values by their SVN equivalents (use 0 for nl_NL.ISO8859-1/books/handbook/bsdinstall/chapter.sgml which is WIP) - remove the last few remaining FreeBSDnl tags - update SOURCE values for new website layout, and correct some values Modified: head/nl_NL.ISO8859-1/Makefile head/nl_NL.ISO8859-1/articles/Makefile head/nl_NL.ISO8859-1/articles/Makefile.inc head/nl_NL.ISO8859-1/articles/contributing-ports/Makefile head/nl_NL.ISO8859-1/articles/contributing-ports/article.sgml head/nl_NL.ISO8859-1/articles/contributing/Makefile head/nl_NL.ISO8859-1/articles/contributing/article.sgml head/nl_NL.ISO8859-1/articles/explaining-bsd/Makefile head/nl_NL.ISO8859-1/articles/explaining-bsd/article.sgml head/nl_NL.ISO8859-1/articles/problem-reports/Makefile head/nl_NL.ISO8859-1/articles/problem-reports/article.sgml head/nl_NL.ISO8859-1/articles/solid-state/Makefile head/nl_NL.ISO8859-1/articles/solid-state/article.sgml head/nl_NL.ISO8859-1/books/Makefile head/nl_NL.ISO8859-1/books/Makefile.inc head/nl_NL.ISO8859-1/books/handbook/Makefile head/nl_NL.ISO8859-1/books/handbook/advanced-networking/Makefile head/nl_NL.ISO8859-1/books/handbook/advanced-networking/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/audit/Makefile head/nl_NL.ISO8859-1/books/handbook/audit/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/basics/Makefile head/nl_NL.ISO8859-1/books/handbook/basics/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/bibliography/Makefile head/nl_NL.ISO8859-1/books/handbook/bibliography/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/book.sgml head/nl_NL.ISO8859-1/books/handbook/boot/Makefile head/nl_NL.ISO8859-1/books/handbook/boot/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/bsdinstall/Makefile head/nl_NL.ISO8859-1/books/handbook/bsdinstall/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/chapters.ent head/nl_NL.ISO8859-1/books/handbook/colophon.sgml head/nl_NL.ISO8859-1/books/handbook/config/Makefile head/nl_NL.ISO8859-1/books/handbook/config/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/cutting-edge/Makefile head/nl_NL.ISO8859-1/books/handbook/cutting-edge/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/desktop/Makefile head/nl_NL.ISO8859-1/books/handbook/desktop/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/disks/Makefile head/nl_NL.ISO8859-1/books/handbook/disks/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/dtrace/Makefile head/nl_NL.ISO8859-1/books/handbook/dtrace/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/eresources/Makefile head/nl_NL.ISO8859-1/books/handbook/eresources/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/filesystems/Makefile head/nl_NL.ISO8859-1/books/handbook/filesystems/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/firewalls/Makefile head/nl_NL.ISO8859-1/books/handbook/firewalls/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/geom/Makefile head/nl_NL.ISO8859-1/books/handbook/geom/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/install/Makefile head/nl_NL.ISO8859-1/books/handbook/install/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/introduction/Makefile head/nl_NL.ISO8859-1/books/handbook/introduction/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/jails/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/kernelconfig/Makefile head/nl_NL.ISO8859-1/books/handbook/kernelconfig/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/l10n/Makefile head/nl_NL.ISO8859-1/books/handbook/l10n/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/linuxemu/Makefile head/nl_NL.ISO8859-1/books/handbook/linuxemu/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/mac/Makefile head/nl_NL.ISO8859-1/books/handbook/mac/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/mail/Makefile head/nl_NL.ISO8859-1/books/handbook/mail/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/mirrors/Makefile head/nl_NL.ISO8859-1/books/handbook/mirrors/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/multimedia/Makefile head/nl_NL.ISO8859-1/books/handbook/multimedia/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/network-servers/Makefile head/nl_NL.ISO8859-1/books/handbook/network-servers/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/pgpkeys/Makefile head/nl_NL.ISO8859-1/books/handbook/pgpkeys/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/ports/Makefile head/nl_NL.ISO8859-1/books/handbook/ports/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/Makefile head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/preface/preface.sgml head/nl_NL.ISO8859-1/books/handbook/printing/Makefile head/nl_NL.ISO8859-1/books/handbook/printing/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/security/Makefile head/nl_NL.ISO8859-1/books/handbook/security/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/serialcomms/Makefile head/nl_NL.ISO8859-1/books/handbook/serialcomms/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/txtfiles.ent head/nl_NL.ISO8859-1/books/handbook/users/Makefile head/nl_NL.ISO8859-1/books/handbook/users/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/vinum/Makefile head/nl_NL.ISO8859-1/books/handbook/vinum/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/virtualization/Makefile head/nl_NL.ISO8859-1/books/handbook/virtualization/chapter.sgml head/nl_NL.ISO8859-1/books/handbook/x11/Makefile head/nl_NL.ISO8859-1/books/handbook/x11/chapter.sgml head/nl_NL.ISO8859-1/flyer/Makefile head/nl_NL.ISO8859-1/flyer/flyer.tex head/nl_NL.ISO8859-1/htdocs/Makefile head/nl_NL.ISO8859-1/htdocs/Makefile.inc head/nl_NL.ISO8859-1/htdocs/about.sgml head/nl_NL.ISO8859-1/htdocs/administration.sgml head/nl_NL.ISO8859-1/htdocs/applications.sgml head/nl_NL.ISO8859-1/htdocs/art.sgml head/nl_NL.ISO8859-1/htdocs/availability.sgml head/nl_NL.ISO8859-1/htdocs/community.xsl head/nl_NL.ISO8859-1/htdocs/docs.sgml head/nl_NL.ISO8859-1/htdocs/features.sgml head/nl_NL.ISO8859-1/htdocs/index.xsl head/nl_NL.ISO8859-1/htdocs/internet.sgml head/nl_NL.ISO8859-1/htdocs/logo.sgml head/nl_NL.ISO8859-1/htdocs/mailto.sgml head/nl_NL.ISO8859-1/htdocs/privacy.sgml head/nl_NL.ISO8859-1/htdocs/publish.sgml head/nl_NL.ISO8859-1/htdocs/relnotes.sgml head/nl_NL.ISO8859-1/htdocs/send-pr.sgml head/nl_NL.ISO8859-1/htdocs/support.sgml head/nl_NL.ISO8859-1/htdocs/vendors.html head/nl_NL.ISO8859-1/htdocs/where.sgml head/nl_NL.ISO8859-1/share/sgml/articles.ent head/nl_NL.ISO8859-1/share/sgml/bibliography.sgml head/nl_NL.ISO8859-1/share/sgml/bookinfo.ent head/nl_NL.ISO8859-1/share/sgml/books.ent head/nl_NL.ISO8859-1/share/sgml/catalog head/nl_NL.ISO8859-1/share/sgml/catalog.xml head/nl_NL.ISO8859-1/share/sgml/freebsd.dsl head/nl_NL.ISO8859-1/share/sgml/glossary/freebsd-glossary.sgml head/nl_NL.ISO8859-1/share/sgml/header.l10n.ent head/nl_NL.ISO8859-1/share/sgml/l10n.ent head/nl_NL.ISO8859-1/share/sgml/libcommon.xsl head/nl_NL.ISO8859-1/share/sgml/mailing-lists.ent head/nl_NL.ISO8859-1/share/sgml/mirrors-local.xsl head/nl_NL.ISO8859-1/share/sgml/navibar.l10n.ent head/nl_NL.ISO8859-1/share/sgml/newsgroups.ent head/nl_NL.ISO8859-1/share/sgml/teams.ent head/nl_NL.ISO8859-1/share/sgml/trademarks.ent head/nl_NL.ISO8859-1/share/sgml/trademarks.sgml head/nl_NL.ISO8859-1/share/sgml/transtable-local.xsl head/nl_NL.ISO8859-1/share/sgml/transtable.xml Modified: head/nl_NL.ISO8859-1/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -1,7 +1,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/Makefile -# %SRCID% 1.7 +# %SRCID% 38826 # SUBDIR = articles Modified: head/nl_NL.ISO8859-1/articles/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/articles/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/articles/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -1,7 +1,7 @@ # $FreeBSD$ # %SOURCE% en_US.ISO8859-1/articles/Makefile -# %SRCID% 1.63 +# %SRCID% 38826 SUBDIR = SUBDIR+= contributing Modified: head/nl_NL.ISO8859-1/articles/Makefile.inc ============================================================================== --- head/nl_NL.ISO8859-1/articles/Makefile.inc Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/articles/Makefile.inc Sun May 20 14:01:38 2012 (r38852) @@ -2,6 +2,6 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/articles/Makefile.inc -# %SRCID% 1.4 +# %SRCID% 38826 DESTDIR?= ${DOCDIR}/nl_NL.ISO8859-1/articles/${.CURDIR:T} Modified: head/nl_NL.ISO8859-1/articles/contributing-ports/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/articles/contributing-ports/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/articles/contributing-ports/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -2,7 +2,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/articles/contributing-ports/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # # Article: Contributing to the FreeBSD Ports Collection Modified: head/nl_NL.ISO8859-1/articles/contributing-ports/article.sgml ============================================================================== --- head/nl_NL.ISO8859-1/articles/contributing-ports/article.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/articles/contributing-ports/article.sgml Sun May 20 14:01:38 2012 (r38852) @@ -2,7 +2,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/articles/contributing-ports/article.sgml - %SRCID% 1.12 + %SRCID% 38826 --> - + Modified: head/nl_NL.ISO8859-1/articles/explaining-bsd/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/articles/explaining-bsd/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/articles/explaining-bsd/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -2,7 +2,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/articles/explaining-bsd/Makefile -# %SRCID% 1.6 +# %SRCID% 38826 # # Article: Explaining BSD Modified: head/nl_NL.ISO8859-1/articles/explaining-bsd/article.sgml ============================================================================== --- head/nl_NL.ISO8859-1/articles/explaining-bsd/article.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/articles/explaining-bsd/article.sgml Sun May 20 14:01:38 2012 (r38852) @@ -1,8 +1,8 @@ - - + + Modified: head/nl_NL.ISO8859-1/articles/problem-reports/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/articles/problem-reports/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/articles/problem-reports/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -2,7 +2,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/articles/problem-reports/Makefile -# %SRCID% 1.6 +# %SRCID% 38826 # # Article: Writing FreeBSD Problem Reports Modified: head/nl_NL.ISO8859-1/articles/problem-reports/article.sgml ============================================================================== --- head/nl_NL.ISO8859-1/articles/problem-reports/article.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/articles/problem-reports/article.sgml Sun May 20 14:01:38 2012 (r38852) @@ -1,7 +1,7 @@ Modified: head/nl_NL.ISO8859-1/books/handbook/audit/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/audit/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/audit/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/audit/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= audit/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/audit/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/audit/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/audit/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -3,7 +3,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/audit/chapter.sgml - %SRCID% 1.36 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/bibliography/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/bibliography/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/bibliography/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/bibliography/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= bibliography/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/bibliography/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/bibliography/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/bibliography/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/bibliography/chapter.sgml - %SRCID% 1.92 + %SRCID% 38826 Vertaald door: Siebrand Mazeland --> Modified: head/nl_NL.ISO8859-1/books/handbook/book.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/book.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/book.sgml Sun May 20 14:01:38 2012 (r38852) @@ -2,7 +2,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/book.sgml - %SRCID% 1.180 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/boot/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/boot/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/boot/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/boot/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= boot/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/boot/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/boot/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/boot/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/boot/chapter.sgml - %SRCID% 1.76 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/bsdinstall/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/bsdinstall/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/bsdinstall/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/bsdinstall/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= bsdinstall/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/bsdinstall/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/bsdinstall/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/bsdinstall/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/bsdinstall/chapter.sgml - %SRCID% 1.20 + %SRCID% 0 --> Modified: head/nl_NL.ISO8859-1/books/handbook/chapters.ent ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/chapters.ent Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/chapters.ent Sun May 20 14:01:38 2012 (r38852) @@ -10,7 +10,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/chapters.ent - %SRCID% 1.40 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/colophon.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/colophon.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/colophon.sgml Sun May 20 14:01:38 2012 (r38852) @@ -2,10 +2,9 @@ The FreeBSD Dutch Documentation Project $FreeBSD$ - $FreeBSDnl: doc/nl_NL.ISO8859-1/books/handbook/colophon.sgml,v 1.10 2005/12/31 16:26:39 remko Exp $ %SOURCE% en_US.ISO8859-1/books/handbook/colophon.sgml - %SRCID% 1.9 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/config/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/config/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/config/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/config/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= config/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/config/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/config/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/config/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/config/chapter.sgml - %SRCID% 1.257 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/cutting-edge/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/cutting-edge/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/cutting-edge/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/cutting-edge/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= cutting-edge/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/cutting-edge/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml - %SRCID% 1.258 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/desktop/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/desktop/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/desktop/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/desktop/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= desktop/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/desktop/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/desktop/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/desktop/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/desktop/chapter.sgml - %SRCID% 1.130 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/disks/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/disks/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/disks/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/disks/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= disks/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/disks/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/disks/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/disks/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/disks/chapter.sgml - %SRCID% 1.316 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/dtrace/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/dtrace/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/dtrace/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/dtrace/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= dtrace/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/dtrace/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/dtrace/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/dtrace/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -11,7 +11,7 @@ that might make this chapter too large. $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/dtrace/chapter.sgml - %SRCID% 1.8 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/eresources/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/eresources/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/eresources/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/eresources/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= eresources/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/eresources/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/eresources/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/eresources/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -5,7 +5,7 @@ Vertaald door: Siebrand Mazeland / Rene Ladan %SOURCE% en_US.ISO8859-1/books/handbook/eresources/chapter.sgml - %SRCID% 1.221 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/filesystems/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/filesystems/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/filesystems/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/filesystems/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= filesystems/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/filesystems/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/filesystems/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/filesystems/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -3,7 +3,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/filesystems/chapter.sgml - %SRCID% 1.16 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/firewalls/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/firewalls/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/firewalls/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/firewalls/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= firewalls/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/firewalls/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/firewalls/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/firewalls/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/firewalls/chapter.sgml - %SRCID% 1.100 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/geom/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/geom/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/geom/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/geom/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= geom/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/geom/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/geom/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/geom/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/geom/chapter.sgml - %SRCID% 1.55 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/install/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/install/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/install/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/install/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= install/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/install/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/install/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/install/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/install/chapter.sgml - %SRCID% 1.447 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/introduction/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/introduction/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/introduction/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/introduction/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= introduction/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/introduction/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/introduction/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/introduction/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/introduction/chapter.sgml - %SRCID% 1.145 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/jails/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/jails/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/jails/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/jails/chapter.sgml - %SRCID% 1.27 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/kernelconfig/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/kernelconfig/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/kernelconfig/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/kernelconfig/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= kernelconfig/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/kernelconfig/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/kernelconfig/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/kernelconfig/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/kernelconfig/chapter.sgml - %SRCID% 1.205 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/l10n/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/l10n/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/l10n/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/l10n/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= l10n/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/l10n/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/l10n/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/l10n/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/l10n/chapter.sgml - %SRCID% 1.138 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/linuxemu/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/linuxemu/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/linuxemu/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/linuxemu/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= linuxemu/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/linuxemu/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/linuxemu/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/linuxemu/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/linuxemu/chapter.sgml - %SRCID% 1.147 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/mac/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/mac/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/mac/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/mac/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= mac/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/mac/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/mac/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/mac/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/mac/chapter.sgml - %SRCID% 1.80 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/mail/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/mail/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/mail/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/mail/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= mail/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/mail/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/mail/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/mail/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/mail/chapter.sgml - %SRCID% 1.147 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/mirrors/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/mirrors/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/mirrors/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/mirrors/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= mirrors/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/mirrors/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/mirrors/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/mirrors/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -5,7 +5,7 @@ Vertaald door: Siebrand Mazeland / Rene Ladan %SOURCE% en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml - %SRCID% 1.511 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/multimedia/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/multimedia/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/multimedia/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/multimedia/Makefile -# %SRCID% 1.2 +# %SRCID% 38826 # CHAPTERS= multimedia/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/multimedia/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/multimedia/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/multimedia/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/multimedia/chapter.sgml - %SRCID% 1.144 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/network-servers/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/network-servers/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/network-servers/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -2,10 +2,9 @@ # Build the Handbook with just the content from this chapter. # # $FreeBSD$ -# $FreeBSDnl: nl_NL.ISO8859-1/books/handbook/network-servers/Makefile,v 1.2 2004/12/26 21:39:15 remko Exp $ # # %SOURCE% en_US.ISO8859-1/books/handbook/network-servers/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= network-servers/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/network-servers/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/network-servers/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/network-servers/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml - %SRCID% 1.144 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/pgpkeys/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/pgpkeys/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/pgpkeys/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/pgpkeys/Makefile -# %SRCID% 1.3 +# %SRCID% 38826 # CHAPTERS= pgpkeys/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/pgpkeys/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/pgpkeys/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/pgpkeys/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -2,11 +2,10 @@ The FreeBSD Dutch Documentation Project $FreeBSD$ - $FreeBSDnl: doc/nl_NL.ISO8859-1/books/handbook/pgpkeys/chapter.sgml,v 1.28 2006/01/08 10:06:51 siebrand Exp $ Vertaald door: Siebrand Mazeland %SOURCE% en_US.ISO8859-1/books/handbook/pgpkeys/chapter.sgml - %SRCID% 1.286 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/ppp-and-slip/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= ppp-and-slip/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml - %SRCID% 1.197 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/preface/preface.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/preface/preface.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/preface/preface.sgml Sun May 20 14:01:38 2012 (r38852) @@ -5,7 +5,7 @@ Vertaald door: Remko Lodder %SOURCE% en_US.ISO8859-1/books/handbook/preface/preface.sgml - %SRCID% 1.50 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/printing/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/printing/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/printing/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/printing/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= printing/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/printing/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/printing/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/printing/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/printing/chapter.sgml - %SRCID% 1.124 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/security/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/security/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/security/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/security/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= security/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/security/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/security/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/security/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/security/chapter.sgml - %SRCID% 1.348 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/serialcomms/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/serialcomms/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/serialcomms/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/serialcomms/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= serialcomms/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/serialcomms/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/serialcomms/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/serialcomms/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/serialcomms/chapter.sgml - %SRCID% 1.139 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/txtfiles.ent ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/txtfiles.ent Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/txtfiles.ent Sun May 20 14:01:38 2012 (r38852) @@ -11,7 +11,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/txtfiles.ent - %SRCID% 1.4 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/users/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/users/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/users/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/users/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= users/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/users/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/users/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/users/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/users/chapter.sgml - %SRCID% 1.63 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/vinum/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/vinum/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/vinum/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/vinum/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= vinum/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/vinum/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/vinum/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/vinum/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -10,7 +10,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/vinum/chapter.sgml - %SRCID% 1.49 + %SRCID% 38826 --> Modified: head/nl_NL.ISO8859-1/books/handbook/virtualization/Makefile ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/virtualization/Makefile Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/virtualization/Makefile Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ # $FreeBSD$ # # %SOURCE% en_US.ISO8859-1/books/handbook/virtualization/Makefile -# %SRCID% 1.1 +# %SRCID% 38826 # CHAPTERS= virtualization/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/virtualization/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/virtualization/chapter.sgml Sun May 20 04:38:03 2012 (r38851) +++ head/nl_NL.ISO8859-1/books/handbook/virtualization/chapter.sgml Sun May 20 14:01:38 2012 (r38852) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/virtualization/chapter.sgml - %SRCID% 1.33 + %SRCID% 38826 --> *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-doc-head@FreeBSD.ORG Sun May 20 14:30:15 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 035DB1065672; Sun, 20 May 2012 14:30:15 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E31EF8FC0A; Sun, 20 May 2012 14:30:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4KEUE80097113; Sun, 20 May 2012 14:30:14 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4KEUEdN097111; Sun, 20 May 2012 14:30:14 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201205201430.q4KEUEdN097111@svn.freebsd.org> From: Rene Ladan Date: Sun, 20 May 2012 14:30:14 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38853 - head/nl_NL.ISO8859-1/share/tools/checkupdate X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 14:30:15 -0000 Author: rene Date: Sun May 20 14:30:14 2012 New Revision: 38853 URL: http://svn.freebsd.org/changeset/doc/38853 Log: Let's not receive emails about translation updates based on the frozen CVS repository. Modified: head/nl_NL.ISO8859-1/share/tools/checkupdate/notify Modified: head/nl_NL.ISO8859-1/share/tools/checkupdate/notify ============================================================================== --- head/nl_NL.ISO8859-1/share/tools/checkupdate/notify Sun May 20 14:01:38 2012 (r38852) +++ head/nl_NL.ISO8859-1/share/tools/checkupdate/notify Sun May 20 14:30:14 2012 (r38853) @@ -2,5 +2,4 @@ # # Add your address (relative to FreeBSD.org) here if you want to receive # periodic translation checks for this language -rene remko From owner-svn-doc-head@FreeBSD.ORG Sun May 20 16:15:49 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80E15106564A; Sun, 20 May 2012 16:15:49 +0000 (UTC) (envelope-from bjk@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2A84D8FC0C; Sun, 20 May 2012 16:15:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q4KGFmWS059436; Sun, 20 May 2012 16:15:48 GMT (envelope-from bjk@freebsd.org) Received: from localhost (bjk@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) with ESMTP id q4KGFmdj059433; Sun, 20 May 2012 16:15:48 GMT (envelope-from bjk@freebsd.org) X-Authentication-Warning: freefall.freebsd.org: bjk owned process doing -bs Date: Sun, 20 May 2012 16:15:48 +0000 (UTC) From: Benjamin Kaduk To: Glen Barber In-Reply-To: <201205200037.q4K0bJwn055648@svn.freebsd.org> Message-ID: References: <201205200037.q4K0bJwn055648@svn.freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-doc-head@freebsd.org, svn-doc-all@freebsd.org, doc-committers@freebsd.org Subject: Re: svn commit: r38842 - head/en_US.ISO8859-1/books/fdp-primer/overview X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 16:15:49 -0000 On Sun, 20 May 2012, Glen Barber wrote: > Author: gjb > Date: Sun May 20 00:37:19 2012 > New Revision: 38842 > URL: http://svn.freebsd.org/changeset/doc/38842 > > Log: > Update the FDP Primer Overview chapter to reflect the CVS->SVN > repository conversion: Thanks for stepping up and doing this. > > - Update an overview of where (as in, what repository) various parts > of the documentation project are located. > - Update CVS->Subversion/svn where necessary. > - Remove references to CVSup, CTM. Interestingly, I noted while looking around to remind myself of a few things, that we seem to not document svn as a way to keep src/ up-to-date, in the handbook ("Synchronizing Your Source") -- just CVSup and CTM. Perhaps a todo item? > - Update commands for checking out the documentation tree. > - In an example, prefer to use 'svn export foo bar' instead of > 'cp -R foo bar', since the latter will also copy '.svn' directories > (if they exist). 'svn export' is much cleaner, and will produce > a diff that makes sense. > > Modified: > head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml > > Modified: head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml > ============================================================================== > --- head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sat May 19 23:49:28 2012 (r38841) > +++ head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sun May 20 00:37:19 2012 (r38842) > @@ -133,15 +133,21 @@ > > > > - These four groups of documentation are all available in the > - FreeBSD CVS tree. This means that the logs of changes to these > - files are visible to anyone, and anyone can use a program such > - as CVSup or > - CTM to keep local copies of this > - documentation. > + The documentation for the web site, &os; Handbook, and FAQ > + are available in the doc/ Subversion > + repository, which is located at > + svn://svn.FreeBSD.org/doc/. > + > + Manual pages are available in the src/ > + Subversion repository, which is available at > + svn://svn.FreeBSD.org/base/. > + > + This means that the logs of changes to these > + files are visible to anyone, and anyone can use > + svn to view the changes. > > In addition, many people have written tutorials or other web > - sites relating to FreeBSD. Some of these are stored in the CVS > + sites relating to FreeBSD. Some of these are stored in the Subversion > repository as well (where the author has agreed to this). In > other cases the author has decided to keep his documentation > separate from the main FreeBSD repository. The FDP endeavors to > @@ -191,23 +193,23 @@ > > > Get a local copy of the FreeBSD doc > - tree. Either use CVSup in checkout mode > - to do this, or get a full copy of the CVS repository > - locally. > - > - If you have the CVS repository locally then as a minimum > - you will need to checkout the > - doc/share, and > - doc/en_US.ISO8859-1/share > - directories. > + tree using svn. > > - &prompt.user; cvs checkout doc/share > -&prompt.user; cvs checkout doc/en_US.ISO8859-1/share > + If network bandwidth or local drive space is a concern, > + then at minimum, the head/share and > + head/language/share > + directories will need to be checked out. For > + example: > + > + &prompt.user; mkdir -p head/share > +&prompt.user; mkdir -p head/en_US.ISO8859-1/share > +&prompt.user; svn checkout svn://svn.freebsd.org/doc/head/share head/share > +&prompt.user; svn checkout svn://svn.freebsd.org/doc/head/en_US.ISO8859-1/share head/en_US.ISO8859-1/share The repository URL appears as svn://svn.FreeBSD.org/doc/ above, but is all lowercase here (and a couple other places). My personal preference would be all lowercase, which makes it hard for me to remember exactly when (if ever) the lowercase form of the domain/host name is actually supposed to be used. In any case, we should probably be consistent within the same document. -Ben > > If you have plenty of disk space then you could check > out everything. > > - &prompt.user; cvs checkout doc > + &prompt.user; svn checkout svn://svn.freebsd.org/doc/head head > > > > @@ -225,7 +227,7 @@ > Check out the articles > directory. > > - &prompt.user; cvs checkout doc/en_US.ISO8859-1/articles > + &prompt.user; svn checkout svn://svn.freebsd.org/doc/head/en_US.ISO8859-1/articles > > > > @@ -234,17 +236,17 @@ > belongs in a directory called > vpn-w2k. > > - &prompt.user; cd doc/en_US.ISO8859-1/articles > -&prompt.user; cp -R committers-guide vpn-w2k > + &prompt.user; cd head/en_US.ISO8859-1/articles > +&prompt.user; svn export committers-guide vpn-w2k > > > > If you wanted to edit an existing document, such as the > FAQ, which is in > - doc/en_US.ISO8859-1/books/faq you would > + head/en_US.ISO8859-1/books/faq you would > check it out of the repository like this. > > - &prompt.user; cvs checkout doc/en_US.ISO8859-1/books/faq > + &prompt.user; svn checkout svn://svn.freebsd.org/doc/head/en_US.ISO8859-1/books/faq > > > From owner-svn-doc-head@FreeBSD.ORG Sun May 20 16:40:48 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D24501065677 for ; Sun, 20 May 2012 16:40:48 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from glenbarber.us (onyx.glenbarber.us [199.48.134.227]) by mx1.freebsd.org (Postfix) with SMTP id 928BD8FC19 for ; Sun, 20 May 2012 16:40:48 +0000 (UTC) Received: (qmail 72347 invoked by uid 0); 20 May 2012 12:40:47 -0400 Received: from unknown (HELO glenbarber.us) (76.124.49.145) by 0 with SMTP; 20 May 2012 12:40:47 -0400 Date: Sun, 20 May 2012 12:40:45 -0400 From: Glen Barber To: Benjamin Kaduk Message-ID: <20120520164045.GB1591@glenbarber.us> References: <201205200037.q4K0bJwn055648@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 10.0-CURRENT amd64 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-doc-head@freebsd.org, svn-doc-all@freebsd.org, doc-committers@freebsd.org Subject: Re: svn commit: r38842 - head/en_US.ISO8859-1/books/fdp-primer/overview X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 16:40:48 -0000 On Sun, May 20, 2012 at 04:15:48PM +0000, Benjamin Kaduk wrote: > On Sun, 20 May 2012, Glen Barber wrote: > > > Author: gjb > > Date: Sun May 20 00:37:19 2012 > > New Revision: 38842 > > URL: http://svn.freebsd.org/changeset/doc/38842 > > > > Log: > > Update the FDP Primer Overview chapter to reflect the CVS->SVN > > repository conversion: > > Thanks for stepping up and doing this. > Thanks. :) > > > > - Update an overview of where (as in, what repository) various parts > > of the documentation project are located. > > - Update CVS->Subversion/svn where necessary. > > - Remove references to CVSup, CTM. > > Interestingly, I noted while looking around to remind myself of a few > things, that we seem to not document svn as a way to keep src/ up-to-date, > in the handbook ("Synchronizing Your Source") -- just CVSup and CTM. > Perhaps a todo item? > Definitely a good todo item. I think the main difference with the urgency to update the doc-specific items is mostly due to the lack of SVN->CVS conversion on the backend for csup/cvsup. But we should definitely have Subversion /usr/src documented in the Handbook. [...] > The repository URL appears as svn://svn.FreeBSD.org/doc/ above, but is all > lowercase here (and a couple other places). My personal preference would > be all lowercase, which makes it hard for me to remember exactly when (if > ever) the lowercase form of the domain/host name is actually supposed to > be used. > In any case, we should probably be consistent within the same document. > Thanks for spotting that. It really should be "FreeBSD.org" in uppercase. I'm only aware of one situation where the hostname is case sensitive, which is when setting ControlPath in ~/.ssh/config, where the hostname needs to be, for example, "projcvs.FreeBSD.org". Glen From owner-svn-doc-head@FreeBSD.ORG Sun May 20 18:13:19 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 59620106574B; Sun, 20 May 2012 18:13:19 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 29D108FC12; Sun, 20 May 2012 18:13:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4KIDJbR008158; Sun, 20 May 2012 18:13:19 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4KIDIZs008156; Sun, 20 May 2012 18:13:18 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205201813.q4KIDIZs008156@svn.freebsd.org> From: Glen Barber Date: Sun, 20 May 2012 18:13:18 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38854 - head/en_US.ISO8859-1/books/fdp-primer/overview X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 18:13:19 -0000 Author: gjb Date: Sun May 20 18:13:18 2012 New Revision: 38854 URL: http://svn.freebsd.org/changeset/doc/38854 Log: s/freebsd/FreeBSD Noticed by: bjk Modified: head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sun May 20 14:30:14 2012 (r38853) +++ head/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sun May 20 18:13:18 2012 (r38854) @@ -204,13 +204,13 @@ &prompt.user; mkdir -p head/share &prompt.user; mkdir -p head/en_US.ISO8859-1/share -&prompt.user; svn checkout svn://svn.freebsd.org/doc/head/share head/share -&prompt.user; svn checkout svn://svn.freebsd.org/doc/head/en_US.ISO8859-1/share head/en_US.ISO8859-1/share +&prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head/share head/share +&prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head/en_US.ISO8859-1/share head/en_US.ISO8859-1/share If you have plenty of disk space then you could check out everything. - &prompt.user; svn checkout svn://svn.freebsd.org/doc/head head + &prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head head @@ -228,7 +228,7 @@ Check out the articles directory. - &prompt.user; svn checkout svn://svn.freebsd.org/doc/head/en_US.ISO8859-1/articles + &prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head/en_US.ISO8859-1/articles @@ -247,7 +247,7 @@ head/en_US.ISO8859-1/books/faq you would check it out of the repository like this. - &prompt.user; svn checkout svn://svn.freebsd.org/doc/head/en_US.ISO8859-1/books/faq + &prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head/en_US.ISO8859-1/books/faq From owner-svn-doc-head@FreeBSD.ORG Sun May 20 19:56:01 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 34A37106564A; Sun, 20 May 2012 19:56:01 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 153618FC0A; Sun, 20 May 2012 19:56:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4KJu0Zi012780; Sun, 20 May 2012 19:56:00 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4KJu0pZ012777; Sun, 20 May 2012 19:56:00 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205201956.q4KJu0pZ012777@svn.freebsd.org> From: Warren Block Date: Sun, 20 May 2012 19:56:00 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38855 - in head: en_US.ISO8859-1/htdocs/events share/sgml X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 19:56:01 -0000 Author: wblock Date: Sun May 20 19:56:00 2012 New Revision: 38855 URL: http://svn.freebsd.org/changeset/doc/38855 Log: Update 2012 events and update the current year in the Makefile. Submitted by: bcr Approved by: gjb Modified: head/en_US.ISO8859-1/htdocs/events/Makefile head/share/sgml/events2012.xml Modified: head/en_US.ISO8859-1/htdocs/events/Makefile ============================================================================== --- head/en_US.ISO8859-1/htdocs/events/Makefile Sun May 20 18:13:18 2012 (r38854) +++ head/en_US.ISO8859-1/htdocs/events/Makefile Sun May 20 19:56:00 2012 (r38855) @@ -11,9 +11,9 @@ SUBDIR= 2002 SUBDIR+= 2003 # The year the top level events.html file starts from: -YEARSTART= 2011 +YEARSTART= 2012 # Years to generate past events pages for and link from top level: -PASTYEARS= 2010 2009 2008 2007 2006 2005 2004 2003 +PASTYEARS= 2011 2010 2009 2008 2007 2006 2005 2004 2003 DATA= events.css INDEXLINK= events.html Modified: head/share/sgml/events2012.xml ============================================================================== --- head/share/sgml/events2012.xml Sun May 20 18:13:18 2012 (r38854) +++ head/share/sgml/events2012.xml Sun May 20 19:56:00 2012 (r38855) @@ -41,6 +41,34 @@ + + AsiaBSDCon 2012 + http://2012.asiabsdcon.org/ + + 2012 + 3 + 22 + + + 2012 + 3 + 25 + + + Japan + Tokyo + Morito Memorial Hall, Tokyo University of Science + + AsiaBSDCon is a conference for users and developers + on BSD based systems. The conference is for anyone developing, + deploying and using systems based on FreeBSD, NetBSD, OpenBSD, + DragonFlyBSD, Darwin and MacOS X. AsiaBSDCon is a technical + conference and aims to collect the best technical papers and + presentations available to ensure that the latest developments + in our open source community are shared with the widest possible + audience. + + BSDDay.eu/2012 http://bsdday.eu/2012 @@ -97,31 +125,62 @@ from commercial vendors. - - AsiaBSDCon 2012 - http://2012.asiabsdcon.org/ + + EuroBSDCon 2012 + http://2012.eurobsdcon.org/ 2012 - 3 - 22 + 10 + 18 2012 - 3 - 25 + 10 + 21 - Japan - Tokyo - Morito Memorial Hall, Tokyo University of Science + Poland + Warsaw + - AsiaBSDCon is a conference for users and developers - on BSD based systems. The conference is for anyone developing, - deploying and using systems based on FreeBSD, NetBSD, OpenBSD, - DragonFlyBSD, Darwin and MacOS X. AsiaBSDCon is a technical - conference and aims to collect the best technical papers and - presentations available to ensure that the latest developments - in our open source community are shared with the widest possible - audience. + + EuroBSDcon is the European technical conference for + people working on and with BSD based operating systems and + related projects. EuroBSDcon 2012 is the 11th EuroBSDcon and + will take place in Poland, 20-21 October 2012 (tutorials 18-19 + October) in Warsaw. EuroBSDcon is a great and unique time to + learn more about the powerful BSD systems we use everyday and to + connect with other developers around the world. + + + + meetBSD California 2012 + http://www.meetbsd.com/ + + 2012 + 11 + 3 + + + 2012 + 11 + 4 + + + United States + Sunnyvale, California + Yahoo! Inc. + + + MeetBSD California 2012 promises to be an experience + unlike any other. MeetBSD California is no normal conference - + it's a meeting of the minds from all over the BSD community. + MeetBSD California 2012 will feature community-scheduled + break-out sessions, discussions groups, and 5-10 minute + "lightning talks," as well as longer talks from seasoned BSD + experts. + + + From owner-svn-doc-head@FreeBSD.ORG Sun May 20 20:07:11 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0D45106566B; Sun, 20 May 2012 20:07:11 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DB1278FC18; Sun, 20 May 2012 20:07:11 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4KK7B8G013354; Sun, 20 May 2012 20:07:11 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4KK7BHY013352; Sun, 20 May 2012 20:07:11 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205202007.q4KK7BHY013352@svn.freebsd.org> From: Glen Barber Date: Sun, 20 May 2012 20:07:11 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38856 - head/en_US.ISO8859-1/books/fdp-primer/the-website X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 20:07:12 -0000 Author: gjb Date: Sun May 20 20:07:11 2012 New Revision: 38856 URL: http://svn.freebsd.org/changeset/doc/38856 Log: Update the FDP Primer "The Website" chapter for the CVS->SVN repository conversion: - Replace the 'the-website-csup' and 'the-website-cvsup' sections with a 'the-website-svn' section - Replace 'www/en' with 'en_US.ISO8859-1/htdocs' as the starting directory in the website build - Remove the documented CVSROOT environment variable - Update the WEB_LANG example to reflect the new repository layout - Add a 'tip' section, noting that if the initial 'svn checkout' command is not run as the root user, be sure that /usr/build is writable by the current user, or use a different checkout location Modified: head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Sun May 20 19:56:00 2012 (r38855) +++ head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Sun May 20 20:07:11 2012 (r38856) @@ -39,7 +39,7 @@ Use a disk with sufficient free space. You may need anything from 200 MB to over 500 MB, depending on the method you choose. This space will hold the SGML tools, a - subset of the CVS tree, temporary + subset of the svn tree, temporary build space and the installed web pages. @@ -52,205 +52,49 @@ &prompt.root; pkg_delete jade-1.1 - There are two methods to get the files required for the - website build: + + Using <command>svn</command> - - - Use csup to get a local copy of the - files from a CVSup server. This - is the easiest method, and does not require installation of - additional software. The supfile presented in the next - section will always checkout the latest version of the - required files. This is sufficient if you are simply - rebuilding the website and do not intend to commit any - changes. - - - - Use cvsup in cvs mode - to create and maintain a local - CVS repository with the required - files. This will require you to install a program like - net/cvsup-without-gui, - but it is a more flexible method if you need to have quick - access to different revisions of the doc/www files, revision - histories, or if you intend to commit changes to the central - &os; CVS repository. - - - - - Simple Method: Using <command>csup</command> - - csup is part of the base system and - already used extensively by most people for updating the - Ports Collection. The following sample supfile can be - used to obtain a checkout of the files required for the - website build: - - # -# This file checks out all collections required to rebuild -# the FreeBSD website -# -# Use the nearest CVSup mirror -# listed at http://www.freebsd.org/doc/handbook/mirrors.html. - -*default host=cvsup10.FreeBSD.org -*default base=/var/db -*default prefix=/usr/build -*default release=cvs tag=. -*default delete use-rel-suffix -*default compress - -# This will retrieve the entire doc branch of the FreeBSD repository. - -doc-all - -# This will retrieve the files required for the website - -www - -# This will retrieve some basic ports info required for the build - -ports-base - - You should, of course, change the default - host entry to a CVSup - mirror near your location, and the default - prefix entry to the location where you intend to - store the checked out files. Save this file as e.g. - doc-www-supfile, - and then execute the following command: - - &prompt.root; csup doc-www-supfile - - When this command finishes, you will find the directories - doc/, www/ and ports/ under the directory you - specified in default prefix (/usr/build - in our example). We will use this same directory for the - build process itself, so it would be better to use a - filesystem with sufficient free space. + svn is necessary to check + out the necessary files from the + doc/ Subversion repository. + svn can be installed with &man.pkg.add.1; + or from the &os; Ports Collection by running: + + &prompt.root; cd /usr/ports/devel/subversion +&prompt.root; make install clean + + To check out the full source files for the &os; website, + run: + + &prompt.root; svn checkout svn://svn.FreeBSD.org/doc/head/ /usr/build + + + If svn is not run as the + root, be sure /usr/build has the proper + permissions for the current user. If changing the + permissions is not possible, use a different target + directory for the website files. + + + When svn finishes, the current version + of the &os; website will exist within /usr/build. If a different + target directory was used, replace /usr/build appropriately + throughout the remainder of this document. That's it! You can now proceed with the website build. - - - Advanced Method: Maintaining a Local - <application>CVS</application> <literal>doc/www</literal> - Repository - - This method will give you more advanced options, but will - require you to install the - net/cvsup-without-gui port or - package. - - - The net/cvsup-without-gui port has - a build dependency on lang/ezm3, a Modula 3 - compiler. This compiler takes quite some time to build, - and since most people will not need it for anything else, it - is perhaps best to use a package to install - CVSup. - - - The CVSup utility has a special - cvs mode that allows the retrieval of the - ,v files that make up a - CVS repository. This function is - not currently available in csup. - For detailed information on CVSup, - please read the CVSup - introduction in the &os; Handbook. - - The supfile shown below will fetch the cvs collections - required for the website build, and create a local - CVS repository: - - # -# This file will create a local CVS repository -# with the collections required for a complete -# FreeBSD website rebuild. It should be used with -# cvsup *only* (csup will not work) - -*default host=cvsup10.FreeBSD.org -*default base=/var/db -*default prefix=/usr/dcvs -*default release=cvs -*default delete use-rel-suffix -*default compress - -# The following collections are needed -# for the website build - -ports-base -doc-all -www - -# These collections are needed -# for CVS functionality - -cvsroot-common -cvsroot-ports -cvsroot-doc - - You should, of course, change the default - host entry to a CVSup - mirror near your location, and the default - prefix entry to the location where you intend to - store the repository files. Save this file as e.g. - doc-www-cvsfile, - and then execute the following command: - - &prompt.root; cvsup doc-www-cvsfile - - It is also advisable to set the CVSROOT - environment variable in your shell's startup files. For - example, use the following entry in - ~/.cshrc: - - setenv CVSROOT /usr/dcvs - - If you set this variable, you may omit the - argument (shown below) when performing - repository operations using cvs. - - Currently, you will need more than 400 MB of free - space to host the repository files. An additional 200 MB - will be needed for the temporary build space. Once - cvsup completes, you are ready to check out - the files to your build directory: - - &prompt.root; mkdir /usr/build -&prompt.root; cd /usr/build -&prompt.root; cvs /usr/dcvs co doc www ports - - The above command is consistent with the way - csup checks out the files from the - CVSup servers. When it completes, - you will have a build directory with similar contents to the - one used in the simple csup - method. - - You can continue to use cvsup as shown - above, to update your local CVS - repository on a regular basis. After the initial somewhat - lengthy download, regular updates will only take a few - minutes. - Build the Web Pages from Scratch - Having completed either of the two methods, you will be - ready to start the website build. In our example, the build + Having completed the necessary steps to obtain the website + source files, the website can be built. In our example, the build directory is /usr/build and all the required files are already in place. @@ -264,11 +108,11 @@ cvsroot-doc The website build starts from the www/en directory by executing + class="directory">en_US.ISO8859-1/htdocs directory by executing the &man.make.1; all target, to create the web pages. - &prompt.root; cd www/en + &prompt.root; cd en_US.ISO8859-1/htdocs &prompt.root; make all @@ -280,10 +124,10 @@ cvsroot-doc If you have moved out of the en directory, change back to + class="directory">en_US.ISO8859-1/htdocs directory, change back to it. - &prompt.root; cd /usr/build/www/en + &prompt.root; cd /usr/build/en_US.ISO8859-1/htdocs @@ -316,25 +160,6 @@ cvsroot-doc - CVSROOT - - - Location of the CVS tree. We suggest you set this - variable, if you use the CVSup - method: - - &prompt.root; CVSROOT=/usr/dcvs; export CVSROOT - - CVSROOT is an environment variable. - You must set it on the command line or in your dot files - (e.g., ~/.profile). The exact syntax - will differ depending on your shell (the above example is - for bash and bash-like - shells). - - - - ENGLISH_ONLY @@ -359,10 +184,10 @@ cvsroot-doc 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. + class="directory">en_US.ISO8859-1/htdocs directory. + All other directories within en_US.ISO8859-1 + (Handbook, FAQ, Tutorials) will be ignored. E.g.: &prompt.root; make WEB_ONLY=YES all install @@ -375,11 +200,11 @@ cvsroot-doc If set, the Makefiles will build and install only for the languages specified by this variable inside the - www directory. All + /usr/build directory. All other languages except English will be ignored. E.g.: - &prompt.root; make WEB_LANG="el es hu nl" all install + &prompt.root; make WEB_LANG="el_GR.ISO8859-7 es_ES.ISO8859-1 hu_HU.ISO8859-2 nl_NL.ISO8859-1" all install From owner-svn-doc-head@FreeBSD.ORG Sun May 20 20:32:49 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0054B1065673; Sun, 20 May 2012 20:32:48 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DF2058FC12; Sun, 20 May 2012 20:32:48 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4KKWm33014585; Sun, 20 May 2012 20:32:48 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4KKWm6A014583; Sun, 20 May 2012 20:32:48 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205202032.q4KKWm6A014583@svn.freebsd.org> From: Glen Barber Date: Sun, 20 May 2012 20:32:48 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38857 - head/en_US.ISO8859-1/htdocs/developers X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 20:32:49 -0000 Author: gjb Date: Sun May 20 20:32:48 2012 New Revision: 38857 URL: http://svn.freebsd.org/changeset/doc/38857 Log: Mention the FreeBSD Documentation Project SVN repository. Modified: head/en_US.ISO8859-1/htdocs/developers/cvs.sgml Modified: head/en_US.ISO8859-1/htdocs/developers/cvs.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/developers/cvs.sgml Sun May 20 20:07:11 2012 (r38856) +++ head/en_US.ISO8859-1/htdocs/developers/cvs.sgml Sun May 20 20:32:48 2012 (r38857) @@ -53,6 +53,13 @@ interface is available for browsing the repository. All changes are also exported back to the CVS repository.

+

In May 2012, the FreeBSD Documentation Project moved from CVS + to Subversion. Unlike the base system, the documentation SVN + repository is not exported back to CVS. There is a web interface + available for browsing the contents of the FreeBSD Documentation + Project SVN repository.

+ &footer; From owner-svn-doc-head@FreeBSD.ORG Sun May 20 20:55:21 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 937E7106566B; Sun, 20 May 2012 20:55:21 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7E01E8FC0A; Sun, 20 May 2012 20:55:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4KKtLcm015653; Sun, 20 May 2012 20:55:21 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4KKtL4r015651; Sun, 20 May 2012 20:55:21 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205202055.q4KKtL4r015651@svn.freebsd.org> From: Glen Barber Date: Sun, 20 May 2012 20:55:21 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38858 - head/en_US.ISO8859-1/articles/committers-guide X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 20:55:21 -0000 Author: gjb Date: Sun May 20 20:55:21 2012 New Revision: 38858 URL: http://svn.freebsd.org/changeset/doc/38858 Log: - Update the Conventions and Traditions to reflect the doc CVS->SVN conversion. - Add a note that the .ent, .sgml, and .xml files are in the doc repository. Modified: head/en_US.ISO8859-1/articles/committers-guide/article.sgml Modified: head/en_US.ISO8859-1/articles/committers-guide/article.sgml ============================================================================== --- head/en_US.ISO8859-1/articles/committers-guide/article.sgml Sun May 20 20:32:48 2012 (r38857) +++ head/en_US.ISO8859-1/articles/committers-guide/article.sgml Sun May 20 20:55:21 2012 (r38858) @@ -2696,18 +2696,25 @@ $target - head/$source:$P,$Q,$R Guidelines For Committers + + The .ent, .sgml, + and .xml files listed below exist in the + &os; Documentation Project SVN repository at + svn.FreeBSD.org/doc/. + + If you have been given commit rights to one or more of the repositories: Add your author entity to - doc/en_US.ISO8859-1/share/sgml/authors.ent; + head/en_US.ISO8859-1/share/sgml/authors.ent; this should be done first since an omission of this commit will cause the next commits to break the doc/ build. This is a relatively easy task, but remains a good first test of - your CVS skills. + your version control skills. Don't forget to get mentor approval for these patches! @@ -2717,36 +2724,36 @@ $target - head/$source:$P,$Q,$R Also add your author entity to - www/en/developers.sgml. + head/share/sgml/developers.ent. Add yourself to the Developers section of the Contributors List - (doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml) and remove yourself from the Additional - Contributors section (doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml). + (head/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml) and remove yourself from the Additional + Contributors section (head/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml). Please note that entries are sorted by last name. Add an entry for yourself to - www/share/sgml/news.xml. Look for the other + head/share/sgml/news.xml. Look for the other entries that look like A new committer and follow the format. You should add your PGP or GnuPG key to - doc/share/pgpkeys (and if you do not + head/share/pgpkeys (and if you do not have a key, you should create one). Do not forget to commit - the updated doc/share/pgpkeys/pgpkeys.ent - and doc/share/pgpkeys/pgpkeys-developers.sgml. + the updated head/share/pgpkeys/pgpkeys.ent + and head/share/pgpkeys/pgpkeys-developers.sgml. Please note that entries are sorted by last name. &a.des; has - written a shell script (doc/share/pgpkeys/addkey.sh) to make this extremely simple. See the + written a shell script (head/share/pgpkeys/addkey.sh) to make this extremely simple. See the README + url="http://svnweb.FreeBSD.org/doc/head/share/pgpkeys/README">README file for more information. From owner-svn-doc-head@FreeBSD.ORG Sun May 20 20:56:17 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 001791065673; Sun, 20 May 2012 20:56:16 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DEF978FC12; Sun, 20 May 2012 20:56:16 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4KKuGFY015731; Sun, 20 May 2012 20:56:16 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4KKuGRT015729; Sun, 20 May 2012 20:56:16 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205202056.q4KKuGRT015729@svn.freebsd.org> From: Warren Block Date: Sun, 20 May 2012 20:56:16 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38859 - head/share/sgml X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 20:56:17 -0000 Author: wblock Date: Sun May 20 20:56:16 2012 New Revision: 38859 URL: http://svn.freebsd.org/changeset/doc/38859 Log: Whitespace-only fixes. Modified: head/share/sgml/events2012.xml Modified: head/share/sgml/events2012.xml ============================================================================== --- head/share/sgml/events2012.xml Sun May 20 20:55:21 2012 (r38858) +++ head/share/sgml/events2012.xml Sun May 20 20:56:16 2012 (r38859) @@ -33,11 +33,12 @@ Chemnitz University of Technology Chemnitz Linux Days is a conference that deals with - Linux and Open Source software. It is open for everyone - newbies - and experts alike. This event is organized by IN Chemnitz, CLUG, - computing centre and Faculty of Computer Science of Chemnitz University - of Technology and many volunteers. Pick up your schedule and make a - big mark around March 17 and 18. You won't regret it. + Linux and Open Source software. It is open for everyone - + newbies and experts alike. This event is organized by IN + Chemnitz, CLUG, computing centre and Faculty of Computer Science + of Chemnitz University of Technology and many volunteers. Pick + up your schedule and make a big mark around March 17 and 18. + You won't regret it. @@ -66,7 +67,8 @@ conference and aims to collect the best technical papers and presentations available to ensure that the latest developments in our open source community are shared with the widest possible - audience. + audience. + @@ -88,18 +90,18 @@ UAS Technikum Wien This year Beastie joins Tux on his tour in Vienna in - May: another "DanuBSDCon" is coming to gather Central-European BSD - people to meet! The event features several BSD developers and - enthusiasts to tell about their work, communicate with their fellows - and reach their potential future partners. As usual, there are no - formalities, papers, registration or participation fee, however the - invited folks are encouraged to give a brief talk about their - favorite BSD-related topic. The goal is to motivate everybody, - especially university students to work with BSD - systems. + May: another "DanuBSDCon" is coming to gather Central-European + BSD people to meet! The event features several BSD developers + and enthusiasts to tell about their work, communicate with their + fellows and reach their potential future partners. As usual, + there are no formalities, papers, registration or participation + fee, however the invited folks are encouraged to give a brief + talk about their favorite BSD-related topic. The goal is to + motivate everybody, especially university students to work with + BSD systems. - + BSDCan 2012 http://www.bsdcan.org/ @@ -121,8 +123,9 @@ BSDCan is a developers conference with a strong focus on emerging technologies, research projects, and works in progress. It also features Userland infrastructure projects and - invites contributions from both free software developers and those - from commercial vendors. + invites contributions from both free software developers and + those from commercial vendors. + @@ -143,7 +146,6 @@ Warsaw - EuroBSDcon is the European technical conference for people working on and with BSD based operating systems and related projects. EuroBSDcon 2012 is the 11th EuroBSDcon and @@ -182,5 +184,4 @@ experts. - From owner-svn-doc-head@FreeBSD.ORG Sun May 20 23:47:52 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 291E8106564A; Sun, 20 May 2012 23:47:52 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CD30B8FC0A; Sun, 20 May 2012 23:47:51 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4KNlpmP024361; Sun, 20 May 2012 23:47:51 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4KNlpGG024359; Sun, 20 May 2012 23:47:51 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205202347.q4KNlpGG024359@svn.freebsd.org> From: Glen Barber Date: Sun, 20 May 2012 23:47:51 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38860 - head/share/sgml X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 23:47:52 -0000 Author: gjb Date: Sun May 20 23:47:50 2012 New Revision: 38860 URL: http://svn.freebsd.org/changeset/doc/38860 Log: Add a few links to In The Media. Submitted by: Hans Ottevanger (hans%beastielabs!net) (via -www@) Modified: head/share/sgml/press.xml Modified: head/share/sgml/press.xml ============================================================================== --- head/share/sgml/press.xml Sun May 20 20:56:16 2012 (r38859) +++ head/share/sgml/press.xml Sun May 20 23:47:50 2012 (r38860) @@ -17,6 +17,41 @@ 2012 + 5 + + + FreeBSD 10 To Use Clang Compiler, Deprecate GCC + http://www.phoronix.com/scan.php?page=news_item&px=MTEwMjI + phoronix + http://www.phoronix.com + 12 May 2012 + Michael Larabel +

As indicated by the Q1-2012 FreeBSD Status Report, LLVM's + Clang compiler is quickly replacing GCC for this popular BSD + operating system. The developers are also making much + progress in a GNU-free C++11 stack. For FreeBSD 10 they're + aiming for Clang as the default C/C++ compiler, deprecate + GCC, and to have a BSD-licensed C++ stack. +

+
+ + + FreeBSD Achieved A Lot In Q1'2012 + http://www.phoronix.com/scan.php?page=news_item&px=MTEwMjE + phoronix + http://www.phoronix.com + 12 May 2012 + Michael Larabel +

For the first three months of the 2012 calendar year, the + FreeBSD project achieved a lot when it came to advancing + their open operating system. Here's some of the interesting + highlights from their quarterly status report. +

+
+ +
+ + 4 From owner-svn-doc-head@FreeBSD.ORG Mon May 21 00:29:55 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A6751065670; Mon, 21 May 2012 00:29:55 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AECE48FC08; Mon, 21 May 2012 00:29:54 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4L0Ts9W026447; Mon, 21 May 2012 00:29:54 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4L0TsQe026444; Mon, 21 May 2012 00:29:54 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205210029.q4L0TsQe026444@svn.freebsd.org> From: Glen Barber Date: Mon, 21 May 2012 00:29:54 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38861 - head/share/sgml X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 00:29:55 -0000 Author: gjb Date: Mon May 21 00:29:53 2012 New Revision: 38861 URL: http://svn.freebsd.org/changeset/doc/38861 Log: Add an In The Media entry for an article mentioning FreeBSD and Microsoft Hyper-V Interoperability Modified: head/share/sgml/press.xml Modified: head/share/sgml/press.xml ============================================================================== --- head/share/sgml/press.xml Sun May 20 23:47:50 2012 (r38860) +++ head/share/sgml/press.xml Mon May 21 00:29:53 2012 (r38861) @@ -20,6 +20,20 @@ 5 + FreeBSD and Microsoft Hyper-V Interoperability Expected + This Summer + http://redmondmag.com/articles/2012/05/14/microsoft-hyperv-interoperability.aspx + Redmondmag + http://redmondmag.com + 14 May 2012 + Kurt Mackie +

Microsoft and its partnering companies are finalizing a + project that will enable FreeBSD interoperability with + Windows Server Hyper-V. +

+
+ + FreeBSD 10 To Use Clang Compiler, Deprecate GCC http://www.phoronix.com/scan.php?page=news_item&px=MTEwMjI phoronix From owner-svn-doc-head@FreeBSD.ORG Mon May 21 01:07:15 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00520106566B; Mon, 21 May 2012 01:07:14 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D5B1D8FC12; Mon, 21 May 2012 01:07:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4L17En5028078; Mon, 21 May 2012 01:07:14 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4L17EfB028076; Mon, 21 May 2012 01:07:14 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205210107.q4L17EfB028076@svn.freebsd.org> From: Glen Barber Date: Mon, 21 May 2012 01:07:14 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38862 - head/share/sgml X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 01:07:15 -0000 Author: gjb Date: Mon May 21 01:07:13 2012 New Revision: 38862 URL: http://svn.freebsd.org/changeset/doc/38862 Log: - Rewrap long lines - Make markup consistent Modified: head/share/sgml/press.xml Modified: head/share/sgml/press.xml ============================================================================== --- head/share/sgml/press.xml Mon May 21 00:29:53 2012 (r38861) +++ head/share/sgml/press.xml Mon May 21 01:07:13 2012 (r38862) @@ -29,8 +29,7 @@ Kurt Mackie

Microsoft and its partnering companies are finalizing a project that will enable FreeBSD interoperability with - Windows Server Hyper-V. -

+ Windows Server Hyper-V.

@@ -45,8 +44,7 @@ operating system. The developers are also making much progress in a GNU-free C++11 stack. For FreeBSD 10 they're aiming for Clang as the default C/C++ compiler, deprecate - GCC, and to have a BSD-licensed C++ stack. -

+ GCC, and to have a BSD-licensed C++ stack.

@@ -59,10 +57,8 @@

For the first three months of the 2012 calendar year, the FreeBSD project achieved a lot when it came to advancing their open operating system. Here's some of the interesting - highlights from their quarterly status report. -

+ highlights from their quarterly status report.

-
@@ -76,11 +72,9 @@ 23 April 2012 Michael Larabel

The FreeBSD team working on X support have announced a set - of X.Org updates to bring the FreeBSD package support to X.Org - 7.5.2, which now includes Intel KMS support. -

+ of X.Org updates to bring the FreeBSD package support to + X.Org 7.5.2, which now includes Intel KMS support.

-
@@ -93,7 +87,8 @@ http://www.netcraft.com/ 02 March 2012 Netcraft -

FreeBSD the OS of 3 of the top 10 most reliable hosting company sites in March 202.

+

FreeBSD the OS of 3 of the top 10 most reliable hosting + company sites in March 202.

@@ -101,7 +96,8 @@ 2 - PC-BSD 9 review ? to FreeBSD what Ubuntu is to Debian + PC-BSD 9 review ? to FreeBSD what Ubuntu is to + Debian http://www.linuxuser.co.uk/reviews/pc-bsd-9-review-to-freebsd-what-ubuntu-is-to-debian/ Linux User & Developer http://www.linuxuser.co.uk @@ -142,7 +138,8 @@ http://www.infoworld.com 11 November 2011 Paul Venezia -

This article writes about why Paul Venezia is using FreeBSD for his servers

+

This article writes about why Paul Venezia is using FreeBSD + for his servers

@@ -171,7 +168,8 @@ http://www.netcraft.com/ 08 July 2011 Jennifer Cownie -

FreeBSD the OS of top 3 most reliable hosting company sites in June 2011.

+

FreeBSD the OS of top 3 most reliable hosting company sites + in June 2011.

@@ -188,7 +186,8 @@

LinuxBSDos.com looks at the installation (especially at the disk encryption features), system configuration and system management (including the installation of third party - software packages via PC-BSD's PBI system) of PC-BSD 8.2.

+ software packages via PC-BSD's PBI system) of + PC-BSD 8.2.

@@ -202,9 +201,10 @@ http://itmanagement.earthweb.com/ 25 February 2011 Sean Michael Kerner -

The author looks at the status and the future of ZFS under FreeBSD. - The information is based on interviews the website did with FreeBSD - developer Josh Paetzel and Matt Olander from iXsystems.

+

The author looks at the status and the future of ZFS under + FreeBSD. The information is based on interviews the website + did with FreeBSD developer Josh Paetzel and Matt Olander + from iXsystems.

@@ -222,9 +222,10 @@ http://www.linuxbsdos.com/ 17 August 2010 LinuxBSDos.com -

LinuxBSDos.com looks at the installation, system configuration - and system management (including the installation of third party - software packages via PC-BSD's PBI system) of PC-BSD 8.1.

+

LinuxBSDos.com looks at the installation, system + configuration and system management (including the + installation of third party software packages via PC-BSD's + PBI system) of PC-BSD 8.1.

From owner-svn-doc-head@FreeBSD.ORG Mon May 21 01:28:58 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 00241106564A; Mon, 21 May 2012 01:28:57 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A371B8FC0A; Mon, 21 May 2012 01:28:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4L1Sv79029058; Mon, 21 May 2012 01:28:57 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4L1SvRO029056; Mon, 21 May 2012 01:28:57 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205210128.q4L1SvRO029056@svn.freebsd.org> From: Glen Barber Date: Mon, 21 May 2012 01:28:57 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38863 - head/share/sgml X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 01:28:58 -0000 Author: gjb Date: Mon May 21 01:28:57 2012 New Revision: 38863 URL: http://svn.freebsd.org/changeset/doc/38863 Log: Cleanup news.xml: - Strip leading/trailing whitepace - Fix indentation where necessary Modified: head/share/sgml/news.xml Modified: head/share/sgml/news.xml ============================================================================== --- head/share/sgml/news.xml Mon May 21 01:07:13 2012 (r38862) +++ head/share/sgml/news.xml Mon May 21 01:28:57 2012 (r38863) @@ -51,30 +51,30 @@ 4 - 26 + 26 - -

New committer: - Isabell Long (doc/www)

-
+ +

New committer: + Isabell Long (doc/www)

+
- 22 + 22 - -

New committer: - Jeremie Le Hen (src)

-
+ +

New committer: + Jeremie Le Hen (src)

+
- 18 + 18 &os; 8.3-RELEASE Available -

FreeBSD +

FreeBSD 8.3-RELEASE is now available. Please be sure to check the Release Notes and Release Information page.

- -

New committer: - Devin Teske (src)

-
+ +

New committer: + Devin Teske (src)

+
@@ -134,16 +134,16 @@ 3 - 23 - + 23 +

New committer: Cherry G. Mathew (src)

- 12 - + 12 +

New committer: Benjamin Kaduk (doc/www)

@@ -192,15 +192,15 @@
- 16 - -

New committer: - Damjan Marion (src)

-
- -

New committer: - Ben Gray (src)

-
+ 16 + +

New committer: + Damjan Marion (src)

+
+ +

New committer: + Ben Gray (src)

+
@@ -213,8 +213,8 @@ - 7 - + 7 +

New committer: Matthew Seaman (ports)

@@ -243,12 +243,12 @@
- 12 + 12 &os; 9.0-RELEASE Available -

FreeBSD +

FreeBSD 9.0-RELEASE is now available. Please be sure to check the Release Notes and 12 - 16 - -

New committer: - Jason Helfman (ports)

-
+ 16 + +

New committer: + Jason Helfman (ports)

+
@@ -298,19 +298,19 @@ - 8 - -

New committer: + 8 + +

New committer: Pedro Giffuni (src)

-
+
- 2 - -

New member for the Ports Management team: + 2 + +

New member for the Ports Management team: Beat Gätzi

-
+
@@ -318,12 +318,12 @@ 11 - 30 + 30 - -

New committer: - Justin Hibbits (src)

-
+ +

New committer: + Justin Hibbits (src)

+
@@ -345,31 +345,31 @@ now do so using the freebsd-update(8) utility.

- + - 12 + 12 - -

New committer: - Michael Scheidell (ports)

-
+ +

New committer: + Michael Scheidell (ports)

+
- 11 + 11 - -

New committer: - David Chisnall (src)

-
+ +

New committer: + David Chisnall (src)

+
- 9 + 9 - -

New committer: - Ruslan Mahmatkhanov (ports)

-
+ +

New committer: + Ruslan Mahmatkhanov (ports)

+
@@ -411,10 +411,10 @@ 6 - -

New committer: - Alexander V. Chernikov (src)

-
+ +

New committer: + Alexander V. Chernikov (src)

+
@@ -441,12 +441,12 @@ - 27 + 27 - -

New committer: - Jakub Klama (src)

-
+ +

New committer: + Jakub Klama (src)

+
@@ -617,8 +617,8 @@ IPv6-only &os; test images

&os; Foundation and iXsystems - - announce IPv6-only test images of FreeBSD and PC-BSD.

+ + announce IPv6-only test images of FreeBSD and PC-BSD.

@@ -686,9 +686,9 @@
- 27 - - + 27 + + FreeBSD Project to participate in Google Summer of Code 2011 @@ -710,44 +710,44 @@ is available, including proposal and deadline information, on the FreeBSD Summer Projects page.

-
+
- 18 - - -

New committer: - Sofian Brabez (ports)

-
+ 18 + + +

New committer: + Sofian Brabez (ports)

+
- 13 - - -

New committer: - Pawel Pekala (ports)

-
+ 13 + + +

New committer: + Pawel Pekala (ports)

+
- 10 - - -

The FreeBSD Ports Management Team is pleased to announce + 10 + + +

The FreeBSD Ports Management Team is pleased to announce - Thomas Abthorpe as a full voting member.

-
+ Thomas Abthorpe as a full voting member.

+
- + - 5 - - -

New committer: - Steven G. Kargl (src)

-
+ 5 + + +

New committer: + Steven G. Kargl (src)

+
@@ -760,7 +760,7 @@ FreeBSD 8.2-RELEASE Available -

FreeBSD +

FreeBSD 8.2-RELEASE is now available. Please be sure to check the Release Notes and FreeBSD 7.4-RELEASE Available -

FreeBSD +

FreeBSD 7.4-RELEASE is now available. Please be sure to check the Release Notes and 11 - + &os; 7.4/8.2-BETA1 Available @@ -918,7 +918,7 @@ - 7 + 7

New committer: Florian Smeets (ports)

@@ -929,14 +929,14 @@ 11 - 15 + 15

New committer: Eygene Ryabinkin (ports)

- 5 + 5

New committer: Zack Kirsch (src)

@@ -964,7 +964,7 @@

New committer: Frederic Culot (ports)

- + 7 @@ -998,10 +998,10 @@ - 5 - -

New committer: Andreas Tobler (src)

-
+ 5 + +

New committer: Andreas Tobler (src)

+
@@ -1010,7 +1010,7 @@

New committer: Steve Wills (ports)

- + 8 @@ -1035,7 +1035,7 @@

New committer: Oliver Hauer (ports)

-
+ 7 @@ -1063,7 +1063,7 @@ FreeBSD 8.1-RELEASE Available -

FreeBSD +

FreeBSD 8.1-RELEASE is now available. Please be sure to check the Release Notes and - 15 + 15 -

New committer: Joseph S. Atkinson (ports)

+

New committer: Joseph S. Atkinson (ports)

14 - + New &os; Core Team elected @@ -1170,7 +1170,7 @@ for further details about this release.

-
+ 6 @@ -1192,34 +1192,34 @@ - 10 + 10 -

New committer: Ashish SHUKLA (ports)

+

New committer: Ashish SHUKLA (ports)

- 9 + 9 -

New committer: Brendan Fabeny (ports)

+

New committer: Brendan Fabeny (ports)

- 4 + 4 -

New committer: Matthew Fleming (src)

+

New committer: Matthew Fleming (src)

- 3 + 3 -

New committer: Andrey V. Elsukov (src)

+

New committer: Andrey V. Elsukov (src)

@@ -1250,7 +1250,7 @@ 24 - + Google Summer of Code Projects started

The FreeBSD Project again received many high quality @@ -1271,14 +1271,14 @@ href="http://wiki.freebsd.org/SummerOfCode2010Projects">Summer of Code wiki. Coding started on May 24, so please join us in welcoming the 18 new students to our community.

-
+
19 -

New committer: Jayachandran C. (src)

+

New committer: Jayachandran C. (src)

@@ -1309,34 +1309,34 @@ - 20 + 20 - -

New committer: Randi Harper (src)

-
+ +

New committer: Randi Harper (src)

+
- 19 + 19 - -

New committer: Ryan Stone (src)

-
+ +

New committer: Ryan Stone (src)

+
- 14 + 14 - -

New committer: Ana Kukec (src)

-
+ +

New committer: Ana Kukec (src)

+
- 11 + 11

Enhanced commit privileges: - -

New committer: Sahil Tandon (ports)

-
+ +

New committer: Sahil Tandon (ports)

+
- 5 + 5 - -

New committer: Giuseppe Pilichi (ports)

-
+ +

New committer: Giuseppe Pilichi (ports)

+
@@ -1381,12 +1381,12 @@ 3 - 31 + 31 - -

New committer: Bernhard + +

New committer: Bernhard Fröhlich (ports)

-
+
@@ -1395,7 +1395,7 @@ FreeBSD 7.3-RELEASE Available -

FreeBSD +

FreeBSD 7.3-RELEASE is now available. Please be sure to check the Release Notes and - 18 - + 18 + New Ports Management Team Secretary: <a href="mailto:tabthorpe@FreeBSD.org">Thomas Abthorpe</a> -

The &os; Ports Management Team is pleased to announce Thomas Abthorpe has assumed the role of Ports Management Team Secretary.

-
+

The &os; Ports Management Team is pleased to announce Thomas Abthorpe has assumed the role of Ports Management Team Secretary.

+
- 7 - -

Returning committer: Niels Heinen (ports)

-
+ 7 + +

Returning committer: Niels Heinen (ports)

+
@@ -1441,7 +1441,7 @@ - 3 + 3

New committer: Neel @@ -1546,35 +1546,35 @@ - 29 + 29 - -

New committer: Bruce - Cran (src)

-
+ +

New committer: Bruce + Cran (src)

+
- 28 + 28 - -

New committer: Ulrich + +

New committer: Ulrich Spörlein (src)

-
+
- 26 + 26

New committer: Romain Tartière (ports)

- -

New committer: Alberto + +

New committer: Alberto Villa (ports)

-
+
From owner-svn-doc-head@FreeBSD.ORG Mon May 21 02:31:24 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3901E1065691; Mon, 21 May 2012 02:31:24 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7FE428FC22; Mon, 21 May 2012 02:31:23 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4L2VNJG031893; Mon, 21 May 2012 02:31:23 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4L2VNFk031891; Mon, 21 May 2012 02:31:23 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205210231.q4L2VNFk031891@svn.freebsd.org> From: Glen Barber Date: Mon, 21 May 2012 02:31:23 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38864 - head/en_US.ISO8859-1/books/fdp-primer/the-website X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 02:31:24 -0000 Author: gjb Date: Mon May 21 02:31:22 2012 New Revision: 38864 URL: http://svn.freebsd.org/changeset/doc/38864 Log: Minor wording fix: - Remove a superfluous 'the' the snuck in. Modified: head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Mon May 21 01:28:57 2012 (r38863) +++ head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Mon May 21 02:31:22 2012 (r38864) @@ -70,7 +70,7 @@ &prompt.root; svn checkout svn://svn.FreeBSD.org/doc/head/ /usr/build - If svn is not run as the + If svn is not run as root, be sure /usr/build has the proper permissions for the current user. If changing the From owner-svn-doc-head@FreeBSD.ORG Mon May 21 12:19:22 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C8A87106566C; Mon, 21 May 2012 12:19:22 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9072E8FC0C; Mon, 21 May 2012 12:19:22 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4LCJM40057974; Mon, 21 May 2012 12:19:22 GMT (envelope-from cperciva@svn.freebsd.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4LCJMpB057971; Mon, 21 May 2012 12:19:22 GMT (envelope-from cperciva@svn.freebsd.org) Message-Id: <201205211219.q4LCJMpB057971@svn.freebsd.org> From: Colin Percival Date: Mon, 21 May 2012 12:19:22 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38865 - in head: en_US.ISO8859-1/htdocs/security share/sgml X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 12:19:22 -0000 Author: cperciva (src,ports committer) Date: Mon May 21 12:19:21 2012 New Revision: 38865 URL: http://svn.freebsd.org/changeset/doc/38865 Log: Commit to the right tree this time. It's time to hand off the Security Officer hat. Please welcome simon@ to his new role! I'll be sticking around as Security Officer Emeritus for the forseeable future. Approved by: core Modified: head/en_US.ISO8859-1/htdocs/security/security.sgml head/share/sgml/developers.ent Modified: head/en_US.ISO8859-1/htdocs/security/security.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/security/security.sgml Mon May 21 02:31:22 2012 (r38864) +++ head/en_US.ISO8859-1/htdocs/security/security.sgml Mon May 21 12:19:21 2012 (r38865) @@ -82,14 +82,14 @@ - + - - + +
&a.cperciva; <cperciva@FreeBSD.org>&a.simon; <simon@FreeBSD.org> Security Officer
&a.simon; <simon@FreeBSD.org>Deputy Security Officer&a.cperciva; <cperciva@FreeBSD.org>Security Officer Emeritus
&a.rwatson; - + From owner-svn-doc-head@FreeBSD.ORG Mon May 21 12:52:46 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63C541065672; Mon, 21 May 2012 12:52:46 +0000 (UTC) (envelope-from gavin.atkinson@ury.york.ac.uk) Received: from mail-gw5.york.ac.uk (mail-gw5.york.ac.uk [144.32.129.29]) by mx1.freebsd.org (Postfix) with ESMTP id 1B3F28FC0A; Mon, 21 May 2012 12:52:46 +0000 (UTC) Received: from ury.york.ac.uk ([144.32.108.81]:37187) by mail-gw5.york.ac.uk with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1SWS6P-00054V-58; Mon, 21 May 2012 13:52:45 +0100 Received: from gavin (helo=localhost) by ury.york.ac.uk with local-esmtp (Exim 4.77) (envelope-from ) id 1SWS6O-0002JP-VA; Mon, 21 May 2012 13:52:44 +0100 Date: Mon, 21 May 2012 13:52:44 +0100 (BST) From: Gavin Atkinson X-X-Sender: gavin@ury.york.ac.uk To: Benjamin Kaduk In-Reply-To: Message-ID: References: <201205200037.q4K0bJwn055648@svn.freebsd.org> User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: Cc: svn-doc-head@freebsd.org, Glen Barber , svn-doc-all@freebsd.org, doc-committers@freebsd.org Subject: Re: svn commit: r38842 - head/en_US.ISO8859-1/books/fdp-primer/overview X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 12:52:46 -0000 On Sun, 20 May 2012, Benjamin Kaduk wrote: > On Sun, 20 May 2012, Glen Barber wrote: > > > Author: gjb > > Date: Sun May 20 00:37:19 2012 > > New Revision: 38842 > > URL: http://svn.freebsd.org/changeset/doc/38842 > > > > Log: > > Update the FDP Primer Overview chapter to reflect the CVS->SVN > > repository conversion: > > Thanks for stepping up and doing this. > > > > > - Update an overview of where (as in, what repository) various parts > > of the documentation project are located. > > - Update CVS->Subversion/svn where necessary. > > - Remove references to CVSup, CTM. > > Interestingly, I noted while looking around to remind myself of a few things, > that we seem to not document svn as a way to keep src/ up-to-date, > in the handbook ("Synchronizing Your Source") -- just CVSup and CTM. > Perhaps a todo item? I have a feeling that this is semi-deliberate - at least until we have an SVN distribution mechanism in place. I believe the plan is to prevent anonymous checkouts from svn.f.o at some point in the future, once a replacement infrastructure is available. I guess for doc it's unavoidable, but it's probably wise to at least consult with the svn meisters before making the change to the information for obtaining src. Gavin From owner-svn-doc-head@FreeBSD.ORG Mon May 21 13:10:34 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F651106564A; Mon, 21 May 2012 13:10:34 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 298018FC17; Mon, 21 May 2012 13:10:34 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4LDAXgb059434; Mon, 21 May 2012 13:10:33 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4LDAXUk059432; Mon, 21 May 2012 13:10:33 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205211310.q4LDAXUk059432@svn.freebsd.org> From: Glen Barber Date: Mon, 21 May 2012 13:10:33 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38866 - head/en_US.ISO8859-1/htdocs/developers X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 13:10:34 -0000 Author: gjb Date: Mon May 21 13:10:33 2012 New Revision: 38866 URL: http://svn.freebsd.org/changeset/doc/38866 Log: Prefer to use 'svnweb.FreeBSD.org' instead of the longer 'viewvc' URL. Submitted by: gavin Modified: head/en_US.ISO8859-1/htdocs/developers/cvs.sgml Modified: head/en_US.ISO8859-1/htdocs/developers/cvs.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/developers/cvs.sgml Mon May 21 12:19:21 2012 (r38865) +++ head/en_US.ISO8859-1/htdocs/developers/cvs.sgml Mon May 21 13:10:33 2012 (r38866) @@ -49,14 +49,14 @@

In June 2008, development of the base system moved to a different version control system, Subversion - (SVN for short). The web + (SVN for short). The web interface is available for browsing the repository. All changes are also exported back to the CVS repository.

In May 2012, the FreeBSD Documentation Project moved from CVS to Subversion. Unlike the base system, the documentation SVN repository is not exported back to CVS. There is a web interface + href="http://svnweb.FreeBSD.org/doc/">web interface available for browsing the contents of the FreeBSD Documentation Project SVN repository.

From owner-svn-doc-head@FreeBSD.ORG Mon May 21 13:11:29 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8A741065672; Mon, 21 May 2012 13:11:29 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C34948FC17; Mon, 21 May 2012 13:11:29 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4LDBTV1059503; Mon, 21 May 2012 13:11:29 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4LDBTKe059501; Mon, 21 May 2012 13:11:29 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205211311.q4LDBTKe059501@svn.freebsd.org> From: Glen Barber Date: Mon, 21 May 2012 13:11:29 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38867 - head/en_US.ISO8859-1/htdocs/developers X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 13:11:29 -0000 Author: gjb Date: Mon May 21 13:11:29 2012 New Revision: 38867 URL: http://svn.freebsd.org/changeset/doc/38867 Log: Capitalize 'FreeBSD.org' URLs for consistency. Modified: head/en_US.ISO8859-1/htdocs/developers/cvs.sgml Modified: head/en_US.ISO8859-1/htdocs/developers/cvs.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/developers/cvs.sgml Mon May 21 13:10:33 2012 (r38866) +++ head/en_US.ISO8859-1/htdocs/developers/cvs.sgml Mon May 21 13:11:29 2012 (r38867) @@ -39,8 +39,8 @@

Mirrors of the CVS web interface are available in - Czech republic, - Denmark, + Czech republic, + Denmark, Japan, USA/California and Ukraine.

From owner-svn-doc-head@FreeBSD.ORG Mon May 21 14:21:18 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D747106564A; Mon, 21 May 2012 14:21:18 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DEFCB8FC08; Mon, 21 May 2012 14:21:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4LELHm2061408; Mon, 21 May 2012 14:21:17 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4LELHLh061406; Mon, 21 May 2012 14:21:17 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205211421.q4LELHLh061406@svn.freebsd.org> From: Warren Block Date: Mon, 21 May 2012 14:21:17 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38868 - head/en_US.ISO8859-1/books/fdp-primer/structure X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 14:21:18 -0000 Author: wblock Date: Mon May 21 14:21:16 2012 New Revision: 38868 URL: http://svn.freebsd.org/changeset/doc/38868 Log: Whitespace-only fixes, wrap long lines and correct indentation. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/structure/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/structure/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/structure/chapter.sgml Mon May 21 13:11:29 2012 (r38867) +++ head/en_US.ISO8859-1/books/fdp-primer/structure/chapter.sgml Mon May 21 14:21:16 2012 (r38868) @@ -33,14 +33,15 @@ Structuring Documents Under <filename>doc/</filename> - The doc/ tree is organized in a particular - fashion, and the documents that are part of the FDP are in turn organized - in a particular fashion. The aim is to make it simple to add new - documentation into the tree and: + The doc/ tree is organized in a + particular fashion, and the documents that are part of the FDP are + in turn organized in a particular fashion. The aim is to make it + simple to add new documentation into the tree and: - Make it easy to automate converting the document to other formats. + Make it easy to automate converting the document to other + formats. @@ -50,21 +51,23 @@ - Make it easy to decide where in the tree new documentation should - be placed. + Make it easy to decide where in the tree new documentation + should be placed. - In addition, the documentation tree has to accommodate documentation - that could be in many different languages and in many different - encodings. It is important that the structure of the documentation tree - does not enforce any particular defaults or cultural preferences. + In addition, the documentation tree has to accommodate + documentation that could be in many different languages and in + many different encodings. It is important that the structure of + the documentation tree does not enforce any particular defaults or + cultural preferences. The Top Level, <filename>doc/</filename> - There are two types of directory under doc/, - each with very specific directory names and meanings. + There are two types of directory under + doc/, each with very specific directory + names and meanings. Directory @@ -73,39 +76,41 @@ share/ - - Contains files that are not specific to the various translations - and encodings of the documentation. Contains subdirectories to - further categorize the information. For example, the files that - comprise the &man.make.1; infrastructure are in - share/mk, while the additional SGML support - files (such as the FreeBSD extended DocBook DTD) are in + + Contains files that are not specific to the various + translations and encodings of the documentation. Contains + subdirectories to further categorize the information. For + example, the files that comprise the &man.make.1; + infrastructure are in share/mk, while + the additional SGML support files (such as the FreeBSD + extended DocBook DTD) are in share/sgml. lang.encoding/ - - One directory exists for each available translation and encoding - of the documentation, for example + + One directory exists for each available translation and + encoding of the documentation, for example en_US.ISO8859-1/ and - zh_TW.Big5/. The names are long, but by fully - specifying the language and encoding we prevent any future headaches - should a translation team want to provide the documentation in the - same language but in more than one encoding. This also completely - isolates us from any problems that might be caused by a switch to - Unicode. + zh_TW.Big5/. The names are long, but + by fully specifying the language and encoding we prevent any + future headaches should a translation team want to provide + the documentation in the same language but in more than one + encoding. This also completely isolates us from any + problems that might be caused by a switch to Unicode. The - <filename><replaceable>lang</replaceable>.<replaceable>encoding</replaceable>/</filename> Directories + lang.encoding/ + Directories These directories contain the documents themselves. The - documentation is split into up to three more categories at this - level, indicated by the different directory names. + documentation is split into up to three more categories at + this level, indicated by the different directory names. Directory @@ -114,43 +119,47 @@ articles - - Documentation marked up as a DocBook article - (or equivalent). Reasonably short, and broken up into sections. - Normally only available as one HTML file. + + Documentation marked up as a DocBook + article (or equivalent). Reasonably + short, and broken up into sections. Normally only available + as one HTML file. - + books - - Documentation marked up as a DocBook book (or - equivalent). Book length, and broken up into chapters. Normally - available as both one large HTML file (for people with fast - connections, or who want to print it easily from a browser) and - as a collection of linked, smaller files. + + Documentation marked up as a DocBook + book (or equivalent). Book length, and + broken up into chapters. Normally available as both one + large HTML file (for people with fast connections, or who + want to print it easily from a browser) and as a collection + of linked, smaller files. man - - For translations of the system manual pages. This directory will - contain one or more - mann directories, - corresponding to the sections that have been translated. + + For translations of the system manual pages. This + directory will contain one or more + mann + directories, corresponding to the sections that have been + translated. Not every - lang.encoding directory will contain all of these directories. It depends - on how much translation has been accomplished by that translation + lang.encoding + directory will contain all of these directories. It depends on + how much translation has been accomplished by that translation team. - + Document Specific Information - This section contains specific notes about particular documents - managed by the FDP. + This section contains specific notes about particular + documents managed by the FDP. The Handbook @@ -159,52 +168,55 @@ The Handbook is written to comply with the FreeBSD DocBook extended DTD. - - The Handbook is organized as a DocBook book. - It is then divided into parts, each of which may - contain several chapters. - chapters are further subdivided into sections - (sect1) and subsections (sect2, + + The Handbook is organized as a DocBook + book. It is then divided into + parts, each of which may contain several + chapters. chapters are + further subdivided into sections (sect1) + and subsections (sect2, sect3) and so on. - + Physical Organization - + There are a number of files and directories within the handbook directory. - The Handbook's organization may change over time, and this - document may lag in detailing the organizational changes. If you - have any questions about how the Handbook is organized, please - contact the &a.doc;. + The Handbook's organization may change over time, and + this document may lag in detailing the organizational + changes. If you have any questions about how the Handbook + is organized, please contact the &a.doc;. - + <filename>Makefile</filename> - - The Makefile defines some variables that - affect how the SGML source is converted to other formats, and - lists the various source files that make up the Handbook. It then - includes the standard doc.project.mk file, to - bring in the rest of the code that handles converting documents - from one format to another. + + The Makefile defines some + variables that affect how the SGML source is converted to + other formats, and lists the various source files that + make up the Handbook. It then includes the standard + doc.project.mk file, to bring in the + rest of the code that handles converting documents from + one format to another. <filename>book.sgml</filename> - - This is the top level document in the Handbook. It contains - the Handbook's This is the top level document in the Handbook. It + contains the Handbook's DOCTYPE - declaration, as well as the elements that describe the - Handbook's structure. + declaration, as well as the elements that + describe the Handbook's structure. book.sgml uses parameter entities to load in the files with the - .ent extension. These files (described later) - then define general + .ent extension. These files + (described later) then define general entities that are used throughout the rest of the Handbook. @@ -212,69 +224,75 @@ <filename><replaceable>directory</replaceable>/chapter.sgml</filename> - Each chapter in the Handbook is stored in a file called - chapter.sgml in a separate directory from the - other chapters. Each directory is named after the value of the - id attribute on the chapter + Each chapter in the Handbook is stored in a file + called chapter.sgml in a separate + directory from the other chapters. Each directory is + named after the value of the id + attribute on the chapter element. - For example, if one of the chapter files contains: - + For example, if one of the chapter files + contains: + ... ]]> - Then it will be called chapter.sgml in - the kernelconfig directory. In - general, the entire contents of the chapter will be held in this + Then it will be called + chapter.sgml in the + kernelconfig directory. In general, + the entire contents of the chapter will be held in this file. - - When the HTML version of the Handbook is produced, this will - yield kernelconfig.html. This is - because of the id value, and is not related to - the name of the directory. - - In earlier versions of the Handbook the files were stored in - the same directory as book.sgml, and named - after the value of the id attribute on the - file's chapter element. - Now, it is possible to include images in each - chapter. Images for each Handbook chapter are stored within - share/images/books/handbook. - Note that localized version of these images should be placed in the same - directory as the SGML sources for each chapter. - Namespace collisions would be inevitable, and it is - easier to work with several directories with a few files in them - than it is to work with one directory that has many files in - it. - - A brief look will show that there are many directories with - individual chapter.sgml files, including - basics/chapter.sgml, + + When the HTML version of the Handbook is produced, + this will yield kernelconfig.html. + This is because of the id value, and is + not related to the name of the directory. + + In earlier versions of the Handbook the files were + stored in the same directory as + book.sgml, and named after the value + of the id attribute on the file's + chapter element. Now, it is possible + to include images in each chapter. Images for each + Handbook chapter are stored within share/images/books/handbook. + Note that localized version of these images should be + placed in the same directory as the SGML sources for each + chapter. Namespace collisions would be inevitable, and it + is easier to work with several directories with a few + files in them than it is to work with one directory that + has many files in it. + + A brief look will show that there are many directories + with individual chapter.sgml files, + including basics/chapter.sgml, introduction/chapter.sgml, and printing/chapter.sgml. - + - 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 reorganized; - this sort of reorganization should not (generally) include the - need to rename files (unless entire chapters are being promoted - or demoted within the hierarchy). + 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 reorganized; this sort of + reorganization should not (generally) include the need + to rename files (unless entire chapters are being + promoted or demoted within the hierarchy). - - Each chapter.sgml file will not be a - complete SGML document. In particular, they will not have their - own DOCTYPE lines at the start of the files. - - This is unfortunate as - it makes it impossible to treat these as generic SGML - files and simply convert them to HTML, RTF, PS, and other - formats in the same way the main Handbook is generated. This - would force you to rebuild the Handbook - every time you want to see the effect a change has had on just - one chapter. + + Each chapter.sgml file will not + be a complete SGML document. In particular, they will not + have their own DOCTYPE lines at the start of the + files. + + This is unfortunate as it makes it impossible to treat + these as generic SGML files and simply convert them to + HTML, RTF, PS, and other formats in the same way the main + Handbook is generated. This would + force you to rebuild the Handbook every time you want to + see the effect a change has had on just one + chapter. From owner-svn-doc-head@FreeBSD.ORG Mon May 21 14:25:09 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90BA3106566B; Mon, 21 May 2012 14:25:09 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7ABFC8FC15; Mon, 21 May 2012 14:25:09 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4LEP2v9061535; Mon, 21 May 2012 14:25:02 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4LEP2i6061533; Mon, 21 May 2012 14:25:02 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205211425.q4LEP2i6061533@svn.freebsd.org> From: Warren Block Date: Mon, 21 May 2012 14:25:02 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38869 - head/en_US.ISO8859-1/books/fdp-primer/stylesheets X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 14:25:09 -0000 Author: wblock Date: Mon May 21 14:25:02 2012 New Revision: 38869 URL: http://svn.freebsd.org/changeset/doc/38869 Log: Whitespace-only commits, wrap long lines and remove whitespace from blank lines. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/stylesheets/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/stylesheets/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/stylesheets/chapter.sgml Mon May 21 14:21:16 2012 (r38868) +++ head/en_US.ISO8859-1/books/fdp-primer/stylesheets/chapter.sgml Mon May 21 14:25:02 2012 (r38869) @@ -32,50 +32,53 @@ * Stylesheets - - SGML says nothing about how a document should be displayed to the - user, or rendered on paper. To do that, various languages have been - developed to describe stylesheets, including DynaText, Panorama, SPICE, - JSSS, FOSI, CSS, and DSSSL. - - For DocBook, we are using stylesheets written in DSSSL. For HTML we - are using CSS. + + SGML says nothing about how a document should be displayed to + the user, or rendered on paper. To do that, various languages + have been developed to describe stylesheets, including DynaText, + Panorama, SPICE, JSSS, FOSI, CSS, and DSSSL. + + For DocBook, we are using stylesheets written in DSSSL. For + HTML we are using CSS. * DSSSL - - The Documentation Project uses a slightly customized version of - Norm Walsh's modular DocBook stylesheets. - - These can be found in - textproc/dsssl-docbook-modular. - - The modified stylesheets are not in the ports system. Instead they - are part of the Documentation Project source repository, and can be - found in doc/share/sgml/freebsd.dsl. It is well - commented, and pending completion of this section you are encouraged to - examine that file to see how some of the available options in the - standard stylesheets have been configured in order to customize the - output for the FreeBSD Documentation Project. That file also contains - examples showing how to extend the elements that the stylesheet - understands, which is how the FreeBSD specific elements have been - formatted. + + The Documentation Project uses a slightly customized version + of Norm Walsh's modular DocBook stylesheets. + + These can be found in textproc/dsssl-docbook-modular. + + The modified stylesheets are not in the ports system. + Instead they are part of the Documentation Project source + repository, and can be found in + doc/share/sgml/freebsd.dsl. It is well + commented, and pending completion of this section you are + encouraged to examine that file to see how some of the available + options in the standard stylesheets have been configured in + order to customize the output for the FreeBSD Documentation + Project. That file also contains examples showing how to extend + the elements that the stylesheet understands, which is how the + FreeBSD specific elements have been formatted. CSS - Cascading Stylesheets (CSS) are a mechanism for attaching style - information (font, weight, size, color, and so forth) to elements in an - HTML document without abusing HTML to do so. + Cascading Stylesheets (CSS) are a mechanism for attaching + style information (font, weight, size, color, and so forth) to + elements in an HTML document without abusing HTML to do + so. The DocBook Documents - The FreeBSD DSSSL stylesheets include a reference to a stylesheet, - docbook.css, which is expected to appear in the - same directory as the HTML files. The project-wide CSS file is copied - from doc/share/misc/docbook.css when documents + The FreeBSD DSSSL stylesheets include a reference to a + stylesheet, docbook.css, which is + expected to appear in the same directory as the HTML files. + The project-wide CSS file is copied from + doc/share/misc/docbook.css when documents are converted to HTML, and is installed automatically. From owner-svn-doc-head@FreeBSD.ORG Mon May 21 14:29:32 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C2ED1106564A; Mon, 21 May 2012 14:29:32 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id ACBD58FC08; Mon, 21 May 2012 14:29:32 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4LETWcF061666; Mon, 21 May 2012 14:29:32 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4LETWI4061664; Mon, 21 May 2012 14:29:32 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205211429.q4LETWI4061664@svn.freebsd.org> From: Warren Block Date: Mon, 21 May 2012 14:29:32 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38870 - head/en_US.ISO8859-1/books/fdp-primer/the-website X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 14:29:33 -0000 Author: wblock Date: Mon May 21 14:29:32 2012 New Revision: 38870 URL: http://svn.freebsd.org/changeset/doc/38870 Log: Whitespace-only fixes. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Mon May 21 14:25:02 2012 (r38869) +++ head/en_US.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Mon May 21 14:29:32 2012 (r38870) @@ -94,9 +94,9 @@ Build the Web Pages from Scratch Having completed the necessary steps to obtain the website - source files, the website can be built. In our example, the build - directory is /usr/build + source files, the website can be built. In our example, the + build directory is /usr/build and all the required files are already in place. @@ -108,9 +108,10 @@ The website build starts from the en_US.ISO8859-1/htdocs directory by executing - the &man.make.1; all target, to - create the web pages. + class="directory">en_US.ISO8859-1/htdocs + directory by executing the &man.make.1; + all target, to create the web + pages. &prompt.root; cd en_US.ISO8859-1/htdocs &prompt.root; make all @@ -124,8 +125,8 @@ If you have moved out of the en_US.ISO8859-1/htdocs directory, change back to - it. + class="directory">en_US.ISO8859-1/htdocs + directory, change back to it. &prompt.root; cd /usr/build/en_US.ISO8859-1/htdocs @@ -184,8 +185,8 @@ If set and not empty, the Makefiles will build and install only the HTML pages from the en_US.ISO8859-1/htdocs directory. - All other directories within en_US.ISO8859-1/htdocs + directory. All other directories within en_US.ISO8859-1 (Handbook, FAQ, Tutorials) will be ignored. E.g.: @@ -200,9 +201,10 @@ If set, the Makefiles will build and install only for the languages specified by this variable inside the - /usr/build directory. All - other languages except English will be ignored. - E.g.: + /usr/build + directory. All other languages except English will be + ignored. E.g.: &prompt.root; make WEB_LANG="el_GR.ISO8859-7 es_ES.ISO8859-1 hu_HU.ISO8859-2 nl_NL.ISO8859-1" all install From owner-svn-doc-head@FreeBSD.ORG Mon May 21 14:43:22 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0330B106564A; Mon, 21 May 2012 14:43:22 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A4E568FC0A; Mon, 21 May 2012 14:43:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4LEhLqe061997; Mon, 21 May 2012 14:43:21 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4LEhL1l061995; Mon, 21 May 2012 14:43:21 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205211443.q4LEhL1l061995@svn.freebsd.org> From: Warren Block Date: Mon, 21 May 2012 14:43:21 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38871 - head/en_US.ISO8859-1/books/fdp-primer/translations X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 14:43:22 -0000 Author: wblock Date: Mon May 21 14:43:21 2012 New Revision: 38871 URL: http://svn.freebsd.org/changeset/doc/38871 Log: Whitespace-only fixes. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml Mon May 21 14:29:32 2012 (r38870) +++ head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml Mon May 21 14:43:21 2012 (r38871) @@ -33,13 +33,14 @@ Translations - This is the FAQ for people translating the FreeBSD documentation - (FAQ, Handbook, tutorials, manual pages, and others) to different - languages. - - It is very heavily based on the translation FAQ - from the FreeBSD German Documentation Project, originally written by Frank - Gründer elwood@mc5sys.in-berlin.de and translated back to + This is the FAQ for people translating the FreeBSD + documentation (FAQ, Handbook, tutorials, manual pages, and others) + to different languages. + + It is very heavily based on the + translation FAQ from the FreeBSD German Documentation Project, + originally written by Frank Gründer + elwood@mc5sys.in-berlin.de and translated back to English by Bernd Warken bwarken@mayn.de. The FAQ is maintained by the &a.doceng;. @@ -51,10 +52,11 @@ - More and more people are approaching the freebsd-doc mailing - list and volunteering to translate FreeBSD documentation to other - languages. This FAQ aims to answer their questions so they can start - translating documentation as quickly as possible. + More and more people are approaching the freebsd-doc + mailing list and volunteering to translate FreeBSD + documentation to other languages. This FAQ aims to answer + their questions so they can start translating documentation + as quickly as possible. @@ -63,17 +65,17 @@ What do i18n and l10n mean? - + i18n means - internationalization and l10n - means localization. They are just a convenient - shorthand. - - i18n can be read as i followed by - 18 letters, followed by n. Similarly, - l10n is l followed by 10 letters, - followed by n. + internationalization and + l10n means localization. + They are just a convenient shorthand. + + i18n can be read as i + followed by 18 letters, followed by n. + Similarly, l10n is l + followed by 10 letters, followed by n. @@ -83,10 +85,12 @@ - Yes. Different translation groups have their own mailing - lists. The list - of translation projects has more information about the - mailing lists and web sites run by each translation project. + Yes. Different translation groups have their own + mailing lists. The list + of translation projects has more information about + the mailing lists and web sites run by each translation + project. @@ -96,12 +100,13 @@ - Yes. The more people work on translation the faster it gets - done, and the faster changes to the English documentation are - mirrored in the translated documents. + Yes. The more people work on translation the faster it + gets done, and the faster changes to the English + documentation are mirrored in the translated + documents. - You do not have to be a professional translator to be able to - help. + You do not have to be a professional translator to be + able to help. @@ -111,139 +116,151 @@ - Ideally, you will have a good knowledge of written English, and - obviously you will need to be fluent in the language you are - translating to. + Ideally, you will have a good knowledge of written + English, and obviously you will need to be fluent in the + language you are translating to. - English is not strictly necessary. For example, you could do a - Hungarian translation of the FAQ from the Spanish + English is not strictly necessary. For example, you + could do a Hungarian translation of the FAQ from the Spanish translation. - + What software do I need to know? - It is strongly recommended that you maintain a local copy of the - FreeBSD CVS repository (at least the documentation part) either - using CTM or - CVSup. The "Staying current with FreeBSD" - chapter in the Handbook explains how to use these + It is strongly recommended that you maintain a local + copy of the FreeBSD CVS repository (at least the + documentation part) either using + CTM or + CVSup. The "Staying current with + FreeBSD" chapter in the Handbook explains how to use these applications. - You should be comfortable using CVS. - This will allow you to see what has changed between different - versions of the files that make up the documentation. + You should be comfortable using + CVS. This will allow you to see + what has changed between different versions of the files + that make up the documentation. - [XXX To Do -- write a tutorial that shows how to use CVSup to - get just the documentation, check it out, and see what has changed - between two arbitrary revisions] + [XXX To Do -- write a tutorial that shows how to use + CVSup to get just the documentation, check it out, and see + what has changed between two arbitrary revisions] - How do I find out who else might be translating to the same - language? + How do I find out who else might be translating to the + same language? The Documentation - Project translations page lists the translation efforts - that are currently known about. If others are already working - on translating documentation to your language, please do not - duplicate their efforts. Instead, contact them to see how you can - help. + Project translations page lists the translation + efforts that are currently known about. If others are + already working on translating documentation to your + language, please do not duplicate their efforts. Instead, + contact them to see how you can help. If no one is listed on that page as translating for your - language, then send a message to the &a.doc; in case someone else - is thinking of doing a translation, but has not announced it yet. - + language, then send a message to the &a.doc; in case someone + else is thinking of doing a translation, but has not + announced it yet. - + - No one else is translating to my language. What do I do? + No one else is translating to my language. What do I + do? - Congratulations, you have just started the FreeBSD - your-language-here Documentation - Translation Project. Welcome aboard. + Congratulations, you have just started the + FreeBSD your-language-here + Documentation Translation Project. Welcome + aboard. + + First, decide whether or not you have got the time to + spare. Since you are the only person working on your + language at the moment it is going to be your responsibility + to publicize your work and coordinate any volunteers that + might want to help you. - First, decide whether or not you have got the time to spare. Since - you are the only person working on your language at the moment it is - going to be your responsibility to publicize your work and - coordinate any volunteers that might want to help you. + Write an email to the Documentation Project mailing + list, announcing that you are going to translate the + documentation, so the Documentation Project translations + page can be maintained. - Write an email to the Documentation Project mailing list, - announcing that you are going to translate the documentation, so the - Documentation Project translations page can be maintained. + If there is already someone in your country providing + FreeBSD mirroring services you should contact them and ask + if you can have some webspace for your project, and possibly + an email address or mailing list services. - If there is already someone in your country providing FreeBSD - mirroring services you should contact them and ask if you can - have some webspace for your project, and possibly an email - address or mailing list services. - - Then pick a document and start translating. It is best to start - with something fairly small—either the FAQ, or one of the - tutorials. + Then pick a document and start translating. It is best + to start with something fairly small—either the FAQ, + or one of the tutorials. - I have translated some documentation, where do I send it? + I have translated some documentation, where do I send + it? - That depends. If you are already working with a translation team - (such as the Japanese team, or the German team) then they will have - their own procedures for handling submitted documentation, and these - will be outlined on their web pages. + That depends. If you are already working with a + translation team (such as the Japanese team, or the German + team) then they will have their own procedures for handling + submitted documentation, and these will be outlined on their + web pages. - If you are the only person working on a particular language (or - you are responsible for a translation project and want to submit - your changes back to the FreeBSD project) then you should send your - translation to the FreeBSD project (see the next question). + If you are the only person working on a particular + language (or you are responsible for a translation project + and want to submit your changes back to the FreeBSD project) + then you should send your translation to the FreeBSD project + (see the next question). - I am the only person working on translating to this language, how - do I submit my translation? + I am the only person working on translating to this + language, how do I submit my translation? or - We are a translation team, and want to submit documentation that - our members have translated for us? + We are a translation team, and want to submit + documentation that our members have translated for + us? - First, make sure your translation is organized properly. This - means that it should drop into the existing documentation tree and - build straight away. + First, make sure your translation is organized properly. + This means that it should drop into the existing + documentation tree and build straight away. - Currently, the FreeBSD documentation is stored in a top level - directory called doc/. Directories below this - are named according to the language code they are written in, as - defined in ISO639 (/usr/share/misc/iso639 on a - version of FreeBSD newer than 20th January 1999). + Currently, the FreeBSD documentation is stored in a top + level directory called doc/. + Directories below this are named according to the language + code they are written in, as defined in ISO639 + (/usr/share/misc/iso639 on a version of + FreeBSD newer than 20th January 1999). - If your language can be encoded in different ways (for example, - Chinese) then there should be directories below this, one for each - encoding format you have provided. + If your language can be encoded in different ways (for + example, Chinese) then there should be directories below + this, one for each encoding format you have provided. - Finally, you should have directories for each document. + Finally, you should have directories for each + document. - For example, a hypothetical Swedish translation might look - like: + For example, a hypothetical Swedish translation might + look like: doc/ sv_SE.ISO8859-1/ @@ -256,8 +273,8 @@ sv_SE.ISO8859-1 is the name of the translation, in lang.encoding - form. Note the - two Makefiles, which will be used to build the documentation. + form. Note the two Makefiles, which will be used to build + the documentation. Use &man.tar.1; and &man.gzip.1; to compress up your documentation, and send it to the project. @@ -266,41 +283,47 @@ &prompt.user; tar cf swedish-docs.tar sv_SE.ISO8859-1 &prompt.user; gzip -9 swedish-docs.tar - Put swedish-docs.tar.gz somewhere. If you - do not have access to your own webspace (perhaps your ISP does not - let you have any) then you can email &a.doceng;, and arrange to email - the files when it is convenient. - - Either way, you should use &man.send-pr.1; to submit a report - indicating that you have submitted the documentation. It would be - very helpful if you could get other people to look over your - translation and double check it first, since it is unlikely that the - person committing it will be fluent in the language. - - Someone (probably the Documentation Project Manager, currently - &a.doceng;) will then take your translation and confirm that it builds. - In particular, the following things will be looked at: + Put swedish-docs.tar.gz somewhere. + If you do not have access to your own webspace (perhaps your + ISP does not let you have any) then you can email + &a.doceng;, and arrange to email the files when it is + convenient. + + Either way, you should use &man.send-pr.1; to submit a + report indicating that you have submitted the documentation. + It would be very helpful if you could get other people to + look over your translation and double check it first, since + it is unlikely that the person committing it will be fluent + in the language. + + Someone (probably the Documentation Project Manager, + currently &a.doceng;) will then take your translation and + confirm that it builds. In particular, the following things + will be looked at: - Do all your files use RCS strings (such as "ID")? + Do all your files use RCS strings (such as + "ID")? Does make all in the - sv_SE.ISO8859-1 directory work correctly? + sv_SE.ISO8859-1 directory work + correctly? - + - Does make install work correctly? + Does make install work + correctly? - - + + If there are any problems then whoever is looking at the submission will get back to you to work them out. - If there are no problems your translation will be committed - as soon as possible. + If there are no problems your translation will be + committed as soon as possible. @@ -313,21 +336,22 @@ We would prefer that you did not. - For example, suppose that you are translating the Handbook to - Korean, and want to include a section about retailers in Korea in - your Handbook. - - There is no real reason why that information should not be in the - English (or German, or Spanish, or Japanese, or …) versions - as well. It is feasible that an English speaker in Korea might try - to pick up a copy of FreeBSD whilst over there. It also helps - increase FreeBSD's perceived presence around the globe, which is not - a bad thing. - - If you have country specific information, please submit it as a - change to the English Handbook (using &man.send-pr.1;) and then - translate the change back to your language in the translated - Handbook. + For example, suppose that you are translating the + Handbook to Korean, and want to include a section about + retailers in Korea in your Handbook. + + There is no real reason why that information should not + be in the English (or German, or Spanish, or Japanese, or + …) versions as well. It is feasible that an English + speaker in Korea might try to pick up a copy of FreeBSD + whilst over there. It also helps increase FreeBSD's + perceived presence around the globe, which is not a bad + thing. + + If you have country specific information, please submit + it as a change to the English Handbook (using + &man.send-pr.1;) and then translate the change back to your + language in the translated Handbook. Thanks. @@ -335,27 +359,29 @@ - How should language specific characters be included? + How should language specific characters be + included? - Non-ASCII characters in the documentation should be included - using SGML entities. + Non-ASCII characters in the documentation should be + included using SGML entities. - Briefly, these look like an ampersand (&), the name of the - entity, and a semi-colon (;). + Briefly, these look like an ampersand (&), the name + of the entity, and a semi-colon (;). - The entity names are defined in ISO8879, which is in the ports - tree as textproc/iso8879. + The entity names are defined in ISO8879, which is in the + ports tree as textproc/iso8879. A few examples include: - Entity + Entity - Appearance + Appearance - Description + Description &eacute; @@ -377,8 +403,8 @@ After you have installed the iso8879 port, the files in - /usr/local/share/sgml/iso8879 contain the - complete list. + /usr/local/share/sgml/iso8879 contain + the complete list. @@ -389,12 +415,13 @@ In the English documents, the reader is addressed as - you, there is no formal/informal distinction as there - is in some languages. + you, there is no formal/informal distinction + as there is in some languages. - If you are translating to a language which does distinguish, use - whichever form is typically used in other technical documentation in - your language. If in doubt, use a mildly polite form. + If you are translating to a language which does + distinguish, use whichever form is typically used in other + technical documentation in your language. If in doubt, use + a mildly polite form. @@ -407,8 +434,8 @@ Yes. - The header of the English version of each document will look - something like this: + The header of the English version of each document will + look something like this: <!-- The FreeBSD Documentation Project @@ -416,12 +443,13 @@ $FreeBSD: doc/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml,v 1.5 2000/07/07 18:38:38 dannyboy Exp $ --> - The exact boilerplate may change, but it will always include a - $FreeBSD$ line and the phrase The FreeBSD Documentation - Project. - Note that the $FreeBSD part is expanded automatically by - CVS, so it should be empty (just - $FreeBSD$) for new files. + The exact boilerplate may change, but it will always + include a $FreeBSD$ line and the phrase + The FreeBSD Documentation Project. + Note that the $FreeBSD part is expanded automatically + by CVS, so it should be empty (just + $FreeBSD$) for new + files. Your translated documents should include their own $FreeBSD$ line, and change the @@ -429,9 +457,9 @@ The FreeBSD language Documentation Project. - In addition, you should add a third line which indicates which - revision of the English text this is based on. - + In addition, you should add a third line which indicates + which revision of the English text this is based on. + So, the Spanish version of this file might start: <!-- From owner-svn-doc-head@FreeBSD.ORG Mon May 21 14:54:44 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B5791065675; Mon, 21 May 2012 14:54:44 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 73B328FC0C; Mon, 21 May 2012 14:54:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4LEsiqg062348; Mon, 21 May 2012 14:54:44 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4LEsi2L062346; Mon, 21 May 2012 14:54:44 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205211454.q4LEsi2L062346@svn.freebsd.org> From: Warren Block Date: Mon, 21 May 2012 14:54:44 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38872 - head/en_US.ISO8859-1/books/fdp-primer/writing-style X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2012 14:54:44 -0000 Author: wblock Date: Mon May 21 14:54:44 2012 New Revision: 38872 URL: http://svn.freebsd.org/changeset/doc/38872 Log: Whitespace-only fixes. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/writing-style/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/writing-style/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/writing-style/chapter.sgml Mon May 21 14:43:21 2012 (r38871) +++ head/en_US.ISO8859-1/books/fdp-primer/writing-style/chapter.sgml Mon May 21 14:54:44 2012 (r38872) @@ -32,112 +32,117 @@ Writing Style - - In order to promote consistency between the myriad authors of the - FreeBSD documentation, some guidelines have been drawn up for authors to - follow. - + + In order to promote consistency between the myriad authors of + the FreeBSD documentation, some guidelines have been drawn up for + authors to follow. + Use American English Spelling - There are several variants of English, with different spellings - for the same word. Where spellings differ, use the American English - variant. color, not colour, - rationalize, not rationalise, and so - on. + There are several variants of English, with different + spellings for the same word. Where spellings differ, use + the American English variant. color, not + colour, rationalize, not + rationalise, and so on. The use of British English may be accepted in the case of a contributed article, however the spelling must be consistent within the whole document. The other documents - such as books, web site, manual pages, etc. will have to use - American English. + such as books, web site, manual pages, etc. will have to + use American English. Do not use contractions - + - Do not use contractions. Always spell the phrase out in full. - Don't use contractions would be wrong. + Do not use contractions. Always spell the phrase out in + full. Don't use contractions would be + wrong. - Avoiding contractions makes for a more formal tone, is more - precise, and is slightly easier for translators. + Avoiding contractions makes for a more formal tone, is + more precise, and is slightly easier for translators. - + Use the serial comma - + - In a list of items within a paragraph, separate each item from - the others with a comma. Separate the last item from the others with - a comma and the word and. + In a list of items within a paragraph, separate each + item from the others with a comma. Separate the last item + from the others with a comma and the word + and. For example, look at the following: - +
This is a list of one, two and three items.
- + Is this a list of three items, one, - two, and three, or a list of two items, - one and two and three? - - It is better to be explicit and include a serial comma: - + two, and three, or a list of + two items, one and two and + three? + + It is better to be explicit and include a serial + comma: +
This is a list of one, two, and three items.
- + Avoid redundant phrases - + - Try not to use redundant phrases. In particular, the - command, the file, and man - command are probably redundant. - - These two examples show this for commands. The second example - is preferred. - + Try not to use redundant phrases. In particular, + the command, the file, and + man command are probably redundant. + + These two examples show this for commands. The second + example is preferred. + - Use the command cvsup to update your - sources. + Use the command cvsup to update + your sources. - + - Use cvsup to update your sources. + Use cvsup to update your + sources. - - These two examples show this for filenames. The second example - is preferred. - + + These two examples show this for filenames. The second + example is preferred. + … in the filename /etc/rc.local - + … in /etc/rc.local - - These two examples show this for manual references. The second - example is preferred (the second example uses + + These two examples show this for manual references. The + second example is preferred (the second example uses citerefentry). - + See man csh for more information. - + See &man.csh.1;. @@ -152,11 +157,11 @@ Emacs. While it may be argued that a capital letter following - a period denotes a new sentence, this is not the case, especially - in name usage. Jordan K. Hubbard is a good - example; it has a capital H following a - period and a space, and there certainly is not a new sentence - there. + a period denotes a new sentence, this is not the case, + especially in name usage. Jordan K. Hubbard + is a good example; it has a capital H + following a period and a space, and there certainly is not a + new sentence there.
@@ -168,8 +173,9 @@ Style Guide - To keep the source for the documentation consistent when many different - people are editing it, please follow these style conventions. + To keep the source for the documentation consistent when + many different people are editing it, please follow these style + conventions. Letter Case @@ -177,9 +183,10 @@ Tags are entered in lower case, para, not PARA. - Text that appears in SGML contexts is generally written in upper - case, <!ENTITY…>, and - <!DOCTYPE…>, not + Text that appears in SGML contexts is generally written in + upper case, <!ENTITY…>, and + <!DOCTYPE…>, + not <!entity…> and <!doctype…>. @@ -188,36 +195,36 @@ Acronyms Acronyms should generally be spelled out the first time - they appear in a document, as in: Network Time Protocol (NTP). After the - acronym has been defined, you should generally use the acronym - only (not the whole term, unless it makes more sense - contextually to use the whole term). Usually, acronyms are - defined only one per document. But if you prefer, you can also - define them the first time they appear in each chapter. + they appear in a document, as in: Network Time Protocol + (NTP). + After the acronym has been defined, you should generally use + the acronym only (not the whole term, unless it makes more + sense contextually to use the whole term). Usually, acronyms + are defined only one per document. But if you prefer, you can + also define them the first time they appear in each + chapter. The first three uses of an acronym should be enclosed in - acronym tags, with a role attribute - with the full term defined. This allows a link to the - glossary to be created, and for mouseovers to be rendered with - the fully expanded term. + acronym tags, with a + role attribute with the full term defined. + This allows a link to the glossary to be created, and for + mouseovers to be rendered with the fully expanded term. Indentation Each file starts with indentation set at column 0, - regardless of the indentation level of the file - which might contain this one. + regardless of the indentation level of + the file which might contain this one. Opening tags increase the indentation level by 2 spaces. - Closing tags decrease the indentation level by 2 spaces. Blocks - of 8 spaces at the start of a line should be replaced with a tab. - Do not use - spaces in front of tabs, and do not add extraneous whitespace at the - end of a line. Content - within elements should be indented by two spaces if the content runs - over more than one line. + Closing tags decrease the indentation level by 2 spaces. + Blocks of 8 spaces at the start of a line should be replaced + with a tab. Do not use spaces in front of tabs, and do not + add extraneous whitespace at the end of a line. Content + within elements should be indented by two spaces if the + content runs over more than one line. For example, the source for this section looks something like: @@ -244,12 +251,12 @@ V If you use Emacs or XEmacs to edit the files then - sgml-mode should be loaded automatically, and the - Emacs local variables at the bottom of each file should enforce these - styles. + sgml-mode should be loaded automatically, + and the Emacs local variables at + the bottom of each file should enforce these styles. - Vim users might want to configure - their editor with: + Vim users might want to + configure their editor with: augroup sgmledit autocmd FileType sgml set formatoptions=cq2l " Special formatting options @@ -267,7 +274,7 @@ augroup END Tag Spacing - + Tags that start at the same indent as a previous tag should be separated by a blank line, and those that are not at the same indent as a previous tag should not: @@ -305,8 +312,8 @@ augroup END
Separating Tags Tags like itemizedlist which will - always have further tags inside them, and in fact do not take - character data themselves, are always on a line by + always have further tags inside them, and in fact do not + take character data themselves, are always on a line by themselves. Tags like para and @@ -334,38 +341,40 @@ augroup END White Space Changes - When committing changes, do not commit changes to the - content at the same time as changes to the + When committing changes, do not commit changes + to the content at the same time as changes to the formatting. - - This is so that the teams that convert the documentation to other - languages can quickly see what content has actually changed in your - commit, without having to decide whether a line has changed because of - the content, or just because it has been refilled. - - For example, if you have added two sentences to a paragraph, such - that the line lengths on the paragraph now go over 80 columns, first - commit your change with the too-long line lengths. Then fix the line - wrapping, and commit this second change. In the commit message for - the second change, be sure to indicate that this is a whitespace-only - change, and that the translation team can ignore it. + + This is so that the teams that convert the documentation + to other languages can quickly see what content has actually + changed in your commit, without having to decide whether a + line has changed because of the content, or just because it + has been refilled. + + For example, if you have added two sentences to a + paragraph, such that the line lengths on the paragraph now go + over 80 columns, first commit your change with the too-long + line lengths. Then fix the line wrapping, and commit this + second change. In the commit message for the second change, + be sure to indicate that this is a whitespace-only change, and + that the translation team can ignore it. Non-Breaking Space - Avoid line breaks in places where they look ugly - or make it difficult to follow a sentence. Line breaks depend - on the width of the chosen output medium. In particular, viewing - the HTML documentation with a text browser can lead to badly + Avoid line breaks in places where they look ugly or make + it difficult to follow a sentence. Line breaks depend on the + width of the chosen output medium. In particular, viewing the + HTML documentation with a text browser can lead to badly formatted paragraphs like the next one: Data capacity ranges from 40 MB to 15 GB. Hardware compression … The general entity &nbsp; prohibits - line breaks between parts belonging together. Use non-breaking - spaces in the following places: + line breaks between parts belonging together. Use + non-breaking spaces in the following places: @@ -379,10 +388,11 @@ GB. Hardware compression … - between multiword names (use with caution when applying this - to more than 3-4 word names like The FreeBSD Brazilian - Portuguese Documentation Project): - + between multiword names (use with caution when + applying this to more than 3-4 word names like + The FreeBSD Brazilian Portuguese Documentation + Project): + @@ -395,8 +405,8 @@ GB. Hardware compression …O'Reilly - word list. + url="http://www.oreilly.com/oreilly/author/stylesheet.html">O'Reilly + word list. @@ -471,7 +481,6 @@ GB. Hardware compression …web server -
From owner-svn-doc-head@FreeBSD.ORG Tue May 22 16:03:04 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 601C91065674; Tue, 22 May 2012 16:03:04 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4B0AB8FC0C; Tue, 22 May 2012 16:03:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4MG347D011844; Tue, 22 May 2012 16:03:04 GMT (envelope-from des@svn.freebsd.org) Received: (from des@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4MG34RJ011842; Tue, 22 May 2012 16:03:04 GMT (envelope-from des@svn.freebsd.org) Message-Id: <201205221603.q4MG34RJ011842@svn.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 22 May 2012 16:03:04 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38873 - head/en_US.ISO8859-1/books/porters-handbook X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 16:03:04 -0000 Author: des (src,ports committer) Date: Tue May 22 16:03:03 2012 New Revision: 38873 URL: http://svn.freebsd.org/changeset/doc/38873 Log: Document __FreeBSD_version 1000013 (import byacc) Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.sgml Mon May 21 14:54:44 2012 (r38872) +++ head/en_US.ISO8859-1/books/porters-handbook/book.sgml Tue May 22 16:03:03 2012 (r38873) @@ -15290,6 +15290,13 @@ Reference: <http://www.freebsd.org/po 10-CURRENT jemalloc import (rev 234924). + + + 1000013 + May 22, 2012 + 10-CURRENT after byacc import + (rev 235788). +
From owner-svn-doc-head@FreeBSD.ORG Wed May 23 01:41:08 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C79BC106566C; Wed, 23 May 2012 01:41:08 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2AA38FC0A; Wed, 23 May 2012 01:41:08 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4N1f8GP040844; Wed, 23 May 2012 01:41:08 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4N1f8jA040842; Wed, 23 May 2012 01:41:08 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201205230141.q4N1f8jA040842@svn.freebsd.org> From: Hiroki Sato Date: Wed, 23 May 2012 01:41:08 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38874 - head/share/mk X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 01:41:08 -0000 Author: hrs Date: Wed May 23 01:41:08 2012 New Revision: 38874 URL: http://svn.freebsd.org/changeset/doc/38874 Log: s/WWW_LANGCODE/LANGCODE/ for localized news.xml. Spotted by: ryusuke Modified: head/share/mk/doc.xml.mk Modified: head/share/mk/doc.xml.mk ============================================================================== --- head/share/mk/doc.xml.mk Tue May 22 16:03:03 2012 (r38873) +++ head/share/mk/doc.xml.mk Wed May 23 01:41:08 2012 (r38874) @@ -140,7 +140,7 @@ _PARAMS.news= --param news.project.xml- --param news.project.xml "'${XML_NEWS_NEWS}'" XML_NEWS_NEWS_MASTER= ${DOC_PREFIX}/share/sgml/news.xml .if exists(${DOC_PREFIX}/${LANGCODE}/share/sgml/news.xml) -XML_NEWS_NEWS= ${DOC_PREFIX}/${WWW_LANGCODE}/share/sgml/news.xml +XML_NEWS_NEWS= ${DOC_PREFIX}/${LANGCODE}/share/sgml/news.xml .else XML_NEWS_NEWS= ${DOC_PREFIX}/share/sgml/news.xml .endif From owner-svn-doc-head@FreeBSD.ORG Wed May 23 02:53:25 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D390C10657BC; Wed, 23 May 2012 02:53:25 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BD8018FC14; Wed, 23 May 2012 02:53:25 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4N2rPUC044111; Wed, 23 May 2012 02:53:25 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4N2rP42044109; Wed, 23 May 2012 02:53:25 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205230253.q4N2rP42044109@svn.freebsd.org> From: Warren Block Date: Wed, 23 May 2012 02:53:25 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38875 - head/en_US.ISO8859-1/books/porters-handbook X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 02:53:25 -0000 Author: wblock Date: Wed May 23 02:53:25 2012 New Revision: 38875 URL: http://svn.freebsd.org/changeset/doc/38875 Log: Whitespace-only fixes. Wrap long lines, fix indentation. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.sgml Wed May 23 01:41:08 2012 (r38874) +++ head/en_US.ISO8859-1/books/porters-handbook/book.sgml Wed May 23 02:53:25 2012 (r38875) @@ -580,8 +580,8 @@ PLIST_DIRS= lib/X11/onekodo-extract, but never ever change the way extract operates! Additionally, the target - post-deinstall is invalid and - is not run by the ports infrastructure.
+ post-deinstall is invalid and + is not run by the ports infrastructure.
Now that you understand what goes on when the user types @@ -595,8 +595,8 @@ PLIST_DIRS= lib/X11/onekoGet the original sources (normally) as a compressed tarball (foo.tar.gz or - foo.tar.bz2) and - copy it into DISTDIR. Always use + foo.tar.bz2) + and copy it into DISTDIR. Always use mainstream sources when and where you can. @@ -5638,7 +5638,8 @@ PLIST_SUB+= NLS="@comment " xfontcache xft xi xinerama xineramaproto xkbfile xkbui xmu xmuu xorg-server xp xpm xprintapputil xprintutil xproto xproxymngproto xrandr xrender xres xscrnsaver xt - xtrans xtrap xtst xv xvmc xxf86dga xxf86misc xxf86vm. + xtrans xtrap xtst xv xvmc xxf86dga xxf86misc + xxf86vm. Always up-to-date list can be found in /usr/ports/Mk/bsd.xorg.mk. @@ -6039,7 +6040,8 @@ USE_XORG= x11 xpm QMAKESPEC Set to the path of configuration file for - qmake (read-only variable). + qmake (read-only + variable). @@ -6068,21 +6070,21 @@ MAKE_ENV+= QMAKESPEC="${QMAKESPEC}" Component Selection (Qt 4.x Only) - When USE_QT_VER is set to 4, - individual Qt 4 tool and library dependencies can be - specified in the QT_COMPONENTS variable. - Every component can be suffixed by either - _build or _run, the - suffix indicating whether the component should be depended - on at buildtime or runtime, respectively. If unsuffixed, - the component will be depended on at both build- and - runtime. Usually, library components should be specified - unsuffixed, tool components should be specified with the - _build suffix and plugin components - should be specified with the _run suffix. - The most commonly used components are listed below (all - available components are listed in - _QT_COMPONENTS_ALL in + When USE_QT_VER is set to + 4, individual Qt 4 tool and library + dependencies can be specified in the + QT_COMPONENTS variable. Every component + can be suffixed by either _build or + _run, the suffix indicating whether the + component should be depended on at buildtime or runtime, + respectively. If unsuffixed, the component will be depended + on at both build- and runtime. Usually, library components + should be specified unsuffixed, tool components should be + specified with the _build suffix and + plugin components should be specified with the + _run suffix. The most commonly used + components are listed below (all available components are + listed in _QT_COMPONENTS_ALL in /usr/ports/Mk/bsd.qt.mk): @@ -6226,14 +6228,14 @@ MAKE_ENV+= QMAKESPEC="${QMAKESPEC}"In this example, the ported application uses the Qt 4 graphical user interface library, the Qt 4 core library, all of the Qt 4 code generation tools and Qt 4's Makefile - generator. Since the gui library implies - a dependency on the core library, corelib - does not need to be specified. The Qt 4 code generation tools - moc, uic and - rcc, as well as the Makefile generator - qmake are only needed at buildtime, - thus they are specified with the _build - suffix: + generator. Since the gui library + implies a dependency on the core library, + corelib does not need to be specified. + The Qt 4 code generation tools moc, + uic and rcc, as well + as the Makefile generator qmake are + only needed at buildtime, thus they are specified with the + _build suffix:USE_QT_VER= 4 QT_COMPONENTS= gui moc_build qmake_build rcc_build uic_build @@ -6270,8 +6272,8 @@ do-configure: - Missing additional - include paths. Many applications come with + Missing additional include + paths. Many applications come with system tray icon support, but neglect to look for includes and/or libraries in the X11 directories. You can tell qmake to add directories to @@ -6339,7 +6341,7 @@ do-configure: components. _build and _run suffixes can be used to force components dependency type (e.g., - baseapps_run). If no suffix is set, a + baseapps_run). If no suffix is set, a default dependency type will be used. If you want to force both types, add the component twice with both suffixes (e.g., automoc4_build automoc4_run). The @@ -6572,7 +6574,8 @@ QT_COMPONENTS= moc_build qmake_build rcc JAVA_PORT_VENDOR_DESCRIPTION Description of the vendor of the JDK port (e.g. - 'OpenJDK BSD Porting Team'). + 'OpenJDK BSD Porting + Team'). @@ -8907,9 +8910,10 @@ CFLAGS+= -DLUA_VERSION_STRING="${VER_STR USE_SQLITE If variable is set to yes, add - dependency on databases/sqlite3 - port. The variable may also be set to values: 3, 2. + dependency on + databases/sqlite3 + port. The variable may also be set to values: 3, + 2. From owner-svn-doc-head@FreeBSD.ORG Wed May 23 03:06:54 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8EC8F1065676; Wed, 23 May 2012 03:06:54 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5F96A8FC19; Wed, 23 May 2012 03:06:54 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4N36sQY044803; Wed, 23 May 2012 03:06:54 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4N36scT044801; Wed, 23 May 2012 03:06:54 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205230306.q4N36scT044801@svn.freebsd.org> From: Warren Block Date: Wed, 23 May 2012 03:06:54 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38876 - head/en_US.ISO8859-1/books/porters-handbook X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 03:06:54 -0000 Author: wblock Date: Wed May 23 03:06:53 2012 New Revision: 38876 URL: http://svn.freebsd.org/changeset/doc/38876 Log: Fix a few spelling problems and add tags on pkg-plist entries. Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.sgml Wed May 23 02:53:25 2012 (r38875) +++ head/en_US.ISO8859-1/books/porters-handbook/book.sgml Wed May 23 03:06:53 2012 (r38876) @@ -6856,7 +6856,7 @@ QT_COMPONENTS= moc_build qmake_build rcc WITH_APACHE2 This variable is deprecated and should not be used - anymore. + any more. @@ -6884,20 +6884,20 @@ QT_COMPONENTS= moc_build qmake_build rcc APACHEMODDIR Directory for Apache modules. This variable is - automatically expanded in pkg-plist. + automatically expanded in pkg-plist. APACHEINCLUDEDIR Directory for Apache headers. This variable is - automatically expanded in pkg-plist. + automatically expanded in pkg-plist. APACHEETCDIR Directory for Apache configuration files. This variable is automatically expanded in - pkg-plist. + pkg-plist. @@ -8791,7 +8791,7 @@ CFLAGS+= -DLUA_VERSION_STRING="${VER_STR (libxul.so), seamonkey (libgtkembedmoz.so, deprecated, - shouldn't be used anymore). + shouldn't be used any more). @@ -8818,7 +8818,7 @@ CFLAGS+= -DLUA_VERSION_STRING="${VER_STR dependency. Possible values: yes (get default version), 20, 11 (deprecated, shouldn't be used - anymore). Default dependency is on version + any more). Default dependency is on version 20. @@ -8836,7 +8836,7 @@ CFLAGS+= -DLUA_VERSION_STRING="${VER_STR dependency. Possible values: yes (get default version), 31, 30 (deprecated, shouldn't be used - anymore). Default dependency is on version + any more). Default dependency is on version 31. From owner-svn-doc-head@FreeBSD.ORG Thu May 24 13:00:36 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0107F1065670; Thu, 24 May 2012 13:00:36 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DF5788FC15; Thu, 24 May 2012 13:00:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4OD0ZER039495; Thu, 24 May 2012 13:00:35 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4OD0ZOg039493; Thu, 24 May 2012 13:00:35 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201205241300.q4OD0ZOg039493@svn.freebsd.org> From: Gavin Atkinson Date: Thu, 24 May 2012 13:00:35 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38877 - head/en_US.ISO8859-1/htdocs/internal X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 13:00:36 -0000 Author: gavin Date: Thu May 24 13:00:35 2012 New Revision: 38877 URL: http://svn.freebsd.org/changeset/doc/38877 Log: Update the new-account page to reflect the doc repo now being in Subversion. Approved by: bcr, jkois (mentors) Modified: head/en_US.ISO8859-1/htdocs/internal/new-account.sgml Modified: head/en_US.ISO8859-1/htdocs/internal/new-account.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/internal/new-account.sgml Wed May 23 03:06:53 2012 (r38876) +++ head/en_US.ISO8859-1/htdocs/internal/new-account.sgml Thu May 24 13:00:35 2012 (r38877) @@ -98,8 +98,9 @@ adds the new committer to the correct access file, using an appropriate commit message. The commit message should at least contain the committer's full name, the mentor's name and what area - the new committer will start to work in. For src commit bits, an entry - should also be added to the mentors file in SVN to indicate + the new committer will start to work in. For src and doc commit + bits, an entry should also be added to the mentors file in + the respective Subversion repository to indicate the mentor relationship. Having done all that, the new committer and mentor jointly go through the first commit operations.

From owner-svn-doc-head@FreeBSD.ORG Thu May 24 13:33:56 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1F831065670; Thu, 24 May 2012 13:33:56 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CB99E8FC12; Thu, 24 May 2012 13:33:56 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4ODXuLI040921; Thu, 24 May 2012 13:33:56 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4ODXucU040919; Thu, 24 May 2012 13:33:56 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205241333.q4ODXucU040919@svn.freebsd.org> From: Warren Block Date: Thu, 24 May 2012 13:33:56 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38878 - head/share/sgml X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 13:33:57 -0000 Author: wblock Date: Thu May 24 13:33:56 2012 New Revision: 38878 URL: http://svn.freebsd.org/changeset/doc/38878 Log: Add Solutions Linux 2012 event for French FreeBSD User Group. Submitted by: Rodrigo OSORIO Approved by: gjb Modified: head/share/sgml/events2012.xml Modified: head/share/sgml/events2012.xml ============================================================================== --- head/share/sgml/events2012.xml Thu May 24 13:00:35 2012 (r38877) +++ head/share/sgml/events2012.xml Thu May 24 13:33:56 2012 (r38878) @@ -102,6 +102,31 @@ + + Solutions Linux 2012 + http://www.solutionslinux.fr + + 2012 + 6 + 19 + + + 2012 + 6 + 21 + + + France + Paris + CNIT La Défense + + + A 3 days event to promote GNU/Linux and Open Source Software to + companies. As usual, a French &os; User Group will be there to + promote &os;. The access to the event is free of charge. + + + BSDCan 2012 http://www.bsdcan.org/ From owner-svn-doc-head@FreeBSD.ORG Thu May 24 17:08:09 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF350106566B; Thu, 24 May 2012 17:08:09 +0000 (UTC) (envelope-from bcr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 99F708FC14; Thu, 24 May 2012 17:08:09 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4OH89x3050013; Thu, 24 May 2012 17:08:09 GMT (envelope-from bcr@svn.freebsd.org) Received: (from bcr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4OH89pU050011; Thu, 24 May 2012 17:08:09 GMT (envelope-from bcr@svn.freebsd.org) Message-Id: <201205241708.q4OH89pU050011@svn.freebsd.org> From: Benedict Reuschling Date: Thu, 24 May 2012 17:08:09 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38879 - head/en_US.ISO8859-1/books/handbook/cutting-edge X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 17:08:09 -0000 Author: bcr Date: Thu May 24 17:08:09 2012 New Revision: 38879 URL: http://svn.freebsd.org/changeset/doc/38879 Log: Update the portsnap example output to reflect the fact that it now uses geolocation to find the closest mirror. PR: docs/168265 Submitted by: Niclas Zeising (zeising daemonic se) Modified: head/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Modified: head/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Thu May 24 13:33:56 2012 (r38878) +++ head/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Thu May 24 17:08:09 2012 (r38879) @@ -659,10 +659,10 @@ before running "/usr/sbin/freebsd-update Ports Collection files, issue the following command:
&prompt.root; portsnap fetch -Looking up portsnap.FreeBSD.org mirrors... 3 mirrors found. -Fetching snapshot tag from portsnap1.FreeBSD.org... done. +Looking up portsnap.FreeBSD.org mirrors... 9 mirrors found. +Fetching snapshot tag from geodns-1.portsnap.freebsd.org... done. Fetching snapshot metadata... done. -Updating from Wed Aug 6 18:00:22 EDT 2008 to Sat Aug 30 20:24:11 EDT 2008. +Updating from Tue May 22 02:12:15 CEST 2012 to Wed May 23 16:28:31 CEST 2012. Fetching 3 metadata patches.. done. Applying metadata patches... done. Fetching 3 metadata files... done. From owner-svn-doc-head@FreeBSD.ORG Fri May 25 00:03:42 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EE73106564A; Fri, 25 May 2012 00:03:42 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 091398FC08; Fri, 25 May 2012 00:03:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4P03fZZ068260; Fri, 25 May 2012 00:03:41 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4P03fTU068257; Fri, 25 May 2012 00:03:41 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205250003.q4P03fTU068257@svn.freebsd.org> From: Glen Barber Date: Fri, 25 May 2012 00:03:41 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38880 - in head/en_US.ISO8859-1/htdocs/java: . dists X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 00:03:42 -0000 Author: gjb Date: Fri May 25 00:03:41 2012 New Revision: 38880 URL: http://svn.freebsd.org/changeset/doc/38880 Log: Update Java news page for OpenJDK build25. PR: 168316 Submitted by: jgh Modified: head/en_US.ISO8859-1/htdocs/java/dists/16.sgml head/en_US.ISO8859-1/htdocs/java/news.xml Modified: head/en_US.ISO8859-1/htdocs/java/dists/16.sgml ============================================================================== --- head/en_US.ISO8859-1/htdocs/java/dists/16.sgml Thu May 24 17:08:09 2012 (r38879) +++ head/en_US.ISO8859-1/htdocs/java/dists/16.sgml Fri May 25 00:03:41 2012 (r38880) @@ -12,6 +12,12 @@

+May 09, 2012: Greg +Lewis updates the &openjdk; 6 port +to Build 25. +

+ +

November 30, 2011: Jung-uk Kim updates the &openjdk; 6 port to Build 24. Modified: head/en_US.ISO8859-1/htdocs/java/news.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/java/news.xml Thu May 24 17:08:09 2012 (r38879) +++ head/en_US.ISO8859-1/htdocs/java/news.xml Fri May 25 00:03:41 2012 (r38880) @@ -25,6 +25,29 @@ + 2012 + + + May + + + 09 + + + <a href="http://openjdk.java.net/">&openjdk;</a> 6 + updated to Build 24. + +

Greg Lewis + updates the &openjdk; 6 port to + Build 25. See the JDK 1.6.x + page for more details.

+ + + + + + 2011 From owner-svn-doc-head@FreeBSD.ORG Fri May 25 00:04:35 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC5ED106564A; Fri, 25 May 2012 00:04:35 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B45F78FC12; Fri, 25 May 2012 00:04:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4P04ZLe068332; Fri, 25 May 2012 00:04:35 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4P04ZCR068330; Fri, 25 May 2012 00:04:35 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205250004.q4P04ZCR068330@svn.freebsd.org> From: Glen Barber Date: Fri, 25 May 2012 00:04:35 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38881 - head/en_US.ISO8859-1/htdocs/java X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 00:04:35 -0000 Author: gjb Date: Fri May 25 00:04:35 2012 New Revision: 38881 URL: http://svn.freebsd.org/changeset/doc/38881 Log: Make markup consitent with the rest of the documentation tree. Translators, please ignore this change. Modified: head/en_US.ISO8859-1/htdocs/java/news.xml Modified: head/en_US.ISO8859-1/htdocs/java/news.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/java/news.xml Fri May 25 00:03:41 2012 (r38880) +++ head/en_US.ISO8859-1/htdocs/java/news.xml Fri May 25 00:04:35 2012 (r38881) @@ -54,17 +54,17 @@ November - 30 + 30 - - <a href="http://openjdk.java.net/">&openjdk;</a> 6 updated - to Build 24. - -

Jung-uk Kim updates - the &openjdk; 6 port to - Build 24. See the JDK 1.6.x page - for more details.

-
+ + <a href="http://openjdk.java.net/">&openjdk;</a> 6 + updated to Build 24. + +

Jung-uk Kim updates + the &openjdk; 6 + port to Build 24. See the JDK + 1.6.x page for more details.

+
@@ -72,18 +72,17 @@ August - 9 + 9 - - <a href="http://openjdk.java.net/">&openjdk;</a> 6 updated - to Build 23. - -

Jung-uk Kim updates - the &openjdk; 6 port to - Build 23. - See the JDK 1.6.x page - for more details.

-
+ + <a href="http://openjdk.java.net/">&openjdk;</a> 6 + updated to Build 23. + +

Jung-uk Kim updates + the &openjdk; 6 + port to Build 23. See the JDK + 1.6.x page for more details.

+
@@ -91,18 +90,18 @@ March - 1 + 1 - - <a href="http://openjdk.java.net/">&openjdk;</a> 6 updated - to Build 22. - -

Jung-uk Kim updates - the &openjdk; 6 port to - Build 22. - See the JDK 1.6.x page - for more details.

-
+ + <a href="http://openjdk.java.net/">&openjdk;</a> 6 + updated to Build 22. + +

Jung-uk Kim updates + the &openjdk; 6 + port to Build 22. + See the JDK 1.6.x page + for more details.

+
@@ -110,18 +109,18 @@ February - 9 + 9 - - <a href="http://openjdk.java.net/">&openjdk;</a> 6 updated - to Build 21. - -

Jung-uk Kim updates - the &openjdk; 6 port to - Build 21. - See the JDK 1.6.x page - for more details.

-
+ + <a href="http://openjdk.java.net/">&openjdk;</a> 6 + updated to Build 21. + +

Jung-uk Kim updates + the &openjdk; 6 + port to Build 21. See the JDK + 1.6.x page + for more details.

+
@@ -133,19 +132,19 @@ July - 10 + 10 - - <a href="http://openjdk.java.net/">&openjdk;</a> 6 updated - to Build 20. - -

Greg Lewis' update - of the - &openjdk; 6 port to Build 20 - has been committed. - See the JDK 1.6.x page - for more details.

-
+ + <a href="http://openjdk.java.net/">&openjdk;</a> 6 + updated to Build 20. + +

Greg Lewis' + update of the &openjdk; 6 port to + Build 20 has been committed. See the JDK 1.6.x page for more + details.

+
@@ -153,19 +152,19 @@ May - 17 + 17 - - <a href="http://openjdk.java.net/">&openjdk;</a> 6 updated - to Build 19. - -

Lev A. Serebryakov's update - of the - &openjdk; 6 port to Build 19 - has been committed. - See the JDK 1.6.x page - for more details.

-
+ + <a href="http://openjdk.java.net/">&openjdk;</a> 6 + updated to Build 19. + +

Lev A. Serebryakov's + update of the &openjdk; 6 port to + Build 19 has been committed. See the JDK 1.6.x page for more + details.

+
@@ -173,18 +172,18 @@ January - 16 + 16 - - <a href="http://openjdk.java.net/">&openjdk;</a> 6 updated - to Build 17. - -

Brian Gardner has - released an update of the - &openjdk; 6 port to Build 17. - See the JDK 1.6.x page - for more details.

-
+ + <a href="http://openjdk.java.net/">&openjdk;</a> 6 + updated to Build 17. + +

Brian Gardner + has released an update of the &openjdk; 6 port to + Build 17. See the JDK 1.6.x + page for more details.

+
@@ -196,18 +195,18 @@ May - 5 + 5 - - <a href="http://openjdk.java.net/">&openjdk;</a> 6 updated - to Build 16. - -

Brian Gardner has - released an update of the - &openjdk; 6 port to Build 16. - See the JDK 1.6.x page - for more details.

-
+ + <a href="http://openjdk.java.net/">&openjdk;</a> 6 + updated to Build 16. + +

Brian Gardner + has released an update of the &openjdk; 6 port to + Build 16. See the JDK 1.6.x + page for more details.

+
@@ -215,17 +214,17 @@ March - 5 + 5 - - Patchset 9 for &jdk; 1.5 released + + Patchset 9 for &jdk; 1.5 released -

Greg Lewis has - released the ninth patchset (patchset 9) in the - &jdk; 1.5 series. See the JDK 1.5.x page for more - details.

-
+

Greg Lewis has + released the ninth patchset (patchset 9) in the + &jdk; 1.5 series. See the JDK 1.5.x page for more + details.

+
@@ -233,33 +232,34 @@ February - 23 + 23 - - Port of <a href="http://openjdk.java.net/">&openjdk;</a> 6 - committed - -

Brian Gardner's - port of &openjdk; 6 is - committed to the Ports Collection as java/openjdk6. - See the JDK 1.6.x page for more - details.

-
+ + Port of <a href="http://openjdk.java.net/">&openjdk;</a> 6 + committed + +

Brian + Gardner's port of &openjdk; 6 is + committed to the Ports Collection as java/openjdk6. See + the JDK 1.6.x page for more + details.

+
- 6 - - - Port of <a href="http://openjdk.java.net/">&openjdk;</a> 6 - announced - -

Brian Gardner has - announced a port of &openjdk; - 6 to FreeBSD 7.x. - See the JDK 1.6.x page for more - details.

-
+ 6 + + + Port of <a href="http://openjdk.java.net/">&openjdk;</a> 6 + announced + +

Brian Gardner + has announced a port of &openjdk; + 6 to FreeBSD 7.x. See the JDK + 1.6.x page for more details.

+
@@ -271,20 +271,20 @@ July - 18 + 18 - - The FreeBSD Foundation has announced binary releases - of the JDK 1.6 and JRE 1.6 - -

The FreeBSD - Foundation has announced binary releases of the JDK - 1.6 and JRE 1.6. For more details, see the - Foundation newsletter and the download - page.

-
+ + The FreeBSD Foundation has announced binary releases + of the JDK 1.6 and JRE 1.6 + +

The FreeBSD + Foundation has announced binary releases of the JDK + 1.6 and JRE 1.6. For more details, see the + Foundation newsletter and the download + page.

+
@@ -292,27 +292,27 @@ February - 24 + 24 - - Patchset 8 for &jdk; 1.5 released + + Patchset 8 for &jdk; 1.5 released -

Greg Lewis has - released the eighth patchset (patchset 8) in the - &jdk; 1.5 series. See the JDK 1.5.x page for more - details.

-
- - - Patchset 4 for &jdk; 1.6 released - -

Greg Lewis has - released the fourth patchset (patchset 4) in the - &jdk; 1.6 series. See the JDK 1.6.x page for more - details.

-
+

Greg Lewis has + released the eighth patchset (patchset 8) in the + &jdk; 1.5 series. See the JDK 1.5.x page for more + details.

+
+ + + Patchset 4 for &jdk; 1.6 released + +

Greg Lewis has + released the fourth patchset (patchset 4) in the + &jdk; 1.6 series. See the JDK 1.6.x page for more + details.

+
@@ -324,17 +324,17 @@ November - 15 + 15 - - Patchset 3 for &jdk; 1.6 released + + Patchset 3 for &jdk; 1.6 released -

Greg Lewis has - released the third patchset (patchset 3) in the - &jdk; 1.6 series. See the JDK 1.6.x page for more - details.

-
+

Greg Lewis has + released the third patchset (patchset 3) in the + &jdk; 1.6 series. See the JDK 1.6.x page for more + details.

+
@@ -342,31 +342,31 @@ October - 28 + 28 - - Patchset 2 for &jdk; 1.6 released + + Patchset 2 for &jdk; 1.6 released -

Greg Lewis has - released the second patchset (patchset 2) in the - &jdk; 1.6 series. See the JDK 1.6.x page for more - details.

-
+

Greg Lewis has + released the second patchset (patchset 2) in the + &jdk; 1.6 series. See the JDK 1.6.x page for more + details.

+
- 23 + 23 - - Patchset 7 for &jdk; 1.5 released + + Patchset 7 for &jdk; 1.5 released -

Greg Lewis has - released the seventh patchset (patchset 7) in the - &jdk; 1.5 series. See the JDK 1.5.x page for more - details.

-
+

Greg Lewis has + released the seventh patchset (patchset 7) in the + &jdk; 1.5 series. See the JDK 1.5.x page for more + details.

+
@@ -374,17 +374,17 @@ August - 2 + 2 - - Patchset 1 for &jdk; 1.6 released + + Patchset 1 for &jdk; 1.6 released -

Greg Lewis has - released the first patchset (patchset 1) in the - &jdk; 1.6 series. See the JDK 1.6.x page for more - details.

-
+

Greg Lewis has + released the first patchset (patchset 1) in the + &jdk; 1.6 series. See the JDK 1.6.x page for more + details.

+
@@ -392,17 +392,17 @@ July - 26 + 26 - - Patchset 6 for &jdk; 1.5 released + + Patchset 6 for &jdk; 1.5 released -

Greg Lewis has - released the sixth patchset (patchset 6) in the - &jdk; 1.5 series. See the JDK 1.5.x page for more - details.

-
+

Greg Lewis has + released the sixth patchset (patchset 6) in the + &jdk; 1.5 series. See the JDK 1.5.x page for more + details.

+
@@ -410,17 +410,17 @@ June - 8 + 8 - - Patchset 5 for &jdk; 1.5 released + + Patchset 5 for &jdk; 1.5 released -

Greg Lewis has - released the fifth patchset (patchset 5) in the - &jdk; 1.5 series. See the JDK 1.5.x page for more - details.

-
+

Greg Lewis has + released the fifth patchset (patchset 5) in the + &jdk; 1.5 series. See the JDK 1.5.x page for more + details.

+
@@ -428,17 +428,17 @@ January - 24 + 24 - - Patchset 4 for &jdk; 1.5 released + + Patchset 4 for &jdk; 1.5 released -

Greg Lewis has - released the fourth patchset (patchset 4) in the - &jdk; 1.5 series. See the JDK 1.5.x page for more - details.

-
+

Greg Lewis has + released the fourth patchset (patchset 4) in the + &jdk; 1.5 series. See the JDK 1.5.x page for more + details.

+
@@ -450,34 +450,34 @@ April - 7 + 7 - - Patchset 3 for &jdk; 1.5 released + + Patchset 3 for &jdk; 1.5 released -

Greg Lewis has - released the third patchset (patchset 3) in the - &jdk; 1.5 series. See the JDK 1.5.x page for more - details.

-
+

Greg Lewis has + released the third patchset (patchset 3) in the + &jdk; 1.5 series. See the JDK 1.5.x page for more + details.

+
- 5 - - - The FreeBSD Foundation has announced binary releases - of the JDK 1.5 and JRE 1.5 - -

The FreeBSD - Foundation has announced binary releases of the JDK - 1.5 and JRE 1.5. For more details, see the press - release and download - page.

-
+ 5 + + + The FreeBSD Foundation has announced binary releases + of the JDK 1.5 and JRE 1.5 + +

The FreeBSD + Foundation has announced binary releases of the JDK + 1.5 and JRE 1.5. For more details, see the press + release and download + page.

+
@@ -489,17 +489,17 @@ December - 19 + 19 - - Patchset 8 for &jdk; 1.4 released + + Patchset 8 for &jdk; 1.4 released -

Greg Lewis has - released the eighth patchset (patchset 8) in the - &jdk; 1.4 series. See the JDK 1.4.x page for more - details.

-
+

Greg Lewis has + released the eighth patchset (patchset 8) in the + &jdk; 1.4 series. See the JDK 1.4.x page for more + details.

+
@@ -507,17 +507,17 @@ September - 3 + 3 - - Patchset 2 for &jdk; 1.5 released + + Patchset 2 for &jdk; 1.5 released -

Greg Lewis has - released the second patchset in the &jdk; 1.5 series. - See the JDK 1.5.x page for - more details.

+

Greg Lewis has + released the second patchset in the &jdk; 1.5 series. + See the JDK 1.5.x page for + more details.

-
+
@@ -526,18 +526,18 @@ January - 19 + 19 - - Patchset 1 for &jdk; 1.5 released + + Patchset 1 for &jdk; 1.5 released -

Greg Lewis has - released the initial patchset (patchset 1) in the - &jdk; 1.5 series. See the JDK 1.5.x page for more - details.

+

Greg Lewis has + released the initial patchset (patchset 1) in the + &jdk; 1.5 series. See the JDK 1.5.x page for more + details.

-
+
@@ -549,18 +549,18 @@ December - 13 + 13 - - Patchset 7 for &jdk; 1.4 released + + Patchset 7 for &jdk; 1.4 released -

Greg Lewis has - released the seventh patchset (patchset 7) in the - &jdk; 1.4 series. See the JDK 1.4.x page for more - details.

+

Greg Lewis has + released the seventh patchset (patchset 7) in the + &jdk; 1.4 series. See the JDK 1.4.x page for more + details.

-
+
@@ -568,21 +568,21 @@ October - 25 + 25 - - Security vulnerability in Java browser - plugin. - -

A - security vulnerability was announced in the Java - browser plugin. The jdk14 port was fixed in 1.4.2p6_7. - The jdk13 port is still vulnerable. You can check the - exact ports and versions which are vulnerable here.

+ + Security vulnerability in Java browser + plugin. + +

A + security vulnerability was announced in the Java + browser plugin. The jdk14 port was fixed in 1.4.2p6_7. + The jdk13 port is still vulnerable. You can check the + exact ports and versions which are vulnerable here.

-
+
@@ -594,32 +594,32 @@ December - 30 + 30 - - Patchset 6 for &jdk; 1.4 released + + Patchset 6 for &jdk; 1.4 released -

Greg Lewis has - released the sixth patchset (patchset 6) in the - &jdk; 1.4 series. See the JDK 1.4.x page for more - details.

-
+

Greg Lewis has + released the sixth patchset (patchset 6) in the + &jdk; 1.4 series. See the JDK 1.4.x page for more + details.

+
- 19 + 19 - - Patchset 9 for &jdk; 1.3.1 released + + Patchset 9 for &jdk; 1.3.1 released -

Greg Lewis has - released an updated patchset (patchset 9) for the - &jdk; 1.3.1 software. See the JDK 1.3.x page for more - details.

+

Greg Lewis has + released an updated patchset (patchset 9) for the + &jdk; 1.3.1 software. See the JDK 1.3.x page for more + details.

-
+
@@ -627,18 +627,18 @@ November - 11 + 11 - - Patchset 5 for &jdk; 1.4 released + + Patchset 5 for &jdk; 1.4 released -

Greg Lewis has - released the fifth patchset (patchset 5) in the - &jdk; 1.4 series. See the JDK 1.4.x page for more - details.

+

Greg Lewis has + released the fifth patchset (patchset 5) in the + &jdk; 1.4 series. See the JDK 1.4.x page for more + details.

-
+
@@ -646,18 +646,18 @@ October - 10 + 10 - - Patchset 4 for &jdk; 1.4 released + + Patchset 4 for &jdk; 1.4 released -

Greg Lewis has - released the fourth patchset (patchset 4) in the - &jdk; 1.4 series. See the JDK 1.4.x page for more - details.

+

Greg Lewis has + released the fourth patchset (patchset 4) in the + &jdk; 1.4 series. See the JDK 1.4.x page for more + details.

-
+
@@ -665,18 +665,18 @@ August - 26 + 26 - - FreeBSD Foundation announces native support for - &jdk; 1.3.1 - -

The FreeBSD Foundation - announces native support for &jdk; 1.3.1 on - FreeBSD.

+ + FreeBSD Foundation announces native support for + &jdk; 1.3.1 + +

The FreeBSD Foundation + announces native support for &jdk; 1.3.1 on + FreeBSD.

-
+
@@ -684,18 +684,18 @@ March - 7 + 7 - - Patchset 3 for &jdk; 1.4 released + + Patchset 3 for &jdk; 1.4 released -

Greg Lewis has - released the third patchset (patchset 3) in the - &jdk; 1.4 series. See the JDK 1.4.x page for more - details.

+

Greg Lewis has + released the third patchset (patchset 3) in the + &jdk; 1.4 series. See the JDK 1.4.x page for more + details.

-
+
@@ -703,32 +703,32 @@ February - 12 + 12 - - Patchset 8 for &jdk; 1.3.1 released + + Patchset 8 for &jdk; 1.3.1 released -

Greg Lewis has - released an updated patchset (patchlevel 8) for the - &jdk; 1.3.1 software. See the JDK 1.3.x page for more - details.

-
+

Greg Lewis has + released an updated patchset (patchlevel 8) for the + &jdk; 1.3.1 software. See the JDK 1.3.x page for more + details.

+
- 4 + 4 - - Patchset 2 for &jdk; 1.4 released + + Patchset 2 for &jdk; 1.4 released -

Greg Lewis has - released the second patchset (patchset 2) in the - &jdk; 1.4 series. See the JDK 1.4.x page for more - details.

*** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-doc-head@FreeBSD.ORG Fri May 25 02:32:15 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FED0106566B; Fri, 25 May 2012 02:32:15 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5A3638FC12; Fri, 25 May 2012 02:32:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4P2WF6b074832; Fri, 25 May 2012 02:32:15 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4P2WF1T074830; Fri, 25 May 2012 02:32:15 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205250232.q4P2WF1T074830@svn.freebsd.org> From: Glen Barber Date: Fri, 25 May 2012 02:32:15 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38882 - head/en_US.ISO8859-1/articles/portbuild X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 02:32:15 -0000 Author: gjb Date: Fri May 25 02:32:14 2012 New Revision: 38882 URL: http://svn.freebsd.org/changeset/doc/38882 Log: Rearrange the order in which a few steps should be completed. Patched by: linimon Modified: head/en_US.ISO8859-1/articles/portbuild/article.sgml Modified: head/en_US.ISO8859-1/articles/portbuild/article.sgml ============================================================================== --- head/en_US.ISO8859-1/articles/portbuild/article.sgml Fri May 25 00:04:35 2012 (r38881) +++ head/en_US.ISO8859-1/articles/portbuild/article.sgml Fri May 25 02:32:14 2012 (r38882) @@ -2592,13 +2592,6 @@ kern.maxfiles=40000 - Create a zfs volume named - a/portbuild and mount it on - /a/portbuild. - - - - # mkdir -p /a/portbuild # cd /a/portbuild @@ -2608,6 +2601,13 @@ kern.maxfiles=40000 + Create a zfs volume named + a/portbuild and mount it on + /a/portbuild. + + + + TBA From owner-svn-doc-head@FreeBSD.ORG Fri May 25 03:08:44 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F6F71065670; Fri, 25 May 2012 03:08:44 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 292A68FC16; Fri, 25 May 2012 03:08:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4P38irj076686; Fri, 25 May 2012 03:08:44 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4P38h23076684; Fri, 25 May 2012 03:08:43 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201205250308.q4P38h23076684@svn.freebsd.org> From: Warren Block Date: Fri, 25 May 2012 03:08:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38883 - head/en_US.ISO8859-1/books/porters-handbook X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 03:08:44 -0000 Author: wblock Date: Fri May 25 03:08:43 2012 New Revision: 38883 URL: http://svn.freebsd.org/changeset/doc/38883 Log: Update the Using Perl section. Some wording and markup corrections, and a rewording of the note about not using ${SITE_PERL}. Reviewed by: jgh, crees, swills Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.sgml Fri May 25 02:32:14 2012 (r38882) +++ head/en_US.ISO8859-1/books/porters-handbook/book.sgml Fri May 25 03:08:43 2012 (r38883) @@ -5461,12 +5461,12 @@ PLIST_SUB+= NLS="@comment " - Using <literal>perl</literal> + Using <application>Perl</application> If MASTER_SITES is set to - MASTER_SITE_PERL_CPAN, then preferred value - of MASTER_SITE_SUBDIR is top-level - hierarchy name. For example, the recommend value for + MASTER_SITE_PERL_CPAN, then the preferred value + of MASTER_SITE_SUBDIR is the top-level + hierarchy name. For example, the recommended value for p5-Module-Name is Module. The top-level hierarchy can be examined at The exception to this rule is when the relevant directory - does not exist or the distfile does not exist in the + does not exist or the distfile does not exist in that directory. In such case, using author's id as MASTER_SITE_SUBDIR is allowed. - All of the tunable knobs below accept both - YES and a version string, like - 5.8.0+. Using YES means - that the port can be used with all of the supported - Perl versions. If a port only + All of the tunable knobs below accept either + YES or a version string like + 5.8.0+. YES means + that the port can be used with any of the supported + Perl versions. If a port only works with specific versions of - Perl, it can be indicated with a - version string, specifying a minimal version (e.g. - 5.7.3+), a maximal version (e.g. - 5.8.0-) or an exact version (e.g. + Perl, it can be indicated with a + version string, specifying a minimum version (e.g., + 5.7.3+), a maximum version (e.g., + 5.8.0-) or an exact version (e.g., 5.8.3). Variables for Ports That Use - <literal>perl</literal> + Perl Variable - Means + Meaning USE_PERL5 - Says that the port uses perl 5 + The port uses Perl 5 to build and run. USE_PERL5_BUILD - Says that the port uses perl 5 + The port uses Perl 5 to build. USE_PERL5_RUN - Says that the port uses perl 5 + The port uses Perl 5 to run. PERL - The full path of perl 5, + The full path of the Perl 5 interpreter, either in the system or installed from a port, but without the version number. Use this if you need to replace #!lines in @@ -5555,60 +5555,61 @@ PLIST_SUB+= NLS="@comment " PERL_VERSION - The full version of perl + The full version of Perl installed (e.g., 5.8.9). PERL_LEVEL - The installed perl version as + The installed Perl version as an integer of the form MNNNPP (e.g., 500809). PERL_ARCH - Where perl stores architecture + Where Perl stores architecture dependent libraries. Defaults to ${ARCH}-freebsd. PERL_PORT - Name of the perl port that is + Name of the Perl port that is installed (e.g., perl5). SITE_PERL Directory name where site specific - perl packages go. This value is - added to PLIST_SUB. + Perl packages go. This value is + added to PLIST_SUB.
- Ports of Perl modules, which do not have an official - website, should link cpan.org in the WWW - line of a pkg-descr file. The + Ports of Perl modules which do not have an official + website should link to cpan.org in the WWW + line of pkg-descr. The preferred URL form is http://search.cpan.org/dist/Module-Name/ (including the trailing slash). + - It is recommended to avoid using - ${SITE_PERL} as a dependency listing. This is - problematic because it means that - bsd.perl.mk must be included - to satisfy the dependency. Additionally, if the module's - files change, it would require changing all - dependent ports. + Do not use ${SITE_PERL} in dependency + declarations. Doing so assumes that + bsd.perl.mk has been included, which is + not always true. Ports depending on this port will have + incorrect dependencies if this port's files move later in an + upgrade. The right way to declare Perl module dependencies + is shown in the example below. - PERL Dependency Example + Perl Dependency Example p5-IO-Tee>=0.64:${PORTSDIR}/devel/p5-IO-Tee From owner-svn-doc-head@FreeBSD.ORG Fri May 25 07:52:36 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0009106566C; Fri, 25 May 2012 07:52:36 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D10898FC14; Fri, 25 May 2012 07:52:36 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4P7qaIQ088942; Fri, 25 May 2012 07:52:36 GMT (envelope-from pluknet@svn.freebsd.org) Received: (from pluknet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4P7qaYT088940; Fri, 25 May 2012 07:52:36 GMT (envelope-from pluknet@svn.freebsd.org) Message-Id: <201205250752.q4P7qaYT088940@svn.freebsd.org> From: Sergey Kandaurov Date: Fri, 25 May 2012 07:52:36 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38884 - head/ru_RU.KOI8-R/articles/fbsd-from-scratch X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 07:52:37 -0000 Author: pluknet Date: Fri May 25 07:52:36 2012 New Revision: 38884 URL: http://svn.freebsd.org/changeset/doc/38884 Log: Install ${EXTRAS} from ${.OBJDIR}, not from ${.CURDIR}. Previously it would not work if make (after)install was issued after explicit make obj. Modified: head/ru_RU.KOI8-R/articles/fbsd-from-scratch/Makefile Modified: head/ru_RU.KOI8-R/articles/fbsd-from-scratch/Makefile ============================================================================== --- head/ru_RU.KOI8-R/articles/fbsd-from-scratch/Makefile Fri May 25 03:08:43 2012 (r38883) +++ head/ru_RU.KOI8-R/articles/fbsd-from-scratch/Makefile Fri May 25 07:52:36 2012 (r38884) @@ -34,7 +34,7 @@ ${EXTRAS}: afterinstall: .for entry in ${EXTRAS} - ${INSTALL_DOCS} ${.CURDIR}/${entry} ${DESTDIR} + ${INSTALL_DOCS} ${.OBJDIR}/${entry} ${DESTDIR} .endfor DOC_PREFIX?= ${.CURDIR}/../../.. From owner-svn-doc-head@FreeBSD.ORG Fri May 25 11:57:43 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C1AF106567F; Fri, 25 May 2012 11:57:43 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 54E538FC1E; Fri, 25 May 2012 11:57:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4PBvhck008911; Fri, 25 May 2012 11:57:43 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4PBvhR3008909; Fri, 25 May 2012 11:57:43 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201205251157.q4PBvhR3008909@svn.freebsd.org> From: Johann Kois Date: Fri, 25 May 2012 11:57:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38885 - head/de_DE.ISO8859-1/share/sgml X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 11:57:43 -0000 Author: jkois Date: Fri May 25 11:57:42 2012 New Revision: 38885 URL: http://svn.freebsd.org/changeset/doc/38885 Log: Resync the German news section with the English version. Modified: head/de_DE.ISO8859-1/share/sgml/news.xml Modified: head/de_DE.ISO8859-1/share/sgml/news.xml ============================================================================== --- head/de_DE.ISO8859-1/share/sgml/news.xml Fri May 25 07:52:36 2012 (r38884) +++ head/de_DE.ISO8859-1/share/sgml/news.xml Fri May 25 11:57:42 2012 (r38885) @@ -3,8 +3,8 @@ "http://www.FreeBSD.org/XML/www/share/sgml/news.dtd"> Modified: head/ru_RU.KOI8-R/articles/console-server/Makefile ============================================================================== --- head/ru_RU.KOI8-R/articles/console-server/Makefile Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/console-server/Makefile Fri May 25 14:40:55 2012 (r38886) @@ -4,7 +4,7 @@ # $FreeBSD$ # $FreeBSDru: frdp/doc/ru_RU.KOI8-R/articles/console-server/Makefile,v 1.3 2004/09/06 07:19:39 marck Exp $ # -# Original revision: 1.5 +# Original revision: r21827 # # Article: Console Server # Modified: head/ru_RU.KOI8-R/articles/console-server/article.sgml ============================================================================== --- head/ru_RU.KOI8-R/articles/console-server/article.sgml Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/console-server/article.sgml Fri May 25 14:40:55 2012 (r38886) @@ -4,7 +4,7 @@ $FreeBSDru: frdp/doc/ru_RU.KOI8-R/articles/console-server/article.sgml,v 1.13 2007/01/06 18:28:16 gad Exp $ - Original revision: 1.23 + Original revision: r28570 --> Modified: head/ru_RU.KOI8-R/articles/contributing/Makefile ============================================================================== --- head/ru_RU.KOI8-R/articles/contributing/Makefile Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/contributing/Makefile Fri May 25 14:40:55 2012 (r38886) @@ -6,7 +6,7 @@ # # Article: Contributing to FreeBSD # -# Original revision: 1.6 +# Original revision: r21373 # DOC?= article Modified: head/ru_RU.KOI8-R/articles/contributing/article.sgml ============================================================================== --- head/ru_RU.KOI8-R/articles/contributing/article.sgml Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/contributing/article.sgml Fri May 25 14:40:55 2012 (r38886) @@ -3,7 +3,7 @@ $FreeBSDru: frdp/doc/ru_RU.KOI8-R/articles/contributing/article.sgml,v 1.3 2006/03/28 16:40:29 gad Exp $ - Original revision: 1.511 + Original revision: r34267 --> Modified: head/ru_RU.KOI8-R/articles/cvs-freebsd/Makefile ============================================================================== --- head/ru_RU.KOI8-R/articles/cvs-freebsd/Makefile Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/cvs-freebsd/Makefile Fri May 25 14:40:55 2012 (r38886) @@ -4,7 +4,7 @@ # $FreeBSD$ # $FreeBSDru: frdp/doc/ru_RU.KOI8-R/articles/cvs-freebsd/Makefile,v 1.3 2005/01/03 08:14:37 marck Exp $ # -# Original revision: 1.5 +# Original revision: r21827 # DOC?= article Modified: head/ru_RU.KOI8-R/articles/cvs-freebsd/article.sgml ============================================================================== --- head/ru_RU.KOI8-R/articles/cvs-freebsd/article.sgml Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/cvs-freebsd/article.sgml Fri May 25 14:40:55 2012 (r38886) @@ -3,7 +3,7 @@ $FreeBSDru: frdp/doc/ru_RU.KOI8-R/articles/cvs-freebsd/article.sgml,v 1.9 2006/02/05 17:43:22 marck Exp $ - Original revision: 1.17 + Original revision: r32632 --> %articles.ent; Modified: head/ru_RU.KOI8-R/articles/gjournal-desktop/Makefile ============================================================================== --- head/ru_RU.KOI8-R/articles/gjournal-desktop/Makefile Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/gjournal-desktop/Makefile Fri May 25 14:40:55 2012 (r38886) @@ -3,7 +3,7 @@ # # Article: Implementing UFS journaling on a desktop PC # -# Original revision: 1.1 +# Original revision: r31928 # DOC?= article Modified: head/ru_RU.KOI8-R/articles/gjournal-desktop/article.sgml ============================================================================== --- head/ru_RU.KOI8-R/articles/gjournal-desktop/article.sgml Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/gjournal-desktop/article.sgml Fri May 25 14:40:55 2012 (r38886) @@ -1,7 +1,7 @@ Modified: head/ru_RU.KOI8-R/articles/ipsec-must/Makefile ============================================================================== --- head/ru_RU.KOI8-R/articles/ipsec-must/Makefile Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/ipsec-must/Makefile Fri May 25 14:40:55 2012 (r38886) @@ -5,7 +5,7 @@ # $FreeBSDru: frdp/doc/ru_RU.KOI8-R/articles/ipsec-must/Makefile,v 1.3 2004/02/20 07:52:54 andy Exp $ # Article: Independent Verification of IPsec Functionality in FreeBSD # -# Original revision: 1.6 +# Original revision: r21827 # DOC?= article Modified: head/ru_RU.KOI8-R/articles/ipsec-must/article.sgml ============================================================================== --- head/ru_RU.KOI8-R/articles/ipsec-must/article.sgml Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/ipsec-must/article.sgml Fri May 25 14:40:55 2012 (r38886) @@ -4,7 +4,7 @@ $FreeBSD$ $FreeBSDru: frdp/doc/ru_RU.KOI8-R/articles/ipsec-must/article.sgml,v 1.7 2004/07/16 12:06:05 den Exp $ - Original revision: 1.16 + Original revision: r25543 --> Modified: head/ru_RU.KOI8-R/articles/pr-guidelines/Makefile ============================================================================== --- head/ru_RU.KOI8-R/articles/pr-guidelines/Makefile Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/pr-guidelines/Makefile Fri May 25 14:40:55 2012 (r38886) @@ -5,7 +5,7 @@ # # Article: Problem Report Handling Guidelines # -# Original revision: 1.6 +# Original revision: r21827 DOC?= article Modified: head/ru_RU.KOI8-R/articles/pr-guidelines/article.sgml ============================================================================== --- head/ru_RU.KOI8-R/articles/pr-guidelines/article.sgml Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/articles/pr-guidelines/article.sgml Fri May 25 14:40:55 2012 (r38886) @@ -3,7 +3,7 @@ $FreeBSDru: frdp/doc/ru_RU.KOI8-R/articles/pr-guidelines/article.sgml,v 1.4 2005/12/16 20:08:02 gad Exp $ - Original revision: 1.39 + Original revision: r37883 --> Modified: head/ru_RU.KOI8-R/books/arch-handbook/locking/chapter.sgml ============================================================================== --- head/ru_RU.KOI8-R/books/arch-handbook/locking/chapter.sgml Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/books/arch-handbook/locking/chapter.sgml Fri May 25 14:40:55 2012 (r38886) @@ -6,7 +6,7 @@ $FreeBSD$ $FreeBSDru: frdp/doc/ru_RU.KOI8-R/books/arch-handbook/locking/chapter.sgml,v 1.4 2005/06/04 10:17:39 gad Exp $ - Original revision: 1.9 + Original revision: r24446 --> Modified: head/ru_RU.KOI8-R/books/arch-handbook/sound/chapter.sgml ============================================================================== --- head/ru_RU.KOI8-R/books/arch-handbook/sound/chapter.sgml Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/books/arch-handbook/sound/chapter.sgml Fri May 25 14:40:55 2012 (r38886) @@ -4,7 +4,7 @@ $FreeBSD$ $FreeBSDru: frdp/doc/ru_RU.KOI8-R/books/arch-handbook/sound/chapter.sgml,v 1.8 2005/06/08 05:57:29 gad Exp $ - Original revision: 1.9 + Original revision: r24454 --> Modified: head/ru_RU.KOI8-R/books/design-44bsd/Makefile ============================================================================== --- head/ru_RU.KOI8-R/books/design-44bsd/Makefile Fri May 25 11:57:42 2012 (r38885) +++ head/ru_RU.KOI8-R/books/design-44bsd/Makefile Fri May 25 14:40:55 2012 (r38886) @@ -3,7 +3,7 @@ # $FreeBSD$ # $FreeBSDru: frdp/doc/ru_RU.KOI8-R/books/design-44bsd/Makefile,v 1.4 2003/12/18 07:09:48 phantom Exp $ # -# Original revision: 1.5 +# Original revision: r16655 DOC?= book *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-doc-head@FreeBSD.ORG Fri May 25 16:44:44 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E625106566B; Fri, 25 May 2012 16:44:44 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1F4E78FC0A; Fri, 25 May 2012 16:44:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4PGihpR021549; Fri, 25 May 2012 16:44:43 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4PGihZt021547; Fri, 25 May 2012 16:44:43 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205251644.q4PGihZt021547@svn.freebsd.org> From: Glen Barber Date: Fri, 25 May 2012 16:44:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38887 - head/en_US.ISO8859-1/books/fdp-primer/translations X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 16:44:44 -0000 Author: gjb Date: Fri May 25 16:44:43 2012 New Revision: 38887 URL: http://svn.freebsd.org/changeset/doc/38887 Log: Update fdp-primer/translations/chapter.sgml to reflect the CVS->SVN conversion, plus some additional fixes: - Update CVS-specific notes with SVN-specific counterparts - Provide an in-document example of a checkout from svn - Note devel/subversion is required - Replace a TODO item with an example of how to obtain a diff between two versions of a file - Replace "?" with "." at the end of a non-question - Replace "doc/" with "head/" as the top-level directory where necessary - Add the new "htdocs/" directory to the sample sv_SE directory layout - Update sample FreeBSD RCS IDs to the svn-style Modified: head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml Fri May 25 14:40:55 2012 (r38886) +++ head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml Fri May 25 16:44:43 2012 (r38887) @@ -133,21 +133,28 @@ It is strongly recommended that you maintain a local - copy of the FreeBSD CVS repository (at least the - documentation part) either using - CTM or - CVSup. The "Staying current with - FreeBSD" chapter in the Handbook explains how to use these - applications. + copy of the FreeBSD Subversion repository (at least the + documentation part). This can be done by running:
+ + &prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head/ head + + + This will require the devel/subversion package to + be installed. + You should be comfortable using - CVS. This will allow you to see + svn. This will allow you to see what has changed between different versions of the files that make up the documentation. - [XXX To Do -- write a tutorial that shows how to use - CVSup to get just the documentation, check it out, and see - what has changed between two arbitrary revisions] + For example, to view the differences between revisions + r33733 and r33734 of + en_US.ISO8859-1/books/fdp-primer/book.sgml, + run: + + &prompt.user; svn diff -r33733:33734 en_US.ISO8859-1/books/fdp-primer/book.sgml @@ -237,7 +244,7 @@ We are a translation team, and want to submit documentation that our members have translated for - us? + us.
@@ -246,7 +253,7 @@ documentation tree and build straight away. Currently, the FreeBSD documentation is stored in a top - level directory called doc/. + level directory called head/. Directories below this are named according to the language code they are written in, as defined in ISO639 (/usr/share/misc/iso639 on a version of @@ -262,9 +269,11 @@ For example, a hypothetical Swedish translation might look like: - doc/ + head/ sv_SE.ISO8859-1/ Makefile + htdocs/ + docproj/ books/ faq/ Makefile @@ -440,14 +449,14 @@ <!-- The FreeBSD Documentation Project - $FreeBSD: doc/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml,v 1.5 2000/07/07 18:38:38 dannyboy Exp $ + $FreeBSD: head/en_US.ISO8859-1/books/faq/book.sgml 38674 2012-04-14 13:52:52Z $ --> The exact boilerplate may change, but it will always include a $FreeBSD$ line and the phrase The FreeBSD Documentation Project. Note that the $FreeBSD part is expanded automatically - by CVS, so it should be empty (just + by Subversion, so it should be empty (just $FreeBSD$) for new files. @@ -465,8 +474,8 @@ <!-- The FreeBSD Spanish Documentation Project - $FreeBSD: doc/es_ES.ISO8859-1/books/fdp-primer/translations/chapter.sgml,v 1.3 1999/06/24 19:12:32 jesusr Exp $ - Original revision: 1.11 + $FreeBSD: head/es_ES.ISO8859-1/books/faq/book.sgml 38826 2012-05-17 19:12:14Z hrs $ + Original revision: r38674 --> From owner-svn-doc-head@FreeBSD.ORG Fri May 25 16:45:29 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 85CAE106564A; Fri, 25 May 2012 16:45:29 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 705CF8FC17; Fri, 25 May 2012 16:45:29 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4PGjTBA021620; Fri, 25 May 2012 16:45:29 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4PGjT6j021618; Fri, 25 May 2012 16:45:29 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205251645.q4PGjT6j021618@svn.freebsd.org> From: Glen Barber Date: Fri, 25 May 2012 16:45:29 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38888 - head/en_US.ISO8859-1/books/fdp-primer/translations X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 16:45:29 -0000 Author: gjb Date: Fri May 25 16:45:28 2012 New Revision: 38888 URL: http://svn.freebsd.org/changeset/doc/38888 Log: Remove trailing whitespace. Translators, please ignore this commit. Modified: head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml Fri May 25 16:44:43 2012 (r38887) +++ head/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml Fri May 25 16:45:28 2012 (r38888) @@ -271,7 +271,7 @@ head/ sv_SE.ISO8859-1/ - Makefile + Makefile htdocs/ docproj/ books/ From owner-svn-doc-head@FreeBSD.ORG Fri May 25 17:47:54 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 430E0106568D; Fri, 25 May 2012 17:47:54 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D403E8FC0A; Fri, 25 May 2012 17:47:53 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4PHlrU7024681; Fri, 25 May 2012 17:47:53 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4PHlrHm024679; Fri, 25 May 2012 17:47:53 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201205251747.q4PHlrHm024679@svn.freebsd.org> From: Glen Barber Date: Fri, 25 May 2012 17:47:53 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38889 - head/share/sgml X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 17:47:54 -0000 Author: gjb Date: Fri May 25 17:47:53 2012 New Revision: 38889 URL: http://svn.freebsd.org/changeset/doc/38889 Log: Link to an article at The WHIR mentioning the launch of the FreeBSD East Coast mirror thanks to NYI. Modified: head/share/sgml/press.xml Modified: head/share/sgml/press.xml ============================================================================== --- head/share/sgml/press.xml Fri May 25 16:45:28 2012 (r38888) +++ head/share/sgml/press.xml Fri May 25 17:47:53 2012 (r38889) @@ -20,6 +20,24 @@ 5 + Colocation Provider NYI Launches East Coast Mirror for + FreeBSD Foundation + http://www.thewhir.com/web-hosting-news/colocation-provider-nyi-launches-east-coast-mirror-for-freebsd-foundation + The WHIR + http://www.thewhir.com + 25 May 2012 + Nicole Henderson +

Colocation provider NYI announced on Friday that it has + launched the East Coast mirror for The FreeBSD + Foundation. "FreeBSD has been a critical component of + everything we do," Phillip Koblence, VP operations, NYI + said in a statement. "We look upon this launch as our + way of giving back to a community whose open source projects + have enabled us to craft customized solutions for our + customers from the inside out."

+
+ + FreeBSD and Microsoft Hyper-V Interoperability Expected This Summer http://redmondmag.com/articles/2012/05/14/microsoft-hyperv-interoperability.aspx From owner-svn-doc-head@FreeBSD.ORG Fri May 25 23:22:08 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80A9F106566B; Fri, 25 May 2012 23:22:08 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6B0938FC0C; Fri, 25 May 2012 23:22:08 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4PNM8ZO039009; Fri, 25 May 2012 23:22:08 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4PNM8ZU039007; Fri, 25 May 2012 23:22:08 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201205252322.q4PNM8ZU039007@svn.freebsd.org> From: Rene Ladan Date: Fri, 25 May 2012 23:22:08 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38890 - head/nl_NL.ISO8859-1/books/handbook/cutting-edge X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 23:22:08 -0000 Author: rene Date: Fri May 25 23:22:07 2012 New Revision: 38890 URL: http://svn.freebsd.org/changeset/doc/38890 Log: MFen 38826 -> 38879 Obtained from: the FreeBSD Dutch Documentation Project Modified: head/nl_NL.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Modified: head/nl_NL.ISO8859-1/books/handbook/cutting-edge/chapter.sgml ============================================================================== --- head/nl_NL.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Fri May 25 17:47:53 2012 (r38889) +++ head/nl_NL.ISO8859-1/books/handbook/cutting-edge/chapter.sgml Fri May 25 23:22:07 2012 (r38890) @@ -4,7 +4,7 @@ $FreeBSD$ %SOURCE% en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml - %SRCID% 38826 + %SRCID% 38879 --> @@ -717,10 +717,10 @@ before running "/usr/sbin/freebsd-update de bestanden van de Portscollectie te downloaden: &prompt.root; portsnap fetch -Looking up portsnap.FreeBSD.org mirrors... 3 mirrors found. -Fetching snapshot tag from portsnap1.FreeBSD.org... done. +Looking up portsnap.FreeBSD.org mirrors... 9 mirrors found. +Fetching snapshot tag from geodns-1.portsnap.freebsd.org... done. Fetching snapshot metadata... done. -Updating from Wed Aug 6 18:00:22 EDT 2008 to Sat Aug 30 20:24:11 EDT 2008. +Updating from Tue May 22 02:12:15 CEST 2012 to Wed May 23 16:28:31 CEST 2012. Fetching 3 metadata patches.. done. Applying metadata patches... done. Fetching 3 metadata files... done. From owner-svn-doc-head@FreeBSD.ORG Sat May 26 00:08:01 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47335106566B; Sat, 26 May 2012 00:08:01 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 31DFE8FC12; Sat, 26 May 2012 00:08:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4Q081r5041036; Sat, 26 May 2012 00:08:01 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4Q081cA041034; Sat, 26 May 2012 00:08:01 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201205260008.q4Q081cA041034@svn.freebsd.org> From: Gavin Atkinson Date: Sat, 26 May 2012 00:08:00 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38891 - head/share/mk X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 00:08:01 -0000 Author: gavin Date: Sat May 26 00:08:00 2012 New Revision: 38891 URL: http://svn.freebsd.org/changeset/doc/38891 Log: In the old CVS world, web pages would end up with the modified date and time on the bottom of each page: Last modified: 2010/05/09 21:07:40 Since the move to Subversion, the $FreeBSD$ string is slightly different and so the code that does this no longer works correctly, causing the output appears as: Last modified: 38826 2012-05-17 Arguably, having the SVN revision number in the output is useful, however this wasn't intentional - and instead appears to be an oversight. This change both fixes the missing date and adds extra information, producing the following output: Last modified: 2012-05-17 19:12:14Z (head/en_US.ISO8859-1/htdocs/internet.sgml r38826) Adding the path to the source file will hopefully make it much easier for people wishing to contribute to the page to find the source Approved by: bcr (mentor) M mk/web.site.mk Modified: head/share/mk/web.site.mk Modified: head/share/mk/web.site.mk ============================================================================== --- head/share/mk/web.site.mk Fri May 25 23:22:07 2012 (r38890) +++ head/share/mk/web.site.mk Sat May 26 00:08:00 2012 (r38891) @@ -178,7 +178,7 @@ LOCALTOP!= ${ECHO_CMD} ${CANONPREFIX} | DIR_IN_LOCAL!= ${ECHO_CMD} ${CANONPREFIX} | ${PERL} -pe 's@^[^/]+/?@@;' PREHTMLOPTS?= -revcheck "${LOCALTOP}" "${DIR_IN_LOCAL}" ${PREHTMLFLAGS} .else -DATESUBST?= 's///' +DATESUBST?= 's///' # Force override base to point to http://www.FreeBSD.org/. Note: This # is used for http://security.FreeBSD.org/ . .if WITH_WWW_FREEBSD_ORG_BASE From owner-svn-doc-head@FreeBSD.ORG Sat May 26 08:25:01 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F28F1065670; Sat, 26 May 2012 08:25:01 +0000 (UTC) (envelope-from zeising@daemonic.se) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) by mx1.freebsd.org (Postfix) with ESMTP id 774F38FC08; Sat, 26 May 2012 08:25:00 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 7CFB840004; Sat, 26 May 2012 10:24:58 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id 724BB40007; Sat, 26 May 2012 10:24:58 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on bernadotte.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=AWL autolearn=disabled version=3.3.1 X-Spam-Score: 0.0 Received: from mx.daemonic.se (h-45-105.a163.priv.bahnhof.se [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id 65A7440004; Sat, 26 May 2012 10:24:57 +0200 (CEST) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3Vzy7F0pF6z8ggx; Sat, 26 May 2012 10:24:57 +0200 (CEST) X-Virus-Scanned: amavisd-new at daemonic.se Received: from mx.daemonic.se ([IPv6:2001:470:dca9:0:1::3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [2001:470:dca9:0:1::6]) (amavisd-new, port 10025) with ESMTPS id J62EeoR5gZuD; Sat, 26 May 2012 10:24:54 +0200 (CEST) Received: from mail.daemonic.se (mail.daemonic.se [10.1.0.4]) by mx.daemonic.se (Postfix) with ESMTPS id 3Vzy7B5Vbrz8ggv; Sat, 26 May 2012 10:24:54 +0200 (CEST) Received: from tifa.daemonic.se (tifa.daemonic.se [IPv6:2001:470:dca9:1::6]) by mail.daemonic.se (Postfix) with ESMTPSA id 3Vzy7B59SJz9Ctq; Sat, 26 May 2012 10:24:54 +0200 (CEST) Received: from tifa.daemonic.se (localhost [IPv6:::1]) by tifa.daemonic.se (Postfix) with ESMTP id 94ED322AC3; Sat, 26 May 2012 10:24:54 +0200 (CEST) Message-ID: <4FC09356.1060606@daemonic.se> Date: Sat, 26 May 2012 10:24:54 +0200 From: Niclas Zeising User-Agent: Mutt/1.5.21 MIME-Version: 1.0 To: Gavin Atkinson References: <201205260008.q4Q081cA041034@svn.freebsd.org> In-Reply-To: <201205260008.q4Q081cA041034@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: svn-doc-head@freebsd.org, svn-doc-all@freebsd.org, doc-committers@freebsd.org Subject: Re: svn commit: r38891 - head/share/mk X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 08:25:01 -0000 On 05/26/12 02:08, Gavin Atkinson wrote: > Author: gavin > Date: Sat May 26 00:08:00 2012 > New Revision: 38891 > URL: http://svn.freebsd.org/changeset/doc/38891 > > Log: > In the old CVS world, web pages would end up with the modified date and > time on the bottom of each page: > > Last modified: 2010/05/09 21:07:40 > > Since the move to Subversion, the $FreeBSD$ string is slightly different > and so the code that does this no longer works correctly, causing the > output appears as: > > Last modified: 38826 2012-05-17 > > Arguably, having the SVN revision number in the output is useful, > however this wasn't intentional - and instead appears to be an > oversight. > > This change both fixes the missing date and adds extra information, > producing the following output: > > Last modified: 2012-05-17 19:12:14Z > (head/en_US.ISO8859-1/htdocs/internet.sgml r38826) > > Adding the path to the source file will hopefully make it much easier > for people wishing to contribute to the page to find the source > > Approved by: bcr (mentor) > > M mk/web.site.mk > Nice catch! And I agree with you, having the path to the file will make things easier when you want to make changes to the page. Regards! -- Niclas Zeising From owner-svn-doc-head@FreeBSD.ORG Sat May 26 13:42:26 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F376B1065672; Sat, 26 May 2012 13:42:25 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DD5DC8FC08; Sat, 26 May 2012 13:42:25 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4QDgPIq080383; Sat, 26 May 2012 13:42:25 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4QDgPMQ080380; Sat, 26 May 2012 13:42:25 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201205261342.q4QDgPMQ080380@svn.freebsd.org> From: Chris Rees Date: Sat, 26 May 2012 13:42:25 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38892 - head/en_US.ISO8859-1/articles/contributors X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 13:42:26 -0000 Author: crees (ports committer) Date: Sat May 26 13:42:25 2012 New Revision: 38892 URL: http://svn.freebsd.org/changeset/doc/38892 Log: Synchronise with reality; - move murray, steve, erik, ceri, mnag, lulf and niels to alumni * Thanks for all your work in the past! - restore ahze and jwd to developers Reviewed by: silence on doc@ Modified: head/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml head/en_US.ISO8859-1/articles/contributors/contrib.develalumni.sgml Modified: head/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml ============================================================================== --- head/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml Sat May 26 00:08:00 2012 (r38891) +++ head/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml Sat May 26 13:42:25 2012 (r38892) @@ -187,10 +187,6 @@ - &a.erik; - - - &a.gahr; @@ -275,10 +271,6 @@ - &a.ceri; - - - &a.brd; @@ -291,6 +283,10 @@ + &a.jwd; + + + &a.vd; @@ -467,10 +463,6 @@ - &a.mnag; - - - &a.bgray; @@ -507,10 +499,6 @@ - &a.niels; - - - &a.jh; @@ -599,6 +587,10 @@ + &a.ahze; + + + &a.kan; @@ -635,6 +627,10 @@ + &a.arved; + + + &a.fjoe; @@ -787,10 +783,6 @@ - &a.lulf; - - - &a.yzlin; @@ -799,10 +791,6 @@ - &a.arved; - - - &a.dryice; @@ -1107,10 +1095,6 @@ - &a.steve; - - - &a.mpp; @@ -1367,10 +1351,6 @@ - &a.murray; - - - &a.rstone; Modified: head/en_US.ISO8859-1/articles/contributors/contrib.develalumni.sgml ============================================================================== --- head/en_US.ISO8859-1/articles/contributors/contrib.develalumni.sgml Sat May 26 00:08:00 2012 (r38891) +++ head/en_US.ISO8859-1/articles/contributors/contrib.develalumni.sgml Sat May 26 13:42:25 2012 (r38892) @@ -1,6 +1,34 @@ + &a.murray; (2000 - 2012) + + + + &a.steve; (1996 - 2012) + + + + &a.erik; (2008 - 2012) + + + + &a.ceri; (2002 - 2012) + + + + &a.mnag; (2005 - 2012) + + + + &a.lulf; (2007 - 2012) + + + + &a.niels; (2004 - 2011) + + + &a.jacula; (2010 - 2011) @@ -25,10 +53,6 @@ - &a.ahze; (2004 - 2011) - - - &a.sergei; (2003 - 2011) @@ -273,10 +297,6 @@ - &a.jwd; (2000 - 2008) - - - &a.jayanth; (2000 - 2008) From owner-svn-doc-head@FreeBSD.ORG Sat May 26 14:11:19 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8E142106566C; Sat, 26 May 2012 14:11:19 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 756218FC08; Sat, 26 May 2012 14:11:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4QEBJPJ081681; Sat, 26 May 2012 14:11:19 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4QEBJhL081663; Sat, 26 May 2012 14:11:19 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201205261411.q4QEBJhL081663@svn.freebsd.org> From: Johann Kois Date: Sat, 26 May 2012 14:11:19 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38893 - in head/de_DE.ISO8859-1/books/fdp-primer: . doc-build examples overview psgml-mode see-also sgml-markup sgml-primer structure stylesheets the-website tools translations writing... X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 14:11:19 -0000 Author: jkois Date: Sat May 26 14:11:18 2012 New Revision: 38893 URL: http://svn.freebsd.org/changeset/doc/38893 Log: FDP-Primer: Update the header information so that we know where to start with translations Modified: head/de_DE.ISO8859-1/books/fdp-primer/Makefile head/de_DE.ISO8859-1/books/fdp-primer/book.sgml head/de_DE.ISO8859-1/books/fdp-primer/chapter.decl head/de_DE.ISO8859-1/books/fdp-primer/chapters.ent head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/examples/appendix.sgml head/de_DE.ISO8859-1/books/fdp-primer/overview/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/psgml-mode/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/see-also/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/sgml-primer/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/structure/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/stylesheets/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/the-website/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/tools/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/translations/chapter.sgml head/de_DE.ISO8859-1/books/fdp-primer/writing-style/chapter.sgml Modified: head/de_DE.ISO8859-1/books/fdp-primer/Makefile ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/Makefile Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/Makefile Sat May 26 14:11:18 2012 (r38893) @@ -1,7 +1,7 @@ # # $FreeBSD$ -# $FreeBSDde: de-docproj/books/fdp-primer/Makefile,v 1.4 2004/08/04 23:33:31 mheinen Exp $ -# basiert auf: 1.14 +# $FreeBSDde$ +# basiert auf: r38826 # # Build the FreeBSD Documentation Project Primer. # Modified: head/de_DE.ISO8859-1/books/fdp-primer/book.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/book.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/book.sgml Sat May 26 14:11:18 2012 (r38893) @@ -29,7 +29,7 @@ $FreeBSD$ $FreeBSDde: de-docproj/books/fdp-primer/book.sgml,v 1.24 2012/03/25 14:39:26 bcr Exp $ - basiert auf: 1.34 + basiert auf: r38826 --> - 1998 - 1999 - 2000 - 2001 - 2002 - 2003 - 2004 - 2005 - 2006 - 2007 - 2008 - 2009 - 2010 + 1998-2012 The FreeBSD Documentation Project - 1998 - 1999 - 2000 - 2001 - 2002 - 2003 - 2004 - 2005 - 2006 - 2007 - 2008 - 2009 - 2010 + 1998-2012 The FreeBSD German Documentation Project Modified: head/de_DE.ISO8859-1/books/fdp-primer/chapter.decl ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/chapter.decl Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/chapter.decl Sat May 26 14:11:18 2012 (r38893) @@ -1,2 +1,4 @@ + + Modified: head/de_DE.ISO8859-1/books/fdp-primer/chapters.ent ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/chapters.ent Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/chapters.ent Sat May 26 14:11:18 2012 (r38893) @@ -7,8 +7,8 @@ Chapters should be listed in the order in which they are referenced. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/chapters.ent,v 1.1 2003/10/27 23:06:27 mheinen Exp $ - basiert auf: 1.6 + $FreeBSDde$ + basiert auf: r38826 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/doc-build/chapter.sgml,v 1.6 2012/03/25 14:41:23 bcr Exp $ - basiert auf: 1.17 + $FreeBSDde$ + basiert auf: r38826 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/examples/appendix.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/examples/appendix.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/examples/appendix.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/examples/appendix.sgml,v 1.14 2009/02/07 16:09:52 jkois Exp $ - basiert auf: 1.18 + $FreeBSDde$ + basiert auf: r38826 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/overview/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/overview/chapter.sgml,v 1.17 2012/03/29 17:52:45 jkois Exp $ - basiert auf: 1.27 + $FreeBSDde$ + basiert auf: r38826 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/psgml-mode/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/psgml-mode/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/psgml-mode/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,9 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/psgml-mode/chapter.sgml,v 1.12 2012/03/29 17:56:00 jkois Exp $ - - basiert auf: 1.13 + $FreeBSDde$ + basiert auf: r38826 Anmerkungen: Dieser Text wurde nach dem Lesen von "Technisches Schreiben Modified: head/de_DE.ISO8859-1/books/fdp-primer/see-also/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/see-also/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/see-also/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,9 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/see-also/chapter.sgml,v 1.12 2012/04/22 20:08:45 bcr Exp $ - - basiert auf: 1.16 + $FreeBSDde$ + basiert auf: r38826 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,9 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/sgml-markup/chapter.sgml,v 1.28 2012/04/22 20:09:56 bcr Exp $ - - basiert auf: 1.81 + $FreeBSDde$ + basiert auf: r38826 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/sgml-primer/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/sgml-primer/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/sgml-primer/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/sgml-primer/chapter.sgml,v 1.25 2012/03/29 18:05:55 jkois Exp $ - basiert auf: 1.53 + $FreeBSDde$ + basiert auf: r38826 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/stylesheets/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/stylesheets/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/stylesheets/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/stylesheets/chapter.sgml,v 1.6 2008/12/14 18:34:07 jkois Exp $ - basiert auf: 1.14 + $FreeBSDde$ + basiert auf: r38869 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/the-website/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/the-website/chapter.sgml,v 1.11 2012/03/29 18:11:19 jkois Exp $ - basiert auf: 1.32 + $FreeBSDde$ + basiert auf: r38826 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/tools/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/tools/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/tools/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/tools/chapter.sgml,v 1.14 2012/03/25 14:42:45 bcr Exp $ - basiert auf: 1.37 + $FreeBSDde$ + basiert auf: r38826 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/translations/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/translations/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/translations/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/translations/chapter.sgml,v 1.9 2006/07/29 18:10:12 jkois Exp $ - basiert auf: 1.31 + $FreeBSDde$ + basiert auf: r38826 --> Modified: head/de_DE.ISO8859-1/books/fdp-primer/writing-style/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/writing-style/chapter.sgml Sat May 26 13:42:25 2012 (r38892) +++ head/de_DE.ISO8859-1/books/fdp-primer/writing-style/chapter.sgml Sat May 26 14:11:18 2012 (r38893) @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. $FreeBSD$ - $FreeBSDde: de-docproj/books/fdp-primer/writing-style/chapter.sgml,v 1.13 2009/02/07 23:44:18 jkois Exp $ - basiert auf: 1.49 + $FreeBSDde$ + basiert auf: r38872 --> From owner-svn-doc-head@FreeBSD.ORG Sat May 26 14:26:57 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 02043106564A; Sat, 26 May 2012 14:26:57 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C75A38FC12; Sat, 26 May 2012 14:26:56 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4QEQup2082420; Sat, 26 May 2012 14:26:56 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4QEQugW082418; Sat, 26 May 2012 14:26:56 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201205261426.q4QEQugW082418@svn.freebsd.org> From: Johann Kois Date: Sat, 26 May 2012 14:26:56 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38894 - head/de_DE.ISO8859-1/books/fdp-primer/doc-build X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 14:26:57 -0000 Author: jkois Date: Sat May 26 14:26:56 2012 New Revision: 38894 URL: http://svn.freebsd.org/changeset/doc/38894 Log: r38826 -> r38845 Fix title capitalization and markup. Modified: head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Modified: head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sat May 26 14:11:18 2012 (r38893) +++ head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sat May 26 14:26:56 2012 (r38894) @@ -29,7 +29,7 @@ $FreeBSD$ $FreeBSDde$ - basiert auf: r38826 + basiert auf: r38845 --> @@ -118,7 +118,7 @@
- Die Makefiles des Dokumentationsbaums verstehen + Die <filename>Makefile</filename>s des Dokumentationsbaums verstehen Innerhalb des FreeBSD Documentation Projects gibt es drei verschiedene Arten von Makefiles: @@ -148,7 +148,7 @@ - Unterverzeichnis-Makefiles + Unterverzeichnis-<filename>Makefile</filename>s Derartige Makefiles sind in der Regel wie folgt aufgebaut: @@ -213,7 +213,7 @@ DOC_PREFIX?= ${.CURDIR}/.. - Dokument-Makefiles + Dokument-<filename>Makefile</filename>s Diese Makefiles definieren diverse make-Variablen mit Vorgaben @@ -274,7 +274,7 @@ DOC_PREFIX?= ${.CURDIR}/../../.. - Make-Includes des FreeBSD Documentation Projects + <application>Make</application>-Includes des FreeBSD Documentation Projects Diese Dateien lassen sich am besten verstehen, indem man sich deren Inhalt näher ansieht. Konkret handelt es sich dabei @@ -307,7 +307,7 @@ DOC_PREFIX?= ${.CURDIR}/../../.. - doc.project.mk + <filename>doc.project.mk</filename> Diese Datei hat folgenden Aufbau: @@ -378,7 +378,7 @@ PRI_LANG?= en_US.ISO8859-1 - doc.subdir.mk + <filename>doc.subdir.mk</filename> Den Inhalt dieser Datei hier zu beschreiben, würde zu weit führen. Sie sollten aber nach dem Lesen der @@ -515,7 +515,7 @@ PRI_LANG?= en_US.ISO8859-1 - Schleifenkonstrukte in make (.for) + Schleifenkonstrukte in <command>make (.for)</command> .for erlaubt es, bestimmte Anweisungen für jedes Element einer Variable zu From owner-svn-doc-head@FreeBSD.ORG Sat May 26 14:28:52 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D3A341065674; Sat, 26 May 2012 14:28:52 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BDF958FC16; Sat, 26 May 2012 14:28:52 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4QESqKt082535; Sat, 26 May 2012 14:28:52 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4QESq9a082533; Sat, 26 May 2012 14:28:52 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201205261428.q4QESq9a082533@svn.freebsd.org> From: Johann Kois Date: Sat, 26 May 2012 14:28:52 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38895 - head/de_DE.ISO8859-1/books/fdp-primer/doc-build X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 14:28:52 -0000 Author: jkois Date: Sat May 26 14:28:52 2012 New Revision: 38895 URL: http://svn.freebsd.org/changeset/doc/38895 Log: Whitespace-only changes, wrap long lines Modified: head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Modified: head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sat May 26 14:26:56 2012 (r38894) +++ head/de_DE.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sat May 26 14:28:52 2012 (r38895) @@ -118,7 +118,8 @@ - Die <filename>Makefile</filename>s des Dokumentationsbaums verstehen + Die <filename>Makefile</filename>s des Dokumentationsbaums + verstehen Innerhalb des FreeBSD Documentation Projects gibt es drei verschiedene Arten von Makefiles: @@ -274,7 +275,8 @@ DOC_PREFIX?= ${.CURDIR}/../../.. - <application>Make</application>-Includes des FreeBSD Documentation Projects + <application>Make</application>-Includes des FreeBSD + Documentation Projects Diese Dateien lassen sich am besten verstehen, indem man sich deren Inhalt näher ansieht. Konkret handelt es sich dabei @@ -515,7 +517,8 @@ PRI_LANG?= en_US.ISO8859-1 - Schleifenkonstrukte in <command>make (.for)</command> + Schleifenkonstrukte in + <command>make (.for)</command> .for erlaubt es, bestimmte Anweisungen für jedes Element einer Variable zu From owner-svn-doc-head@FreeBSD.ORG Sat May 26 14:34:30 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D41D21065673; Sat, 26 May 2012 14:34:30 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BF38D8FC19; Sat, 26 May 2012 14:34:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4QEYUsC082797; Sat, 26 May 2012 14:34:30 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4QEYUUZ082795; Sat, 26 May 2012 14:34:30 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201205261434.q4QEYUUZ082795@svn.freebsd.org> From: Johann Kois Date: Sat, 26 May 2012 14:34:30 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38896 - head/de_DE.ISO8859-1/books/fdp-primer/examples X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 14:34:30 -0000 Author: jkois Date: Sat May 26 14:34:30 2012 New Revision: 38896 URL: http://svn.freebsd.org/changeset/doc/38896 Log: r38826 -> r38847 Replace CVSup with svn. Modified: head/de_DE.ISO8859-1/books/fdp-primer/examples/appendix.sgml Modified: head/de_DE.ISO8859-1/books/fdp-primer/examples/appendix.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/examples/appendix.sgml Sat May 26 14:28:52 2012 (r38895) +++ head/de_DE.ISO8859-1/books/fdp-primer/examples/appendix.sgml Sat May 26 14:34:30 2012 (r38896) @@ -29,7 +29,7 @@ $FreeBSD$ $FreeBSDde$ - basiert auf: r38826 + basiert auf: r38847 --> @@ -46,10 +46,9 @@ Daher fehlen in den Beispielen einige Elemente, insbesondere Elemente für die Titelei. Weitere DocBook-Beispiele können in den DocBook-Quellen dieses und anderer Dokumente - des FDPs gefunden werden. Die Quellen des FDPs sind über - CVSup und online unter - verfügbar. + des FDPs gefunden werden. Die Quellen des FDPs sind im + svn doc-Repository und online unter verfügbar. Um Irritationen zu vermeiden, bauen die SGML-Beispiele auf der 4.1er Standard-DocBook DTD anstatt auf der erweiterten From owner-svn-doc-head@FreeBSD.ORG Sat May 26 15:00:01 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3291B1065674; Sat, 26 May 2012 15:00:01 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 141DB8FC0A; Sat, 26 May 2012 15:00:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4QF00IO083863; Sat, 26 May 2012 15:00:00 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4QF00kU083860; Sat, 26 May 2012 15:00:00 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201205261500.q4QF00kU083860@svn.freebsd.org> From: Johann Kois Date: Sat, 26 May 2012 15:00:00 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38897 - head/de_DE.ISO8859-1/books/fdp-primer/overview X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 15:00:01 -0000 Author: jkois Date: Sat May 26 15:00:00 2012 New Revision: 38897 URL: http://svn.freebsd.org/changeset/doc/38897 Log: r38826 -> r38854 Update instructions (CVS has been replaced with SVN) Modified: head/de_DE.ISO8859-1/books/fdp-primer/overview/chapter.sgml Modified: head/de_DE.ISO8859-1/books/fdp-primer/overview/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sat May 26 14:34:30 2012 (r38896) +++ head/de_DE.ISO8859-1/books/fdp-primer/overview/chapter.sgml Sat May 26 15:00:00 2012 (r38897) @@ -29,7 +29,7 @@ $FreeBSD$ $FreeBSDde$ - basiert auf: r38826 + basiert auf: r38854 --> @@ -91,16 +91,16 @@ - Hilfeseiten + Manualpages - Die englischen Hilfeseiten wurden nicht vom FDP + Die englischen Manualpages wurden nicht vom FDP geschrieben, da sie ein Teil des Basissystems sind. Jedoch können bzw. wurden bereits Teile von existierenden - Hilfeseiten umformuliert, um sie verständlicher zu + Manualpages umformuliert, um sie verständlicher zu machen oder um Fehler zu beheben. - Für die Übersetzung der Hilfeseiten des + Für die Übersetzung der Manualpages des Systems in die verschiedenen Sprachen sind die einzelnen Übersetzergruppen verantwortlich. Alle dabei entstandenen Übersetzungen gehören zum @@ -144,19 +144,28 @@ - Jede dieser vier Kategorien wird im FreeBSD-CVS-Baum - verwaltet. Das bedeutet, dass alle Änderungen an den - Dateien für jeden verfügbar sind und jeder sich - mittels eines Programms wie CVSup - oder CTM eine lokale Kopie der + Die Quellen für die FreeBSD-Website, das &os; Handbuch + sowie die &os; FAQ werden im doc/ + Subversion-Repository von &os; verwaltet, das Sie über + svn://svn.FreeBSD.org/doc/ erreichen + können. + + Manualpages werden im src/ + Subversion-Repository von &os; verwaltet, das Sie über + svn://svn.FreeBSD.org/base/ erreichen + können. + + Das bedeutet, dass alle Änderungen an den + Dateien für jeden verfügbar sind und sich jeder + mit svn eine lokale Kopie der Dokumentation anlegen kann. Parallel zum FDP haben viele Menschen Anleitungen geschrieben und Webseiten mit Bezug zu FreeBSD erstellt. Einige - davon werden im CVS-Archiv verwaltet, sofern der Autor dem + davon werden im Subversion-Archiv verwaltet, sofern der Autor dem zugestimmt hat. In anderen Fällen hat sich der Autor entschlossen, seine Dokumentation außerhalb des zentralen - FreeBSD-CVS-Archivs zu verwalten. Das FDP bemüht sich, so + FreeBSD-Archivs zu verwalten. Das FDP bemüht sich, so viele Verweise wie möglich auf solche Quellen bereitzustellen. @@ -169,13 +178,10 @@ - Wie eine aktuelle Kopie der FreeBSD-Dokumentation - entweder auf Basis des FreeBSD-CVS-Archivs mittels - CVS, - CTM oder - CVSup angelegt und gepflegt wird, - oder wie mit CVSup eine frische - Kopie des CVS-Archivs heruntergeladen wird. + Wie eine aktuelle lokale Kopie des FreeBSD + Subversion-Repository mit Hilfe von + svn angelegt und gepflegt + werden kann. @@ -204,29 +210,29 @@ - Anschließend sollte eine lokale Kopie des - FreeBSD-doc-Verzeichnisbaumes angelegt - werden. Hierfür kann man entweder auf - CVSup im - checkout-Modus zurückgreifen oder - mittels cvs eine komplette Kopie - des CVS-Archivs anlegen. - - Wenn man lieber mit einer Kopie des CVS-Archivs arbeiten - möchte, werden als Minimum die Verzeichnisse - doc/share und - doc/de_DE.ISO8859-1/share - benötigt. - - &prompt.user; cvs checkout doc/share -&prompt.user; cvs checkout doc/de_DE.ISO8859-1/share + Laden Sie mit svn eine lokale + Kopie des FreeBSD-doc-Verzeichnisbaumes + herunter. + + Selbst wenn Sie nur über eine geringe Bandbreite + oder wenig freien Plattenplatz verfügen, müssen Sie + mindestens die Verzeichnisse head/share + sowie + head/language/share + auschecken, um an der Dokumentation arbeiten zu können. + Dazu ein Beispiel: + + &prompt.user; mkdir -p head/share +&prompt.user; mkdir -p head/en_US.ISO8859-1/share +&prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head/share head/share +&prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head/en_US.ISO8859-1/share head/en_US.ISO8859-1/share Für den Fall, dass ausreichend Platz auf der Festplatte vorhanden ist, kann auch eine eine - vollständige Arbeitskopie des gesamten CVS-Baumes anlegt - werden. + vollständige Arbeitskopie des gesamten Subversion-Baumes + anlegt werden. - &prompt.user; cvs checkout doc + &prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head head @@ -248,7 +254,7 @@ articles aus dem FreeBSD-CVS-Archiv lokal angelegt: - &prompt.user; cvs checkout doc/de_DE.ISO8859-1/articles + &prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head/en_US.ISO8859-1/articles @@ -257,8 +263,8 @@ diesem Beispiel soll der neue Artikel im Verzeichnis vpn-w2k liegen: - &prompt.user; cd doc/de_DE.ISO8859-1/articles -&prompt.user; cp -R committers-guide vpn-w2k + &prompt.user; cd head/en_US.ISO8859-1/articles +&prompt.user; svn export committers-guide vpn-w2k @@ -266,9 +272,9 @@ werden sollen, können direkt aus dem CVS-Archiv geholt werden. Das folgende Beispiel zeigt das für die FAQ aus dem Verzeichnis - doc/de_DE.ISO8859-1/books/faq: + head/en_US.ISO8859-1/books/faq: - &prompt.user; cvs checkout doc/de_DE.ISO8859-1/books/faq + &prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head/en_US.ISO8859-1/books/faq @@ -305,7 +311,7 @@ ps, pdf und rtf. Die aktuelle Liste der unterstützten Formate befindet sich am Anfang der Datei - doc/share/mk/doc.docbook.mk. Bei der + head/share/mk/doc.docbook.mk. Bei der Verwendung dieser Variable ist es wichtig, darauf zu achten, dass die Angabe der gewünschten Formate in Anführungszeichen eingeschlossen wird, sofern mehr als From owner-svn-doc-head@FreeBSD.ORG Sat May 26 15:11:58 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 11411106564A; Sat, 26 May 2012 15:11:58 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F01858FC08; Sat, 26 May 2012 15:11:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4QFBvYn084396; Sat, 26 May 2012 15:11:57 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4QFBvIY084394; Sat, 26 May 2012 15:11:57 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201205261511.q4QFBvIY084394@svn.freebsd.org> From: Johann Kois Date: Sat, 26 May 2012 15:11:57 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38898 - head/de_DE.ISO8859-1/books/fdp-primer/sgml-markup X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 15:11:58 -0000 Author: jkois Date: Sat May 26 15:11:57 2012 New Revision: 38898 URL: http://svn.freebsd.org/changeset/doc/38898 Log: r38826 -> 38851 Changes related to the CVS->SNV move. Modified: head/de_DE.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Modified: head/de_DE.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sat May 26 15:00:00 2012 (r38897) +++ head/de_DE.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml Sat May 26 15:11:57 2012 (r38898) @@ -29,7 +29,7 @@ $FreeBSD$ $FreeBSDde$ - basiert auf: r38826 + basiert auf: r38851 --> @@ -794,8 +794,8 @@ während dieses kursiv darges Zum jetzigen Zeitpunkt sind die FreeBSD-Erweiterungen nicht Bestandteil der Ports-Sammlung. Sie werden im - &os;-CVS-Archiv (doc/share/sgml/freebsd.dtd) + &os;-Subversion-Repository (head/share/sgml/freebsd.dtd) verwaltet. @@ -2539,7 +2539,7 @@ This is the file called 'foo2' Verfügung. In diesem Fall, sollte die Grafikdatei immer die Endung .png haben. - In das CVS-Archiv sollten nur + In das Subversion-Repository sollten nur Grafiken in diesen beiden Formaten übernommen werden. From owner-svn-doc-head@FreeBSD.ORG Sat May 26 15:26:44 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CB461065672; Sat, 26 May 2012 15:26:44 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2ED9B8FC0C; Sat, 26 May 2012 15:26:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4QFQiam085029; Sat, 26 May 2012 15:26:44 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4QFQh9C085027; Sat, 26 May 2012 15:26:43 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201205261526.q4QFQh9C085027@svn.freebsd.org> From: Johann Kois Date: Sat, 26 May 2012 15:26:43 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38899 - head/de_DE.ISO8859-1/books/fdp-primer/translations X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 15:26:44 -0000 Author: jkois Date: Sat May 26 15:26:43 2012 New Revision: 38899 URL: http://svn.freebsd.org/changeset/doc/38899 Log: r38826 -> 38888 Modified: head/de_DE.ISO8859-1/books/fdp-primer/translations/chapter.sgml Modified: head/de_DE.ISO8859-1/books/fdp-primer/translations/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/translations/chapter.sgml Sat May 26 15:11:57 2012 (r38898) +++ head/de_DE.ISO8859-1/books/fdp-primer/translations/chapter.sgml Sat May 26 15:26:43 2012 (r38899) @@ -29,7 +29,7 @@ $FreeBSD$ $FreeBSDde$ - basiert auf: r38826 + basiert auf: r38888 --> @@ -150,21 +150,29 @@ Es ist sehr empfehlenswert, eine lokale Kopie des FreeBSD - CVS-Repository (als Minimum den Dokumentationsteil) anzulegen, - entweder mit CTM oder mit - CVSup. Das Kapitel Das - Neueste und Beste des Handbuchs beschreibt die - Nutzung dieser Programme. + Subversion-Repository (als Minimum den Dokumentationsteil) + anzulegen. Dazu geben Sie den folgenden Befehl ein: + + &prompt.user; svn checkout svn://svn.FreeBSD.org/doc/head/ head + + + Damit dieser Befehl funktioniert, muss der Port + devel/subversion + installiert sein. + Sie sollten außerdem mit - CVS vertraut sein. Damit ist es + svn vertraut sein. Damit ist es möglich, festzustellen, was sich zwischen einzelnen Versionen eines Dokuments geändert hat. - [XXX Aufgabe -- Ein Tutorial schreiben, das die Verwendung - von CVSup beschreibt, um die Dokumentation herunterzuladen, - auszuchecken und festzustellen, was sich zwischen zwei - Versionen geändert hat.] + Wenn Sie beispielsweise wissen wollen, was sich zwischen + den Revisionen r33733 und + r33734 der Datei + en_US.ISO8859-1/books/fdp-primer/book.sgml + geändert hat, geben Sie den folgenden Befehl ein: + + &prompt.user; svn diff -r33733:33734 en_US.ISO8859-1/books/fdp-primer/book.sgml @@ -256,7 +264,7 @@ oder Wir sind ein Übersetzer-Team, und wollen Dokumente - versenden, die unsere Mitglieder übersetzt haben? + versenden, die unsere Mitglieder übersetzt haben. @@ -266,7 +274,7 @@ bauen lassen. Zurzeit wird die FreeBSD Dokumentation unterhalb des - Verzeichnisses doc/ gespeichert. Die + Verzeichnisses head/ gespeichert. Die direkten Unterverzeichnisse werden entsprechend der Sprachkodierung benannt, in der sie geschrieben sind. Diese Kodierung nach ISO639 finden Sie auf einem FreeBSD-System @@ -285,9 +293,11 @@ schwedische Übersetzung könnte etwa so aussehen: - doc/ + head/ sv_SE.ISO8859-1/ Makefile + htdocs/ + docproj/ books/ faq/ Makefile @@ -468,14 +478,13 @@ <!-- The FreeBSD Documentation Project - $FreeBSD: doc/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml,v 1.5 2000/07/07 18:38:38 dannyboy Exp $ ---> + $FreeBSD: head/en_US.ISO8859-1/books/faq/book.sgml 38674 2012-04-14 13:52:52Z $ Das exakte Aussehen kann unterschiedlich sein, die Zeile mit $FreeBSD$ sowie der Ausdruck The FreeBSD Documentation Project sind allerdings immer enthalten. Beachten Sie, dass die Zeile mit $FreeBSD - von CVS automatisch expandiert wird, daher sollte an dieser + von Subversion automatisch expandiert wird, daher sollte an dieser Stelle in Ihren neuen Dokumenten nur $FreeBSD$ stehen. @@ -496,8 +505,8 @@ <!-- The FreeBSD Spanish Documentation Project - $FreeBSD: doc/es_ES.ISO8859-1/books/fdp-primer/translations/chapter.sgml,v 1.3 1999/06/24 19:12:32 jesusr Exp $ - Original revision: 1.11 + $FreeBSD: head/es_ES.ISO8859-1/books/faq/book.sgml 38826 2012-05-17 19:12:14Z hrs $ + Original revision: r38674 --> From owner-svn-doc-head@FreeBSD.ORG Sat May 26 15:53:17 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 944B3106566C; Sat, 26 May 2012 15:53:17 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7DF148FC0C; Sat, 26 May 2012 15:53:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4QFrHt5086137; Sat, 26 May 2012 15:53:17 GMT (envelope-from jkois@svn.freebsd.org) Received: (from jkois@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4QFrHqq086135; Sat, 26 May 2012 15:53:17 GMT (envelope-from jkois@svn.freebsd.org) Message-Id: <201205261553.q4QFrHqq086135@svn.freebsd.org> From: Johann Kois Date: Sat, 26 May 2012 15:53:17 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r38900 - head/de_DE.ISO8859-1/books/fdp-primer/the-website X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2012 15:53:17 -0000 Author: jkois Date: Sat May 26 15:53:17 2012 New Revision: 38900 URL: http://svn.freebsd.org/changeset/doc/38900 Log: r38826 -> 38876 Update the build instructions for SVN. Modified: head/de_DE.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Modified: head/de_DE.ISO8859-1/books/fdp-primer/the-website/chapter.sgml ============================================================================== --- head/de_DE.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Sat May 26 15:26:43 2012 (r38899) +++ head/de_DE.ISO8859-1/books/fdp-primer/the-website/chapter.sgml Sat May 26 15:53:17 2012 (r38900) @@ -29,7 +29,7 @@ $FreeBSD$ $FreeBSDde$ - basiert auf: r38826 + basiert auf: r38870 --> @@ -52,7 +52,7 @@ 200 und 500 MB). Der genaue Wert hängt davon ab, welche Methode Sie zum Bau der Webseiten verwenden. Dieser Platz wird von den SGML-Werkzeugen, den benötigten Teilen - des CVS-Baums, für temporären Speicher zum Bau der + des Subversion-Baums, für temporären Speicher zum Bau der Seiten sowie für die Installation der Webseiten benötigt. @@ -67,222 +67,53 @@ &prompt.root; pkg_delete jade-1.1 - Sie haben zwei Möglichkeiten, an die für den Bau - der Webseiten nötigen Dateien zu gelangen: + + <command>svn</command> verwenden - - - Sie können csup verwenden, um eine - lokale Kopie der Dateien von einem - CVSup-Server herunterzuladen. Dies - ist die einfachste Methode, da Sie keine zusätzlichen - Programme installieren müssen. Das im nächsten - Abschnitt beschriebene supfile lädt - jeweils die aktuellste Version der benötigten Dateien - herunter. Diese Methode ist ausreichend, wenn Sie die - Webseiten nur lokal bauen wollen, aber keine Veränderungen - committen wollen. - - - - Alternativ verwenden Sie cvsup im - cvs-Modus, um ein lokales - CVS-Repository zu erzeugen und - zu verwalten. Dazu müssen Sie zwar ein zusätzliches - Programm (net/cvsup-without-gui) installieren, - haben aber zusätzliche Möglichkeiten, etwa die - Verwaltung verschiedener Revisionen der doc/www-Dateien und - deren Historie. Außerdem erlaubt es diese Methode Ihnen, - Veränderungen in das zentrale - &os;-CVS-Repository zu - committen. - - - - - Die einfache Methode: <command>csup</command> - verwenden - - csup ist Teil des &os;-Basissystems - und wird inzwischen von den meisten Benutzern zur - Aktualisierung der Ports-Sammlung verwendet. Das folgende - supfile kann dazu verwendet werden, um - die zum Bau der Webseiten benötigten Dateien - auszuchecken: - - # -# This file checks out all collections required to rebuild -# the FreeBSD website -# -# Use the nearest CVSup mirror -# listed at http://www.freebsd.org/doc/handbook/mirrors.html. - -*default host=cvsup10.FreeBSD.org -*default base=/var/db -*default prefix=/usr/build -*default release=cvs tag=. -*default delete use-rel-suffix -*default compress - -# This will retrieve the entire doc branch of the FreeBSD repository. - -doc-all - -# This will retrieve the files required for the website - -www - -# This will retrieve some basic ports info required for the build - -ports-base - - Ändern Sie den Eintrag default host - in einen CVSup-Spiegelserver in - Ihrer Nähe, bevor Sie mit dem Checkout beginnen. - Außerdem sollten Sie den Eintrag - default prefix ändern, wenn Sie die - ausgecheckten Dateien an einem anderen Ort speichern wollen. - Danach speichern Sie die Datei beispielsweise als - doc-www-supfile - ab und führen den folgenden Befehl aus: - - &prompt.root; csup doc-www-supfile - - Nachdem dieser Befehl ausgeführt wurde, finden Sie - drei neue Verzeichnisse, - doc/, - www/ sowie - ports/ im Verzeichnis, - das Sie durch den Eintrag default prefix - (in unserem Beispiel /usr/build) - festgelegt haben. Wir werden das gleiche Verzeichnis für - den Bau der Webseiten verwenden, achten Sie daher unbedingt - darauf, dass Sie über genügend Plattenplatz auf dieser - Partition verfügen. + Um Dateien aus dem doc/ + Subversion-Repository auszuchecken, muss + svn installiert sein. Ist dies bei Ihnen noch + nicht der Fall, können Sie dies entweder mit &man.pkg.add.1; + oder über die &os; Ports-Sammlung nachholen: + + &prompt.root; cd /usr/ports/devel/subversion +&prompt.root; make install clean + + Um alle zum Bau der Webseite benötigten Quellen + auszuchecken, führen Sie den folgenden Befehl aus: + + &prompt.root; svn checkout svn://svn.FreeBSD.org/doc/head/ /usr/build + + + Falls Sie svn nicht als Benutzer + root ausführen, stellen Sie bitte + zuvor sicher, dass Sie in das Verzeichnis /usr/build schreiben dürfen. + Ist dies nicht möglich, so müssen Sie hier ein + anderes Zielverzeichnis angeben, in das die Quellen der + Webseite gespeichert werden sollen. + + + Nachdem svn seine Arbeit beendet hat, + befindet sich die komplette &os;-Webseite im Verzeichnis + /usr/build (oder in dem + von Ihnen angegebenen Verzeichnis). Haben Sie ein alternatives + Verzeichis angegeben, müssen Sie /usr/build in den folgenden + Ausführung durch Ihr gewähltes Zielverzeichnis + ersetzen. Das ist alles. Sie können nun mit dem Bau der Webseiten beginnen. - - - Die flexible Methode: Ein lokales - <literal>doc/www</literal>-<application>CVS</application>-Repository - verwenden - - Diese Methode bietet Ihnen (wie bereits erwähnt), mehr - Flexibilität, Sie müssen aber den Port oder das Paket - net/cvsup-without-gui installieren. - - - Um net/cvsup-without-gui - über die Ports-Sammlung zu installieren, muss - zusätzlich der Port lang/ezm3 (ein Modula 3-Compiler) - installiert werden. Die Installation dieses Ports ist sehr - zeitintensiv, daher ist es in der Regel am einfachsten, - CVSup als Paket (Package) zu - installieren. - - - CVSup besitzt einen speziellen - cvs-Modus, mit dem Sie ,v-Dateien - (aus denen ein CVS-Repository - besteht) auschecken können. Dies ist mit - csup derzeit noch nicht möglich. - Weiterführende Informationen zu - CVSup finden Sie im Abschnitt Synchronisation - der Quellen des &os;-Handbuchs. - - Das supfile im folgenden Beispiel - checkt alle cvs-Sammlungen aus, die Sie für den Bau der - Webseiten benötigen und speichert Sie in einem lokalen - CVS-Repository: - - # -# This file will create a local CVS repository -# with the collections required for a complete -# FreeBSD website rebuild. It should be used with -# cvsup *only* (csup will not work) - -*default host=cvsup10.FreeBSD.org -*default base=/var/db -*default prefix=/usr/dcvs -*default release=cvs -*default delete use-rel-suffix -*default compress - -# The following collections are needed -# for the website build - -ports-base -doc-all -www - -# These collections are needed -# for CVS functionality - -cvsroot-common -cvsroot-ports -cvsroot-doc - - Ändern Sie den Eintrag default host - in einen CVSup-Spiegelserver in - Ihrer Nähe, bevor Sie mit dem Checkout beginnen. - Außerdem sollten Sie den Eintrag - default prefix ändern, wenn Sie die - ausgecheckten Dateien an einem anderen Ort speichern wollen. - Danach speichern Sie die Datei beispielsweise als - doc-www-cvsfile - ab und führen den folgenden Befehl aus: - - &prompt.root; cvsup doc-www-cvsfile - - Zusätzlich sollten Sie die Umgebungsvariable - CVSROOT in den Startdateien Ihrer Shell - setzen. Dazu nehmen Sie beispielsweise den folgenden - Eintrag in die Datei ~/.cshrc auf - (wenn Sie die csh einsetzen): - - setenv CVSROOT /usr/dcvs - - Wenn Sie diese Variable gesetzt haben, können Sie die - Option (siehe weiter unten) weglassen, wenn - Sie cvs-Operationen im Repository - ausführen: - - Derzeit benötigen Sie für ein Repository, das - nur die zum Bau der Webseiten nötigen Dateien enthält, - mehr als 400 MB freien Plattenplatz. Der Bau der Webseiten - erfordert temporär weitere 200 MB. - Nachdem cvsup seine Arbeit beendet hat, - können Sie die Dateien in das Verzeichnis, in dem Sie die - Webseiten bauen wollen, auschecken: - - &prompt.root; mkdir /usr/build -&prompt.root; cd /usr/build -&prompt.root; cvs /usr/dcvs co doc www ports - - Der letzte Befehl entspricht dem Auschecken der Dateien - von einem CVSup-Server mit - csup. Danach haben Sie ein - Bau-Verzeichis analog zur - csup-Methode. - - cvsup erlaubt es Ihnen auch, Ihr - CVS-Repository regelmäßig - zu aktualisieren. Im Gegensatz zum ersten Aufruf dauern diese - Aktualisierungen in der Regel nur wenige Minuten. - Die Webseiten bauen - Nachdem Sie eine der beiden Methoden erfolgreich - ausgeführt haben, können Sie mit dem Bau der Webseiten + Nachdem Sie die Quellen der Webseite erfolgreich + heruntergeladen haben, können Sie mit dem Bau der Webseite beginnen. In unserem Beispiel erfolgt der Bau im Verzeichnis /usr/build, @@ -297,11 +128,12 @@ cvsroot-doc Sie starten den Bau der Webseiten, indem Sie in das - Unterverzeichnis www/en + Unterverzeichnis en_US.ISO8859-1/htdocs wechseln und dort den Befehl &man.make.1; all ausführen. - &prompt.root; cd www/en + &prompt.root; cd en_US.ISO8859-1/htdocs &prompt.root; make all @@ -313,10 +145,10 @@ cvsroot-doc Wechseln Sie wieder in das Verzeichnis - en, falls Sie dieses - inzwischen verlassen haben. + en_US.ISO8859-1/htdocs, + falls Sie dieses inzwischen verlassen haben. - &prompt.root; cd /usr/build/www/en + &prompt.root; cd /usr/build/en_US.ISO8859-1/htdocs @@ -349,27 +181,6 @@ cvsroot-doc - CVSROOT - - - Der Ort des CVS-Baums. Sie sollten diese Variable - setzen, wenn Sie die - CVSup-Methode verwenden. - - &prompt.root; CVSROOT=/usr/dcvs; export CVSROOT - - CVSROOT ist eine Umgebungsvariable. Sie - müssen sie daher auf der Kommandozeile oder in Ihren - .dot-Dateien (beispielsweise in - ~/.profile) setzen. Die genaue - Syntax hängt von der von Ihnen eingesetzten Shell - (das letzte Beispiel gilt nur für die - bash und bash-ähnliche - Shells) ab. - - - - ENGLISH_ONLY @@ -395,9 +206,10 @@ cvsroot-doc Ist diese Variable gesetzt und nicht leer, bauen und installieren die Makefiles nur die HTML-Seiten des - Verzeichnisses www. - Alle Dokumente des - doc-Verzeichnisses + Verzeichnisses en_US.ISO8859-1/htdocs. + Alle Dokumente des Verzeichnisses + en_US.ISO8859-1 (Handbuch, FAQ, Artikel) werden dabei ignoriert: &prompt.root; make WEB_ONLY=YES all install @@ -411,11 +223,12 @@ cvsroot-doc Ist diese Variable gesetzt, wird die Dokumentation nur für die durch diese Variable festgelegten Sprachen gebaut und im Verzeichnis - www installiert. - Alle weiteren Sprachen (ausgenommen Englisch) werden + /usr/build + installiert. Alle weiteren Sprachen (ausgenommen Englisch) werden ignoriert. Dazu ein Beispiel: - &prompt.root; make WEB_LANG="el es hu nl" all install + &prompt.root; make WEB_LANG="el_GR.ISO8859-7 es_ES.ISO8859-1 hu_HU.ISO8859-2 nl_NL.ISO8859-1" all install