comparison DOCS/xml/ldp.dsl @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents 461f71ba8af4
children 32725ca88fed
comparison
equal deleted inserted replaced
29262:7d545a6b8aff 29263:0f1b5b68af32
36 ;; along with this program; if not, write to the Free Software 36 ;; along with this program; if not, write to the Free Software
37 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 37 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
38 ;; ------------------------------------------------------------------------ 38 ;; ------------------------------------------------------------------------
39 39
40 <style-specification id="print" use="docbook"> 40 <style-specification id="print" use="docbook">
41 <style-specification-body> 41 <style-specification-body>
42 42
43 ;; customize the print stylesheet 43 ;; customize the print stylesheet
44 44
45 (declare-characteristic preserve-sdata? 45 (declare-characteristic preserve-sdata?
46 ;; this is necessary because right now jadetex does not understand 46 ;; this is necessary because right now jadetex does not understand
123 </style-specification-body> 123 </style-specification-body>
124 </style-specification> 124 </style-specification>
125 125
126 126
127 <!-- 127 <!--
128 ;; customize the html stylesheet; parts borrowed from 128 ;; customize the html stylesheet; parts borrowed from
129 ;; Cygnus at http://sourceware.cygnus.com/ (cygnus-both.dsl) 129 ;; Cygnus at http://sourceware.cygnus.com/ (cygnus-both.dsl)
130 --> 130 -->
131 131
132 <style-specification id="html" use="docbook"> 132 <style-specification id="html" use="docbook">
133 <style-specification-body> 133 <style-specification-body>
134 134
135 (declare-characteristic preserve-sdata? 135 (declare-characteristic preserve-sdata?
136 ;; this is necessary because right now jadetex does not understand 136 ;; this is necessary because right now jadetex does not understand
137 ;; symbolic entities, whereas things work well with numeric entities. 137 ;; symbolic entities, whereas things work well with numeric entities.
138 "UNREGISTERED::James Clark//Characteristic::preserve-sdata?" 138 "UNREGISTERED::James Clark//Characteristic::preserve-sdata?"
163 163
164 (define %generate-book-toc% 164 (define %generate-book-toc%
165 ;; Should a Table of Contents be produced for books? 165 ;; Should a Table of Contents be produced for books?
166 #t) 166 #t)
167 167
168 (define %generate-article-toc% 168 (define %generate-article-toc%
169 ;; Should a Table of Contents be produced for articles? 169 ;; Should a Table of Contents be produced for articles?
170 #t) 170 #t)
171 171
172 (define %generate-part-toc% 172 (define %generate-part-toc%
173 ;; Should a Table of Contents be produced for parts? 173 ;; Should a Table of Contents be produced for parts?
203 203
204 (define %graphic-extensions% 204 (define %graphic-extensions%
205 ;; graphic extensions allowed 205 ;; graphic extensions allowed
206 '("gif" "png" "jpg" "jpeg" "tif" "tiff" "eps" "epsf" )) 206 '("gif" "png" "jpg" "jpeg" "tif" "tiff" "eps" "epsf" ))
207 207
208 (define %graphic-default-extension% 208 (define %graphic-default-extension%
209 "gif") 209 "gif")
210 210
211 (define %section-autolabel% 211 (define %section-autolabel%
212 ;; For enumerated sections (1.1, 1.1.1, 1.2, etc.) 212 ;; For enumerated sections (1.1, 1.1.1, 1.2, etc.)
213 #t) 213 #t)
322 (if %shade-verbatim% 322 (if %shade-verbatim%
323 (make element gi: "TABLE" 323 (make element gi: "TABLE"
324 attributes: (shade-verbatim-attr-element verbatim-element) 324 attributes: (shade-verbatim-attr-element verbatim-element)
325 (make element gi: "TR" 325 (make element gi: "TR"
326 (make element gi: "TD" 326 (make element gi: "TD"
327 (make element gi: "FONT" 327 (make element gi: "FONT"
328 attributes: (list 328 attributes: (list
329 (list "COLOR" (car (shade-verbatim-element-colors 329 (list "COLOR" (car (shade-verbatim-element-colors
330 verbatim-element)))) 330 verbatim-element))))
331 content)))) 331 content))))
332 content))) 332 content)))
345 ;; ... 345 ;; ...
346 (else (list "#000000" "#E0E0E0")))) 346 (else (list "#000000" "#E0E0E0"))))
347 347
348 (define (shade-verbatim-attr-element element) 348 (define (shade-verbatim-attr-element element)
349 (list 349 (list
350 (list "BORDER" 350 (list "BORDER"
351 (cond 351 (cond
352 ((equal? element (normalize "SCREEN")) "1") 352 ((equal? element (normalize "SCREEN")) "1")
353 (else "0"))) 353 (else "0")))
354 (list "BGCOLOR" (car (cdr (shade-verbatim-element-colors element)))) 354 (list "BGCOLOR" (car (cdr (shade-verbatim-element-colors element))))
355 (list "WIDTH" ($table-width$)))) 355 (list "WIDTH" ($table-width$))))