1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
;; $Id: dbcompon.dsl 1.11 1998/08/19 13:03:11 nwalsh Exp $
;;
;; This file is part of the Modular DocBook Stylesheet distribution.
;; See ../README or http://www.berkshire.net/~norm/dsssl/
;;
;; ============================= COMPONENTS =============================
;;
;; in docbook, components are containers at the chapter/appendix level
(define ($component$)
(html-document
(with-mode head-title-mode
(process-first-descendant (normalize "title")))
($component-body$)))
(define ($component-separator$)
(if (or (not nochunks) (node-list=? (current-node) (sgml-root-element)))
(empty-sosofo)
(make empty-element gi: "HR")))
(define ($component-body$)
(make sequence
($component-separator$)
($component-title$)
(if ($generate-chapter-toc$)
($chapter-toc$)
(empty-sosofo))
(process-children)))
(define ($component-title$ #!optional (titlegi "H1") (subtitlegi "H2"))
(let* ((info (cond
((equal? (gi) (normalize "appendix"))
(select-elements (children (current-node)) (normalize "docinfo")))
((equal? (gi) (normalize "article"))
(select-elements (children (current-node)) (normalize "artheader")))
((equal? (gi) (normalize "bibliography"))
(select-elements (children (current-node)) (normalize "docinfo")))
((equal? (gi) (normalize "chapter"))
(select-elements (children (current-node)) (normalize "docinfo")))
((equal? (gi) (normalize "dedication"))
(empty-node-list))
((equal? (gi) (normalize "glossary"))
(select-elements (children (current-node)) (normalize "docinfo")))
((equal? (gi) (normalize "index"))
(select-elements (children (current-node)) (normalize "docinfo")))
((equal? (gi) (normalize "preface"))
(select-elements (children (current-node)) (normalize "docinfo")))
((equal? (gi) (normalize "reference"))
(select-elements (children (current-node)) (normalize "docinfo")))
((equal? (gi) (normalize "setindex"))
(select-elements (children (current-node)) (normalize "docinfo")))
(else
(empty-node-list))))
(exp-children (if (node-list-empty? info)
(empty-node-list)
(expand-children (children info)
(list (normalize "bookbiblio")
(normalize "bibliomisc")
(normalize "biblioset")))))
(parent-titles (select-elements (children (current-node)) (normalize "title")))
(info-titles (select-elements exp-children (normalize "title")))
(titles (if (node-list-empty? parent-titles)
info-titles
parent-titles))
(subtitles (select-elements exp-children (normalize "subtitle"))))
(make sequence
(make element gi: titlegi
(make element gi: "A"
attributes: (list (list "NAME" (element-id)))
(if (and %chapter-autolabel%
(or (equal? (gi) (normalize "chapter"))
(equal? (gi) (normalize "appendix"))))
(literal (gentext-element-name-space (gi))
(element-label (current-node))
(gentext-label-title-sep (gi)))
(empty-sosofo))
(if (node-list-empty? titles)
(element-title-sosofo) ;; get a default!
(with-mode title-mode
(process-node-list titles)))))
(if (node-list-empty? subtitles)
(empty-sosofo)
(with-mode subtitle-mode
(make element gi: subtitlegi
(process-node-list subtitles)))))))
(define ($chapter-toc$)
;; Called by the TITLE element so that it can come after the TITLE
(build-toc (ancestor-member (current-node) (component-element-list))
(toc-depth
(ancestor-member (current-node) (component-element-list)))
#t))
(element appendix ($component$))
(element (appendix title) (empty-sosofo))
(element chapter ($component$))
(element (chapter title) (empty-sosofo))
(element preface ($component$))
(element (preface title) (empty-sosofo))
;; Dedication is empty except in a special mode so that it can be
;; reordered (made to come before the TOCs)...see dbttlpg.dsl
;; Dedication is empty except in a special mode so that it can be
;; reordered (made to come before the TOCs)
(element dedication (empty-sosofo))
(mode dedication-page-mode
(element dedication
(html-document
(with-mode head-title-mode (process-first-descendant (normalize "title")))
(make sequence
($component-separator$)
($component-title$)
(process-children))))
(element (dedication title) (empty-sosofo))
)
;; Articles are like components, except that if they may have much
;; more formal title pages (created with article-titlepage).
;;
(element article
(let* ((info (select-elements (children (current-node))
(normalize "artheader")))
(ititle (select-elements (children info) (normalize "title")))
(title (if (node-list-empty? ititle)
(select-elements (children (current-node))
(normalize "title"))
(node-list-first ititle)))
(tsosofo (with-mode head-title-mode
(process-node-list title)))
(nl (titlepage-info-elements (current-node) info)))
(html-document
tsosofo
(make element gi: "DIV"
attributes: '(("CLASS" "ARTICLE"))
(if %generate-article-titlepage%
(make sequence
(article-titlepage nl 'recto)
(article-titlepage nl 'verso))
($component-title$))
(if (not (generate-toc-in-front))
(process-children)
(empty-sosofo))
(if %generate-article-toc%
(make sequence
(build-toc (current-node)
(toc-depth (current-node))))
(empty-sosofo))
(if (generate-toc-in-front)
(process-children)
(empty-sosofo))))))
(element (article appendix) ($section$)) ;; this is a special case
|