diff options
author | Holger Wansing <holgerw@debian.org> | 2017-08-17 16:26:13 +0000 |
---|---|---|
committer | Holger Wansing <holgerw@debian.org> | 2017-08-17 16:26:13 +0000 |
commit | 3aa082a832ed636874995bf9e7bd25d0910c3365 (patch) | |
tree | c9c9fdcb666affa76c3f15f0e41d1c855db672a4 /build/stylesheets/style-print.dsl | |
parent | f57b9f29fa41bfa96c57f85e9a0a86746ba30ec5 (diff) | |
download | installation-guide-3aa082a832ed636874995bf9e7bd25d0910c3365.zip |
Remove support for 'ps' format. Remove some dependencies accordingly.
Closes 871751.
Diffstat (limited to 'build/stylesheets/style-print.dsl')
-rw-r--r-- | build/stylesheets/style-print.dsl | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/build/stylesheets/style-print.dsl b/build/stylesheets/style-print.dsl deleted file mode 100644 index 02ddc1fc0..000000000 --- a/build/stylesheets/style-print.dsl +++ /dev/null @@ -1,73 +0,0 @@ -<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [ -<!ENTITY dbstyle SYSTEM "/usr/share/sgml/docbook/stylesheet/dsssl/modular/print/docbook.dsl" CDATA DSSSL> -]> -<style-sheet> -<style-specification use="docbook"> -<style-specification-body> - -(define %section-autolabel% - ;; Are sections enumerated? - #t ) - -(define %paper-type% - ;; Name of paper type - "A4" - ;; "USletter" - ) -(define %hyphenation% - ;; Allow automatic hyphenation? - #t) - -(define %default-quadding% - 'justify) - -(define bop-footnotes - ;; Make "bottom-of-page" footnotes? - #t) - -(define %admon-graphics% - ;; Use graphics in admonitions? - ;; Also removes black box around warnings - #f) - -(define ($peril$) - (let* ((title (select-elements - (children (current-node)) (normalize "title"))) - (has-title (not (node-list-empty? title))) - (adm-title (if has-title - (make sequence - (with-mode title-sosofo-mode - (process-node-list (node-list-first title)))) - (literal - (gentext-element-name - (current-node))))) - (hs (HSIZE 2))) - (if %admon-graphics% - ($graphical-admonition$) - (make display-group - space-before: %block-sep% - space-after: %block-sep% - font-family-name: %admon-font-family% - font-size: (- %bf-size% 1pt) - font-weight: 'medium - font-posture: 'upright - line-spacing: (* (- %bf-size% 1pt) %line-spacing-factor%) - (make paragraph - space-before: %para-sep% - space-after: %para-sep% - start-indent: (+ (inherited-start-indent) (* 2 (ILSTEP)) 1em) - end-indent: (+ (inherited-end-indent) 1em) - font-family-name: %title-font-family% - font-weight: 'bold - font-size: hs - line-spacing: (* hs %line-spacing-factor%) - quadding: 'center - keep-with-next?: #t - adm-title) - (process-children))))) - - -</style-specification-body> -</style-specification> -<external-specification id="docbook" document="dbstyle"> -</style-sheet> |