/usr/share/mozart/doc/demo/node16.html is in mozart-doc 1.4.0-8ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Root functor: Main.oz</TITLE><LINK href="ozdoc.css" rel="stylesheet" type="text/css"></HEAD><BODY><TABLE align="center" border="0" cellpadding="6" cellspacing="6" class="nav"><TR bgcolor="#DDDDDD"><TD><A href="cutting.html">- Up -</A></TD><TD><A href="node17.html#code.cutting.script">Next >></A></TD></TR></TABLE><DIV class="unnumbered" id="code.cutting.main"><H3><A name="code.cutting.main">Root functor: <CODE>Main.oz</CODE></A></H3><P class="margin"><A href="Cutting/Main.oz">Source File</A></P><P> </P><BLOCKQUOTE><PRE><SPAN class="keyword">functor</SPAN> <BR> <BR><SPAN class="keyword">import</SPAN> <BR> Tk TkTools<BR> <BR> Edit(page)<BR> Compute(page)<BR> Application(exit)<BR> <BR> <BR><SPAN class="keyword">define</SPAN> <BR> <BR> T = {New Tk<SPAN class="keyword">.</SPAN>toplevel tkInit(title: <SPAN class="string">'Glass Plates'</SPAN> <BR> delete: Application<SPAN class="keyword">.</SPAN>exit <SPAN class="keyword">#</SPAN> 0<BR> withdraw: <SPAN class="keyword">true</SPAN>)}<BR> B = {New TkTools<SPAN class="keyword">.</SPAN>notebook tkInit(parent: T)}<BR> <BR> E = {New Edit<SPAN class="keyword">.</SPAN>page init(parent: B<BR> compute: C)}<BR> C = {New Compute<SPAN class="keyword">.</SPAN>page init(parent: B<BR> edit: E)}<BR> <BR><SPAN class="keyword">in</SPAN> <BR> <BR> {B add(E)} {B add(C)}<BR> <BR> {Tk<SPAN class="keyword">.</SPAN>batch [pack(B)<BR> update(idletasks)<BR> wm(deiconify T)<BR> wm(resizable T <SPAN class="keyword">false</SPAN> <SPAN class="keyword">false</SPAN>)]}<BR> <BR><SPAN class="keyword">end</SPAN> <BR> <BR> <BR></PRE></BLOCKQUOTE><P></P></DIV><TABLE align="center" border="0" cellpadding="6" cellspacing="6" class="nav"><TR bgcolor="#DDDDDD"><TD><A href="cutting.html">- Up -</A></TD><TD><A href="node17.html#code.cutting.script">Next >></A></TD></TR></TABLE><HR><ADDRESS><SPAN class="version">Version 1.4.0 (20110908185330)</SPAN></ADDRESS></BODY></HTML>
|