pve-vncterm/vncterm
kozorizki 77475f8810 1.8.0-alt1
- 1.8.0
2024-12-19 14:10:43 +03:00
..
debian 1.8.0-alt1 2024-12-19 14:10:43 +03:00
vncpatches 1.6.2-alt1 2020-09-04 09:35:25 +00:00
.gitignore 1.6.2-alt1 2020-09-04 09:35:25 +00:00
genfont2.c 1.5.2-alt1 2017-07-19 07:39:44 +00:00
genfont.c 1.5.2-alt1 2017-07-19 07:39:44 +00:00
glyphs.h 1.2-alt1 2016-06-06 14:24:53 +00:00
LibVNCServer-0.9.14.tar.gz 1.8.0-alt1 2024-12-19 14:10:43 +03:00
Makefile 1.8.0-alt1 2024-12-19 14:10:43 +03:00
README 1.2-alt1 2016-06-06 14:24:53 +00:00
TODO 1.2-alt1 2016-06-06 14:24:53 +00:00
vncterm.c 1.5.2-alt1 2017-07-19 07:39:44 +00:00
vncterm.h 1.5.2-alt1 2017-07-19 07:39:44 +00:00
vncterm.pod 1.2-alt1 2016-06-06 14:24:53 +00:00

Simple VNC terminal emulator (inspired by VncCommand)

We try to simulate a 'xterm', because we want to support:

	- unicode
	- mouse
	
and xterm seems to be the best solution for that.

some code is inspired by: qemu, VncCommand, xterm, linux kernel, ...

libvncserver
============

LibVNCServer does not suppurt TLS currently. So we staically link to a
patched versions on that library instead of using the debian shared
libraries.

VNC Java Applet (for use in web based applications):
====================================================

We use patched VncViewer files (TigerVNC 1.1.0 sources):

http://www.tigervnc.com/

We sign the applet to make clipboard working.

Note: Newer tigervnc 1.2.0 always use a toplevel window, which
make it basically useless as applet.

http://sourceforge.net/tracker/?func=detail&aid=3488166&group_id=254363&atid=1126849

I put patches for 1.2.0 to newtigerpatches subdir.

Note: javascript-events.patch requires JSObject, which is inside plugin.jar
previously provided by sun-java-jdk. For wheezy/openjdk, we need to install
package "icedtea-netx-common" which contains that file.

TODO:
=====

Useful sources for terminal emulation:
	
   xterm source: ctlseqs.txt
   http://vt100.net/docs/vt220-rm
   man 5 terminfo
   infocmp xterm
   man console_codes

Fonts: 

we currently use fonts provided by the debian console-data package:
see /usr/share/consolefonts/*

Only 8x16 fonts are supported

TODO contains a list of unimplemented things.