mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
150 lines
3.4 KiB
HTML
150 lines
3.4 KiB
HTML
|
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||
|
<meta name="Author" content="Norris Boyd">
|
||
|
<meta name="GENERATOR" content="Mozilla/4.75 [en] (WinNT; U) [Netscape]">
|
||
|
<meta name="KeyWords" content="Rhino, JavaScript, Java">
|
||
|
<title>Rhino Documentation</title>
|
||
|
</head>
|
||
|
<body bgcolor="#FFFFFF">
|
||
|
|
||
|
<center>
|
||
|
<h1>
|
||
|
Rhino Documentation</h1></center>
|
||
|
<b><i><font size=+1>General</font></i></b>
|
||
|
<table WIDTH="100%" >
|
||
|
<tr>
|
||
|
<td><a href="overview.html">Overview</a></td>
|
||
|
|
||
|
<td>An overview of the JavaScript language and of Rhino.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="limits.html">Requirements and Limitations</a></td>
|
||
|
|
||
|
<td>What you must have to run Rhino; what Rhino cannot do.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="debugger.html">Rhino Debugger</a></td>
|
||
|
|
||
|
<td>A debugger for debugging JavaScript running in Rhino.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="opt.html">Optimization</a></td>
|
||
|
|
||
|
<td>Details on the various optimization levels.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="http://sourceforge.net/projects/jscorba">JS/CORBA Adapter</a></td>
|
||
|
|
||
|
<td>Provides a mechanism for arbitrary JavaScript objects to interact with
|
||
|
each other transparently in a distributed JavaScript system using CORBA.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="bsf.html">Using Rhino with BSF and Apache</a></td>
|
||
|
|
||
|
<td>How to use Rhino with apps that support BSF.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="changes.html">Recent Changes</a></td>
|
||
|
|
||
|
<td>Describes recent changes to Rhino.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="faq.html">FAQ</a></td>
|
||
|
|
||
|
<td>Answers to frequently asked questions about Rhino.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="http://industry.java.sun.com/javaone/99/event/0,1768,629,00.html">1999
|
||
|
JavaOne session on Rhino</a></td>
|
||
|
|
||
|
<td>A talk on Rhino with slides. Also see the
|
||
|
<a href="javaone.html">followup</a>.</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<p><b><i><font size=+1>Writing Scripts</font></i></b>
|
||
|
<table WIDTH="100%" >
|
||
|
<tr>
|
||
|
<td><a href="scriptjava.html">Scripting Java</a></td>
|
||
|
|
||
|
<td>How to use Rhino to script Java classes.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="perf.html">Performance Hints</a></td>
|
||
|
|
||
|
<td>Some tips on writing faster JavaScript code.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="tools.html">Tools</a></td>
|
||
|
|
||
|
<td>Some tools for developing JavaScript scripts.</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<p><b><i><font size=+1>Embedding Rhino</font></i></b>
|
||
|
<table WIDTH="100%" >
|
||
|
<tr>
|
||
|
<td><a href="tutorial.html">Embedding tutorial</a></td>
|
||
|
|
||
|
<td>A short tutorial on how to embed Rhino into your application.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="../js/rhino/index.html">API javadoc Reference</a></td>
|
||
|
|
||
|
<td>An annotated outline of the programming interface to Rhino (tip only).</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="scopes.html">Scopes and Contexts</a></td>
|
||
|
|
||
|
<td>Describes how to use scopes and contexts for the best performance and
|
||
|
flexibility, with an eye toward multithreaded environments.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="runtime.html">Runtime</a></td>
|
||
|
|
||
|
<td>A brief description of the JavaScript runtime.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="footprint.html">Small Footprint</a></td>
|
||
|
|
||
|
<td>Hints for those interested in small-footprint embeddings.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><a href="examples.html">Examples</a></td>
|
||
|
|
||
|
<td>A set of examples showing how to control the JavaScript engine and
|
||
|
build JavaScript host objects.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td><font color="#000000"><a href="http://www.mozilla.org/js/tests/library.html">Testing
|
||
|
</a></font></td>
|
||
|
|
||
|
<td>How to run the JavaScript test suite.</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<h3>
|
||
|
|
||
|
<hr WIDTH="100%"><a href="index.html">back to top</a></h3>
|
||
|
|
||
|
</body>
|
||
|
</html>
|