linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch 0/2] DocBook xmlto fixes
@ 2005-04-11 15:58 Martin Waitz
  2005-04-11 15:58 ` [patch 1/2] Docbook: use custom stylesheet Martin Waitz
  2005-04-11 15:58 ` [patch 2/2] DocBook: fix html link Martin Waitz
  0 siblings, 2 replies; 4+ messages in thread
From: Martin Waitz @ 2005-04-11 15:58 UTC (permalink / raw)
  To: Alexey Dobriyan; +Cc: Andrew Morton, linux-kernel

hoi :)

the following two patches fix some problems noticed by Alexey.
I still have to look harder at the stylesheets to get nicely linked
function lists in the toc.

@Andrew: lets test the xmlto converter in -mm a little bit longer.
Should I keep sending relative patches or replacement patches?
I guess we want to collapse patches before sending to Linus.
(The patches before the xmlto one should be non-problematic and
could be commited once Linus starts accepting patches again.)

--
Martin Waitz

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [patch 1/2] Docbook: use custom stylesheet
  2005-04-11 15:58 [patch 0/2] DocBook xmlto fixes Martin Waitz
@ 2005-04-11 15:58 ` Martin Waitz
  2005-04-11 20:49   ` Alexey Dobriyan
  2005-04-11 15:58 ` [patch 2/2] DocBook: fix html link Martin Waitz
  1 sibling, 1 reply; 4+ messages in thread
From: Martin Waitz @ 2005-04-11 15:58 UTC (permalink / raw)
  To: Alexey Dobriyan; +Cc: Andrew Morton, linux-kernel

[-- Attachment #1: docbook-custom-stylesheet.patch --]
[-- Type: text/plain, Size: 1422 bytes --]

Docbook: use custom stylesheet

With the custom stylesheet, functions are rendered using ANSI-C syntax
and xmlto is a bit quieter.

Signed-off-by: Martin Waitz <tali@admingilde.org>

---
 Documentation/DocBook/Makefile       |    3 ++-
 Documentation/DocBook/stylesheet.xsl |    5 +++++
 2 files changed, 7 insertions(+), 1 deletion(-)

Index: linux-docbook/Documentation/DocBook/Makefile
===================================================================
--- linux-docbook.orig/Documentation/DocBook/Makefile	2005-04-06 15:46:05.000000000 +0200
+++ linux-docbook/Documentation/DocBook/Makefile	2005-04-10 12:57:53.678951360 +0200
@@ -49,7 +49,8 @@ installmandocs: mandocs
 KERNELDOC = scripts/kernel-doc
 DOCPROC   = scripts/basic/docproc
 
-#XMLTOFLAGS = --skip-validation
+XMLTOFLAGS = -m Documentation/DocBook/stylesheet.xsl
+#XMLTOFLAGS += --skip-validation
 
 ###
 # DOCPROC is used for two purposes:
Index: linux-docbook/Documentation/DocBook/stylesheet.xsl
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ linux-docbook/Documentation/DocBook/stylesheet.xsl	2005-04-09 13:59:56.000000000 +0200
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<stylesheet xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0">
+<param name="chunk.quietly">1</param>
+<param name="funcsynopsis.style">ansi</param>
+</stylesheet>

--
Martin Waitz

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [patch 2/2] DocBook: fix html link
  2005-04-11 15:58 [patch 0/2] DocBook xmlto fixes Martin Waitz
  2005-04-11 15:58 ` [patch 1/2] Docbook: use custom stylesheet Martin Waitz
@ 2005-04-11 15:58 ` Martin Waitz
  1 sibling, 0 replies; 4+ messages in thread
From: Martin Waitz @ 2005-04-11 15:58 UTC (permalink / raw)
  To: Alexey Dobriyan; +Cc: Andrew Morton, linux-kernel

[-- Attachment #1: docbook-fix-html-link.patch --]
[-- Type: text/plain, Size: 973 bytes --]

DocBook: fix html link

The start page for each book has changed from book1.html to index.html.
Update our generated links acocrdingly.

Signed-off-by: Martin Waitz <tali@admingilde.org>

---
 Documentation/DocBook/Makefile |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

Index: linux-docbook/Documentation/DocBook/Makefile
===================================================================
--- linux-docbook.orig/Documentation/DocBook/Makefile	2005-04-09 13:27:12.000000000 +0200
+++ linux-docbook/Documentation/DocBook/Makefile	2005-04-09 14:35:55.000000000 +0200
@@ -115,7 +115,7 @@ quiet_cmd_db2pdf = XMLTO   $@
 
 quiet_cmd_db2html = XMLTO  $@
       cmd_db2html = xmlto xhtml $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
-		echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/book1.html"> \
+		echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \
          Goto $(patsubst %.html,%,$(notdir $@))</a><p>' > $@
 
 %.html:	%.xml

--
Martin Waitz

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch 1/2] Docbook: use custom stylesheet
  2005-04-11 15:58 ` [patch 1/2] Docbook: use custom stylesheet Martin Waitz
@ 2005-04-11 20:49   ` Alexey Dobriyan
  0 siblings, 0 replies; 4+ messages in thread
From: Alexey Dobriyan @ 2005-04-11 20:49 UTC (permalink / raw)
  To: Martin Waitz; +Cc: Andrew Morton, linux-kernel

On Monday 11 April 2005 15:58, Martin Waitz wrote:
> Docbook: use custom stylesheet
> 
> With the custom stylesheet, functions are rendered using ANSI-C syntax
> and xmlto is a bit quieter.

Definitely better. Still remains (anything with more than 1 argument):
==================================================================
Synopsis

int bios_param (struct scsi_device *   sdev,
                struct block_device *  bdev,
                sector_t               capacity,
                int                    params[3]);

Arguments
==================================================================
Synopsis

int queuecommand (struct scsi_cmnd *  scp,
                  void (*             done) (struct scsi_cmnd *));

Arguments
==================================================================

Nice to see [TeX mode on] -- [TeX mode off] instead of "--" after function 
name. ;-)

Second patch works.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-04-11 16:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-11 15:58 [patch 0/2] DocBook xmlto fixes Martin Waitz
2005-04-11 15:58 ` [patch 1/2] Docbook: use custom stylesheet Martin Waitz
2005-04-11 20:49   ` Alexey Dobriyan
2005-04-11 15:58 ` [patch 2/2] DocBook: fix html link Martin Waitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).