torero
authorBernhard Urban <lewurm@gmail.com>
Tue, 30 Mar 2010 07:15:55 +0000 (09:15 +0200)
committerBernhard Urban <lewurm@gmail.com>
Tue, 30 Mar 2010 07:15:55 +0000 (09:15 +0200)
.gitignore
torero/TApplet.html [new file with mode: 0644]
torero/buildinfo [new file with mode: 0644]
torero/runapplet.bat [new file with mode: 0644]
torero/runapplet.sh [new file with mode: 0755]
torero/torero.bat [new file with mode: 0644]
torero/torero.jar [new file with mode: 0644]
torero/torero.policy [new file with mode: 0644]
torero/torero.sh [new file with mode: 0755]

index 2ba86134da98249274a895f817b24761e2f20037..8adb59df8153433c9c697dc5678c522575885314 100644 (file)
@@ -23,3 +23,4 @@ parser/parser.h
 parser/scanner.c
 
 #weitere eintragen...
+torero/torero.log
diff --git a/torero/TApplet.html b/torero/TApplet.html
new file mode 100644 (file)
index 0000000..09454c1
--- /dev/null
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">\r
+<html>\r
+<head>\r
+  <title>Torero Applet</title>\r
+</head>\r
+    <body>\r
+       \r
+<h1>Torero Applet</h1>\r
+<table cellpadding="2" cellspacing="2" border="3">\r
+  <tbody>\r
+    <tr>\r
+      <td>\r
+       <applet codebase="." code="torero.Applet" width=800 height=600>\r
+       <param name=archive value="torero.jar">\r
+       </applet>\r
+      </td>\r
+    </tr>\r
+  </tbody>\r
+</table>\r
+<br>\r
+   \r
+</body>\r
+</html>\r
diff --git a/torero/buildinfo b/torero/buildinfo
new file mode 100644 (file)
index 0000000..a0e6891
--- /dev/null
@@ -0,0 +1,8 @@
+Built on:
+Linux linux 2.6.5-7.108-default #1 Wed Aug 25 13:34:40 UTC 2004 i686 athlon i386 GNU/Linux
+At:
+Sat Nov  6 00:25:43 CET 2004
+Using:
+java version "1.4.2_03"
+Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_03-b02)
+Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode)
diff --git a/torero/runapplet.bat b/torero/runapplet.bat
new file mode 100644 (file)
index 0000000..86dd7e5
--- /dev/null
@@ -0,0 +1 @@
+appletviewer -J"-Djava.security.policy=torero.policy" TApplet.html
diff --git a/torero/runapplet.sh b/torero/runapplet.sh
new file mode 100755 (executable)
index 0000000..39b8393
--- /dev/null
@@ -0,0 +1,2 @@
+#!/bin/sh
+appletviewer -J"-Djava.security.policy=torero.policy" TApplet.html
diff --git a/torero/torero.bat b/torero/torero.bat
new file mode 100644 (file)
index 0000000..d7ee39d
--- /dev/null
@@ -0,0 +1 @@
+java -jar torero.jar %1 %2 %3 %4 %5
\ No newline at end of file
diff --git a/torero/torero.jar b/torero/torero.jar
new file mode 100644 (file)
index 0000000..121a737
Binary files /dev/null and b/torero/torero.jar differ
diff --git a/torero/torero.policy b/torero/torero.policy
new file mode 100644 (file)
index 0000000..79513d4
--- /dev/null
@@ -0,0 +1,4 @@
+grant {
+  permission java.security.AllPermission;
+};
+
diff --git a/torero/torero.sh b/torero/torero.sh
new file mode 100755 (executable)
index 0000000..6cec952
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+torerodir=`dirname $0`;
+java -jar $torerodir/torero.jar $1 $2 >> $torerodir/torero.log 2>&1