Index: openacs-4/packages/acs-authentication/tcl/authority-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/authority-procs.tcl,v
diff -u -r1.38 -r1.39
--- openacs-4/packages/acs-authentication/tcl/authority-procs.tcl 7 Oct 2018 17:42:27 -0000 1.38
+++ openacs-4/packages/acs-authentication/tcl/authority-procs.tcl 3 Nov 2018 19:47:34 -0000 1.39
@@ -215,7 +215,7 @@
{-authority_id:required}
{-array:required}
} {
- Edit info about an authority. Note, that there's no checking that the columns you name exist.
+ Edit info about an authority. Note that there's no checking that the columns you name exist.
@param authority_id The authority you want to get.
Index: openacs-4/packages/acs-bootstrap-installer/installer/www/blank-master.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/installer/www/blank-master.tcl,v
diff -u -r1.9 -r1.10
--- openacs-4/packages/acs-bootstrap-installer/installer/www/blank-master.tcl 11 Jul 2018 10:21:57 -0000 1.9
+++ openacs-4/packages/acs-bootstrap-installer/installer/www/blank-master.tcl 3 Nov 2018 19:47:34 -0000 1.10
@@ -12,7 +12,7 @@
When using this template directly you MUST supply the following variables:
- @property doc(title) The document title, ie.
tag.
+ @property doc(title) The document title, i.e. tag.
@property doc(title_lang) The language of the document title, if different
from the document language.
Index: openacs-4/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl,v
diff -u -r1.65 -r1.66
--- openacs-4/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl 2 Nov 2018 10:14:04 -0000 1.65
+++ openacs-4/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl 3 Nov 2018 19:47:34 -0000 1.66
@@ -767,9 +767,9 @@
ad_proc -callback foo::bar::zip -impl myimpl { } { } { #code }
Two ways to call:
- - then you can call _all_ implementations (ie. in an event / event handler type arrangement) with
+
- then you can call _all_ implementations (i.e. in an event / event handler type arrangement) with
callback foo::bar::zip $arg1 $arg2
- - or you can call a specific implementation (ie. in a service contract type arrangement) with
+
- or you can call a specific implementation (i.e. in a service contract type arrangement) with
callback -impl myimpl foo::bar::zip $arg1 $arg2
in both cases the result is a list of the results of each called implementation (with empty results removed),
Index: openacs-4/packages/acs-content-repository/tcl/filter-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/tcl/filter-procs.tcl,v
diff -u -r1.40 -r1.41
--- openacs-4/packages/acs-content-repository/tcl/filter-procs.tcl 15 Jun 2018 09:14:02 -0000 1.40
+++ openacs-4/packages/acs-content-repository/tcl/filter-procs.tcl 3 Nov 2018 19:47:34 -0000 1.41
@@ -263,7 +263,7 @@
content::get_content $content_type
-if { \"text/html\" ne \$content(mime_type) && !\[ad_html_text_convertable_p -from \$content(mime_type) -to text/html\] } {
+if { \"text/html\" ne \$content(mime_type) && !\[ad_html_text_convertible_p -from \$content(mime_type) -to text/html\] } {
\# don't render its content
cr_write_content -revision_id \$content(revision_id)
ad_script_abort
Index: openacs-4/packages/acs-lang/tcl/localization-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/tcl/localization-procs.tcl,v
diff -u -r1.28 -r1.29
--- openacs-4/packages/acs-lang/tcl/localization-procs.tcl 8 Mar 2018 07:39:20 -0000 1.28
+++ openacs-4/packages/acs-lang/tcl/localization-procs.tcl 3 Nov 2018 19:47:34 -0000 1.29
@@ -306,7 +306,7 @@
set locale [ad_conn locale]
}
- # Some initialisation...
+ # Some initialization...
# Now, expect d_fmt, t_fmt and d_t_fmt to exist of the form in ISO spec
# Rip $date into $lc_time_* as numbers, no leading zeroes
set matchdate {([0-9]{4})\-0?(1?[0-9])\-0?([1-3]?[0-9])}
Index: openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/Attic/00-database-procs.tcl,v
diff -u -r1.109 -r1.110
--- openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl 25 Jul 2018 22:20:25 -0000 1.109
+++ openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl 3 Nov 2018 19:47:34 -0000 1.110
@@ -412,12 +412,12 @@
# view. This change makes this function more than a factor
# of 2 faster than before.
#
- # Note, that solely the per-thread information won't work for
+ # Note that solely the per-thread information won't work for
# freshly created sequences. Therefore, we keep the old
# code for checking at runtime in the database for such
# occurrences.
#
- # Note, that the sequence handling in OpenACS is quite a
+ # Note that the sequence handling in OpenACS is quite a
# mess. Some sequences are named t_SEQUENCE (10 in
# dotlrn), others are called just SEQUENCE (18 in dotlrn),
# for some sequences, additional views are defined with an
Index: openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl,v
diff -u -r1.27 -r1.28
--- openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl 28 Sep 2018 08:40:15 -0000 1.27
+++ openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl 3 Nov 2018 19:47:34 -0000 1.28
@@ -367,7 +367,7 @@
# (C) If neither A or B apply (e.g., because an invalid charset
# name was given to the charset parameter), we default to
# "binary". This corresponds to the behavior of
- # [ns_encodingfortype]. Also note, that the RFCs 3023 and 2616 do
+ # [ns_encodingfortype]. Also note that the RFCs 3023 and 2616 do
# not state any procedure when "invalid" charsets etc. are
# identified. I assume, RFC-compliant clients have to ignore them
# which means keep the channel in- and output unfiltered (encoding
Index: openacs-4/packages/acs-tcl/tcl/security-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/security-procs.tcl,v
diff -u -r1.112 -r1.113
--- openacs-4/packages/acs-tcl/tcl/security-procs.tcl 31 Oct 2018 18:00:33 -0000 1.112
+++ openacs-4/packages/acs-tcl/tcl/security-procs.tcl 3 Nov 2018 19:47:34 -0000 1.113
@@ -2413,7 +2413,7 @@
security::csp::require font-src data:
#
- # Always add the nonce-token to script-src. Note, that nonce
+ # Always add the nonce-token to script-src. Note that nonce
# definition comes via CSP 2, which - at the current time - is
# not supported by all browsers interpreting CSPs. We could
# add a "unsafe-inline" here, since the spec defines that when
Index: openacs-4/packages/acs-tcl/tcl/tcl-documentation-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/tcl-documentation-procs.tcl,v
diff -u -r1.60 -r1.61
--- openacs-4/packages/acs-tcl/tcl/tcl-documentation-procs.tcl 25 Jul 2018 23:43:13 -0000 1.60
+++ openacs-4/packages/acs-tcl/tcl/tcl-documentation-procs.tcl 3 Nov 2018 19:47:34 -0000 1.61
@@ -1491,7 +1491,7 @@
@creation-date 25 July 2000
} {
#
- # No need to go to the nsv causing mutex locks; note, that the
+ # No need to go to the nsv causing mutex locks; note that the
# name of the filter-procs is more or less hardcoded in the
# doc-strings above.
#
Index: openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl,v
diff -u -r1.103 -r1.104
--- openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl 23 Oct 2018 18:38:36 -0000 1.103
+++ openacs-4/packages/acs-tcl/tcl/text-html-procs.tcl 3 Nov 2018 19:47:34 -0000 1.104
@@ -705,7 +705,7 @@
@param pos_varname the name of the variable holding the position
within the html_varname
string from which we should
start. This should point to a character inside the tag, just after
- the tag name, and before the first attribute. Note, that we will modify this variable.
+ the tag name, and before the first attribute. Note that we will modify this variable.
When this proc is done, this variable will point to the tag-closing >
.
Example:
if the tag is <img src="foo">, pos_varname
should point to either the space between
@@ -2010,7 +2010,7 @@
#
####################
-ad_proc -public ad_html_text_convertable_p {
+ad_proc -public ad_html_text_convertible_p {
-from
-to
} {
@@ -2102,7 +2102,7 @@
set from [ad_decode $from html text/html text text/plain plain text/plain pre text/plain $from]
set to [ad_decode $to html text/html text text/plain plain text/plain pre text/plain $to]
- if { ![ad_html_text_convertable_p -from $from -to $to] } {
+ if { ![ad_html_text_convertible_p -from $from -to $to] } {
error "Illegal mime types for conversion - from: $from to: $to"
}
Index: openacs-4/packages/acs-templating/tcl/date-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/date-procs.tcl,v
diff -u -r1.60 -r1.61
--- openacs-4/packages/acs-templating/tcl/date-procs.tcl 19 Sep 2018 00:38:52 -0000 1.60
+++ openacs-4/packages/acs-templating/tcl/date-procs.tcl 3 Nov 2018 19:52:29 -0000 1.61
@@ -506,7 +506,7 @@
return $new_date
}
ansi {
- # Some initialisation...
+ # Some initialization...
# Rip $date into $ansi_* as numbers, no leading zeroes
set matchdate {([0-9]{4})\-0?(1?[0-9])\-0?([1-3]?[0-9])}
set matchtime {0?([1-2]?[0-9]):0?([1-5]?[0-9]):0?([1-6]?[0-9])}
Index: openacs-4/packages/acs-templating/tcl/form-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/form-procs.tcl,v
diff -u -r1.57 -r1.58
--- openacs-4/packages/acs-templating/tcl/form-procs.tcl 14 Sep 2018 17:43:51 -0000 1.57
+++ openacs-4/packages/acs-templating/tcl/form-procs.tcl 3 Nov 2018 19:52:29 -0000 1.58
@@ -581,7 +581,7 @@
append output " class=\"margin-form\""
}
- # make sure, that event handlers have IDs
+ # make sure that event handlers have IDs
foreach name [array names attributes] {
if {[regexp -nocase {^on(.*)%} $name . event]} {
if {![info exists attributes(id)]} {
Index: openacs-4/packages/acs-templating/tcl/spellcheck-init.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/spellcheck-init.tcl,v
diff -u -r1.19 -r1.20
--- openacs-4/packages/acs-templating/tcl/spellcheck-init.tcl 29 Dec 2017 09:53:47 -0000 1.19
+++ openacs-4/packages/acs-templating/tcl/spellcheck-init.tcl 3 Nov 2018 19:52:29 -0000 1.20
@@ -27,7 +27,7 @@
set dicts ""
set default_lang ""
#
-# GN: note, that under windows, the binary will be called aspell.exe
+# GN: note that under windows, the binary will be called aspell.exe
#
if { [string match "*aspell*" $bin] } {
# aspell
Index: openacs-4/packages/acs-templating/tcl/spellcheck-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/spellcheck-procs.tcl,v
diff -u -r1.27 -r1.28
--- openacs-4/packages/acs-templating/tcl/spellcheck-procs.tcl 21 May 2018 16:40:47 -0000 1.27
+++ openacs-4/packages/acs-templating/tcl/spellcheck-procs.tcl 3 Nov 2018 19:52:29 -0000 1.28
@@ -336,7 +336,7 @@
regsub -all "\r\n" $formtext "
" formtext_to_display
# We replace with because misspelled text in link titles
- # would lead to strange browser behaviour where the select boxes with the
+ # would lead to strange browser behavior where the select boxes with the
# proposed changes would itself be a link!!!
# It seemed like an okay idea to make the text underlined so it would a) work,
# b) still resemble a link ...
Index: openacs-4/packages/acs-templating/tcl/util-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/util-procs.tcl,v
diff -u -r1.40 -r1.41
--- openacs-4/packages/acs-templating/tcl/util-procs.tcl 25 Jul 2018 01:35:53 -0000 1.40
+++ openacs-4/packages/acs-templating/tcl/util-procs.tcl 3 Nov 2018 19:52:29 -0000 1.41
@@ -445,7 +445,7 @@
}
#
- # Use ad_try to make sure, that the file descriptor is finally
+ # Use ad_try to make sure that the file descriptor is finally
# closed.
#
ad_try {
Index: openacs-4/packages/acs-templating/tcl/wizard-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/wizard-procs.tcl,v
diff -u -r1.20 -r1.21
--- openacs-4/packages/acs-templating/tcl/wizard-procs.tcl 19 Sep 2018 00:38:52 -0000 1.20
+++ openacs-4/packages/acs-templating/tcl/wizard-procs.tcl 3 Nov 2018 19:52:29 -0000 1.21
@@ -580,7 +580,7 @@
} elseif { [ns_queryexists wizard_submit_finish] } {
# template::forward $properties(action)
- # NOTE : we are changing the behaviour of wizard, when its finish it will not reset and go back
+ # NOTE : we are changing the behavior of wizard, when its finish it will not reset and go back
# to step 1, it will blindly go forward and we will catch this on get_current_step
set next_id [expr {$current_index + 1}]
template::forward [get_forward_url $next_id] $cache_p $persistent_p $excluded_vars