]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/webapps/fjsc/www/termlib/index.html
core: Add the shuffler words but without primitives.
[factor.git] / extra / webapps / fjsc / www / termlib / index.html
index 1770b2ca13aa115d431f9ffd21fe8637aa5ca2b3..f38f6e15802e9f3074d968a6c0100bdb1b1b7e43 100644 (file)
-<HTML>\r
-<HEAD>\r
-       <TITLE>mass:werk termlib</TITLE>\r
-\r
-<STYLE TYPE="text/css">\r
-body,p,a,td {\r
-       font-family: courier,fixed,swiss,sans-serif;\r
-       font-size: 12px;\r
-       color: #cccccc;\r
-}\r
-.lh13 {\r
-       line-height: 13px;\r
-}\r
-.lh15 {\r
-       line-height: 15px;\r
-}\r
-pre {\r
-       font-family: courier,fixed,swiss,sans-serif;\r
-       font-size: 12px;\r
-       color: #ccffaa;\r
-       line-height: 15px;\r
-}\r
-.prop {\r
-       font-family: courier,fixed,swiss,sans-serif;\r
-       color: #bbee99;\r
-       font-size: 12px;\r
-       line-height: 15px;\r
-}\r
-h1 {\r
-       font-family: courier,fixed,swiss,sans-serif;\r
-       font-size: 16px;\r
-       color: #cccccc;\r
-}\r
-a,a:link,a:visited {\r
-       text-decoration: none;\r
-       color: #77dd11;\r
-}\r
-a:hover {\r
-       text-decoration: underline;\r
-       color: #77dd11;\r
-}\r
-a:active {\r
-       text-decoration: underline;\r
-       color: #dddddd;\r
-}\r
-\r
-@media print {\r
-       body { background-color: #ffffff; }\r
-       body,p,a,td {\r
-               font-family: courier,fixed,swiss,sans-serif;\r
-               font-size: 12px;\r
-               color: #000000;\r
-       }\r
-       .lh13 {\r
-               line-height: 13px;\r
-       }\r
-       .lh15 {\r
-               line-height: 15px;\r
-       }\r
-       pre,.prop {\r
-               font-family: courier,fixed,swiss,sans-serif;\r
-               font-size: 12px;\r
-               color: #000000;\r
-               line-height: 15px;\r
-       }\r
-       h1 {\r
-               font-family: courier,fixed,swiss,sans-serif;\r
-               font-size: 16px;\r
-               color: #000000;\r
-       }\r
-       a,a:link,a:visited {\r
-               text-decoration: none;\r
-               color: #000000;\r
-       }\r
-       a:hover {\r
-               text-decoration: underline;\r
-               color: #000000;\r
-       }\r
-       a:active {\r
-               text-decoration: underline;\r
-               color: #000000;\r
-       }\r
-}\r
-</STYLE>\r
-</HEAD>\r
-\r
-\r
-<BODY BGCOLOR="#222222" LINK="#77dd11" TEXT="#cccccc" ALINK="#dddddd" VLINK="#77dd11"\r
-TOPMARGIN="0" BOTTOMMARGIN="0" LEFTMARGIN="0" RIGHTMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0"><A NAME="top"></A>\r
-\r
-<TABLE BORDER="0" CELLSPACING="20" CELLPADDING="0" ALIGN="center">\r
-<TR>\r
-       <TD NOWRAP>termlib.js home</TD>\r
-       <TD>|</TD>\r
-       <TD NOWRAP><A HREF="multiterm_test.html">multiple terminal test</A></TD>\r
-       <TD>|</TD>\r
-       <TD NOWRAP><A HREF="parser_sample.html">sample parser</A></TD>\r
-       <TD>|</TD>\r
-       <TD NOWRAP><A HREF="faq.html">faq</A></TD>\r
-       <TD>|</TD>\r
-       <TD NOWRAP><A HREF="readme.txt" TITLE="readme.txt (text/plain)">documentation</A></TD>\r
-</TR>\r
-</TABLE>\r
-\r
-<TABLE BORDER="0" CELLSPACING="20" CELLPADDING="0" WIDTH="700" ALIGN="center">\r
-       <TR><TD>\r
-               <H1>mass:werk termlib.js</H1>\r
-       </TD></TR>\r
-       <TR><TD CLASS="lh13">\r
-               The JavaScript library &quot;termlib.js&quot; provides a `Terminal' object, which\r
-               facillitates a simple and object oriented approach to generate and control a\r
-               terminal-like interface for web services.<BR><BR>\r
-               \r
-               "termlib.js" features direct keyboard input and powerful output methods\r
-               for multiple and simultanious instances of the `Terminal' object.<BR><BR>\r
-               \r
-               The library was written with the aim of simple usage and a maximum of compatibility\r
-               with minimal foot print in the global namespace.<BR><BR><BR>\r
-               \r
-               \r
-               A short example:<BR>\r
-  <PRE>\r
-  var term = new Terminal( {handler: termHandler} );\r
-  term.open();\r
-\r
-  function termHandler() {\r
-     this.newLine();\r
-     var line = this.lineBuffer;\r
-     if (line != &quot;&quot;) {\r
-        this.write(&quot;You typed: &quot;+line);\r
-     }\r
-     this.prompt();\r
-  }\r
-  </PRE>\r
-       </TD></TR>\r
-       <TR><TD CLASS="lh13">\r
-       <B>License</B><BR><BR>\r
-\r
-       This JavaScript-library is <U>free for private and academic use</U>.\r
-       Please include a readable copyright statement and a backlink to &lt;http://www.masswerk.at&gt; in the\r
-       web page. The library should always be accompanied by the &quot;readme.txt&quot; and the sample HTML-documents.<BR><BR>\r
-\r
-       The term &quot;private use&quot; includes any personal or non-commercial use, which is not related\r
-       to commercial activites, but excludes intranet, extranet and/or public net applications\r
-       that are related to any kind of commercial or profit oriented activity.<BR><BR>\r
-\r
-       For commercial use see &lt;<A HREF="http://www.masswerk.at/" TARGET="_blank">http://www.masswerk.at</A>&gt; for contact information.\r
-       </TD></TR>\r
-       <TR><TD CLASS="lh13">\r
-       <B>Distribution</B><BR><BR>\r
-\r
-       This JavaScript-library may be distributed freely as long it is distributed together with the &quot;readme.txt&quot; and the sample HTML-documents and this document.<BR><BR>\r
-\r
-       Any changes to the library should be commented and be documented in the readme-file.<BR>\r
-       Any changes must be reflected in the `Terminal.version' string as &quot;Version.Subversion&nbsp;(compatibility)&quot;.\r
-       </TD></TR>\r
-       <TR><TD CLASS="lh13">\r
-       <B>Disclaimer</B><BR><BR>\r
-\r
-       This software is distributed AS IS and in the hope that it will be useful, but WITHOUT ANY\r
-       WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\r
-       PURPOSE. The entire risk as to the quality and performance of the product is borne by the\r
-       user. No use of the product is authorized hereunder except under this disclaimer.\r
-       </TD></TR>\r
-       <TR><TD CLASS="lh13">\r
-       <B>History</B><BR><BR>\r
-\r
-       This library evolved from the terminal script &quot;TermApp&quot; ((c) N. Landsteiner 2003) and is in its\r
-       current form a down scaled spinn-off of the &quot;JS/UIX&quot; project. (JS/UIX is not a free&nbsp;software by now.)\r
-       c.f.: &lt;<A HREF="http://www.masswerk.at/jsuix/" TARGET="_blank">http://www.masswerk.at/jsuix</A>&gt;<BR><BR>\r
-\r
-       For version history: see the <A HREF="readme.txt">readme.txt</A>.\r
-       </TD></TR>\r
-       <TR><TD CLASS="lh13">\r
-       &nbsp;<BR>\r
-       <B>Download</B><BR><BR>\r
-       Be sure to have read the license information and the disclamer and that you are willing to respect copyrights.<BR><BR>\r
-\r
-       <SPAN CLASS="prop">Download:</SPAN> <A HREF="termlib.zip">termlib.zip</A> (~ 40 KB, incl. docs)<BR><BR>\r
-       Current version is &quot;1.07 (original)&quot;.<BR>\r
-       The files are now provided with line breaks  in format &lt;CRLF&gt;.<BR>\r
-       &nbsp;\r
-       </TD></TR>\r
-       <TR><TD CLASS="lh13">\r
-       <B>Author</B><BR><BR>\r
-       &copy; Norbert Landsteiner 2003-2005<BR>\r
-       mass:werk &#150; media environments<BR>\r
-       <A HREF="http://www.masswerk.at/" TARGET="_blank">http://www.masswerk.at</A>\r
-       </TD></TR>\r
-       <TR><TD CLASS="lh13">\r
-       &nbsp;<BR>\r
-       Author's note:<BR>\r
-       Please do not contact me on questions of simple usage. There is an extensive documentation (readme.txt) including plenty of sample code that should provide all information you need.\r
-       </TD></TR>\r
-       <TR><TD CLASS="lh13">\r
-       &nbsp;<BR>\r
-               <A HREF="#top">&gt; top of page</A>\r
-       </TD></TR>\r
-       <TR><TD CLASS="lh13">\r
-       &nbsp;\r
-       </TD></TR>\r
-</TABLE>\r
-\r
-<DIV ID="termDiv" STYLE="position:absolute; top:20px; left:100px;"></DIV>\r
-\r
-</BODY>\r
+<HTML>
+<HEAD>
+       <TITLE>mass:werk termlib</TITLE>
+
+<STYLE TYPE="text/css">
+body,p,a,td {
+       font-family: courier,fixed,swiss,sans-serif;
+       font-size: 12px;
+       color: #cccccc;
+}
+.lh13 {
+       line-height: 13px;
+}
+.lh15 {
+       line-height: 15px;
+}
+pre {
+       font-family: courier,fixed,swiss,sans-serif;
+       font-size: 12px;
+       color: #ccffaa;
+       line-height: 15px;
+}
+.prop {
+       font-family: courier,fixed,swiss,sans-serif;
+       color: #bbee99;
+       font-size: 12px;
+       line-height: 15px;
+}
+h1 {
+       font-family: courier,fixed,swiss,sans-serif;
+       font-size: 16px;
+       color: #cccccc;
+}
+a,a:link,a:visited {
+       text-decoration: none;
+       color: #77dd11;
+}
+a:hover {
+       text-decoration: underline;
+       color: #77dd11;
+}
+a:active {
+       text-decoration: underline;
+       color: #dddddd;
+}
+
+@media print {
+       body { background-color: #ffffff; }
+       body,p,a,td {
+               font-family: courier,fixed,swiss,sans-serif;
+               font-size: 12px;
+               color: #000000;
+       }
+       .lh13 {
+               line-height: 13px;
+       }
+       .lh15 {
+               line-height: 15px;
+       }
+       pre,.prop {
+               font-family: courier,fixed,swiss,sans-serif;
+               font-size: 12px;
+               color: #000000;
+               line-height: 15px;
+       }
+       h1 {
+               font-family: courier,fixed,swiss,sans-serif;
+               font-size: 16px;
+               color: #000000;
+       }
+       a,a:link,a:visited {
+               text-decoration: none;
+               color: #000000;
+       }
+       a:hover {
+               text-decoration: underline;
+               color: #000000;
+       }
+       a:active {
+               text-decoration: underline;
+               color: #000000;
+       }
+}
+</STYLE>
+</HEAD>
+
+
+<BODY BGCOLOR="#222222" LINK="#77dd11" TEXT="#cccccc" ALINK="#dddddd" VLINK="#77dd11"
+TOPMARGIN="0" BOTTOMMARGIN="0" LEFTMARGIN="0" RIGHTMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0"><A NAME="top"></A>
+
+<TABLE BORDER="0" CELLSPACING="20" CELLPADDING="0" ALIGN="center">
+<TR>
+       <TD NOWRAP>termlib.js home</TD>
+       <TD>|</TD>
+       <TD NOWRAP><A HREF="multiterm_test.html">multiple terminal test</A></TD>
+       <TD>|</TD>
+       <TD NOWRAP><A HREF="parser_sample.html">sample parser</A></TD>
+       <TD>|</TD>
+       <TD NOWRAP><A HREF="faq.html">faq</A></TD>
+       <TD>|</TD>
+       <TD NOWRAP><A HREF="readme.txt" TITLE="readme.txt (text/plain)">documentation</A></TD>
+</TR>
+</TABLE>
+
+<TABLE BORDER="0" CELLSPACING="20" CELLPADDING="0" WIDTH="700" ALIGN="center">
+       <TR><TD>
+               <H1>mass:werk termlib.js</H1>
+       </TD></TR>
+       <TR><TD CLASS="lh13">
+               The JavaScript library &quot;termlib.js&quot; provides a `Terminal' object, which
+               facillitates a simple and object oriented approach to generate and control a
+               terminal-like interface for web services.<BR><BR>
+               
+               "termlib.js" features direct keyboard input and powerful output methods
+               for multiple and simultanious instances of the `Terminal' object.<BR><BR>
+               
+               The library was written with the aim of simple usage and a maximum of compatibility
+               with minimal foot print in the global namespace.<BR><BR><BR>
+               
+               
+               A short example:<BR>
+  <PRE>
+  var term = new Terminal( {handler: termHandler} );
+  term.open();
+
+  function termHandler() {
+     this.newLine();
+     var line = this.lineBuffer;
+     if (line != &quot;&quot;) {
+        this.write(&quot;You typed: &quot;+line);
+     }
+     this.prompt();
+  }
+  </PRE>
+       </TD></TR>
+       <TR><TD CLASS="lh13">
+       <B>License</B><BR><BR>
+
+       This JavaScript-library is <U>free for private and academic use</U>.
+       Please include a readable copyright statement and a backlink to &lt;http://www.masswerk.at&gt; in the
+       web page. The library should always be accompanied by the &quot;readme.txt&quot; and the sample HTML-documents.<BR><BR>
+
+       The term &quot;private use&quot; includes any personal or non-commercial use, which is not related
+       to commercial activites, but excludes intranet, extranet and/or public net applications
+       that are related to any kind of commercial or profit oriented activity.<BR><BR>
+
+       For commercial use see &lt;<A HREF="http://www.masswerk.at/" TARGET="_blank">http://www.masswerk.at</A>&gt; for contact information.
+       </TD></TR>
+       <TR><TD CLASS="lh13">
+       <B>Distribution</B><BR><BR>
+
+       This JavaScript-library may be distributed freely as long it is distributed together with the &quot;readme.txt&quot; and the sample HTML-documents and this document.<BR><BR>
+
+       Any changes to the library should be commented and be documented in the readme-file.<BR>
+       Any changes must be reflected in the `Terminal.version' string as &quot;Version.Subversion&nbsp;(compatibility)&quot;.
+       </TD></TR>
+       <TR><TD CLASS="lh13">
+       <B>Disclaimer</B><BR><BR>
+
+       This software is distributed AS IS and in the hope that it will be useful, but WITHOUT ANY
+       WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+       PURPOSE. The entire risk as to the quality and performance of the product is borne by the
+       user. No use of the product is authorized hereunder except under this disclaimer.
+       </TD></TR>
+       <TR><TD CLASS="lh13">
+       <B>History</B><BR><BR>
+
+       This library evolved from the terminal script &quot;TermApp&quot; ((c) N. Landsteiner 2003) and is in its
+       current form a down scaled spinn-off of the &quot;JS/UIX&quot; project. (JS/UIX is not a free&nbsp;software by now.)
+       c.f.: &lt;<A HREF="http://www.masswerk.at/jsuix/" TARGET="_blank">http://www.masswerk.at/jsuix</A>&gt;<BR><BR>
+
+       For version history: see the <A HREF="readme.txt">readme.txt</A>.
+       </TD></TR>
+       <TR><TD CLASS="lh13">
+       &nbsp;<BR>
+       <B>Download</B><BR><BR>
+       Be sure to have read the license information and the disclamer and that you are willing to respect copyrights.<BR><BR>
+
+       <SPAN CLASS="prop">Download:</SPAN> <A HREF="termlib.zip">termlib.zip</A> (~ 40 KB, incl. docs)<BR><BR>
+       Current version is &quot;1.07 (original)&quot;.<BR>
+       The files are now provided with line breaks  in format &lt;CRLF&gt;.<BR>
+       &nbsp;
+       </TD></TR>
+       <TR><TD CLASS="lh13">
+       <B>Author</B><BR><BR>
+       &copy; Norbert Landsteiner 2003-2005<BR>
+       mass:werk &#150; media environments<BR>
+       <A HREF="http://www.masswerk.at/" TARGET="_blank">http://www.masswerk.at</A>
+       </TD></TR>
+       <TR><TD CLASS="lh13">
+       &nbsp;<BR>
+       Author's note:<BR>
+       Please do not contact me on questions of simple usage. There is an extensive documentation (readme.txt) including plenty of sample code that should provide all information you need.
+       </TD></TR>
+       <TR><TD CLASS="lh13">
+       &nbsp;<BR>
+               <A HREF="#top">&gt; top of page</A>
+       </TD></TR>
+       <TR><TD CLASS="lh13">
+       &nbsp;
+       </TD></TR>
+</TABLE>
+
+<DIV ID="termDiv" STYLE="position:absolute; top:20px; left:100px;"></DIV>
+
+</BODY>
 </HTML>
\ No newline at end of file