Index: openacs-4/packages/news/sql/postgresql/news-drop.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/news/sql/postgresql/news-drop.sql,v diff -u -N -r1.10 -r1.11 --- openacs-4/packages/news/sql/postgresql/news-drop.sql 27 Oct 2014 16:41:46 -0000 1.10 +++ openacs-4/packages/news/sql/postgresql/news-drop.sql 31 Jan 2018 20:27:31 -0000 1.11 @@ -63,7 +63,7 @@ -- Til: after adding content_type__drop_type above, dropping the table --- and the index explicitely was not necessary anymore. Leaving the calls +-- and the index explicitly was not necessary anymore. Leaving the calls -- commented out here though, so that they can be reactivated in case the lock -- situation mentioned in the original comment below occurs for some reason. Index: openacs-4/packages/news/tcl/test/news-db-test-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/news/tcl/test/news-db-test-init.tcl,v diff -u -N -r1.13 -r1.14 --- openacs-4/packages/news/tcl/test/news-db-test-init.tcl 7 Aug 2017 23:48:12 -0000 1.13 +++ openacs-4/packages/news/tcl/test/news-db-test-init.tcl 31 Jan 2018 20:27:31 -0000 1.14 @@ -519,7 +519,7 @@ } "check-permissions" { Checks the news related permissions. Checks that the permissions exist, and that they have the correct - heirachy. + hierarchy. } { # # Extract the list of all privileges and privilege heirachies. Index: openacs-4/packages/calendar/sql/oracle/cal-table-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar/sql/oracle/cal-table-create.sql,v diff -u -N -r1.1 -r1.2 --- openacs-4/packages/calendar/sql/oracle/cal-table-create.sql 17 Sep 2001 13:40:18 -0000 1.1 +++ openacs-4/packages/calendar/sql/oracle/cal-table-create.sql 31 Jan 2018 20:30:42 -0000 1.2 @@ -74,7 +74,7 @@ ), -- unique constraint between calendar_id and party_id -- this ensures that each party has only one set of - -- perferences per calendar + -- preferences per calendar constraint cal_party_prefs_un unique(calendar_id, party_id) ); Index: openacs-4/packages/calendar/sql/oracle/calendar-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar/sql/oracle/calendar-create.sql,v diff -u -N -r1.9 -r1.10 --- openacs-4/packages/calendar/sql/oracle/calendar-create.sql 7 Aug 2017 23:48:05 -0000 1.9 +++ openacs-4/packages/calendar/sql/oracle/calendar-create.sql 31 Jan 2018 20:30:42 -0000 1.10 @@ -19,7 +19,7 @@ begin acs_privilege.create_privilege('cal_item_create', 'Add an new item'); acs_privilege.create_privilege('cal_item_read', 'view an cal_item'); - acs_privilege.create_privilege('cal_item_write', 'Edit an exsiting cal_item'); + acs_privilege.create_privilege('cal_item_write', 'Edit an existing cal_item'); acs_privilege.create_privilege('cal_item_delete', 'Delete cal_item' ); acs_privilege.create_privilege('cal_item_invite', 'Allow others to view cal_item'); @@ -56,15 +56,15 @@ -- creating the basic set of permissions for calendar. -- -- 1. calendar_create: make a new calendar - -- 2. calendar_read: can view all items on an exsiting calendar - -- 3. calendar_write: can edit all items on an exsiting calendar + -- 2. calendar_read: can view all items on an existing calendar + -- 3. calendar_write: can edit all items on an existing calendar -- 4. calendar_delete: delete an existing calendar begin acs_privilege.create_privilege('calendar_create', 'Create a new calendar'); - acs_privilege.create_privilege('calendar_read', 'View items on an exsiting calendar'); - acs_privilege.create_privilege('calendar_write', 'Edit items of an exsiting calendar'); + acs_privilege.create_privilege('calendar_read', 'View items on an existing calendar'); + acs_privilege.create_privilege('calendar_write', 'Edit items of an existing calendar'); acs_privilege.create_privilege('calendar_delete','Delete an calendar' ); Index: openacs-4/packages/calendar/sql/postgresql/cal-table-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar/sql/postgresql/cal-table-create.sql,v diff -u -N -r1.5 -r1.6 --- openacs-4/packages/calendar/sql/postgresql/cal-table-create.sql 15 Oct 2001 18:46:59 -0000 1.5 +++ openacs-4/packages/calendar/sql/postgresql/cal-table-create.sql 31 Jan 2018 20:30:42 -0000 1.6 @@ -77,7 +77,7 @@ ), -- unique constraint between calendar_id and party_id -- this ensures that each party has only one set of - -- perferences per calendar + -- preferences per calendar constraint cal_party_prefs_un unique(calendar_id, party_id) ); Index: openacs-4/packages/calendar/sql/postgresql/calendar-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar/sql/postgresql/calendar-create.sql,v diff -u -N -r1.16 -r1.17 --- openacs-4/packages/calendar/sql/postgresql/calendar-create.sql 4 Sep 2017 08:10:38 -0000 1.16 +++ openacs-4/packages/calendar/sql/postgresql/calendar-create.sql 31 Jan 2018 20:30:42 -0000 1.17 @@ -22,7 +22,7 @@ select acs_privilege__create_privilege('cal_item_create', 'Add an new item', null); select acs_privilege__create_privilege('cal_item_read', 'view an cal_item', null); - select acs_privilege__create_privilege('cal_item_write', 'Edit an exsiting cal_item', null); + select acs_privilege__create_privilege('cal_item_write', 'Edit an existing cal_item', null); select acs_privilege__create_privilege('cal_item_delete', 'Delete cal_item', null ); select acs_privilege__create_privilege('cal_item_invite', 'Allow others to view cal_item', null); @@ -39,8 +39,8 @@ select acs_privilege__add_child('read', 'calendar_show'); select acs_privilege__create_privilege('calendar_create', 'Create a new calendar', null); - select acs_privilege__create_privilege('calendar_read', 'View items on an exsiting calendar', null); - select acs_privilege__create_privilege('calendar_write', 'Edit items of an exsiting calendar', null); + select acs_privilege__create_privilege('calendar_read', 'View items on an existing calendar', null); + select acs_privilege__create_privilege('calendar_write', 'Edit items of an existing calendar', null); select acs_privilege__create_privilege('calendar_delete','Delete an calendar', null); select acs_privilege__add_child('create', 'calendar_create'); Index: openacs-4/packages/attachments/www/file-add-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/www/file-add-2.tcl,v diff -u -N -r1.8 -r1.9 --- openacs-4/packages/attachments/www/file-add-2.tcl 7 Aug 2017 23:48:04 -0000 1.8 +++ openacs-4/packages/attachments/www/file-add-2.tcl 31 Jan 2018 20:32:52 -0000 1.9 @@ -1,5 +1,5 @@ ad_page_contract { - script to recieve the new file and insert it into the database + script to receive the new file and insert it into the database @author Kevin Scaldeferri (kevin@arsdigita.com) @creation-date 6 Nov 2000 Index: openacs-4/packages/attachments/www/admin/new-root-folder-map-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/www/admin/new-root-folder-map-2.tcl,v diff -u -N -r1.5 -r1.6 --- openacs-4/packages/attachments/www/admin/new-root-folder-map-2.tcl 7 Aug 2017 23:48:04 -0000 1.5 +++ openacs-4/packages/attachments/www/admin/new-root-folder-map-2.tcl 31 Jan 2018 20:32:52 -0000 1.6 @@ -14,7 +14,7 @@ ad_page_contract { - Creates a new fs root folder and maps it to the passed in packge_id + Creates a new fs root folder and maps it to the passed in package_id @author Arjun Sanyal (arjun@openforce.net) @cvs-id $Id$