mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
1ac5abe516
(This used to be commit 934dbcb1ae
)
87 lines
2.8 KiB
Plaintext
87 lines
2.8 KiB
Plaintext
<!-- This file defines the DocBook-utils Style Sheet for DocBook
|
|
Eric Bischoff <eric@caldera.de>
|
|
-->
|
|
|
|
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
|
<!ENTITY % html "IGNORE">
|
|
<![%html; [
|
|
<!ENTITY % print "IGNORE">
|
|
<!ENTITY docbook.dsl PUBLIC "-//Norman Walsh//DOCUMENT DocBook HTML Stylesheet//EN" CDATA dsssl>
|
|
]]>
|
|
<!ENTITY % print "INCLUDE">
|
|
<![%print; [
|
|
<!ENTITY docbook.dsl PUBLIC "-//Norman Walsh//DOCUMENT DocBook Print Stylesheet//EN" CDATA dsssl>
|
|
]]>
|
|
]>
|
|
|
|
<STYLE-SHEET>
|
|
|
|
<STYLE-SPECIFICATION ID="UTILS" USE="DOCBOOK">
|
|
<STYLE-SPECIFICATION-BODY>
|
|
;; ===================================================================
|
|
;; Generic Parameters
|
|
;; (Generic currently means: both print and html)
|
|
(define (chunk-element-list)
|
|
(list (normalize "preface")
|
|
(normalize "chapter")
|
|
(normalize "appendix")
|
|
(normalize "article")
|
|
(normalize "glossary")
|
|
(normalize "bibliography")
|
|
(normalize "index")
|
|
(normalize "colophon")
|
|
(normalize "setindex")
|
|
(normalize "reference")
|
|
(normalize "refentry")
|
|
(normalize "part")
|
|
; We would like to split up in chapters, not in sect1's...
|
|
; (normalize "sect1")
|
|
(normalize "section")
|
|
(normalize "book") ;; just in case nothing else matches...
|
|
(normalize "set") ;; sets are definitely chunks...
|
|
))
|
|
|
|
(define %chapter-autolabel% #t)
|
|
(define %section-autolabel% #t)
|
|
(define (toc-depth nd) 3)
|
|
|
|
(define %html-ext% ".html") ;; default extension for html output files
|
|
(define %html-prefix% "") ;; prefix for all filenames generated (except root)
|
|
(define %use-id-as-filename% #t)
|
|
|
|
; === HTML settings ===
|
|
(define %html-pubid% "-//W3C//DTD HTML 4.01 Transitional//EN") ;; Nearly true :-(
|
|
(define %html40% #t)
|
|
|
|
; === Media objects ===
|
|
(define preferred-mediaobject-extensions ;; this magic allows to use different graphical
|
|
(list "png" "jpg" "jpeg")) ;; formats for printing and putting online
|
|
(define acceptable-mediaobject-extensions
|
|
(list "bmp" "gif" "eps" "epsf" "avi" "mpg" "mpeg" "qt"))
|
|
(define preferred-mediaobject-notations
|
|
(list "PNG" "JPG" "JPEG"))
|
|
(define acceptable-mediaobject-notations
|
|
(list "EPS" "BMP" "GIF" "linespecific"))
|
|
; === Rendering ===
|
|
(define %admon-graphics% #t) ;; use symbols for Caution|Important|Note|Tip|Warning
|
|
|
|
; === Books only ===
|
|
(define %generate-book-titlepage% #t)
|
|
(define %generate-book-toc% #t)
|
|
(define %generate-part-toc% #f)
|
|
(define %generate-part-titlepage% #t)
|
|
(define %generate-chapter-toc% #f)
|
|
(define %number-screen-lines% #t)
|
|
(define %generate-partintro-on-titlepage% #f)
|
|
|
|
; === Articles only ===
|
|
(define %generate-article-titlepage% #t)
|
|
(define %generate-article-toc% #t) ;; make TOC
|
|
|
|
</STYLE-SPECIFICATION-BODY>
|
|
</STYLE-SPECIFICATION>
|
|
|
|
<EXTERNAL-SPECIFICATION ID="DOCBOOK" DOCUMENT="docbook.dsl">
|
|
|
|
</STYLE-SHEET>
|