author | wenzelm |
Sat, 27 May 2017 12:36:27 +0200 | |
changeset 65943 | bf55ad5eaf75 |
parent 65942 | 864a4892e43c |
child 65944 | 79e4d94aa9ad |
permissions | -rw-r--r-- |
33984 | 1 |
/* Title: Pure/Thy/html.scala |
2 |
Author: Makarius |
|
3 |
||
50707
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50201
diff
changeset
|
4 |
HTML presentation elements. |
33984 | 5 |
*/ |
6 |
||
7 |
package isabelle |
|
8 |
||
55618 | 9 |
|
33984 | 10 |
object HTML |
11 |
{ |
|
59063 | 12 |
/* encode text with control symbols */ |
13 |
||
62104
fb73c0d7bb37
clarified symbol insertion, depending on buffer encoding;
wenzelm
parents:
60215
diff
changeset
|
14 |
val control = |
fb73c0d7bb37
clarified symbol insertion, depending on buffer encoding;
wenzelm
parents:
60215
diff
changeset
|
15 |
Map( |
fb73c0d7bb37
clarified symbol insertion, depending on buffer encoding;
wenzelm
parents:
60215
diff
changeset
|
16 |
Symbol.sub -> "sub", |
fb73c0d7bb37
clarified symbol insertion, depending on buffer encoding;
wenzelm
parents:
60215
diff
changeset
|
17 |
Symbol.sub_decoded -> "sub", |
fb73c0d7bb37
clarified symbol insertion, depending on buffer encoding;
wenzelm
parents:
60215
diff
changeset
|
18 |
Symbol.sup -> "sup", |
59063 | 19 |
Symbol.sup_decoded -> "sup", |
62104
fb73c0d7bb37
clarified symbol insertion, depending on buffer encoding;
wenzelm
parents:
60215
diff
changeset
|
20 |
Symbol.bold -> "b", |
59063 | 21 |
Symbol.bold_decoded -> "b") |
37200
0f3edc64356a
added HTML.encode (in Scala), similar to HTML.output in ML;
wenzelm
parents:
36016
diff
changeset
|
22 |
|
64355 | 23 |
def output(text: String, s: StringBuilder) |
37200
0f3edc64356a
added HTML.encode (in Scala), similar to HTML.output in ML;
wenzelm
parents:
36016
diff
changeset
|
24 |
{ |
62113 | 25 |
def output_char(c: Char) = |
59063 | 26 |
c match { |
64355 | 27 |
case '<' => s ++= "<" |
28 |
case '>' => s ++= ">" |
|
29 |
case '&' => s ++= "&" |
|
30 |
case '"' => s ++= """ |
|
31 |
case '\'' => s ++= "'" |
|
32 |
case '\n' => s ++= "<br/>" |
|
33 |
case _ => s += c |
|
59063 | 34 |
} |
64355 | 35 |
def output_chars(str: String) = str.iterator.foreach(output_char(_)) |
59063 | 36 |
|
62104
fb73c0d7bb37
clarified symbol insertion, depending on buffer encoding;
wenzelm
parents:
60215
diff
changeset
|
37 |
var ctrl = "" |
59063 | 38 |
for (sym <- Symbol.iterator(text)) { |
62104
fb73c0d7bb37
clarified symbol insertion, depending on buffer encoding;
wenzelm
parents:
60215
diff
changeset
|
39 |
if (control.isDefinedAt(sym)) ctrl = sym |
59063 | 40 |
else { |
62104
fb73c0d7bb37
clarified symbol insertion, depending on buffer encoding;
wenzelm
parents:
60215
diff
changeset
|
41 |
control.get(ctrl) match { |
59063 | 42 |
case Some(elem) if Symbol.is_controllable(sym) && sym != "\"" => |
64355 | 43 |
s ++= ("<" + elem + ">") |
62113 | 44 |
output_chars(sym) |
64355 | 45 |
s ++= ("</" + elem + ">") |
59063 | 46 |
case _ => |
62113 | 47 |
output_chars(ctrl) |
48 |
output_chars(sym) |
|
59063 | 49 |
} |
62104
fb73c0d7bb37
clarified symbol insertion, depending on buffer encoding;
wenzelm
parents:
60215
diff
changeset
|
50 |
ctrl = "" |
59063 | 51 |
} |
37200
0f3edc64356a
added HTML.encode (in Scala), similar to HTML.output in ML;
wenzelm
parents:
36016
diff
changeset
|
52 |
} |
62113 | 53 |
output_chars(ctrl) |
64355 | 54 |
} |
59063 | 55 |
|
64355 | 56 |
def output(text: String): String = Library.make_string(output(text, _)) |
57 |
||
58 |
||
59 |
/* output XML as HTML */ |
|
60 |
||
65834
67a6e0f166c2
extra space only for some structual elements, but not <a>, <b>, <em> etc. (amending 8a0fe5469ba0);
wenzelm
parents:
65773
diff
changeset
|
61 |
private val structural_elements = |
67a6e0f166c2
extra space only for some structual elements, but not <a>, <b>, <em> etc. (amending 8a0fe5469ba0);
wenzelm
parents:
65773
diff
changeset
|
62 |
Set("head", "body", "meta", "div", "pre", "p", "title", "h1", "h2", "h3", "h4", "h5", "h6", |
67a6e0f166c2
extra space only for some structual elements, but not <a>, <b>, <em> etc. (amending 8a0fe5469ba0);
wenzelm
parents:
65773
diff
changeset
|
63 |
"ul", "ol", "dl", "li", "dt", "dd") |
67a6e0f166c2
extra space only for some structual elements, but not <a>, <b>, <em> etc. (amending 8a0fe5469ba0);
wenzelm
parents:
65773
diff
changeset
|
64 |
|
64355 | 65 |
def output(body: XML.Body, s: StringBuilder) |
66 |
{ |
|
67 |
def attrib(p: (String, String)): Unit = |
|
68 |
{ s ++= " "; s ++= p._1; s ++= "=\""; output(p._2, s); s ++= "\"" } |
|
69 |
def elem(markup: Markup): Unit = |
|
70 |
{ s ++= markup.name; markup.properties.foreach(attrib) } |
|
71 |
def tree(t: XML.Tree): Unit = |
|
72 |
t match { |
|
73 |
case XML.Elem(markup, Nil) => |
|
74 |
s ++= "<"; elem(markup); s ++= "/>" |
|
75 |
case XML.Elem(markup, ts) => |
|
65834
67a6e0f166c2
extra space only for some structual elements, but not <a>, <b>, <em> etc. (amending 8a0fe5469ba0);
wenzelm
parents:
65773
diff
changeset
|
76 |
if (structural_elements(markup.name)) s += '\n' |
67a6e0f166c2
extra space only for some structual elements, but not <a>, <b>, <em> etc. (amending 8a0fe5469ba0);
wenzelm
parents:
65773
diff
changeset
|
77 |
s ++= "<"; elem(markup); s ++= ">" |
64355 | 78 |
ts.foreach(tree) |
65834
67a6e0f166c2
extra space only for some structual elements, but not <a>, <b>, <em> etc. (amending 8a0fe5469ba0);
wenzelm
parents:
65773
diff
changeset
|
79 |
s ++= "</"; s ++= markup.name; s ++= ">" |
67a6e0f166c2
extra space only for some structual elements, but not <a>, <b>, <em> etc. (amending 8a0fe5469ba0);
wenzelm
parents:
65773
diff
changeset
|
80 |
if (structural_elements(markup.name)) s += '\n' |
64355 | 81 |
case XML.Text(txt) => output(txt, s) |
82 |
} |
|
83 |
body.foreach(tree) |
|
37200
0f3edc64356a
added HTML.encode (in Scala), similar to HTML.output in ML;
wenzelm
parents:
36016
diff
changeset
|
84 |
} |
0f3edc64356a
added HTML.encode (in Scala), similar to HTML.output in ML;
wenzelm
parents:
36016
diff
changeset
|
85 |
|
64355 | 86 |
def output(body: XML.Body): String = Library.make_string(output(body, _)) |
87 |
def output(tree: XML.Tree): String = output(List(tree)) |
|
88 |
||
89 |
||
65753 | 90 |
/* attributes */ |
91 |
||
65942 | 92 |
class Attribute(name: String, value: String) |
93 |
{ def apply(elem: XML.Elem): XML.Elem = elem + (name -> value) } |
|
94 |
||
95 |
def id(s: String) = new Attribute("id", s) |
|
96 |
def width(w: Int) = new Attribute("width", w.toString) |
|
97 |
def height(h: Int) = new Attribute("height", h.toString) |
|
98 |
def css_class(name: String) = new Attribute("class", name) |
|
65753 | 99 |
|
100 |
||
64359 | 101 |
/* structured markup operators */ |
102 |
||
103 |
def text(txt: String): XML.Body = if (txt.isEmpty) Nil else List(XML.Text(txt)) |
|
65753 | 104 |
val break: XML.Body = List(XML.elem("br")) |
64359 | 105 |
|
106 |
class Operator(name: String) |
|
107 |
{ def apply(body: XML.Body): XML.Elem = XML.elem(name, body) } |
|
64356 | 108 |
|
64359 | 109 |
class Heading(name: String) extends Operator(name) |
110 |
{ def apply(txt: String): XML.Elem = super.apply(text(txt)) } |
|
111 |
||
112 |
val div = new Operator("div") |
|
113 |
val span = new Operator("span") |
|
65753 | 114 |
val pre = new Operator("pre") |
64359 | 115 |
val par = new Operator("p") |
116 |
val emph = new Operator("em") |
|
117 |
val bold = new Operator("b") |
|
65771 | 118 |
val code = new Operator("code") |
64355 | 119 |
|
64359 | 120 |
val title = new Heading("title") |
121 |
val chapter = new Heading("h1") |
|
122 |
val section = new Heading("h2") |
|
123 |
val subsection = new Heading("h3") |
|
124 |
val subsubsection = new Heading("h4") |
|
125 |
val paragraph = new Heading("h5") |
|
126 |
val subparagraph = new Heading("h6") |
|
127 |
||
128 |
def itemize(items: List[XML.Body]): XML.Elem = |
|
129 |
XML.elem("ul", items.map(XML.elem("li", _))) |
|
130 |
||
131 |
def enumerate(items: List[XML.Body]): XML.Elem = |
|
132 |
XML.elem("ol", items.map(XML.elem("li", _))) |
|
133 |
||
134 |
def description(items: List[(XML.Body, XML.Body)]): XML.Elem = |
|
135 |
XML.elem("dl", items.flatMap({ case (x, y) => List(XML.elem("dt", x), XML.elem("dd", y)) })) |
|
136 |
||
137 |
def link(href: String, body: XML.Body = Nil): XML.Elem = |
|
138 |
XML.Elem(Markup("a", List("href" -> href)), if (body.isEmpty) text(href) else body) |
|
64355 | 139 |
|
65753 | 140 |
def image(src: String, alt: String = ""): XML.Elem = |
141 |
XML.Elem(Markup("img", List("src" -> src) ::: proper_string(alt).map("alt" -> _).toList), Nil) |
|
142 |
||
65941 | 143 |
def style(s: String): XML.Elem = XML.elem("style", text(s)) |
144 |
||
37200
0f3edc64356a
added HTML.encode (in Scala), similar to HTML.output in ML;
wenzelm
parents:
36016
diff
changeset
|
145 |
|
65892 | 146 |
/* messages */ |
147 |
||
65939 | 148 |
// background |
65943 | 149 |
val writeln_message: Attribute = css_class("writeln_message") |
150 |
val warning_message: Attribute = css_class("warning_message") |
|
151 |
val error_message: Attribute = css_class("error_message") |
|
65892 | 152 |
|
65939 | 153 |
// underline |
65943 | 154 |
val writeln: Attribute = css_class("writeln") |
155 |
val warning: Attribute = css_class("warning") |
|
156 |
val error: Attribute = css_class("error") |
|
65892 | 157 |
|
65939 | 158 |
// tooltips |
65942 | 159 |
val tooltip_class: Attribute = css_class("tooltip") |
65892 | 160 |
|
161 |
||
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
162 |
/* document */ |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
163 |
|
64359 | 164 |
val header: String = |
165 |
"""<?xml version="1.0" encoding="utf-8" ?> |
|
166 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
167 |
<html xmlns="http://www.w3.org/1999/xhtml">""" |
|
168 |
||
169 |
val head_meta: XML.Elem = |
|
170 |
XML.Elem(Markup("meta", |
|
171 |
List("http-equiv" -> "Content-Type", "content" -> "text/html; charset=utf-8")), Nil) |
|
172 |
||
65836 | 173 |
def head_css(css: String): XML.Elem = |
174 |
XML.Elem(Markup("link", List("rel" -> "stylesheet", "type" -> "text/css", "href" -> css)), Nil) |
|
175 |
||
176 |
def output_document(head: XML.Body, body: XML.Body, css: String = "isabelle.css"): String = |
|
64359 | 177 |
cat_lines( |
178 |
List(header, |
|
65836 | 179 |
output(XML.elem("head", head_meta :: (if (css == "") Nil else List(head_css(css))) ::: head)), |
64359 | 180 |
output(XML.elem("body", body)))) |
181 |
||
65838 | 182 |
|
183 |
/* document directory */ |
|
184 |
||
65836 | 185 |
def init_dir(dir: Path) |
186 |
{ |
|
187 |
Isabelle_System.mkdirs(dir) |
|
188 |
File.copy(Path.explode("~~/etc/isabelle.css"), dir) |
|
189 |
} |
|
190 |
||
65838 | 191 |
def write_document(dir: Path, name: String, head: XML.Body, body: XML.Body, |
192 |
css: String = "isabelle.css") |
|
193 |
{ |
|
194 |
init_dir(dir) |
|
195 |
File.write(dir + Path.basic(name), output_document(head, body, css)) |
|
196 |
} |
|
197 |
||
64359 | 198 |
|
199 |
/* Isabelle document */ |
|
200 |
||
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
201 |
def begin_document(title: String): String = |
64359 | 202 |
header + "\n" + |
203 |
"<head>\n" + output(head_meta) + "\n" + |
|
62113 | 204 |
"<title>" + output(title + " (" + Distribution.version + ")") + "</title>\n" + |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
205 |
"<link media=\"all\" rel=\"stylesheet\" type=\"text/css\" href=\"isabelle.css\"/>\n" + |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
206 |
"</head>\n" + |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
207 |
"\n" + |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
208 |
"<body>\n" + |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
209 |
"<div class=\"head\">" + |
62113 | 210 |
"<h1>" + output(title) + "</h1>\n" |
211 |
||
212 |
val end_document = "\n</div>\n</body>\n</html>\n" |
|
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
213 |
|
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
214 |
|
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
215 |
/* common markup elements */ |
33984 | 216 |
|
51402 | 217 |
private def session_entry(entry: (String, String)): String = |
218 |
{ |
|
219 |
val (name, description) = entry |
|
65753 | 220 |
val descr = if (description == "") Nil else break ::: List(pre(text(description))) |
50707
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50201
diff
changeset
|
221 |
XML.string_of_tree( |
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50201
diff
changeset
|
222 |
XML.elem("li", |
5b2bf7611662
maintain session index on Scala side, for more determistic results;
wenzelm
parents:
50201
diff
changeset
|
223 |
List(XML.Elem(Markup("a", List(("href", name + "/index.html"))), |
51402 | 224 |
List(XML.Text(name)))) ::: descr)) + "\n" |
225 |
} |
|
34002 | 226 |
|
51402 | 227 |
def chapter_index(chapter: String, sessions: List[(String, String)]): String = |
51399
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
228 |
{ |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
229 |
begin_document("Isabelle/" + chapter + " sessions") + |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
230 |
(if (sessions.isEmpty) "" |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
231 |
else "<div class=\"sessions\"><ul>\n" + sessions.map(session_entry(_)).mkString + "</ul>") + |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
232 |
end_document |
6ac3c29a300e
discontinued "isabelle usedir" option -r (reset session path);
wenzelm
parents:
50707
diff
changeset
|
233 |
} |
33984 | 234 |
} |