From owner-svn-doc-all@freebsd.org Tue Jun 30 14:47:22 2015 Return-Path: Delivered-To: svn-doc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD38B98EC80; Tue, 30 Jun 2015 14:47:22 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9FB01172; Tue, 30 Jun 2015 14:47:22 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5UElMU0029241; Tue, 30 Jun 2015 14:47:22 GMT (envelope-from wblock@FreeBSD.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5UElMBM029239; Tue, 30 Jun 2015 14:47:22 GMT (envelope-from wblock@FreeBSD.org) Message-Id: <201506301447.t5UElMBM029239@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wblock set sender to wblock@FreeBSD.org using -f From: Warren Block Date: Tue, 30 Jun 2015 14:47:22 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r46901 - in head: en_US.ISO8859-1/articles/pgpkeys share/mk X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jun 2015 14:47:22 -0000 Author: wblock Date: Tue Jun 30 14:47:21 2015 New Revision: 46901 URL: https://svnweb.freebsd.org/changeset/doc/46901 Log: Increase the global size of maxvars for xsltproc to help it choke down large indigestible blobs like the PGP keys article. Also remove the special settings in the PGP Keys article Makefile that are no longer necessary. Modified: head/en_US.ISO8859-1/articles/pgpkeys/Makefile head/share/mk/doc.xml.mk Modified: head/en_US.ISO8859-1/articles/pgpkeys/Makefile ============================================================================== --- head/en_US.ISO8859-1/articles/pgpkeys/Makefile Tue Jun 30 11:10:38 2015 (r46900) +++ head/en_US.ISO8859-1/articles/pgpkeys/Makefile Tue Jun 30 14:47:21 2015 (r46901) @@ -19,7 +19,3 @@ URL_RELPREFIX?= ../../../.. DOC_PREFIX?= ${.CURDIR}/../../.. .include "${DOC_PREFIX}/share/mk/doc.project.mk" - -# disable hyphenation of long lines in verbatim blocks -# like to prevent PDF build errors -XSLTPROCOPTS+= --param hyphenate.verbatim 0 Modified: head/share/mk/doc.xml.mk ============================================================================== --- head/share/mk/doc.xml.mk Tue Jun 30 11:10:38 2015 (r46900) +++ head/share/mk/doc.xml.mk Tue Jun 30 14:47:21 2015 (r46901) @@ -279,7 +279,7 @@ XML_NOTICES= ${DOC_PREFIX}/share/xml/no XSLTPROC_ENV+= XML_CATALOG_FILES="${XML_CATALOG_FILES}" XSLTPROCOPTS= ${XSLTPROCFLAGS} -XSLTPROCOPTS+= --xinclude --nonet +XSLTPROCOPTS+= --xinclude --nonet --maxvars 20000 .if defined(WWWFREEBSDORG) XSLTPROCOPTS+= --param "html.header.script.google" "'INCLUDE'" .endif