src/Pure/Thy/present.ML
author wenzelm
Mon, 28 Aug 2000 20:33:23 +0200
changeset 9708 5f21379beb87
parent 9452 fc02c5bacaab
child 9785 1634fdb11b00
permissions -rw-r--r--
tex_index: Latex.tex_trailer;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Thy/present.ML
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
     3
    Author:     Markus Wenzel and Stefan Berghofer, TU Muenchen
8808
wenzelm
parents: 8660
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     5
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
     6
Theory presentation: HTML, graph files, (PDF)LaTeX documents.
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     7
*)
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     8
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
     9
signature BASIC_PRESENT =
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    10
sig
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    11
  val section: string -> unit
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    12
end;
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    13
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    14
signature PRESENT =
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    15
sig
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    16
  include BASIC_PRESENT
9452
fc02c5bacaab export write_graph;
wenzelm
parents: 9416
diff changeset
    17
  val write_graph: {name: string, ID: string, dir: string, unfold: bool,
fc02c5bacaab export write_graph;
wenzelm
parents: 9416
diff changeset
    18
   path: string, parents: string list} list -> Path.T -> unit
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
    19
  val init: bool -> string -> string list -> string -> Path.T option -> Url.T option * bool -> unit
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    20
  val finish: unit -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    21
  val init_theory: string -> unit
8192
45a7027136e3 added old_symbol_source;
wenzelm
parents: 8088
diff changeset
    22
  val verbatim_source: string -> (unit -> Symbol.symbol list) -> unit
45a7027136e3 added old_symbol_source;
wenzelm
parents: 8088
diff changeset
    23
  val old_symbol_source: string -> (unit -> Symbol.symbol list) -> unit
9136
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
    24
  val theory_output: string -> string -> unit
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    25
  val begin_theory: string -> string list -> (Path.T * bool) list -> theory -> theory
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    26
  val result: string -> string -> thm -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    27
  val results: string -> string -> thm list -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    28
  val theorem: string -> thm -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    29
  val theorems: string -> thm list -> unit
8088
6ae943d080de chapter;
wenzelm
parents: 7853
diff changeset
    30
  val chapter: string -> unit
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    31
  val subsection: string -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    32
  val subsubsection: string -> unit
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    33
  val setup: (theory -> theory) list
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    34
  val get_info: theory -> {name: string, session: string list, is_local: bool}
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    35
end;
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
    36
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    37
structure Present: PRESENT =
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    38
struct
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
    39
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    40
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    41
(** paths **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    42
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    43
val output_path = Path.variable "ISABELLE_BROWSER_INFO";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    44
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    45
val tex_ext = Path.ext "tex";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    46
val tex_path = tex_ext o Path.basic;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    47
val html_ext = Path.ext "html";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    48
val html_path = html_ext o Path.basic;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    49
val graph_path = Path.ext "graph" o Path.basic;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    50
val index_path = Path.basic "index.html";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    51
val doc_path = Path.basic "document";
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
    52
val doc_indexN = "session";
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    53
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    54
val session_path = Path.basic ".session";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    55
val session_entries_path = Path.unpack ".session/entries";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    56
val pre_index_path = Path.unpack ".session/pre-index";
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    57
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
    58
fun mk_rel_path [] ys = Path.make ys
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
    59
  | mk_rel_path xs [] = Path.appends (replicate (length xs) Path.parent)
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    60
  | mk_rel_path (ps as x :: xs) (qs as y :: ys) = if x = y then mk_rel_path xs ys else
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
    61
      Path.appends (replicate (length ps) Path.parent @ [Path.make qs]);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    62
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    63
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    64
(** additional theory data **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    65
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    66
structure BrowserInfoArgs =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    67
struct
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    68
  val name = "Pure/browser_info";
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    69
  type T = {name: string, session: string list, is_local: bool};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    70
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    71
  val empty = {name = "Pure", session = [], is_local = false};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    72
  val copy = I;
9452
fc02c5bacaab export write_graph;
wenzelm
parents: 9416
diff changeset
    73
  fun prep_ext _ = {name = "", session = [], is_local = false};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    74
  fun merge _ = empty;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    75
  fun print _ _ = ();
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    76
end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    77
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    78
structure BrowserInfoData = TheoryDataFun(BrowserInfoArgs);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    79
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    80
fun get_info thy =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    81
  if Theory.eq_thy (thy, ProtoPure.thy) then BrowserInfoArgs.empty
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    82
  else BrowserInfoData.get thy;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    83
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    84
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    85
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    86
(** graphs **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    87
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    88
type graph_node =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    89
  {name: string, ID: string, dir: string, unfold: bool,
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    90
   path: string, parents: string list};
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    91
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    92
fun write_graph gr path =
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    93
  File.write path (cat_lines (map (fn {name, ID, dir, unfold, path, parents} =>
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    94
    "\"" ^ name ^ "\" \"" ^ ID ^ "\" \"" ^ dir ^ (if unfold then "\" + \"" else "\" \"") ^
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    95
    path ^ "\" > " ^ space_implode " " (map quote parents) ^ " ;") gr));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    96
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    97
fun ID_of sess s = space_implode "/" (sess @ [s]);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
    98
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
    99
(*retrieve graph data from initial theory loader database*)
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   100
fun init_graph remote_path curr_sess = map (fn name =>
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   101
  let
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   102
    val {name = sess_name, session, is_local} = get_info (ThyInfo.theory name);
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   103
    val path' = Path.append (Path.make session) (html_path name);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   104
  in
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   105
   {name = name, ID = ID_of session name, dir = sess_name,
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   106
    path =
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   107
      if null session then "" else
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   108
      if is_some remote_path andalso not is_local then
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   109
        Url.pack (Url.append (the remote_path) (Url.file
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   110
          (Path.append (Path.make session) (html_path name))))
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   111
      else Path.pack (Path.append (mk_rel_path curr_sess session) (html_path name)),
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   112
    unfold = false,
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   113
    parents =
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   114
      map (fn s => ID_of (#session (get_info (ThyInfo.theory s))) s) (ThyInfo.get_preds name)}
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   115
  end) (ThyInfo.names ());
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   116
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   117
fun ins_graph_entry (entry as {ID, ...}) (gr: graph_node list) =
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   118
  filter_out (fn entry' => #ID entry' = ID) gr @ [entry];
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   119
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   120
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   121
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   122
(** global browser info state **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   123
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   124
(* type theory_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   125
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   126
type theory_info = {tex_source: Buffer.T, html_source: Buffer.T, html: Buffer.T};
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   127
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   128
fun make_theory_info (tex_source, html_source, html) =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   129
  {tex_source = tex_source, html_source = html_source, html = html}: theory_info;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   130
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   131
val empty_theory_info = make_theory_info (Buffer.empty, Buffer.empty, Buffer.empty);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   132
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   133
fun map_theory_info f {tex_source, html_source, html} =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   134
  make_theory_info (f (tex_source, html_source, html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   135
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   136
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   137
(* type browser_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   138
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   139
type browser_info = {theories: theory_info Symtab.table, tex_index: Buffer.T,
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   140
  html_index: Buffer.T, graph: graph_node list};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   141
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   142
fun make_browser_info (theories, tex_index, html_index, graph) =
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   143
  {theories = theories, tex_index = tex_index, html_index = html_index,
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   144
    graph = graph}: browser_info;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   145
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   146
val empty_browser_info = make_browser_info (Symtab.empty, Buffer.empty, Buffer.empty, []);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   147
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   148
fun init_browser_info remote_path curr_sess = make_browser_info
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   149
  (Symtab.empty, Buffer.empty, Buffer.empty, init_graph remote_path curr_sess);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   150
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   151
fun map_browser_info f {theories, tex_index, html_index, graph} =
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   152
  make_browser_info (f (theories, tex_index, html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   153
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   154
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   155
(* state *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   156
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   157
val browser_info = ref empty_browser_info;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   158
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   159
fun change_browser_info f = browser_info := map_browser_info f (! browser_info);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   160
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   161
fun init_theory_info name info =
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   162
  change_browser_info (fn (theories, tex_index, html_index, graph) =>
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   163
    (Symtab.update ((name, info), theories), tex_index, html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   164
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   165
fun change_theory_info name f =
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   166
  change_browser_info (fn (info as (theories, tex_index, html_index, graph)) =>
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   167
    (case Symtab.lookup (theories, name) of
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   168
      None => (warning ("Browser info: cannot access theory document " ^ quote name); info)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   169
    | Some info => (Symtab.update ((name, map_theory_info f info), theories),
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   170
        tex_index, html_index, graph)));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   171
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   172
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   173
fun add_tex_index txt =
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   174
  change_browser_info (fn (theories, tex_index, html_index, graph) =>
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   175
    (theories, Buffer.add txt tex_index, html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   176
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   177
fun add_html_index txt =
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   178
  change_browser_info (fn (theories, tex_index, html_index, graph) =>
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   179
    (theories, tex_index, Buffer.add txt html_index, graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   180
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   181
fun add_graph_entry e =
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   182
  change_browser_info (fn (theories, tex_index, html_index, graph) =>
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   183
    (theories, tex_index, html_index, ins_graph_entry e graph));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   184
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   185
fun add_tex_source name txt = change_theory_info name (fn (tex_source, html_source, html) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   186
  (Buffer.add txt tex_source, html_source, html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   187
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   188
fun add_html_source name txt = change_theory_info name (fn (tex_source, html_source, html) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   189
  (tex_source, Buffer.add txt html_source, html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   190
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   191
fun add_html name txt = change_theory_info name (fn (tex_source, html_source, html) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   192
  (tex_source, html_source, Buffer.add txt html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   193
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   194
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   195
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   196
(** global session state **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   197
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   198
(* session_info *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   199
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   200
type session_info =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   201
  {name: string, parent: string, session: string, path: string list, html_prefix: Path.T,
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   202
    doc_format: string, doc_prefixes: (Path.T * Path.T option) option, remote_path: Url.T option};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   203
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   204
fun make_session_info
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   205
    (name, parent, session, path, html_prefix, doc_format, doc_prefixes, remote_path) =
7802
fba7a36e8556 isatool_document;
wenzelm
parents: 7789
diff changeset
   206
  {name = name, parent = parent, session = session, path = path, html_prefix = html_prefix,
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   207
    doc_format = doc_format, doc_prefixes = doc_prefixes, remote_path = remote_path}: session_info;
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   208
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   209
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   210
(* state *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   211
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   212
val session_info = ref (None: session_info option);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   213
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   214
fun with_session x f = (case ! session_info of None => x | Some info => f info);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   215
fun with_context f = f (PureThy.get_name (Context.the_context ()));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   216
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   217
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   218
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   219
(** HTML output **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   220
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   221
(* maintain index *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   222
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   223
val session_entries =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   224
  HTML.session_entries o
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   225
    map (fn name => (Url.file (Path.append (Path.basic name) index_path), name));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   226
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   227
fun get_entries dir =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   228
  split_lines (File.read (Path.append dir session_entries_path));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   229
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   230
fun put_entries entries dir =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   231
  File.write (Path.append dir session_entries_path) (cat_lines entries);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   232
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   233
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   234
fun create_index dir =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   235
  File.read (Path.append dir pre_index_path) ^
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   236
    session_entries (get_entries dir) ^ HTML.end_index
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   237
  |> File.write (Path.append dir index_path);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   238
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   239
fun update_index dir name =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   240
  (case try get_entries dir of
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   241
    None => warning ("Browser info: cannot access session index of " ^ quote (Path.pack dir))
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   242
  | Some es => (put_entries ((es \ name) @ [name]) dir; create_index dir));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   243
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   244
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   245
(* init session *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   246
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   247
fun name_of_session elems = space_implode "/" ("Isabelle" :: elems);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   248
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   249
fun could_copy inpath outpath =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   250
  if File.exists inpath then (File.copy inpath outpath; true)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   251
  else false;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   252
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   253
fun copy_files path1 path2 =
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   254
  (File.mkdir path2;
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   255
   File.system_command
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   256
     ("cp " ^ File.sysify_path path1 ^ " " ^ File.sysify_path path2));
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   257
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   258
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   259
fun init false _ _ _ _ _ = (browser_info := empty_browser_info; session_info := None)
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   260
  | init true doc path name dump_path (remote_path, first_time) =
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   261
      let
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   262
        val parent_name = name_of_session (Library.take (length path - 1, path));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   263
        val session_name = name_of_session path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   264
        val sess_prefix = Path.make path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   265
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   266
        val out_path = Path.expand output_path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   267
        val html_prefix = Path.append out_path sess_prefix;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   268
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   269
        val (doc_prefixes, document_path) =
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   270
          if doc = "" then (None, None)
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   271
          else (Some (Path.append html_prefix doc_path, dump_path), Some (Path.ext doc doc_path));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   272
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   273
        val graph_up_lnk = (Url.file index_path, session_name);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   274
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   275
        val _ =
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   276
          (copy_files (Path.unpack "~~/lib/browser/awtUtilities/*.class")
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   277
             (Path.append html_prefix (Path.basic "awtUtilities"));
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   278
           copy_files (Path.unpack "~~/lib/browser/GraphBrowser/*.class")
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   279
             (Path.append html_prefix (Path.basic "GraphBrowser")));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   280
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   281
        fun prep_readme readme =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   282
          let val readme_path = Path.basic readme in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   283
            if could_copy readme_path (Path.append html_prefix readme_path) then Some readme_path
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   284
            else None
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   285
          end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   286
        val opt_readme =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   287
          (case prep_readme "README.html" of None => prep_readme "README" | some => some);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   288
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   289
        val parent_index_path = Path.append Path.parent index_path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   290
        val index_up_lnk = if first_time then
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   291
            Url.append (the remote_path) (Url.file (Path.append sess_prefix parent_index_path))
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   292
          else Url.file parent_index_path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   293
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   294
        val index_text = HTML.begin_index (index_up_lnk, parent_name)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   295
          (Url.file index_path, session_name) (apsome Url.file opt_readme)
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   296
            (apsome Url.file document_path) (Url.unpack "medium.html");
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   297
      in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   298
        File.mkdir (Path.append html_prefix session_path);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   299
        File.write (Path.append html_prefix session_entries_path) "";
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   300
        if is_some doc_prefixes then File.copy_all doc_path html_prefix else ();
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   301
        seq (fn (name, txt) => File.write (Path.append html_prefix (Path.basic name)) txt)
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   302
          (HTML.applet_pages session_name graph_up_lnk);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   303
        session_info := Some (make_session_info (name, parent_name, session_name, path,
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   304
          html_prefix, doc, doc_prefixes, remote_path));
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   305
        browser_info := init_browser_info remote_path path;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   306
        add_html_index index_text
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   307
      end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   308
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   309
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   310
(* finish session *)
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   311
7802
fba7a36e8556 isatool_document;
wenzelm
parents: 7789
diff changeset
   312
fun isatool_document doc_format doc_prefix =
8646
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   313
  let
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   314
    val cmd = "$ISATOOL document -c -o '" ^ doc_format ^ "' '" ^ File.sysify_path doc_prefix ^ "'";
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   315
  in
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   316
    writeln cmd;
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   317
    if system cmd <> 0 orelse not (File.exists (Path.ext doc_format doc_prefix)) then
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   318
      error "Failed to build document"
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   319
    else ()
1a2c5ccebfdb isatool document: check output file (workaround PolyML problem with RC);
wenzelm
parents: 8499
diff changeset
   320
  end;
7802
fba7a36e8556 isatool_document;
wenzelm
parents: 7789
diff changeset
   321
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   322
fun write_tex src name path = Buffer.write (Path.append path (tex_path name)) src;
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   323
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   324
fun write_texes src name (path, None) = write_tex src name path
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   325
  | write_texes src name (path, Some path') = (write_tex src name path; write_tex src name path');
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   326
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   327
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   328
fun finish () = with_session ()
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   329
    (fn {name, html_prefix, doc_format, doc_prefixes, path, ...} =>
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   330
  let
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   331
    val {theories, tex_index, html_index, graph} = ! browser_info;
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   332
    val parent_html_prefix = Path.append html_prefix Path.parent;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   333
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   334
    fun finish_node (a, {tex_source, html_source = _, html}) =
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   335
     (doc_prefixes |> apsome (write_texes tex_source a);
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   336
      Buffer.write (Path.append html_prefix (html_path a)) (Buffer.add HTML.end_theory html));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   337
  in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   338
    seq finish_node (Symtab.dest theories);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   339
    Buffer.write (Path.append html_prefix pre_index_path) html_index;
9708
5f21379beb87 tex_index: Latex.tex_trailer;
wenzelm
parents: 9452
diff changeset
   340
    doc_prefixes |> apsome (write_texes (Buffer.add Latex.tex_trailer tex_index) doc_indexN);
8196
ecb9decd38ac additional tex dump;
wenzelm
parents: 8192
diff changeset
   341
    doc_prefixes |> apsome (isatool_document doc_format o #1);
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   342
    write_graph graph (Path.append html_prefix (graph_path "session"));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   343
    create_index html_prefix;
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   344
    if length path > 1 then update_index parent_html_prefix name else ();
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   345
    browser_info := empty_browser_info;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   346
    session_info := None
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   347
  end);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   348
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   349
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   350
(* theory elements *)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   351
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   352
fun init_theory name = with_session () (fn _ => init_theory_info name empty_theory_info);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   353
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   354
fun verbatim_source name mk_text =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   355
  with_session () (fn _ => add_html_source name (HTML.verbatim_source (mk_text ())));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   356
8192
45a7027136e3 added old_symbol_source;
wenzelm
parents: 8088
diff changeset
   357
fun old_symbol_source name mk_text =
8499
8958ece3bbdf old_symbol_source: include header;
wenzelm
parents: 8219
diff changeset
   358
  with_session () (fn _ => add_tex_source name (Latex.old_symbol_source name (mk_text ())));
8192
45a7027136e3 added old_symbol_source;
wenzelm
parents: 8088
diff changeset
   359
9136
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
   360
fun theory_output name s =
8196955b02ec adapted to improved presentation;
wenzelm
parents: 9044
diff changeset
   361
  with_session () (fn _ => add_tex_source name (Latex.isabelle_file s));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   362
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   363
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   364
fun parent_link remote_path curr_session name =
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   365
  let val {name = _, session, is_local} = get_info (ThyInfo.theory name)
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   366
  in (if null session then None else
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   367
     Some (if is_some remote_path andalso not is_local then
9044
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   368
       Url.append (the remote_path) (Url.file
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   369
         (Path.append (Path.make session) (html_path name)))
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   370
     else Url.file (Path.append (mk_rel_path curr_session session)
28ee037278a6 Reorganized graph stuff.
berghofe
parents: 8808
diff changeset
   371
       (html_path name))), name)
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   372
  end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   373
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   374
fun begin_theory name raw_parents orig_files thy =
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   375
    with_session thy (fn {name = sess_name, session, path, html_prefix, remote_path, ...} =>
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   376
  let
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   377
    val parents = map (parent_link remote_path path) raw_parents;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   378
    val ml_path = ThyLoad.ml_path name;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   379
    val files = map (apsnd Some) orig_files @
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   380
      (if is_some (ThyLoad.check_file ml_path) then [(ml_path, None)] else []);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   381
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   382
    fun prep_file (raw_path, loadit) =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   383
      (case ThyLoad.check_file raw_path of
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   384
        Some (path, _) =>
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   385
          let
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   386
            val base = Path.base path;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   387
            val base_html = html_ext base;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   388
          in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   389
            File.write (Path.append html_prefix base_html)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   390
              (HTML.ml_file (Url.file base) (File.read path));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   391
            (Some (Url.file base_html), Url.file raw_path, loadit)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   392
          end
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   393
      | None => (warning ("Browser info: expected to find ML file" ^ quote (Path.pack raw_path));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   394
          (None, Url.file raw_path, loadit)));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   395
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   396
    val files_html = map prep_file files;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   397
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   398
    fun prep_html_source (tex_source, html_source, html) =
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   399
      let
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   400
        val txt = HTML.begin_theory (Url.file index_path, session)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   401
          name parents files_html (Buffer.content html_source)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   402
      in (tex_source, Buffer.empty, Buffer.add txt html) end;
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   403
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   404
    val entry =
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   405
     {name = name, ID = ID_of path name, dir = sess_name, unfold = true,
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   406
      path = Path.pack (html_path name),
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   407
      parents = map (fn s => ID_of (#session (get_info (ThyInfo.theory s))) s) raw_parents};
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   408
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   409
  in
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   410
    change_theory_info name prep_html_source;
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   411
    add_graph_entry entry;
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   412
    add_html_index (HTML.theory_entry (Url.file (html_path name), name));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   413
    add_tex_index (Latex.theory_entry name);
9416
9144976964e7 removed all_sessions.graph;
wenzelm
parents: 9136
diff changeset
   414
    BrowserInfoData.put {name = sess_name, session = path, is_local = is_some remote_path} thy
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   415
  end);
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   416
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   417
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   418
fun result k a thm = with_session () (fn _ => with_context add_html (HTML.result k a thm));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   419
fun results k a thms = with_session () (fn _ => with_context add_html (HTML.results k a thms));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   420
fun theorem a thm = with_session () (fn _ => with_context add_html (HTML.theorem a thm));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   421
fun theorems a thms = with_session () (fn _ => with_context add_html (HTML.theorems a thms));
8088
6ae943d080de chapter;
wenzelm
parents: 7853
diff changeset
   422
fun chapter s = with_session () (fn _ => with_context add_html (HTML.chapter s));
7727
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   423
fun section s = with_session () (fn _ => with_context add_html (HTML.section s));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   424
fun subsection s = with_session () (fn _ => with_context add_html (HTML.subsection s));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   425
fun subsubsection s = with_session () (fn _ => with_context add_html (HTML.subsubsection s));
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   426
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   427
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   428
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   429
(** theory setup **)
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   430
b52c7d773121 include browser_info stuff;
wenzelm
parents: 7685
diff changeset
   431
val setup = [BrowserInfoData.init];
7685
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   432
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   433
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   434
end;
3edd32d588a6 improved theory_source presentation (hook);
wenzelm
parents: 6325
diff changeset
   435
6203
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
   436
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
   437
structure BasicPresent: BASIC_PRESENT = Present;
328b4377755c Theory presentation (fake implementation);
wenzelm
parents:
diff changeset
   438
open BasicPresent;