blob: 9d20a7e3f5953e6b2cbe07f2614e8491c99d667d (
plain)
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
|
<!-- $FML: fml.dsl,v 1.5 2002/09/24 14:18:45 fukachan Exp $ -->
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
<!ENTITY docbook.dsl PUBLIC "-//Norman Walsh//DOCUMENT DocBook HTML Stylesheet//EN" CDATA DSSSL>
<!ENTITY % output.html "INCLUDE">
<!ENTITY % output.html.images "INCLUDE">
<!ENTITY % output.print "IGNORE">
<!ENTITY % output.print.pdf "IGNORE">
<![ %output.html; [
<!ENTITY docbook.dsl PUBLIC "-//Norman Walsh//DOCUMENT DocBook HTML Stylesheet//EN"
CDATA DSSSL>
]]>
<![ %output.print; [
<!ENTITY docbook.dsl PUBLIC "-//Norman Walsh//DOCUMENT DocBook Print Stylesheet//EN"
CDATA DSSSL>
]]>
]>
<style-sheet>
<style-specification use="docbook">
<style-specification-body>
<![ %output.html; [
(define %root-filename%
;; Name for the root HTML document
"index")
(define %html-ext%
;; Default extension for HTML output files
".html")
(define %use-id-as-filename%
;; Use ID attributes as name for component HTML files?
#t)
(define ($html-body-end$)
(if (equal? $email-footer$ (normalize ""))
(empty-sosofo)
(make sequence
(if nochunks
(make empty-element gi: "hr")
(empty-sosofo))
($email-footer$))))
(define ($email-footer$)
(make sequence
(make element gi: "small"
attributes: (list (list "align" "center"))
(literal "fml 8.0 (fml-devel) project homepage is ")
(make element gi: "a"
attributes:
(list (list "href" "http://www.fml.org/software/fml-devel/")
(list "target" "_top"))
(literal "www.fml.org/software/fml-devel/"))
(literal "."))
(make empty-element gi: "br")
(make element gi: "small"
(literal "fml 4.0 project homepage is ")
(make element gi: "a"
attributes:
(list (list "href" "http://www.fml.org/fml/")
(list "target" "_top"))
(literal "www.fml.org/fml/menu.ja.html"))
(literal "."))
(make empty-element gi: "br")
(make element gi: "small"
(literal "about one floppy bsd routers, see ")
(make element gi: "a"
attributes:
(list (list "href" "http://www.bsdrouter.org/")
(list "target" "_top"))
(literal "www.bsdrouter.org/"))
(literal "."))
(make empty-element gi: "br")
(make element gi: "small"
(literal "other free softwares are found at ")
(make element gi: "a"
attributes:
(list (list "href" "http://www.fml.org/software/")
(list "target" "_top"))
(literal "www.fml.org/software/"))
(literal "."))
(make empty-element gi: "br")
(make element gi: "p"
(make element gi: "small"
(literal "author's homepage is ")
(make element gi: "a"
attributes:
(list (list "href" "http://www.fml.org/home/fukachan/")
(list "target" "_top"))
(literal "www.fml.org/home/fukachan/"))
(literal "."))
(make empty-element gi: "br")
(make element gi: "small"
(literal "Also, visit nuinui's world :) at ")
(make element gi: "a"
attributes:
(list (list "href" "http://www.nuinui.net/")
(list "target" "_top"))
(literal "www.nuinui.net"))
(literal "."))
(make empty-element gi: "br")
(make element gi: "p"
(literal "For questions about FML, e-mail <")
(make element gi: "a"
attributes: (list (list "href" "mailto:fml-bugs@fml.org"))
(literal "fml-bugs@fml.org"))
(literal ">.")))))
]]>
</style-specification-body>
</style-specification>
<external-specification id="docbook" document="docbook.dsl">
</style-sheet>
|