typos
This commit is contained in:
parent
25425bad31
commit
c8b6a3eddb
5 changed files with 6 additions and 6 deletions
|
@ -41,7 +41,7 @@ you point your browser to the site.
|
||||||
|
|
||||||
At the very least, you need a file called "certificate.pem" that includes
|
At the very least, you need a file called "certificate.pem" that includes
|
||||||
both the private key and the public certificate in PEM (i.e. ASCII) format.
|
both the private key and the public certificate in PEM (i.e. ASCII) format.
|
||||||
Additionally, you should create files for each of the publically visible
|
Additionally, you should create files for each of the publicly visible
|
||||||
hostnames that your machine has. These are named "certificate-${FQDN}.pem".
|
hostnames that your machine has. These are named "certificate-${FQDN}.pem".
|
||||||
You probably also want "certificate-localhost.pem".
|
You probably also want "certificate-localhost.pem".
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
# Client Side
|
# Client Side
|
||||||
#
|
#
|
||||||
|
|
||||||
Shell In A Box accepts messages formated as JSON strings with 'type' and 'data'
|
Shell In A Box accepts messages formatted as JSON strings with 'type' and 'data'
|
||||||
fields. Messages with same format can be passed back to parent (this) window.
|
fields. Messages with same format can be passed back to parent (this) window.
|
||||||
|
|
||||||
Message example:
|
Message example:
|
||||||
|
|
|
@ -809,7 +809,7 @@ static void usage(void) {
|
||||||
" -f, --static-file=URL:FILE serve static file from URL path\n"
|
" -f, --static-file=URL:FILE serve static file from URL path\n"
|
||||||
" -g, --group=GID switch to this group (default: %s)\n"
|
" -g, --group=GID switch to this group (default: %s)\n"
|
||||||
" -h, --help print this message\n"
|
" -h, --help print this message\n"
|
||||||
" --linkify=[none|normal|agressive] default is \"normal\"\n"
|
" --linkify=[none|normal|aggressive] default is \"normal\"\n"
|
||||||
" --localhost-only only listen on 127.0.0.1\n"
|
" --localhost-only only listen on 127.0.0.1\n"
|
||||||
" --no-beep suppress all audio output\n"
|
" --no-beep suppress all audio output\n"
|
||||||
" -n, --numeric do not resolve hostnames\n"
|
" -n, --numeric do not resolve hostnames\n"
|
||||||
|
|
|
@ -282,7 +282,7 @@ Display a brief usage message showing the valid command line parameters.
|
||||||
.TP
|
.TP
|
||||||
\fB--linkify\fP=[\fBnone\fP|\fBnormal\fP|\fBaggressive\fP]
|
\fB--linkify\fP=[\fBnone\fP|\fBnormal\fP|\fBaggressive\fP]
|
||||||
the daemon attempts to recognize URLs in the terminal output and makes them
|
the daemon attempts to recognize URLs in the terminal output and makes them
|
||||||
clickable. This is not neccessarily a fool-proof process and both false
|
clickable. This is not necessarily a fool-proof process and both false
|
||||||
negatives and false positives are possible. By default, only URLs starting
|
negatives and false positives are possible. By default, only URLs starting
|
||||||
with a well known protocol of
|
with a well known protocol of
|
||||||
.BR http:// ,\ https:// ,\ ftp:// ,\ or\ mailto:
|
.BR http:// ,\ https:// ,\ ftp:// ,\ or\ mailto:
|
||||||
|
|
|
@ -3904,7 +3904,7 @@ VT100.prototype.csim = function() {
|
||||||
case 27: this.attr &= ~ ATTR_REVERSE; break;
|
case 27: this.attr &= ~ ATTR_REVERSE; break;
|
||||||
case 38:
|
case 38:
|
||||||
if (this.npar >= (i+2) && this.par[i+1] == 5) {
|
if (this.npar >= (i+2) && this.par[i+1] == 5) {
|
||||||
// Foreground color for extended color mode (256 colors). Escape code is formated
|
// Foreground color for extended color mode (256 colors). Escape code is formatted
|
||||||
// as: ESC 38; 5; 0-255. Last parameter is color code in range [0-255]. This is
|
// as: ESC 38; 5; 0-255. Last parameter is color code in range [0-255]. This is
|
||||||
// not VT100 standard.
|
// not VT100 standard.
|
||||||
this.attrFg = (this.par[i+2] >= 0 && this.par[i+2] <= 255) ? this.par[i+2] : false;
|
this.attrFg = (this.par[i+2] >= 0 && this.par[i+2] <= 255) ? this.par[i+2] : false;
|
||||||
|
@ -3920,7 +3920,7 @@ VT100.prototype.csim = function() {
|
||||||
break;
|
break;
|
||||||
case 48:
|
case 48:
|
||||||
if (this.npar >= (i+2) && this.par[i+1] == 5) {
|
if (this.npar >= (i+2) && this.par[i+1] == 5) {
|
||||||
// Background color for extended color mode (256 colors). Escape code is formated
|
// Background color for extended color mode (256 colors). Escape code is formatted
|
||||||
// as: ESC 48; 5; 0-255. Last parameter is color code in range [0-255]. This is
|
// as: ESC 48; 5; 0-255. Last parameter is color code in range [0-255]. This is
|
||||||
// not VT100 standard.
|
// not VT100 standard.
|
||||||
this.attrBg = (this.par[i+2] >= 0 && this.par[i+2] <= 255) ? this.par[i+2] : false;
|
this.attrBg = (this.par[i+2] >= 0 && this.par[i+2] <= 255) ? this.par[i+2] : false;
|
||||||
|
|
Loading…
Reference in a new issue