Index: openacs-4/packages/search/tcl/search-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/search/tcl/search-procs.tcl,v
diff -u -r1.48.2.2 -r1.48.2.3
--- openacs-4/packages/search/tcl/search-procs.tcl 27 Mar 2017 10:41:51 -0000 1.48.2.2
+++ openacs-4/packages/search/tcl/search-procs.tcl 22 Apr 2017 11:58:51 -0000 1.48.2.3
@@ -14,7 +14,7 @@
Add an object to the search_observer_queue table with
an event.
- You should excercise care that the entry is not being
+ You should exercise care that the entry is not being
created from a trigger (although search is robust for multiple
entries so it will not insert or update the same object
more than once per sweep).
Index: openacs-4/packages/tsearch2-driver/tcl/tsearch2-driver-install-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/tsearch2-driver/tcl/tsearch2-driver-install-procs.tcl,v
diff -u -r1.6.2.1 -r1.6.2.2
--- openacs-4/packages/tsearch2-driver/tcl/tsearch2-driver-install-procs.tcl 29 Apr 2016 07:04:55 -0000 1.6.2.1
+++ openacs-4/packages/tsearch2-driver/tcl/tsearch2-driver-install-procs.tcl 22 Apr 2017 11:58:51 -0000 1.6.2.2
@@ -28,7 +28,7 @@
ns_log Notice " ********** STARTING BEFORE-INSTALL CALLBACK ****************"
# check if tsearch2 is installed
- # in psql we do this by checking the presense of a data type tsvector
+ # in psql we do this by checking the presence of a data type tsvector
# select typname from pg_type where typename='tsvector';
if { [db_0or1row tsearch_compile_check {
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.32.2.3 -r1.32.2.4
--- openacs-4/packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl 19 Aug 2016 17:01:33 -0000 1.32.2.3
+++ openacs-4/packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl 22 Apr 2017 11:58:51 -0000 1.32.2.4
@@ -297,10 +297,10 @@
return $query
}
-ad_proc -public tsearch2::seperate_query_and_operators {
+ad_proc -public tsearch2::separate_query_and_operators {
-query
} {
- Seperates special operators from full text query
+ Separates special operators from full text query
@author Dave Bauer (dave@thedesignexperience.org)
@creation-date 2004-07-10
Index: openacs-4/packages/notifications/notifications.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/notifications.info,v
diff -u -r1.55.2.9 -r1.55.2.10
--- openacs-4/packages/notifications/notifications.info 27 Feb 2017 07:42:03 -0000 1.55.2.9
+++ openacs-4/packages/notifications/notifications.info 22 Apr 2017 12:04:41 -0000 1.55.2.10
@@ -13,7 +13,7 @@
Email notifications management
2017-02-27
OpenACS
- Provides an API for packages to provide subscription based email notifications and handle replies. Used by forums, bug-tracker, etc. The currently prefered package for email notifications.
+ Provides an API for packages to provide subscription based email notifications and handle replies. Used by forums, bug-tracker, etc. The currently preferred package for email notifications.
3
#notifications.Notifications#
Index: openacs-4/packages/notifications/sql/oracle/notifications-core-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/sql/oracle/notifications-core-create.sql,v
diff -u -r1.15 -r1.15.12.1
--- openacs-4/packages/notifications/sql/oracle/notifications-core-create.sql 28 Jun 2007 17:23:41 -0000 1.15
+++ openacs-4/packages/notifications/sql/oracle/notifications-core-create.sql 22 Apr 2017 12:04:41 -0000 1.15.12.1
@@ -155,7 +155,7 @@
constraint notif_notif_date_nn
not null,
-- this is to allow responses to notifications
- response_id constraint notif_reponse_id_fk
+ response_id constraint notif_response_id_fk
references acs_objects (object_id)
on delete cascade,
notif_user integer
Index: openacs-4/packages/notifications/sql/oracle/upgrade/upgrade-5.0.0a5-5.0.0a6.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/sql/oracle/upgrade/upgrade-5.0.0a5-5.0.0a6.sql,v
diff -u -r1.2 -r1.2.22.1
--- openacs-4/packages/notifications/sql/oracle/upgrade/upgrade-5.0.0a5-5.0.0a6.sql 11 Dec 2003 21:40:08 -0000 1.2
+++ openacs-4/packages/notifications/sql/oracle/upgrade/upgrade-5.0.0a5-5.0.0a6.sql 22 Apr 2017 12:04:41 -0000 1.2.22.1
@@ -1,8 +1,8 @@
-- Add the on delete cascade to response_id column,
-- see Bug http://openacs.org/bugtracker/openacs/bug?filter%2estatus=resolved&filter%2eactionby=6815&bug%5fnumber=260
-- @author Peter Marklund
-alter table notifications drop constraint notif_reponse_id_fk;
-alter table notifications add constraint notif_reponse_id_fk
+alter table notifications drop constraint notif_response_id_fk;
+alter table notifications add constraint notif_response_id_fk
foreign key (response_id)
references acs_objects (object_id)
on delete cascade;
Index: openacs-4/packages/notifications/sql/postgresql/upgrade/upgrade-5.0.0a5-5.0.0a6.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/sql/postgresql/upgrade/upgrade-5.0.0a5-5.0.0a6.sql,v
diff -u -r1.4 -r1.4.4.1
--- openacs-4/packages/notifications/sql/postgresql/upgrade/upgrade-5.0.0a5-5.0.0a6.sql 30 Mar 2013 18:50:28 -0000 1.4
+++ openacs-4/packages/notifications/sql/postgresql/upgrade/upgrade-5.0.0a5-5.0.0a6.sql 22 Apr 2017 12:04:41 -0000 1.4.4.1
@@ -32,9 +32,9 @@
END;
$$ LANGUAGE plpgsql;
-select safe_drop_cosntraint('notifications', 'notif_reponse_id_fk');
+select safe_drop_cosntraint('notifications', 'notif_response_id_fk');
-alter table notifications add constraint notif_reponse_id_fk
+alter table notifications add constraint notif_response_id_fk
foreign key (response_id)
references acs_objects (object_id)
on delete cascade;
Index: openacs-4/packages/notifications/tcl/notification-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/tcl/notification-procs.tcl,v
diff -u -r1.17.2.1 -r1.17.2.2
--- openacs-4/packages/notifications/tcl/notification-procs.tcl 12 Sep 2015 11:06:46 -0000 1.17.2.1
+++ openacs-4/packages/notifications/tcl/notification-procs.tcl 22 Apr 2017 12:04:41 -0000 1.17.2.2
@@ -113,7 +113,7 @@
This is useful in two situations. One is when you have multiple notification types that cover the
same event, for example notification for an entire forum, and for a single thread within that forum.
- In this situation, you typically want people to recieve only one notification per event (per delivery
+ In this situation, you typically want people to receive only one notification per event (per delivery
method and interval). The 'already_notified' and 'return_notified' switches help you do this.
Index: openacs-4/packages/ref-timezones/sql/postgresql/ref-timezones-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/ref-timezones/sql/postgresql/ref-timezones-create.sql,v
diff -u -r1.12 -r1.12.4.1
--- openacs-4/packages/ref-timezones/sql/postgresql/ref-timezones-create.sql 30 Mar 2013 18:50:28 -0000 1.12
+++ openacs-4/packages/ref-timezones/sql/postgresql/ref-timezones-create.sql 22 Apr 2017 12:07:20 -0000 1.12.4.1
@@ -35,7 +35,7 @@
-- and appends the timezone abbreviation.
-- timezone__get_offset(timezone, timestamptz) returns interval
--- Returns a PostgreSQL interval (which can be added or substracted from
+-- Returns a PostgreSQL interval (which can be added or subtracted from
-- a UTC timestamp) for the timestamp in the given timezone.
-- timezone__get_rawoffset(timezone, timestamptz) returns interval