Open GoogleCodeExporter opened 9 years ago
Solution: patch for vt100.h to add the unrecognised keys for the "Belgian
French" keyboard:
2933a2934,2941
> // Belgian French keyboard conflicts
> // : - < ) $
> // : 58
> // < 60
> // $ 164
> // ù 165
> // ) 169
> // - 173
2946c2954,2960
< event.keyCode == 226;
---
> event.keyCode == 226 ||
> event.keyCode == 58 ||
> event.keyCode == 60 ||
> event.keyCode == 164 ||
> event.keyCode == 165 ||
> event.keyCode == 169 ||
> event.keyCode == 173;
I made the change to the vt100.h file starting from the shellinabox-2.14.tar.gz
source archive and built the binary.
However I had some issues in the deployment of shellinaboxd, so I switched to
retrofitting the above changes in the ShellInABox.js file from version 2.14 and
serving it with the --static-file option.
I can confirm that, with the above changes, it works fine with my Belgian
French keyboard.
Michel
Original comment by mjacqu...@gmail.com
on 10 Jan 2014 at 1:11
Original issue reported on code.google.com by
ghpi...@gmail.com
on 16 Oct 2012 at 6:54