Return-Path:
Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand
id S1756616AbXE3TaM (ORCPT );
Wed, 30 May 2007 15:30:12 -0400
Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753852AbXE3T37
(ORCPT );
Wed, 30 May 2007 15:29:59 -0400
Received: from rgminet01.oracle.com ([148.87.113.118]:25292 "EHLO
rgminet01.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org
with ESMTP id S1753830AbXE3T36 (ORCPT
);
Wed, 30 May 2007 15:29:58 -0400
Date: Wed, 30 May 2007 12:28:15 -0700
From: Randy Dunlap
To: Rob Landley
Cc: linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org
Subject: Re: [patch] tweak make htmldocs (nochunks and better index).
Message-Id: <20070530122815.31ca9587.randy.dunlap@oracle.com>
In-Reply-To: <200705301447.41421.rob@landley.net>
References: <200705291528.34092.rob@landley.net>
<20070529211809.d995a5f7.randy.dunlap@oracle.com>
<200705301447.41421.rob@landley.net>
Organization: Oracle Linux Eng.
X-Mailer: Sylpheed 2.3.1 (GTK+ 2.8.10; x86_64-unknown-linux-gnu)
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Whitelist: TRUE
X-Whitelist: TRUE
X-Brightmail-Tracker: AAAAAQAAAAI=
Sender: linux-kernel-owner@vger.kernel.org
X-Mailing-List: linux-kernel@vger.kernel.org
Content-Length: 2117
Lines: 57
On Wed, 30 May 2007 14:47:41 -0400 Rob Landley wrote:
> On Wednesday 30 May 2007 12:18 am, Randy Dunlap wrote:
> > What is <\p> supposed to do?
>
> Sorry, typo. Should be
instead. My bad.
>
> As to what it does in a larger sense, "make the xml people happy". Closing
> parentheses tags make the various xhtml validators shut up. The main
> difference between xhtml and html is that you close all the tags you open. I
> can yank it if people prefer it that way.
>
> > Here's what I see in index.html (beginning lines of it):
> >
> > Linux Kernel HTML Documentation
> > Kernel Version: 2.6.22-rc3
> >
> > deviceiobookBus-Independent Device Accesses <\p>
>
> Yeah, that's screwed up. (It looked fine in Konqueror. :) *rummage*...
>
> Here's an updated patch. This time I checked that it looked ok in Firefox
> too:
Yes, /me too. Thanks.
I still disagree on the use of "nochunks" though.
> --- git/Documentation/DocBook/Makefile 2007-05-23 16:36:56.000000000 -0400
> +++ work/Documentation/DocBook/Makefile 2007-05-30 14:36:49.000000000 -0400
> @@ -141,9 +141,12 @@
> cat $(HTML) >> $(main_idx)
>
> quiet_cmd_db2html = HTML $@
> - cmd_db2html = xmlto xhtml $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
> - echo ' \
> - $(patsubst %.html,%,$(notdir $@))' > $@
> + cmd_db2html = xmlto xhtml-nochunks $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
> + NAME='$(patsubst %.html,%,$(notdir $@))'; \
> + echo -n "
$$NAME - " >$@; \
> + sed -nre 's@.*
(.*).*@\1@p' \
> + "Documentation/DocBook/$$NAME/$$NAME.html" >> $@ ; \
> + echo '' >> $@
>
> %.html: %.xml
> @(which xmlto > /dev/null 2>&1) || \
>
> Rob
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/