src/Pure/Thy/html.scala
author wenzelm
Thu, 01 Jun 2017 11:57:04 +0200
changeset 65990 868089ee9d60
parent 65988 8040d2563593
child 65991 fa787e233214
permissions -rw-r--r--
uniform output of HTML as XML; discontinued special cases of 041dc6d8d344;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33984
c54498f88a77 Basic HTML output.
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/Thy/html.scala
c54498f88a77 Basic HTML output.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
c54498f88a77 Basic HTML output.
wenzelm
parents:
diff changeset
     3
50707
5b2bf7611662 maintain session index on Scala side, for more determistic results;
wenzelm
parents: 50201
diff changeset
     4
HTML presentation elements.
33984
c54498f88a77 Basic HTML output.
wenzelm
parents:
diff changeset
     5
*/
c54498f88a77 Basic HTML output.
wenzelm
parents:
diff changeset
     6
c54498f88a77 Basic HTML output.
wenzelm
parents:
diff changeset
     7
package isabelle
c54498f88a77 Basic HTML output.
wenzelm
parents:
diff changeset
     8
55618
995162143ef4 tuned imports;
wenzelm
parents: 54379
diff changeset
     9
33984
c54498f88a77 Basic HTML output.
wenzelm
parents:
diff changeset
    10
object HTML
c54498f88a77 Basic HTML output.
wenzelm
parents:
diff changeset
    11
{
59063
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    12
  /* encode text with control symbols */
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    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
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    19
      Symbol.sup_decoded -> "sup",
62104
fb73c0d7bb37 clarified symbol insertion, depending on buffer encoding;
wenzelm
parents: 60215
diff changeset
    20
      Symbol.bold -> "b",
59063
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    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
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    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
  {
65990
868089ee9d60 uniform output of HTML as XML;
wenzelm
parents: 65988
diff changeset
    25
    def output_string(str: String) = XML.output_string(str, s)
59063
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    26
62104
fb73c0d7bb37 clarified symbol insertion, depending on buffer encoding;
wenzelm
parents: 60215
diff changeset
    27
    var ctrl = ""
59063
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    28
    for (sym <- Symbol.iterator(text)) {
62104
fb73c0d7bb37 clarified symbol insertion, depending on buffer encoding;
wenzelm
parents: 60215
diff changeset
    29
      if (control.isDefinedAt(sym)) ctrl = sym
59063
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    30
      else {
62104
fb73c0d7bb37 clarified symbol insertion, depending on buffer encoding;
wenzelm
parents: 60215
diff changeset
    31
        control.get(ctrl) match {
59063
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    32
          case Some(elem) if Symbol.is_controllable(sym) && sym != "\"" =>
64355
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    33
            s ++= ("<" + elem + ">")
65990
868089ee9d60 uniform output of HTML as XML;
wenzelm
parents: 65988
diff changeset
    34
            output_string(sym)
64355
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    35
            s ++= ("</" + elem + ">")
59063
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    36
          case _ =>
65990
868089ee9d60 uniform output of HTML as XML;
wenzelm
parents: 65988
diff changeset
    37
            output_string(ctrl)
868089ee9d60 uniform output of HTML as XML;
wenzelm
parents: 65988
diff changeset
    38
            output_string(sym)
59063
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    39
        }
62104
fb73c0d7bb37 clarified symbol insertion, depending on buffer encoding;
wenzelm
parents: 60215
diff changeset
    40
        ctrl = ""
59063
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    41
      }
37200
0f3edc64356a added HTML.encode (in Scala), similar to HTML.output in ML;
wenzelm
parents: 36016
diff changeset
    42
    }
65990
868089ee9d60 uniform output of HTML as XML;
wenzelm
parents: 65988
diff changeset
    43
    output_string(ctrl)
64355
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    44
  }
59063
b3c45d0e4fe1 encode text with control symbols;
wenzelm
parents: 56748
diff changeset
    45
64355
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    46
  def output(text: String): String = Library.make_string(output(text, _))
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    47
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    48
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    49
  /* output XML as HTML */
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    50
65834
67a6e0f166c2 extra space only for some structual elements, but not <a>, <b>, <em> etc. (amending 8a0fe5469ba0);
wenzelm
parents: 65773
diff changeset
    51
  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
    52
    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
    53
      "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
    54
64355
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    55
  def output(body: XML.Body, s: StringBuilder)
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    56
  {
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    57
    def attrib(p: (String, String)): Unit =
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    58
      { s ++= " "; s ++= p._1; s ++= "=\""; output(p._2, s); s ++= "\"" }
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    59
    def elem(markup: Markup): Unit =
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    60
      { s ++= markup.name; markup.properties.foreach(attrib) }
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    61
    def tree(t: XML.Tree): Unit =
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    62
      t match {
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    63
        case XML.Elem(markup, Nil) =>
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    64
          s ++= "<"; elem(markup); s ++= "/>"
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    65
        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
    66
          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
    67
          s ++= "<"; elem(markup); s ++= ">"
64355
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    68
          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
    69
          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
    70
          if (structural_elements(markup.name)) s += '\n'
64355
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    71
        case XML.Text(txt) => output(txt, s)
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    72
      }
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    73
    body.foreach(tree)
37200
0f3edc64356a added HTML.encode (in Scala), similar to HTML.output in ML;
wenzelm
parents: 36016
diff changeset
    74
  }
0f3edc64356a added HTML.encode (in Scala), similar to HTML.output in ML;
wenzelm
parents: 36016
diff changeset
    75
64355
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    76
  def output(body: XML.Body): String = Library.make_string(output(body, _))
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    77
  def output(tree: XML.Tree): String = output(List(tree))
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    78
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
    79
65753
787e5ee6ef53 more operations;
wenzelm
parents: 64362
diff changeset
    80
  /* attributes */
787e5ee6ef53 more operations;
wenzelm
parents: 64362
diff changeset
    81
65942
864a4892e43c clarified signature;
wenzelm
parents: 65941
diff changeset
    82
  class Attribute(name: String, value: String)
864a4892e43c clarified signature;
wenzelm
parents: 65941
diff changeset
    83
  { def apply(elem: XML.Elem): XML.Elem = elem + (name -> value) }
864a4892e43c clarified signature;
wenzelm
parents: 65941
diff changeset
    84
864a4892e43c clarified signature;
wenzelm
parents: 65941
diff changeset
    85
  def id(s: String) = new Attribute("id", s)
65946
5dd3974cf0bc tuned signature;
wenzelm
parents: 65944
diff changeset
    86
  def css_class(name: String) = new Attribute("class", name)
5dd3974cf0bc tuned signature;
wenzelm
parents: 65944
diff changeset
    87
65942
864a4892e43c clarified signature;
wenzelm
parents: 65941
diff changeset
    88
  def width(w: Int) = new Attribute("width", w.toString)
864a4892e43c clarified signature;
wenzelm
parents: 65941
diff changeset
    89
  def height(h: Int) = new Attribute("height", h.toString)
65946
5dd3974cf0bc tuned signature;
wenzelm
parents: 65944
diff changeset
    90
  def size(w: Int, h: Int)(elem: XML.Elem): XML.Elem = width(w)(height(h)(elem))
65753
787e5ee6ef53 more operations;
wenzelm
parents: 64362
diff changeset
    91
787e5ee6ef53 more operations;
wenzelm
parents: 64362
diff changeset
    92
64359
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
    93
  /* structured markup operators */
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
    94
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
    95
  def text(txt: String): XML.Body = if (txt.isEmpty) Nil else List(XML.Text(txt))
65753
787e5ee6ef53 more operations;
wenzelm
parents: 64362
diff changeset
    96
  val break: XML.Body = List(XML.elem("br"))
64359
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
    97
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
    98
  class Operator(name: String)
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
    99
  { def apply(body: XML.Body): XML.Elem = XML.elem(name, body) }
64356
wenzelm
parents: 64355
diff changeset
   100
64359
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   101
  class Heading(name: String) extends Operator(name)
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   102
  { def apply(txt: String): XML.Elem = super.apply(text(txt)) }
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   103
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   104
  val div = new Operator("div")
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   105
  val span = new Operator("span")
65753
787e5ee6ef53 more operations;
wenzelm
parents: 64362
diff changeset
   106
  val pre = new Operator("pre")
64359
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   107
  val par = new Operator("p")
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   108
  val emph = new Operator("em")
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   109
  val bold = new Operator("b")
65771
688a7dd22cbb make index formally within Isabelle/Scala;
wenzelm
parents: 65753
diff changeset
   110
  val code = new Operator("code")
64355
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
   111
64359
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   112
  val title = new Heading("title")
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   113
  val chapter = new Heading("h1")
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   114
  val section = new Heading("h2")
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   115
  val subsection = new Heading("h3")
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   116
  val subsubsection = new Heading("h4")
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   117
  val paragraph = new Heading("h5")
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   118
  val subparagraph = new Heading("h6")
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   119
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   120
  def itemize(items: List[XML.Body]): XML.Elem =
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   121
    XML.elem("ul", items.map(XML.elem("li", _)))
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   122
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   123
  def enumerate(items: List[XML.Body]): XML.Elem =
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   124
    XML.elem("ol", items.map(XML.elem("li", _)))
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   125
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   126
  def description(items: List[(XML.Body, XML.Body)]): XML.Elem =
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   127
    XML.elem("dl", items.flatMap({ case (x, y) => List(XML.elem("dt", x), XML.elem("dd", y)) }))
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   128
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   129
  def link(href: String, body: XML.Body = Nil): XML.Elem =
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   130
    XML.Elem(Markup("a", List("href" -> href)), if (body.isEmpty) text(href) else body)
64355
c6a1031cf925 support for XML as HTML;
wenzelm
parents: 62113
diff changeset
   131
65753
787e5ee6ef53 more operations;
wenzelm
parents: 64362
diff changeset
   132
  def image(src: String, alt: String = ""): XML.Elem =
787e5ee6ef53 more operations;
wenzelm
parents: 64362
diff changeset
   133
    XML.Elem(Markup("img", List("src" -> src) ::: proper_string(alt).map("alt" -> _).toList), Nil)
787e5ee6ef53 more operations;
wenzelm
parents: 64362
diff changeset
   134
65988
8040d2563593 modernized generated HTML;
wenzelm
parents: 65946
diff changeset
   135
  def source(src: String): XML.Elem = css_class("source")(div(List(pre(text(src)))))
8040d2563593 modernized generated HTML;
wenzelm
parents: 65946
diff changeset
   136
65941
316c30b60ebc tuned layout;
wenzelm
parents: 65939
diff changeset
   137
  def style(s: String): XML.Elem = XML.elem("style", text(s))
316c30b60ebc tuned layout;
wenzelm
parents: 65939
diff changeset
   138
37200
0f3edc64356a added HTML.encode (in Scala), similar to HTML.output in ML;
wenzelm
parents: 36016
diff changeset
   139
65892
bbad8162d678 clarified signature;
wenzelm
parents: 65891
diff changeset
   140
  /* messages */
bbad8162d678 clarified signature;
wenzelm
parents: 65891
diff changeset
   141
65939
9fb044904a4d support for message underline and tooltips;
wenzelm
parents: 65892
diff changeset
   142
  // background
65943
bf55ad5eaf75 tuned signature;
wenzelm
parents: 65942
diff changeset
   143
  val writeln_message: Attribute = css_class("writeln_message")
bf55ad5eaf75 tuned signature;
wenzelm
parents: 65942
diff changeset
   144
  val warning_message: Attribute = css_class("warning_message")
bf55ad5eaf75 tuned signature;
wenzelm
parents: 65942
diff changeset
   145
  val error_message: Attribute = css_class("error_message")
65892
bbad8162d678 clarified signature;
wenzelm
parents: 65891
diff changeset
   146
65939
9fb044904a4d support for message underline and tooltips;
wenzelm
parents: 65892
diff changeset
   147
  // underline
65943
bf55ad5eaf75 tuned signature;
wenzelm
parents: 65942
diff changeset
   148
  val writeln: Attribute = css_class("writeln")
bf55ad5eaf75 tuned signature;
wenzelm
parents: 65942
diff changeset
   149
  val warning: Attribute = css_class("warning")
bf55ad5eaf75 tuned signature;
wenzelm
parents: 65942
diff changeset
   150
  val error: Attribute = css_class("error")
65892
bbad8162d678 clarified signature;
wenzelm
parents: 65891
diff changeset
   151
65944
79e4d94aa9ad tuned signature;
wenzelm
parents: 65943
diff changeset
   152
79e4d94aa9ad tuned signature;
wenzelm
parents: 65943
diff changeset
   153
  /* tooltips */
79e4d94aa9ad tuned signature;
wenzelm
parents: 65943
diff changeset
   154
79e4d94aa9ad tuned signature;
wenzelm
parents: 65943
diff changeset
   155
  def tooltip(item: XML.Body, tip: XML.Body): XML.Elem =
79e4d94aa9ad tuned signature;
wenzelm
parents: 65943
diff changeset
   156
    span(item ::: List(css_class("tooltip")(div(tip))))
79e4d94aa9ad tuned signature;
wenzelm
parents: 65943
diff changeset
   157
79e4d94aa9ad tuned signature;
wenzelm
parents: 65943
diff changeset
   158
  def tooltip_errors(item: XML.Body, msgs: List[XML.Body]): XML.Elem =
79e4d94aa9ad tuned signature;
wenzelm
parents: 65943
diff changeset
   159
    HTML.error(tooltip(item, msgs.map(msg => error_message(pre(msg)))))
65892
bbad8162d678 clarified signature;
wenzelm
parents: 65891
diff changeset
   160
bbad8162d678 clarified signature;
wenzelm
parents: 65891
diff changeset
   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
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   164
  val header: String =
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   165
    """<?xml version="1.0" encoding="utf-8" ?>
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   166
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   167
<html xmlns="http://www.w3.org/1999/xhtml">"""
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   168
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   169
  val head_meta: XML.Elem =
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   170
    XML.Elem(Markup("meta",
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   171
      List("http-equiv" -> "Content-Type", "content" -> "text/html; charset=utf-8")), Nil)
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   172
65836
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   173
  def head_css(css: String): XML.Elem =
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   174
    XML.Elem(Markup("link", List("rel" -> "stylesheet", "type" -> "text/css", "href" -> css)), Nil)
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   175
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   176
  def output_document(head: XML.Body, body: XML.Body, css: String = "isabelle.css"): String =
64359
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   177
    cat_lines(
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   178
      List(header,
65836
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   179
        output(XML.elem("head", head_meta :: (if (css == "") Nil else List(head_css(css))) ::: head)),
64359
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   180
        output(XML.elem("body", body))))
27739e1d7978 more operations;
wenzelm
parents: 64356
diff changeset
   181
65838
30c2d78b5d38 tuned signature;
wenzelm
parents: 65836
diff changeset
   182
30c2d78b5d38 tuned signature;
wenzelm
parents: 65836
diff changeset
   183
  /* document directory */
30c2d78b5d38 tuned signature;
wenzelm
parents: 65836
diff changeset
   184
65836
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   185
  def init_dir(dir: Path)
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   186
  {
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   187
    Isabelle_System.mkdirs(dir)
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   188
    File.copy(Path.explode("~~/etc/isabelle.css"), dir)
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   189
  }
3b4877fbd9cb more systematic HTML.init_dir with css;
wenzelm
parents: 65834
diff changeset
   190
65838
30c2d78b5d38 tuned signature;
wenzelm
parents: 65836
diff changeset
   191
  def write_document(dir: Path, name: String, head: XML.Body, body: XML.Body,
30c2d78b5d38 tuned signature;
wenzelm
parents: 65836
diff changeset
   192
    css: String = "isabelle.css")
30c2d78b5d38 tuned signature;
wenzelm
parents: 65836
diff changeset
   193
  {
30c2d78b5d38 tuned signature;
wenzelm
parents: 65836
diff changeset
   194
    init_dir(dir)
30c2d78b5d38 tuned signature;
wenzelm
parents: 65836
diff changeset
   195
    File.write(dir + Path.basic(name), output_document(head, body, css))
30c2d78b5d38 tuned signature;
wenzelm
parents: 65836
diff changeset
   196
  }
33984
c54498f88a77 Basic HTML output.
wenzelm
parents:
diff changeset
   197
}