From c8b6a3eddb637d1a9e4e56daadf931d432db866d Mon Sep 17 00:00:00 2001 From: Alexandre Detiste Date: Wed, 9 Mar 2016 19:30:26 +0100 Subject: [PATCH] typos --- INSTALL.Debian | 2 +- misc/embedded.html | 2 +- shellinabox/shellinaboxd.c | 2 +- shellinabox/shellinaboxd.man.in | 2 +- shellinabox/vt100.jspp | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/INSTALL.Debian b/INSTALL.Debian index 70c6228..ede6139 100644 --- a/INSTALL.Debian +++ b/INSTALL.Debian @@ -41,7 +41,7 @@ you point your browser to the site. 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. -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". You probably also want "certificate-localhost.pem". diff --git a/misc/embedded.html b/misc/embedded.html index b009604..4b340c4 100644 --- a/misc/embedded.html +++ b/misc/embedded.html @@ -25,7 +25,7 @@ # 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. Message example: diff --git a/shellinabox/shellinaboxd.c b/shellinabox/shellinaboxd.c index 9637662..e3583e8 100644 --- a/shellinabox/shellinaboxd.c +++ b/shellinabox/shellinaboxd.c @@ -809,7 +809,7 @@ static void usage(void) { " -f, --static-file=URL:FILE serve static file from URL path\n" " -g, --group=GID switch to this group (default: %s)\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" " --no-beep suppress all audio output\n" " -n, --numeric do not resolve hostnames\n" diff --git a/shellinabox/shellinaboxd.man.in b/shellinabox/shellinaboxd.man.in index 16a68e5..1ced884 100644 --- a/shellinabox/shellinaboxd.man.in +++ b/shellinabox/shellinaboxd.man.in @@ -282,7 +282,7 @@ Display a brief usage message showing the valid command line parameters. .TP \fB--linkify\fP=[\fBnone\fP|\fBnormal\fP|\fBaggressive\fP] 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 with a well known protocol of .BR http:// ,\ https:// ,\ ftp:// ,\ or\ mailto: diff --git a/shellinabox/vt100.jspp b/shellinabox/vt100.jspp index 5f0b31d..de9a3a4 100755 --- a/shellinabox/vt100.jspp +++ b/shellinabox/vt100.jspp @@ -3904,7 +3904,7 @@ VT100.prototype.csim = function() { case 27: this.attr &= ~ ATTR_REVERSE; break; case 38: 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 // not VT100 standard. 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; case 48: 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 // not VT100 standard. this.attrBg = (this.par[i+2] >= 0 && this.par[i+2] <= 255) ? this.par[i+2] : false;