applet-html.patch revision 1124
1124N/AIndex: java/src/com/tigervnc/vncviewer/Makefile
1124N/A===================================================================
1124N/A--- java/src/com/tigervnc/vncviewer/Makefile (revision 3916)
1124N/A+++ java/src/com/tigervnc/vncviewer/Makefile (working copy)
1124N/A@@ -8,7 +8,7 @@
1124N/A JAR = jar
1124N/A ARCHIVE = VncViewer.jar
1124N/A MANIFEST = MANIFEST.MF
1124N/A-PAGES = index.vnc
1124N/A+PAGES = index.vnc index.html
1124N/A INSTALL_DIR = /usr/local/vnc/classes
1124N/A
1124N/A CLASSES = VncViewer.class RfbProto.class AuthPanel.class VncCanvas.class \
1124N/AIndex: java/src/com/tigervnc/vncviewer/index.vnc
1124N/A===================================================================
1124N/A--- java/src/com/tigervnc/vncviewer/index.vnc (revision 3916)
1124N/A+++ java/src/com/tigervnc/vncviewer/index.vnc (working copy)
1124N/A@@ -1,3 +1,4 @@
1124N/A+<HTML><HEAD>
1124N/A <!--
1124N/A index.vnc - default HTML page for TigerVNC Java viewer applet, to be
1124N/A used with Xvnc. On any file ending in .vnc, the HTTP server embedded in
1124N/A@@ -6,20 +7,20 @@
1124N/A PARAMS. Use two dollar signs ($$) to get a dollar sign in the generated
1124N/A HTML page.
1124N/A
1124N/A- NOTE: the $PARAMS variable is not supported by the standard VNC, so
1124N/A+ NOTE: the PARAMS variable is not supported by the standard VNC, so
1124N/A make sure you have TigerVNC on the server side, if you're using this
1124N/A variable.
1124N/A -->
1124N/A-
1124N/A-<HTML>
1124N/A <TITLE>
1124N/A $USER's $DESKTOP desktop ($DISPLAY)
1124N/A </TITLE>
1124N/A-<APPLET CODE=com.tigervnc.vncviewer.VncViewer ARCHIVE=VncViewer.jar
1124N/A- WIDTH=$APPLETWIDTH HEIGHT=$APPLETHEIGHT>
1124N/A-<param name=PORT value=$PORT>
1124N/A+</HEAD><BODY>
1124N/A+<APPLET CODE="com.tigervnc.vncviewer.VncViewer" ARCHIVE="VncViewer.jar"
1124N/A+ WIDTH="$APPLETWIDTH" HEIGHT="$APPLETHEIGHT">
1124N/A+<param name="PORT" value="$PORT">
1124N/A $PARAMS
1124N/A </APPLET>
1124N/A <BR>
1124N/A <A href="http://www.tigervnc.org/">TigerVNC site</A>
1124N/A+</BODY>
1124N/A </HTML>
1124N/AIndex: java/src/com/tigervnc/vncviewer/index.html
1124N/A===================================================================
1124N/A--- java/src/com/tigervnc/vncviewer/index.html (revision 3916)
1124N/A+++ java/src/com/tigervnc/vncviewer/index.html (working copy)
1124N/A@@ -1,3 +1,4 @@
1124N/A+<HTML><HEAD>
1124N/A <!--
1124N/A index.html - an example HTML page for TigerVNC Java viewer applet, to be
1124N/A used with a standalone Web server running on the same machine where the
1124N/A@@ -15,15 +16,15 @@
1124N/A actual desktop size on the server (height should be increased to leave
1124N/A enough space for the button panel).
1124N/A -->
1124N/A-
1124N/A-<HTML>
1124N/A <TITLE>
1124N/A TigerVNC desktop
1124N/A </TITLE>
1124N/A+</HEAD><BODY>
1124N/A <APPLET CODE="com.tigervnc.vncviewer.VncViewer" ARCHIVE="VncViewer.jar"
1124N/A WIDTH="800" HEIGHT="632">
1124N/A <PARAM NAME="PORT" VALUE="5901">
1124N/A </APPLET>
1124N/A <BR>
1124N/A <A href="http://www.tigervnc.org/">TigerVNC site</A>
1124N/A+</BODY>
1124N/A </HTML>