Fix a typo, and make sure that ISBN numbers in the front matter are
included.
This commit is contained in:
parent
4a0618056c
commit
6b9ded6e4c
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=9159
1 changed files with 31 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
<!-- $FreeBSD: doc/share/sgml/freebsd.dsl,v 1.26 2001/03/24 09:40:24 nik Exp $ -->
|
<!-- $FreeBSD: doc/share/sgml/freebsd.dsl,v 1.27 2001/04/05 13:19:59 nik Exp $ -->
|
||||||
|
|
||||||
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
||||||
<!ENTITY % output.html "IGNORE">
|
<!ENTITY % output.html "IGNORE">
|
||||||
|
@ -54,6 +54,20 @@
|
||||||
;; HTML file.
|
;; HTML file.
|
||||||
#t)
|
#t)
|
||||||
|
|
||||||
|
(define (book-titlepage-recto-elements)
|
||||||
|
(list (normalize "title")
|
||||||
|
(normalize "subtitle")
|
||||||
|
(normalize "graphic")
|
||||||
|
(normalize "mediaobject")
|
||||||
|
(normalize "corpauthor")
|
||||||
|
(normalize "authorgroup")
|
||||||
|
(normalize "author")
|
||||||
|
(normalize "editor")
|
||||||
|
(normalize "copyright")
|
||||||
|
(normalize "abstract")
|
||||||
|
(normalize "legalnotice")
|
||||||
|
(normalize "isbn")))
|
||||||
|
|
||||||
<!-- This is the text to display at the bottom of each page.
|
<!-- This is the text to display at the bottom of each page.
|
||||||
Defaults to nothing. The individual stylesheets should
|
Defaults to nothing. The individual stylesheets should
|
||||||
redefine this as necessary. -->
|
redefine this as necessary. -->
|
||||||
|
@ -63,7 +77,7 @@
|
||||||
<!-- This code handles displaying $email-footer$ at the bottom
|
<!-- This code handles displaying $email-footer$ at the bottom
|
||||||
of each page.
|
of each page.
|
||||||
|
|
||||||
If "nuchunks" is turned on then we make sure that an <hr>
|
If "nochunks" is turned on then we make sure that an <hr>
|
||||||
is shown first.
|
is shown first.
|
||||||
|
|
||||||
Then create a centered paragraph ("<p>"), and reduce the font
|
Then create a centered paragraph ("<p>"), and reduce the font
|
||||||
|
@ -172,6 +186,21 @@
|
||||||
(define %body-start-indent%
|
(define %body-start-indent%
|
||||||
0pi)
|
0pi)
|
||||||
|
|
||||||
|
(define (book-titlepage-verso-elements)
|
||||||
|
(list (normalize "title")
|
||||||
|
(normalize "subtitle")
|
||||||
|
(normalize "corpauthor")
|
||||||
|
(normalize "authorgroup")
|
||||||
|
(normalize "author")
|
||||||
|
(normalize "editor")
|
||||||
|
(normalize "edition")
|
||||||
|
(normalize "pubdate")
|
||||||
|
(normalize "copyright")
|
||||||
|
(normalize "abstract")
|
||||||
|
(normalize "legalnotice")
|
||||||
|
(normalize "revhistory")
|
||||||
|
(normalize "isbn")))
|
||||||
|
|
||||||
;; Norm's stylesheets are smart about working out what sort of
|
;; Norm's stylesheets are smart about working out what sort of
|
||||||
;; object to display. But this bites us. Since we know that the
|
;; object to display. But this bites us. Since we know that the
|
||||||
;; first item is going to be displayable, always use that.
|
;; first item is going to be displayable, always use that.
|
||||||
|
@ -300,10 +329,8 @@
|
||||||
|
|
||||||
(element errorname
|
(element errorname
|
||||||
(make sequence
|
(make sequence
|
||||||
<![ %output.print; [ (make entity-ref name: "ldquo") ]]>
|
|
||||||
<![ %output.html; [ (literal "``") ]]>
|
<![ %output.html; [ (literal "``") ]]>
|
||||||
($mono-seq$ (process-children))
|
($mono-seq$ (process-children))
|
||||||
<![ %output.print; [ (make entity-ref name: "rdquo") ]]>
|
|
||||||
<![ %output.html; [ (literal "''") ]]>
|
<![ %output.html; [ (literal "''") ]]>
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue