|
|
|
@ -6,17 +6,14 @@ if [ "$1" = "--kinetd" ]; then
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
read request url httptype || exit 0
|
|
|
|
|
url="${url/
|
|
|
|
|
/}"
|
|
|
|
|
httptype="${httptype/
|
|
|
|
|
/}"
|
|
|
|
|
url="${url/
/}"
|
|
|
|
|
httptype="${httptype/
/}"
|
|
|
|
|
|
|
|
|
|
if [ "x$httptype" != "x" ]; then
|
|
|
|
|
line="x"
|
|
|
|
|
while [ -n "$line" ]; do
|
|
|
|
|
read line || exit 0
|
|
|
|
|
line="${line/
|
|
|
|
|
/}"
|
|
|
|
|
line="${line/
/}"
|
|
|
|
|
done
|
|
|
|
|
fi
|
|
|
|
|
# echo "url = $url, request = $request" >> /tmp/httpd.log
|
|
|
|
@ -38,7 +35,7 @@ case "$url" in
|
|
|
|
|
content="
|
|
|
|
|
<HTML><HEAD><TITLE>$LOGNAME's desktop</TITLE></HEAD>
|
|
|
|
|
<BODY>
|
|
|
|
|
<APPLET CODE=VncViewer.class ARCHIVE=VncViewer.jar WIDTH=$width HEIGHT=$height>
|
|
|
|
|
<APPLET CODE=vncviewer/VNCViewer.class ARCHIVE=vncviewer.jar WIDTH=$width HEIGHT=$height>
|
|
|
|
|
<param name=PORT value=$port>
|
|
|
|
|
</APPLET>
|
|
|
|
|
</BODY></HTML>"
|
|
|
|
|