Index: openacs-4/packages/acs-core-docs/www/object-system-design.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/object-system-design.html,v
diff -u -r1.37.2.1 -r1.37.2.2
--- openacs-4/packages/acs-core-docs/www/object-system-design.html 2 Mar 2019 19:30:05 -0000 1.37.2.1
+++ openacs-4/packages/acs-core-docs/www/object-system-design.html 21 Aug 2019 06:47:07 -0000 1.37.2.2
@@ -163,7 +163,7 @@
"standard" way for an OpenACS 3.x-based application to add to the list
of user preferences is to add a column to the users_preferences
table (exactly the kind of data model change that has historically
-complicated the process of upgrading to a more recent OpenACS version).
The Objet Model generalizes the scheme used in the old OpenACS 3.x user/groups +complicated the process of upgrading to a more recent OpenACS version).
The Object Model generalizes the scheme used in the old OpenACS 3.x user/groups
system. It defines a table called acs_attributes
that record
what attributes belong to which object types, and how the attributes are
stored. As before, attributes can either be stored in helper tables, or in a
Index: openacs-4/packages/theme-zen/tcl/navigation-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/theme-zen/tcl/navigation-procs.tcl,v
diff -u -r1.10.2.1 -r1.10.2.2
--- openacs-4/packages/theme-zen/tcl/navigation-procs.tcl 4 Apr 2019 08:24:44 -0000 1.10.2.1
+++ openacs-4/packages/theme-zen/tcl/navigation-procs.tcl 21 Aug 2019 06:47:07 -0000 1.10.2.2
@@ -24,7 +24,7 @@
}
-# DRB: This needs to be cleaned up to return multirows rather than includee HTML
+# DRB: This needs to be cleaned up to return multirows rather than include HTML
# in Tcl.
namespace eval zen {
@@ -90,7 +90,10 @@
set which_tab 0
set home_tab -1
- foreach {url name accesskey} [parameter::get_from_package_key -package_key "theme-zen" -parameter "AdditionalNavbarTabs" -default ""] {
+ foreach {url name accesskey} [parameter::get_from_package_key \
+ -package_key "theme-zen" \
+ -parameter "AdditionalNavbarTabs" \
+ -default ""] {
lappend tabs_list [list $url $name $accesskey]
if { $current_url == $url ||
$current_url == "$dotlrn_url/index" && $name eq "#dotlrn.Home#" } {
Index: openacs-4/packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl,v
diff -u -r1.41.2.1 -r1.41.2.2
--- openacs-4/packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl 14 Mar 2019 15:23:27 -0000 1.41.2.1
+++ openacs-4/packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl 21 Aug 2019 06:47:07 -0000 1.41.2.2
@@ -1,5 +1,5 @@
ad_library {
- Procedures for tsearch full text enginge driver
+ Procedures for tsearch full text engine driver
@author Dave Bauer (dave@thedesignexperience.org)
@creation-date 2004-06-05
Index: openacs-4/packages/xowiki/www/resources/xinha-inplace.js
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/xinha-inplace.js,v
diff -u -r1.4 -r1.4.6.1
--- openacs-4/packages/xowiki/www/resources/xinha-inplace.js 13 Sep 2012 16:05:42 -0000 1.4
+++ openacs-4/packages/xowiki/www/resources/xinha-inplace.js 21 Aug 2019 06:47:08 -0000 1.4.6.1
@@ -3,7 +3,7 @@
* (providing the basic configuration). The inplace editor is to be
* used within forms to edit elements with the style 'xinha' and pass
* the content via a hidden variable back to the application. The
- * editor was desinged to be used with xowiki and xowiki content flow.
+ * editor was designed to be used with xowiki and xowiki content flow.
*
* Gustaf Neumann
*/
@@ -23,7 +23,7 @@
/*
* Initialize the inplace editor. This means essentially to setup all
- * handlers for elemets of CSS class 'xinha' and 'xinhaupdate'.
+ * handlers for elements of CSS class 'xinha' and 'xinhaupdate'.
*/
xinha.inplace.init = function() {
var editElements = [];
@@ -53,7 +53,7 @@
/*
* Iterate over all nodes and copy the content of the elements of
* class 'xinha' to the corresponding hidden fields in the form; the
- * correspondance happens via a naming convention of IDs.
+ * correspondence happens via a naming convention of IDs.
*
*/
xinha.inplace.finish = function() {