diff options
author | Johannes Berg <johannes.berg@intel.com> | 2010-08-05 11:23:11 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-05 13:21:24 -0700 |
commit | ab265d5cdde7133f2569e2b5f341a80907b8600e (patch) | |
tree | ef99ebdea0848b52fcf8d23849e1cc889bfdb48a | |
parent | c95940f264e59ff8d21d76ace47bac1018912800 (diff) | |
download | linux-3.10-ab265d5cdde7133f2569e2b5f341a80907b8600e.tar.gz linux-3.10-ab265d5cdde7133f2569e2b5f341a80907b8600e.tar.bz2 linux-3.10-ab265d5cdde7133f2569e2b5f341a80907b8600e.zip |
docbook: use IDs as filenames to support multiple books
I'm trying to generate a <set> of <book>s in docbook for wireless to
link together all the cfg80211 and mac80211 documentation.
However, docbook will generate "re01.html" anew for each book for the
first <refentry>, presumably due to a bug in the stylesheets.
An effective workaround is to use IDs for the filenames, which makes
them more descriptive as well, e.g. API-enum-ieee80211-band.html.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | Documentation/DocBook/stylesheet.xsl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/DocBook/stylesheet.xsl b/Documentation/DocBook/stylesheet.xsl index 254c1d5d2e5..85b25275196 100644 --- a/Documentation/DocBook/stylesheet.xsl +++ b/Documentation/DocBook/stylesheet.xsl @@ -6,4 +6,5 @@ <param name="callout.graphics">0</param> <!-- <param name="paper.type">A4</param> --> <param name="generate.section.toc.level">2</param> +<param name="use.id.as.filename">1</param> </stylesheet> |