src/Pure/Thy/html.ML
changeset 37940 4857eab31298
parent 37146 f652333bbf8e
child 37941 1d812ff95a14
--- a/src/Pure/Thy/html.ML	Thu Jul 22 22:31:20 2010 +0200
+++ b/src/Pure/Thy/html.ML	Thu Jul 22 22:39:31 2010 +0200
@@ -30,7 +30,7 @@
   val theory_source: text -> text
   val begin_theory: Url.T * string -> string -> (Url.T option * string) list ->
     (Url.T * Url.T * bool) list -> text -> text
-  val ml_file: Url.T -> string -> text
+  val external_file: Url.T -> string -> text
 end;
 
 structure HTML: HTML =
@@ -379,13 +379,13 @@
 end;
 
 
-(* ML file *)
+(* external file *)
 
-fun ml_file path str =
+fun external_file path str =
   begin_document ("File " ^ Url.implode path) ^
-  "\n</div>\n<hr/><div class=\"mlsource\">\n" ^
+  "\n</div>\n<hr/><div class=\"external_source\">\n" ^
   verbatim str ^
-  "\n</div>\n<hr/>\n<div class=\"mlfooter\">" ^
+  "\n</div>\n<hr/>\n<div class=\"external_footer\">" ^
   end_document;
 
 end;