# HG changeset patch # User wenzelm # Date 1279831835 -7200 # Node ID 1d812ff95a14b2905a8678cfe46bb29f794ece13 # Parent 4857eab312982de5904646ae99bf806ccfd776cb refrain from generating
and from "hiding" it in isabelle.css -- the latter might be used in other situations as well; diff -r 4857eab31298 -r 1d812ff95a14 lib/html/isabelle.css --- a/lib/html/isabelle.css Thu Jul 22 22:39:31 2010 +0200 +++ b/lib/html/isabelle.css Thu Jul 22 22:50:35 2010 +0200 @@ -14,9 +14,6 @@ .name { font-style: italic; } .filename { font-family: fixed; } -/* hide hr for this style */ -hr { height: 0px; border: 0px; } - /* basic syntax markup */ diff -r 4857eab31298 -r 1d812ff95a14 src/Pure/Thy/html.ML --- a/src/Pure/Thy/html.ML Thu Jul 22 22:39:31 2010 +0200 +++ b/src/Pure/Thy/html.ML Thu Jul 22 22:50:35 2010 +0200 @@ -309,7 +309,7 @@ begin_document ("Index of " ^ session) ^ up_link up ^ para ("View " ^ href_path graph "theory dependencies" ^ implode (map (fn (p, name) => "
\nView " ^ href_path p name) docs)) ^ - "\n\n
\n
\n

Theories

\n
\n
\n

Theories

\n
\n
\n
\n\ + "\n
\n
\n\ \\n\ \\n\ - \\n
" ^ end_document) + \" ^ end_document) end; in map applet_page sizes end; @@ -345,15 +345,15 @@ fun session_entries [] = "" | session_entries es = - "\n
\n
\n
\n\ + "\n
\n
\n\ \

Sessions

\n"; (* theory *) val theory_source = enclose - "\n
\n
\n
\n
"
-  "
\n
\n"; + "\n
\n
\n
"
+  "
\n"; local @@ -383,9 +383,9 @@ fun external_file path str = begin_document ("File " ^ Url.implode path) ^ - "\n
\n
\n" ^ + "\n
\n" ^ verbatim str ^ - "\n
\n
\n
" ^ + "\n
\n
" ^ end_document; end;