summaryrefslogtreecommitdiff
path: root/web/src/cgi.tcl-1.10
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/cgi.tcl-1.10')
-rw-r--r--web/src/cgi.tcl-1.10/HISTORY10
-rw-r--r--web/src/cgi.tcl-1.10/cgi.tcl2
-rw-r--r--web/src/cgi.tcl-1.10/cgi.tcl.in2
-rw-r--r--web/src/cgi.tcl-1.10/doc/ref.txt6
-rwxr-xr-xweb/src/cgi.tcl-1.10/example/image.cgi2
-rwxr-xr-xweb/src/cgi.tcl-1.10/example/img.cgi2
-rw-r--r--web/src/cgi.tcl-1.10/example/vote.cnt2
-rw-r--r--web/src/cgi.tcl-1.10/install.mac2
8 files changed, 14 insertions, 14 deletions
diff --git a/web/src/cgi.tcl-1.10/HISTORY b/web/src/cgi.tcl-1.10/HISTORY
index 3fc80020..7e44d51c 100644
--- a/web/src/cgi.tcl-1.10/HISTORY
+++ b/web/src/cgi.tcl-1.10/HISTORY
@@ -45,7 +45,7 @@ Date Version Description
Added utf.cgi example to demonstrate UTF works for
mel@redolive.com.
-10/16/02 1.8.0 To accomodate open-ended forms in echo, modified cgi_input so
+10/16/02 1.8.0 To accommodate open-ended forms in echo, modified cgi_input so
that it accepts multiple values even in variables that don't
end with "List". This opens a possible ambiguity (see
documentation) but only one that would've existed before had
@@ -91,7 +91,7 @@ Date Version Description
Added end tags for XHTML support.
Added cgi_link_url/label per John Koontz and rewrote cgi_link
- to accomodate them. Also added his cgi_button_link
+ to accommodate them. Also added his cgi_button_link
temporarily. Will experiment with this to test merit.
11/3/00 1.4.3 Removed HTML formatted manual. It lags the text version and
@@ -569,7 +569,7 @@ Date Version Description
Added support to suppress binary upload when using Expect.
1/31/97 0.4.8 Andreas Kupries <a.kupries@westend.com> needed dynamic control
- of ouput. Added user-defineable cgi_puts.
+ of output. Added user-defineable cgi_puts.
Josh Lubell <lubell@cme.nist.gov> reported binary file upload
was losing chars on large files. Fixed.
@@ -583,7 +583,7 @@ Date Version Description
Add some more bulletproofing to catch broken boundary defns...
- Evidentally QUERY_STRING doesn't have to be set even with GET.
+ Evidently QUERY_STRING doesn't have to be set even with GET.
CGI spec is vague enough to permit this.
12/16/96 0.4.6 Giorgetti Federico <gio@egeo.unipg.it> noted text file upload
@@ -592,7 +592,7 @@ Date Version Description
12/10/96 0.4.5 Added support for binary file upload if using Expect extension.
Removed check for missing filenames in file upload. This
- can evidentally happen. It is now the programmer's
+ can evidently happen. It is now the programmer's
reptysponsibility to check for the length if null filenames are
unwanted.
diff --git a/web/src/cgi.tcl-1.10/cgi.tcl b/web/src/cgi.tcl-1.10/cgi.tcl
index 81667179..629bf239 100644
--- a/web/src/cgi.tcl-1.10/cgi.tcl
+++ b/web/src/cgi.tcl-1.10/cgi.tcl
@@ -2327,7 +2327,7 @@ proc cgi_cookie_get {args} {
proc cgi_cookie_encode {in} {
regsub -all " " $in "+" in
- regsub -all "%" $in "%25" in ;# must preceed other subs that produce %
+ regsub -all "%" $in "%25" in ;# must precede other subs that produce %
regsub -all ";" $in "%3B" in
regsub -all "," $in "%2C" in
regsub -all "\n" $in "%0D%0A" in
diff --git a/web/src/cgi.tcl-1.10/cgi.tcl.in b/web/src/cgi.tcl-1.10/cgi.tcl.in
index df426c08..b355c90f 100644
--- a/web/src/cgi.tcl-1.10/cgi.tcl.in
+++ b/web/src/cgi.tcl-1.10/cgi.tcl.in
@@ -2327,7 +2327,7 @@ proc cgi_cookie_get {args} {
proc cgi_cookie_encode {in} {
regsub -all " " $in "+" in
- regsub -all "%" $in "%25" in ;# must preceed other subs that produce %
+ regsub -all "%" $in "%25" in ;# must precede other subs that produce %
regsub -all ";" $in "%3B" in
regsub -all "," $in "%2C" in
regsub -all "\n" $in "%0D%0A" in
diff --git a/web/src/cgi.tcl-1.10/doc/ref.txt b/web/src/cgi.tcl-1.10/doc/ref.txt
index 79ddd721..de1e219f 100644
--- a/web/src/cgi.tcl-1.10/doc/ref.txt
+++ b/web/src/cgi.tcl-1.10/doc/ref.txt
@@ -338,7 +338,7 @@ HTTP HEADERS
cgi_http_head cmds
CGI scripts must produce various headers to explain how the remainder
-of the output is to be interpreted. No other output may preceed this!
+of the output is to be interpreted. No other output may precede this!
With no argument, an HTML content type is produced if the script is
running in the CGI environment. This means that most people need not
@@ -963,7 +963,7 @@ The present implementation supports binary upload if you are using Tcl
using a version of Tcl earlier than 8.1 with Expect but want to
suppress binary loading, create the global variable
_cgi(no_binary_upload). (The reason you might want to suppress binary
-loading is that it is noticably slower.)
+loading is that it is noticeably slower.)
**************************************************
EXPORT
@@ -1187,7 +1187,7 @@ cgi_term text
cgi_term_definition text
cgi_term and cgi_term_definition are usually paired up (although they
-need not be) to creates terms and defintions. They do not have to
+need not be) to creates terms and definitions. They do not have to
appear in a list container, but usually appear in a cgi_definition_list.
** List containers
diff --git a/web/src/cgi.tcl-1.10/example/image.cgi b/web/src/cgi.tcl-1.10/example/image.cgi
index e1321523..d23ec344 100755
--- a/web/src/cgi.tcl-1.10/example/image.cgi
+++ b/web/src/cgi.tcl-1.10/example/image.cgi
@@ -13,7 +13,7 @@ cgi_eval {
Prototype Kilogram. It is made of 90% platinum, 10% iridium. It
was assigned to the US in 1889 and is periodically recertified and
traceable to [italic "The Kilogram"] held at
- [url "Bureau International des Poids et Mesures" http://www.bipm.fr" $TOP]
+ [url "Bureau International des Poids et Measures" http://www.bipm.fr" $TOP]
in France.)"
# ignore the junk above this line - the crucial stuff is below
diff --git a/web/src/cgi.tcl-1.10/example/img.cgi b/web/src/cgi.tcl-1.10/example/img.cgi
index 4c84787d..38b980e5 100755
--- a/web/src/cgi.tcl-1.10/example/img.cgi
+++ b/web/src/cgi.tcl-1.10/example/img.cgi
@@ -13,7 +13,7 @@ cgi_eval {
cgi_imglink ball $NIST_IMAGES/ball.gif alt=ball
cgi_imglink birdies $NIST_IMAGES/brd-ln.gif alt=birdies
- cgi_imglink daemon $NIST_IMAGES/bsd_daemon.gif "alt=Kirk McKusick's BSD deamon"
+ cgi_imglink daemon $NIST_IMAGES/bsd_daemon.gif "alt=Kirk McKusick's BSD daemon"
# use white background because some of these images require it
cgi_body bgcolor=#ffffff text=#00b0b0 {
diff --git a/web/src/cgi.tcl-1.10/example/vote.cnt b/web/src/cgi.tcl-1.10/example/vote.cnt
index 73bc9061..64d2007f 100644
--- a/web/src/cgi.tcl-1.10/example/vote.cnt
+++ b/web/src/cgi.tcl-1.10/example/vote.cnt
@@ -3,7 +3,7 @@
2
{it's got potential, needs more work} {Tcl/Tk: Saving the world one proc at a time} {Michael McLennan} mmc
3
-24 {Tcl/Tk: Programmers by day, heros by the end of the quarter} {Michael McLennan} mmc
+24 {Tcl/Tk: Programmers by day, heroes by the end of the quarter} {Michael McLennan} mmc
4
39 {Tcl/Tk: The struggle between good and eval} {Michael McLennan} mmc
6
diff --git a/web/src/cgi.tcl-1.10/install.mac b/web/src/cgi.tcl-1.10/install.mac
index a79c6b72..c0ab13e9 100644
--- a/web/src/cgi.tcl-1.10/install.mac
+++ b/web/src/cgi.tcl-1.10/install.mac
@@ -39,7 +39,7 @@ elaboration of this step:
pkg_mkIndex cgi.tcl*
- 1c) Test if the package comand works by trying:
+ 1c) Test if the package command works by trying:
package require cgi