diff options
author | Martin Waitz <tali@admingilde.org> | 2005-05-01 08:59:27 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-01 08:59:27 -0700 |
commit | 2948e57d94bd2d2fb6d4e89d89f0bd0ddaee0513 (patch) | |
tree | 4d6146a9e30f9d8920eaae2db942dbaad1b1100e | |
parent | 8b0c2d989cc60db1767481386ca912e99807eddb (diff) | |
download | linux-3.10-2948e57d94bd2d2fb6d4e89d89f0bd0ddaee0513.tar.gz linux-3.10-2948e57d94bd2d2fb6d4e89d89f0bd0ddaee0513.tar.bz2 linux-3.10-2948e57d94bd2d2fb6d4e89d89f0bd0ddaee0513.zip |
[PATCH] 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>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | Documentation/DocBook/Makefile | 3 | ||||
-rw-r--r-- | Documentation/DocBook/stylesheet.xsl | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile index a2441fa99c3..39c87666db3 100644 --- a/Documentation/DocBook/Makefile +++ b/Documentation/DocBook/Makefile @@ -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: diff --git a/Documentation/DocBook/stylesheet.xsl b/Documentation/DocBook/stylesheet.xsl new file mode 100644 index 00000000000..e14c21dda40 --- /dev/null +++ b/Documentation/DocBook/stylesheet.xsl @@ -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> |