Recovered from cvs revision 2007-11-05 14:20:00
This commit is contained in:
@ -1,8 +1,57 @@
|
||||
<html>
|
||||
<body>
|
||||
<head>
|
||||
<title>Online ASE AWK Interpreter</title>
|
||||
<style>
|
||||
body { font-family: tahoma, arial, sans-serif; }
|
||||
p { font-size: 13px; }
|
||||
h2 { font-size: 24px; font-style: italic; }
|
||||
</style>
|
||||
|
||||
<applet code="AseAwkApplet" archive="aseawk.jar" codebase="." width="640" height="480">
|
||||
<script language='javascript'>
|
||||
|
||||
function resize()
|
||||
{
|
||||
if (navigator.appName.indexOf("Microsoft") != -1)
|
||||
{
|
||||
width = document.body.clientWidth;
|
||||
height = document.body.clientHeight;
|
||||
}
|
||||
else
|
||||
{
|
||||
width = window.innerWidth - 20;
|
||||
height = window.innerHeight - 20;
|
||||
}
|
||||
|
||||
document.awkApplet.width = width - 250;
|
||||
document.awkApplet.height = height - 80;
|
||||
window.scroll (0, 0);
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onLoad="resize()" onResize="resize()">
|
||||
|
||||
<h2>Online ASE AWK Interpreter</h2>
|
||||
|
||||
<table cellspacing=3>
|
||||
<tr>
|
||||
<td valign=top>
|
||||
<applet name="awkApplet" code="AseAwkApplet" archive="bin/aseawk.jar" codebase="." width="700" height="550">
|
||||
</applet>
|
||||
</td>
|
||||
<td valign=top>
|
||||
<p>
|
||||
This applet is a test program for JNI binding to the <a href='http://kldp.net/projects/ase/'>ASE</a> AWK interpreter. The AWK language supported is slightly different from the standard in that all statements must end with a semicolon. You may enter a valid AWK program into the source input window and click on the <b>Run Awk</b> button. You may enter arbitrary text into the console input window if the AWK program entered contains an action-pattern block.
|
||||
</p>
|
||||
<p>
|
||||
<b>Note</b>: This java applet has been signed with a self-signed certificate. If you allow the program to run, it will download a JNI DLL into your home directory. Currently, it supports Microsoft Windows only and the only file downloaded by this applet is aseawk_jni.dll. If you decide to clean your system later, don't forget to delete this file from your home directory.
|
||||
</p>
|
||||
<p>
|
||||
Copyright (c) 2006-2007, Hyung-Hwan Chung. All rights reserved.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: AseAwkPanel.java,v 1.21 2007/11/03 14:35:02 bacon Exp $
|
||||
* $Id: AseAwkPanel.java,v 1.22 2007/11/04 05:01:41 bacon Exp $
|
||||
*/
|
||||
|
||||
import java.awt.*;
|
||||
@ -860,6 +860,7 @@ public class AseAwkPanel extends Panel implements DropTargetListener
|
||||
}
|
||||
}
|
||||
|
||||
dtde.rejectDrop ();
|
||||
}
|
||||
|
||||
private void loadFileTo (File file, TextArea textArea) throws IOException
|
||||
|
Reference in New Issue
Block a user