From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris Johnsen Subject: [PATCH 1/8] Documentation: move callouts.xsl to manpage-{base,normal}.xsl Date: Tue, 24 Mar 2009 03:04:19 -0500 Message-ID: <1237881866-5497-2-git-send-email-chris_johnsen@pobox.com> References: <1237881866-5497-1-git-send-email-chris_johnsen@pobox.com> Cc: Junio C Hamano , Jeff King , Chris Johnsen To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Tue Mar 24 09:06:51 2009 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1Lm1eq-0006ZF-8z for gcvg-git-2@gmane.org; Tue, 24 Mar 2009 09:06:48 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756631AbZCXIFH (ORCPT ); Tue, 24 Mar 2009 04:05:07 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756597AbZCXIFG (ORCPT ); Tue, 24 Mar 2009 04:05:06 -0400 Received: from a-sasl-fastnet.sasl.smtp.pobox.com ([207.106.133.19]:63852 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756522AbZCXIFB (ORCPT ); Tue, 24 Mar 2009 04:05:01 -0400 Received: from localhost.localdomain (unknown [127.0.0.1]) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTP id AB5A5A4BCC; Tue, 24 Mar 2009 04:04:59 -0400 (EDT) Received: from localhost.localdomain (unknown [75.53.43.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTPSA id 62A20A4BC7; Tue, 24 Mar 2009 04:04:54 -0400 (EDT) X-Mailer: git-send-email 1.6.2.1.214.ge986c In-Reply-To: <1237881866-5497-1-git-send-email-chris_johnsen@pobox.com> X-Pobox-Relay-ID: 788BC9D6-184A-11DE-B776-32B0EBB1AA3C-07245699!a-sasl-fastnet.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Each of manpage-base.xsl and manpage-normal.xsl gets a copy of the contents of callouts.xsl and the original is removed. The Makefile is adjusted to refer to manpage-normal.xsl instead of callouts.xsl. manpage-base.xsl will be later made into a common base for -normal and -1.72. Testing done with asciidoc 8.3.1 and docbook-xsl 1.74.0. Signed-off-by: Chris Johnsen --- This duplication is in preparation for refactoring. It should make it easier to keep track of the source of the various XSL constructs while reviewing. --- Documentation/Makefile | 2 +- Documentation/callouts.xsl | 30 ------------------------------ Documentation/manpage-base.xsl | 30 ++++++++++++++++++++++++++++++ Documentation/manpage-normal.xsl | 30 ++++++++++++++++++++++++++++++ 4 files changed, 61 insertions(+), 31 deletions(-) delete mode 100644 Documentation/callouts.xsl create mode 100644 Documentation/manpage-base.xsl create mode 100644 Documentation/manpage-normal.xsl diff --git a/Documentation/Makefile b/Documentation/Makefile index 144ec32..e1562e3 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -41,7 +41,7 @@ man7dir=$(mandir)/man7 ASCIIDOC=asciidoc ASCIIDOC_EXTRA = -MANPAGE_XSL = callouts.xsl +MANPAGE_XSL = manpage-normal.xsl INSTALL?=install RM ?= rm -f DOC_REF = origin/man diff --git a/Documentation/callouts.xsl b/Documentation/callouts.xsl deleted file mode 100644 index 6a361a2..0000000 --- a/Documentation/callouts.xsl +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - .sp - - - - - - - .br - - - - - - - - - - - - - - diff --git a/Documentation/manpage-base.xsl b/Documentation/manpage-base.xsl new file mode 100644 index 0000000..6a361a2 --- /dev/null +++ b/Documentation/manpage-base.xsl @@ -0,0 +1,30 @@ + + + + + + + .sp + + + + + + + .br + + + + + + + + + + + + + + diff --git a/Documentation/manpage-normal.xsl b/Documentation/manpage-normal.xsl new file mode 100644 index 0000000..6a361a2 --- /dev/null +++ b/Documentation/manpage-normal.xsl @@ -0,0 +1,30 @@ + + + + + + + .sp + + + + + + + .br + + + + + + + + + + + + + + -- 1.6.2.1.214.ge986c