File: consoleview.html

package info (click to toggle)
yacas 1.3.6-2
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 7,176 kB
  • ctags: 3,520
  • sloc: cpp: 13,960; java: 12,602; sh: 11,401; makefile: 552; perl: 517; ansic: 381
file content (95 lines) | stat: -rw-r--r-- 3,075 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<html>
  <head>
    <link rel="stylesheet" href="yacas.css" TYPE="text/css" MEDIA="screen">
    <script type="text/javascript" src="cookie.js"></script>
    <link rel="stylesheet" href="autocompleter.css" TYPE="text/css" MEDIA="screen">
    <script type="text/javascript" src="autocompleteraccess.js"></script>
    <script type="text/javascript" src="autocompleterarray.js"></script>
    <script type="text/javascript" src="datahub.js"></script>
    <script type="text/javascript" src="yacas.js"></script>

    <script type="text/javascript">
      function gotoHREF(href) { document.location.href = href; }

      /* When deep link found, redirect to the tabbified main page */
      if (top.location == self.location)
      {
        self.location.replace("yacas.html");
      }

      var prevOnLoad = window.onload;
      window.onload = initPage;

      function initPage()
      {
        if (prevOnLoad)
          prevOnLoad();
        elem = document.getElementById("theexplainbutton");
        if (elem)
        {
          elem.onclick=goExplain;
        }
      }
      function goExplain()
      {
        gotoHREF('consoledescr.html');
      }

    </script>
  </head>
  <body>
        <table>
          <tr>
            <td valign="top">

    <input type=button value="Write code" onclick="gotoHREF('consoleedit.html');" title="Edit the code that gets loaded at start-up in this calculation center. Note you will only edit a local copy, so you can not accidentally destroy anything." />

    <input type=image value="Stop" alt="Stop" src="stop.gif" onclick="yacasStopCurrentCalculation();" title="Stop the current calculation if a calculation is running." />

            </td>
            <td>
              Find function: <input type="text" id="funcLookup"/>
            <td>
          </tr>
          <tr>
            <td valign="top">
              <span class="yacasConsole" id="console"></span>
            </td>
            <td valign="top">
              <div id="popups" style="border:1px solid #000000; height:600px; overflow:scroll;"></div>
            </td>
          </tr>
        </table>




    <script type="text/javascript">

      var art="";
      var pr = getCookieEscaped("untitled.yart","false");
      if (pr != "false")
      {
        art = '<PARAM name="article" value="'+pr+'">';
      }
  document.write(
  '<APPLET name="datahub" archive="yacas.jar" code="net.sf.yacas.DatahubApplet" width=1 height=1>'+
  '<PARAM name="programMode" value="console">' +
  art +
  '</APPLET>'
  );

    </script>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-2425144-1']);
      _gaq.push(['_trackPageview']);

      (function() {
          var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
          ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
          var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
      })();
    </script>
  </body>
</html>