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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
;; $Id: dbinline.dsl,v 1.2 2004/05/17 14:55:24 tony2001 Exp $
;;
;; This file is part of the Modular DocBook Stylesheet distribution.
;; See ../README or http://docbook.sourceforge.net/projects/dsssl/
;;
;; ============================== INLINES ===============================
(element accel ($score-seq$ 'after))
(element action ($charseq$))
(element application ($charseq$))
(element classname ($mono-seq$))
(element command ($bold-seq$))
(element computeroutput ($mono-seq$))
(element database ($charseq$))
(element email
(make sequence (literal "<") ($mono-seq$) (literal ">")))
(element envar ($charseq$))
(element errorcode ($charseq$))
(element errorname ($charseq$))
(element errortype ($charseq$))
(element filename ($mono-seq$))
(element function ($mono-seq$))
(element guibutton ($guilabel-seq$))
(element guiicon ($guilabel-seq$))
(element guilabel ($guilabel-seq$))
(element guimenu ($guilabel-seq$))
(element guimenuitem ($guilabel-seq$))
(element guisubmenu ($guilabel-seq$))
(element hardware ($charseq$))
(element interface ($charseq$))
(element interfacedefinition ($charseq$))
(element keycap ($bold-seq$))
(element keycode ($charseq$))
(element keycombo
(let* ((action (attribute-string (normalize "action")))
(joinchar
(cond
((equal? action (normalize "seq")) " ") ;; space
((equal? action (normalize "simul")) "+") ;; +
((equal? action (normalize "press")) "-") ;; ? I don't know
((equal? action (normalize "click")) "-") ;; ? what to do
((equal? action (normalize "double-click")) "-") ;; ? about the rest
((equal? action (normalize "other")) "-") ;; ? of these
(else "-"))))
(let loop ((nl (children (current-node))) (count 1))
(if (node-list-empty? nl)
(empty-sosofo)
(if (equal? count 1)
(make sequence
(process-node-list (node-list-first nl))
(loop (node-list-rest nl) (+ count 1)))
(make sequence
(literal joinchar)
(process-node-list (node-list-first nl))
(loop (node-list-rest nl) (+ count 1))))))))
(element keysym ($charseq$))
(element literal ($mono-seq$))
(element medialabel ($italic-seq$))
(element menuchoice
(let* ((shortcut (select-elements (children (current-node))
(normalize "shortcut")))
(items (node-list-filter-by-not-gi
(children (current-node))
(list (normalize "shortcut")))))
(make sequence
(let loop ((nl items) (first? #t))
(if (node-list-empty? nl)
(empty-sosofo)
(make sequence
(if first?
(process-node-list (node-list-first nl))
(make sequence
(if (or (equal? (gi (node-list-first nl))
(normalize "guimenuitem"))
(equal? (gi (node-list-first nl))
(normalize "guisubmenu")))
(literal "\rightwards-arrow;")
(literal "+"))
(process-node-list (node-list-first nl))))
(loop (node-list-rest nl) #f))))
(if (node-list-empty? shortcut)
(empty-sosofo)
(make sequence
(literal " (")
(process-node-list shortcut)
(literal ")"))))))
(element methodname ($mono-seq$))
(element shortcut ($bold-seq$))
(element mousebutton ($charseq$))
(element option ($mono-seq$))
(element optional
(make sequence
(literal %arg-choice-opt-open-str%)
($charseq$)
(literal %arg-choice-opt-close-str%)))
(element parameter ($italic-mono-seq$))
(element property ($charseq$))
(element prompt ($mono-seq$))
(element replaceable ($italic-mono-seq$))
(element returnvalue ($charseq$))
(element structfield ($italic-mono-seq$))
(element structname ($charseq$))
(element symbol ($charseq$))
(element systemitem ($charseq$))
(element token ($charseq$))
(element type ($charseq$))
(element userinput ($bold-mono-seq$))
(element abbrev ($charseq$))
(element acronym ($charseq$))
(element citation
(if biblio-citation-check
(let* ((bgraphies (select-elements (descendants (sgml-root-element))
(normalize "bibliography")))
(bchildren1 (expand-children bgraphies
(list (normalize "bibliography"))))
(bchildren2 (expand-children bchildren1
(list (normalize "bibliodiv"))))
(bibentries (node-list-filter-by-gi
bchildren2
(list (normalize "biblioentry")
(normalize "bibliomixed")))))
(let loop ((bibs bibentries))
(if (node-list-empty? bibs)
(make sequence
(error (string-append "Cannot find citation: "
(data (current-node))))
(literal "[") ($charseq$) (literal "]"))
(if (citation-matches-target? (current-node)
(node-list-first bibs))
(make link
destination: (node-list-address (node-list-first bibs))
(literal "[") ($charseq$) (literal "]"))
(loop (node-list-rest bibs))))))
(make sequence
(literal "[") ($charseq$) (literal "]"))))
(element citerefentry
(if %refentry-xref-italic%
($italic-seq$)
($charseq$)))
(element citetitle
(if (equal? (attribute-string (normalize "pubwork")) "article")
(make sequence
(literal (gentext-start-quote))
(process-children)
(literal (gentext-end-quote)))
($italic-seq$)))
(element emphasis
(if (and (attribute-string (normalize "role"))
(or (equal? (attribute-string (normalize "role")) "strong")
(equal? (attribute-string (normalize "role")) "bold")))
($bold-seq$)
($italic-seq$)))
(element foreignphrase ($italic-seq$))
(element markup ($charseq$))
(element phrase ($charseq$))
(element quote
(let* ((hnr (hierarchical-number-recursive (normalize "quote")
(current-node)))
(depth (length hnr)))
(if (equal? (modulo depth 2) 1)
(make sequence
(literal (gentext-start-nested-quote))
(process-children)
(literal (gentext-end-nested-quote)))
(make sequence
(literal (gentext-start-quote))
(process-children)
(literal (gentext-end-quote))))))
(element sgmltag
(let ((class (if (attribute-string (normalize "class"))
(attribute-string (normalize "class"))
(normalize "element"))))
(cond
<![CDATA[
((equal? class (normalize "attribute")) ($mono-seq$))
((equal? class (normalize "attvalue")) ($mono-seq$))
((equal? class (normalize "element")) ($mono-seq$))
((equal? class (normalize "emptytag")) ($mono-seq$ (make sequence
(literal "<")
(process-children)
(literal "/>"))))
((equal? class (normalize "endtag")) ($mono-seq$ (make sequence
(literal "</")
(process-children)
(literal ">"))))
((equal? class (normalize "genentity")) ($mono-seq$ (make sequence
(literal "&")
(process-children)
(literal ";"))))
((equal? class (normalize "numcharref")) ($mono-seq$ (make sequence
(literal "&#")
(process-children)
(literal ";"))))
((equal? class (normalize "paramentity")) ($mono-seq$ (make sequence
(literal "%")
(process-children)
(literal ";"))))
((equal? class (normalize "pi")) ($mono-seq$ (make sequence
(literal "<?")
(process-children)
(literal ">"))))
((equal? class (normalize "starttag")) ($mono-seq$ (make sequence
(literal "<")
(process-children)
(literal ">"))))
((equal? class (normalize "sgmlcomment")) ($mono-seq$ (make sequence
(literal "<!--")
(process-children)
(literal "-->"))))
((equal? class (normalize "xmlpi")) ($mono-seq$ (make sequence
(literal "<?")
(process-children)
(literal "?>"))))
]]>
(else ($charseq$)))))
(element trademark
(make sequence
($charseq$)
(cond
((equal? (attribute-string "class") (normalize "copyright"))
(literal "\copyright-sign;"))
((equal? (attribute-string "class") (normalize "registered"))
(literal "\registered-sign;"))
((equal? (attribute-string "class") (normalize "service"))
($ss-seq$ + (literal "SM")))
(else
(literal "\trade-mark-sign;")))))
(element wordasword ($italic-seq$))
(element lineannotation
(make sequence
font-family-name: %body-font-family%
font-posture: 'italic
(process-children)))
(define ($ss-seq$ plus-or-minus #!optional (sosofo (process-children)))
(make sequence
font-size:
(* (inherited-font-size) %ss-size-factor%)
position-point-shift:
(plus-or-minus (* (inherited-font-size) %ss-shift-factor%))
sosofo))
(element superscript ($ss-seq$ +))
(element subscript ($ss-seq$ -))
|