]> matita.cs.unibo.it Git - helm.git/blobdiff - matitaB/matita/index.html
First attempt at svn commit of developments.
[helm.git] / matitaB / matita / index.html
index 98692b5ad5559111fa51565d074ea169365d577b..9a2343aa43c5ca32bc2d3b8da3949fc004cf6ffa 100644 (file)
 <html>
-<head>
-</head>
-                 
-<body>
-<script language="JavaScript">
-var locked;
-var unlocked;
-var workarea;
-var scriptcell;
-var goalcell;
-var goals;
-var goalview;
-var filename;
-var status;
-
-function initialize()
-{
-  locked = document.getElementById("locked");
-  unlocked = document.getElementById("unlocked");
-  workarea = document.getElementById("workarea");
-  scriptcell = document.getElementById("scriptcell");
-  goalcell = document.getElementById("goalcell");
-  goals = document.getElementById("goals");
-  goalview = document.getElementById("goalview");
-  filename = document.getElementById("filename");
-  status = document.getElementById("status");
-}
-
-function debug(txt)
-{
-        var status = document.getElementById("status");
-        status.innerHTML = txt + "\n" + status.innerHTML;
-}
-
-function listhd(l)
-{
-       ar = l.split("#");
-        debug("hd of '" + l + "' = '" + ar[0] + "'");
-        return (ar[0]);
-}
-
-function listtl(l)
-{
-        i = l.indexOf("#");
-        tl = l.substr(i+1);
-        debug("tl of '" + l + "' = '" + tl + "'");
-        return (tl);
-}
-
-function listcons(x,l)
-{
-        debug("cons '" + x + "' on '" + l + "'");
-       return (x + "#" + l);
-}
-
-function listnil()
-{
-       return ("");
-}
-
-function is_nil(l)
-{
-       return (l == "");
-}
-
-function fold_left (f,acc,l)
-{
-       if (is_nil(l))
-           { debug("'" + l + "' is fold end");
-          return (acc); }
-        else
-          { debug("'" + l + "' is fold cons");
-             return(fold_left (f,f(acc,(listhd(l))),listtl(l))); }
-}
-
-function listiter (f,l)
-{
-       if (is_nil(l))
-        { debug("'" + l + "' is nil");
-          return;
-        }
-       else
-       {
-           debug("'" + l + "' is not nil");
-          f(listhd(l));
-          listiter(f,listtl(l));
-        }
-}
-
-function listmap (f,l)
-{
-        debug("listmap on " + l);
-       if (is_nil(l)) 
-           { debug("returning listnil");
-            return(listnil());
-           }
-       else 
-          { debug("cons f(hd) map(f,tl)");
-            return(f(listhd(l)) + "#" + listmap(f,listtl(l)));
-           }
-}
-
-var statements = listnil();
-
-var goalarray;
-var metalist = listnil();
-
-function pairmap (f,p)
-{
-  debug("pairmap of '" + p + "'");
-  ar = p.split("|");
-  return (f(ar[0],ar[1])); 
-}
-
-function tripletmap (f,p)
-{
-  debug("tripletmap of '" + p + "'");
-  ar = p.split("|");
-  return (f(ar[0],ar[1],ar[2])); 
-}
-
-function fst (p)
-{
-  debug("fst");
-  return (pairmap (function (a,b) { return (a); }, p));
-}
-
-function p13 (p)
-{
-  debug("p13");
-  return (tripletmap (function (a,b,c) { return (a); }, p));
-}
-
-function p23 (p)
-{
-  debug("p23");
-  return (tripletmap (function (a,b,c) { return (b); }, p));
-}
-
-function p33 (p)
-{
-  debug("f33");
-  return (tripletmap (function (a,b,c) { return (c); }, p));
-}
 
-function populate_goalarray(txt)
-{
-  debug("populate with '" + txt + "'");
-  goalarray = new Array();
-  metalist = listnil();
-  var tmp_goallist = "";
-  listiter (function(item)
-    {
-     debug ("item is '" + item + "'");
-     tripletmap (function(a,ahtml,b) {   
-      debug ("found meta n. " + a);
-      debug ("found goal\nBEGIN" + unescape(b) + "\nEND");
-      goalarray[a] = unescape(b);
-      tmp_goallist = " <A href=\"javascript:switch_goal(" + a + ")\">" + unescape(ahtml) + "</A>" + tmp_goallist;
-      metalist = listcons(a,metalist);
-      debug ("goalarray[\"" + a + "\"] = " + goalarray[a]); 
-     },item);
-    }, txt);
-  // metalist = listmap (p13,txt);
-  document.getElementById("goals").innerHTML = tmp_goallist;
-  debug("new metalist is '" + metalist + "'");
-  if (is_nil(metalist)) {
-    switch_goal();
-  }
-  else {
-    switch_goal(listhd(metalist));
-  }
-}
-
-function switch_goal(meta)
-{
-  goalview = document.getElementById("goalview");
-  if (typeof meta == "undefined") {
-    goalview.innerHTML = "";
-  }
-  else {
-    debug("switch_goal " + meta + "\n" + goalarray[meta]);
-    goalview.innerHTML = "<B>Goal ?" + meta + ":</B>\n\n" + goalarray[meta];
-  }
-}
-
-String.prototype.unescapeHTML = function()
-{
-       var patt1 = /<br(\/|)>/gi;
-       var patt2 = /&lt;/gi;
-       var patt3 = /&gt;/gi;
-       var result = this;
-       result = result.replace(patt1,"\n");
-       result = result.replace(patt2,"<");
-       result = result.replace(patt3,">");
-       return (unescape(result));
-}
-
-function pause()
-{
-       var advanceButton = document.getElementById("advance");
-       var retractButton = document.getElementById("retract");
-       advanceButton.disabled = true;
-        retractButton.disabled = true;
-}
-
-function resume()
-{
-       var advanceButton = document.getElementById("advance");
-       var retractButton = document.getElementById("retract");
-       advanceButton.disabled = false;
-        retractButton.disabled = false;
-}
-
-function advanceForm1()
-{
-       var req = null; 
-        unlocked = document.getElementById("unlocked");
-       locked = document.getElementById("locked");
-        goalview = document.getElementById("goalview"); 
-        pause();
-       if (window.XMLHttpRequest)
-       {
-               req = new XMLHttpRequest();
-       } 
-       else if (window.ActiveXObject) 
-       {
-               try {
-                               req = new ActiveXObject("Msxml2.XMLHTTP");
-               } catch (e)
-               {
-                       try {
-                               req = new ActiveXObject("Microsoft.XMLHTTP");
-                               } catch (e) {}
-               }
-       }
-       req.onreadystatechange = function()
-       { 
-
-               rs = req.readyState;
-               stat = req.status;
-               stxt = req.statusText;
-
-               if(rs == 4)
-               {
-                       if(stat == 200)
-                       {
-                               debug("advance: received response\nBEGIN\n" + req.responseText + "\nEND");
-                               response = req.responseText.split("@");
-                               len = parseInt(response[0]);
-                                len0 = unlocked.innerHTML.length;
-                               unescaped = unlocked.innerHTML.unescapeHTML();
-                               parsedtxt = unescaped.substr(0,len); 
-                               unparsedtxt = unescaped.substr(len);
-                               locked.innerHTML = locked.innerHTML + parsedtxt;
-                               unlocked.innerHTML = unparsedtxt;
-                               len1 = unlocked.innerHTML.length;
-                               len = len0 - len1;
-                                populate_goalarray(response[1]);
-                               statements = listcons(len,statements);
-                                unlocked.scrollIntoView(true);
-                       }       
-                       else    
-                       {
-                               debug("advance error: returned status code " + req.status + " " + req.statusText + "\n" + 
-                                  req.responseText);
-                       }       
-                        resume();
-               } 
-       };
-       req.open("POST", "advance"); // + escape(document.getElementById("unlocked").innerHTML), true); 
-       req.send(unlocked.innerHTML.unescapeHTML()); 
-  
-}
-
-function retract()
-{
-       var req = null; 
-        unlocked = document.getElementById("unlocked");
-       locked = document.getElementById("locked");
-        goalview = document.getElementById("goalview"); 
-       if (window.XMLHttpRequest)
-       {
-               req = new XMLHttpRequest();
-       } 
-       else if (window.ActiveXObject) 
-       {
-               try {
-                               req = new ActiveXObject("Msxml2.XMLHTTP");
-               } catch (e)
-               {
-                       try {
-                               req = new ActiveXObject("Microsoft.XMLHTTP");
-                               } catch (e) {}
-               }
-       }
-       req.onreadystatechange = function()
-       { 
-
-               rs = req.readyState;
-               stat = req.status;
-               stxt = req.statusText;
-
-               if(rs == 4)
-               {
-                       if(stat == 200)
-                       {
-                               debug("retract: received response\nBEGIN\n" + req.responseText + "\nEND");
-                               response = req.responseText;
-                               statementlen = parseInt(listhd(statements));
-                                statements = listtl(statements);
-                                lockedlen = locked.innerHTML.length - statementlen;
-                               statement = locked.innerHTML.substr(lockedlen, statementlen);
-                                locked.innerHTML = locked.innerHTML.substr(0,lockedlen);
-                               unlocked.innerHTML = statement + unlocked.innerHTML;
-                                populate_goalarray(response);
-                                unlocked.scrollIntoView(true);
-                       }       
-                       else    
-                       {
-                               debug("retract error: returned status code " + req.status + " " + req.statusText + "\n" + 
-                                  req.responseText);
-                       }       
-                        resume();
-               } 
-       };
-       req.open("GET", "retract"); // + escape(document.getElementById("unlocked").innerHTML), true); 
-       req.send(); 
-  
-}
-
-function openFile()
-{ 
-        unlocked = document.getElementById("unlocked");
-       locked = document.getElementById("locked");
-       var req = null; 
-       if (window.XMLHttpRequest)
-       {
-               req = new XMLHttpRequest();
-       } 
-       else if (window.ActiveXObject) 
-       {
-               try {
-                               req = new ActiveXObject("Msxml2.XMLHTTP");
-               } catch (e)
-               {
-                       try {
-                               req = new ActiveXObject("Microsoft.XMLHTTP");
-                               } catch (e) {}
-               }
-       }
-       req.onreadystatechange = function()
-       { 
-
-               rs = req.readyState;
-               stat = req.status;
-               stxt = req.statusText;
-
-               if(rs == 4)
-               {
-                       if(stat == 200)
-                       {
-                                locked.innerHTML = "";
-                                unlocked.innerHTML = req.responseText;
-                       }       
-                       else    
-                       {
-                               debug("open error: returned status code " + req.status + " " + req.statusText + "\n" + 
-                                  req.responseText);
-                       }       
-               } 
-       };
-       req.open("GET", "open?file=" + escape(document.getElementById("filename").value), true); 
-       req.send(); 
-}
-
-var goalcell;
-
-function hideSequent() {
-  goalcell = document.getElementById("goalcell");
-  goalcell.parentNode.removeChild(goalcell);
-  document.getElementById("scriptcell").setAttribute("colspan","2");
-}
-
-function showSequent() {
-  document.getElementById("scriptcell").setAttribute("colspan","1");
-  document.getElementById("workarea").appendChild(goalcell);
-}
+<head>
+<script type="text/javascript" src="utf8MacroTable.js"></script>
+<script type="text/javascript" src="matitaweb.js"></script>
+<link rel="stylesheet" type="text/css" href="matitaweb.css"/>
 
-function removeElement(id) {
-  var element = document.getElementById(id);
-  element.parentNode.removeChild(element);
-} 
+<link href="treeview/xmlTree.css" type="text/css" rel="stylesheet"/>
+<script src="treeview/xmlTree.js" type="text/javascript"></script>
 
-</script>
+</head>
 
+<body onLoad="initialize();">
+<div id="sandbox" style="visibility:hidden;"></div>
 <table style="table-layout: fixed; width:100%; height:100%; border-spacing: 0px; border-style: none;">
 <tr>
 <td style="padding: 0px; width:67%; border-style: none;">
        <textarea id="unescape" style="display:none;"></textarea>
-       <p><INPUT type="BUTTON" value="advance" id="advance" ONCLICK="advanceForm1()">
-          <INPUT type="BUTTON" value="go back" id="retract" ONCLICK="retract()"> &nbsp;
-       <INPUT type="TEXT" id="filename" value=""><INPUT type="BUTTON" value="Open" ONCLICK="openFile()"></p>
-          <INPUT type="BUTTON" value="show sequent" id="showseq" ONCLICK="showSequent()">
+       <p><A href="javascript:advanceForm1()"><IMG src="icons/advance.png" 
+                                                    id="advance" alt="Advance" 
+                                                    title="Execute one step of the script."></A>
+          <A href="javascript:retract()"><IMG src="icons/retract.png" 
+                                              id="retract" alt="Retract"
+                                               title="Undo execution of one step of the script."></A>
+          <A href="javascript:gotoPos()"><IMG src="icons/position.png" 
+                                               id="cursor" alt="Play"
+                                               title="Execute the script until the current position of the cursor."></A>
+          <A href="javascript:gotoBottom()"><IMG src="icons/bottom.png" 
+                                                  id="bottom" alt="Bottom" title="Execute the whole script."></A>
+          <INPUT type="BUTTON" value="Browse library" id="showdialog" ONCLICK="showLibrary()">
+          <INPUT type="BUTTON" value="Save" id="savebutton" ONCLICK="saveFile()">
+          <INPUT type="BUTTON" value="Commit" id="savebutton" ONCLICK="commitAll()"></p>
+<!--      <INPUT type="BUTTON" value="show sequent" id="showseq" ONCLICK="showSequent()">
           <INPUT type="BUTTON" value="hide sequent" id="hideseq" ONCLICK="hideSequent()">
+          <INPUT type="BUTTON" value="selection test" id="hideseq" ONCLICK="test()"> -->
+
 </td>
-<td style="width:33%;"></td>
+<td style="width:33%; text-align:center;"><img src="icons/matita-text.png"></td>
 </tr>
-<tr id="workarea" style="height:80%;">
+<tr id="workarea" style="height:70%;">
 <td id="scriptcell" style="padding: 0px; border-style: none; padding: 0px;">
   <!-- the script --> 
   <!-- 
@@ -415,22 +45,26 @@ function removeElement(id) {
   inside a PRE tag, a CR will be reflected in the document presentation)
   -->
   <div style="width:100%; height:100%; overflow:auto;">
-  <pre>
-  <div contentEditable="false" id="locked" style="background-color:#bfbfff; display:inline;"></div><div contentEditable="true" id="unlocked" style="display:inline">(* script lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo *)</div></pre></div>
+  <pre><div contentEditable="false" id="locked" style="background-color:#bfbfff; display:inline;"></div><div contentEditable="true" id="unlocked" style="display:inline">(* script *)</div></pre></div>
   <!-- the script (end) --> 
 </td>
 <td id="goalcell" style="padding: 0px; width:33%; border-style: none;">
   <div id="goals"></div>
   <div contentEditable="true" style="border-style:solid; height:100%; width:100%; overflow:auto;">
-  <pre id="goalview">lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo lungo </pre>
+  <pre id="goalview"></pre>
   </div>
 </td>
 
 <tr style="height:15%">
 <td colspan="2" style="padding: 0px; border-style: none;">
-       <textarea id="status" style="width:100%; height:100%"></textarea>
+       <textarea id="logarea" style="width:100%; height:100%"></textarea>
 </td>
 </tr>
 </table>
+
+<div class="dialog" id="dialogBox" style="display: none;">
+  <div class="diaTitle" id="dialogTitle"></div>
+  <div class="scroll" id="dialogContent"></div>
+</div>
  </body>
  </html>