]> source.dussan.org Git - tigervnc.git/commitdiff
Allowing relative URLs as values for the "URL" parameter, in the
authorConstantin Kaplinsky <const@tightvnc.com>
Sun, 22 Sep 2002 08:36:43 +0000 (08:36 +0000)
committerConstantin Kaplinsky <const@tightvnc.com>
Sun, 22 Sep 2002 08:36:43 +0000 (08:36 +0000)
applet mode.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2524 3789f03b-4d11-0410-bbf8-ca57d06f2519

java/src/com/tightvnc/rfbplayer/README
java/src/com/tightvnc/rfbplayer/RfbPlayer.java
java/src/com/tightvnc/rfbplayer/index.html

index a021ca488abb078c8b627062c286af5725a5709b..54975207091a9d443c03c0d34a1e813453eb650d 100644 (file)
@@ -17,10 +17,11 @@ Applet Parameters
     Value: URL of the session file to play.
     Default: none (required parameter).
 
-    This parameter tells the player which session file to play. Please note
-    that if the player operates as an unsigned applet, it is able to play
-    only files from the host where the applet was loaded from. It's a usual
-    JVM security limitation.
+    This parameter tells the player which session file to play. The URL can
+    be either a complete one (e.g. "file:/your/path/session.fbs") or relative
+    (e.g. "session.fbs"). Please note that if the player operates as an
+    unsigned applet, it is able to play only files from the host where the
+    applet was loaded from. It's a usual JVM security limitation.
 
 --> "Position"
 
index 32568047e0767d0552cfa0f23328969f925cd4a5..0a7838c1be29364563efdb88a8071f401f0e8e56 100644 (file)
@@ -120,7 +120,11 @@ public class RfbPlayer extends java.applet.Applet
     }
 
     try {
-      url = new URL(sessionURL);
+      if (inAnApplet) {
+       url = new URL(getCodeBase(), sessionURL);
+      } else {
+       url = new URL(sessionURL);
+      }
       rfb = new RfbProto(url);
 
       vc = new VncCanvas(this);
index f5e0eea0ae7503c466b6bf96621771ab94552fb7..303bc5d2d5cd630d2ea781b18b2d00d4194895e1 100644 (file)
@@ -3,7 +3,7 @@
 <BODY>
 <APPLET CODE=RfbPlayer.class ARCHIVE=RfbPlayer.jar
         WIDTH=800 HEIGHT=640>
-<param name=FILE value="./session.fbs">
+<param name=URL value="session.fbs">
 </APPLET>
 </BODY>
 </HTML>