Index: openacs-4/packages/acs-authentication/tcl/apm-callback-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/apm-callback-procs.tcl,v diff -u -r1.20 -r1.21 --- openacs-4/packages/acs-authentication/tcl/apm-callback-procs.tcl 7 Aug 2017 23:47:46 -0000 1.20 +++ openacs-4/packages/acs-authentication/tcl/apm-callback-procs.tcl 27 Mar 2018 12:22:17 -0000 1.21 @@ -385,7 +385,7 @@ parameters:string,multiple } output { - requiered:string,multiple + required:string,multiple optional:string,multiple } } Index: openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl,v diff -u -r1.97 -r1.98 --- openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 24 Mar 2018 00:14:57 -0000 1.97 +++ openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 27 Mar 2018 12:22:17 -0000 1.98 @@ -1929,7 +1929,7 @@ # # After the maximum number of consecutive failed login attempts # has been excedeed, all further login attempts will be automatically rejected -# for a specifed lock-out/cool-down time, even if the correct credentials have been +# for a specified lock-out/cool-down time, even if the correct credentials have been # provided. Every successful login before reaching the threshold resets the # counter to 0 again. Beware, the counting is done via caching and is # therefore not persistent. Index: openacs-4/packages/acs-authentication/tcl/password-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/password-procs.tcl,v diff -u -r1.22 -r1.23 --- openacs-4/packages/acs-authentication/tcl/password-procs.tcl 29 Dec 2017 11:22:07 -0000 1.22 +++ openacs-4/packages/acs-authentication/tcl/password-procs.tcl 27 Mar 2018 12:22:17 -0000 1.23 @@ -150,7 +150,7 @@ {-username ""} {-email ""} } { - Handles forgotten passwords. Attempts to retrieve a password; if not possibe, + Handles forgotten passwords. Attempts to retrieve a password; if not possible, attempts to reset a password. If it succeeds, it emails the user. For all outcomes, it returns a message to be displayed. @@ -279,7 +279,7 @@ ad_proc -public auth::password::can_retrieve_p { {-authority_id:required} } { - Returns whether the given authority can retrive forgotten passwords. + Returns whether the given authority can retrieve forgotten passwords. @param authority_id The ID of the authority that the user is trying to log into. Index: openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl,v diff -u -r1.45 -r1.46 --- openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl 7 Aug 2017 23:47:46 -0000 1.45 +++ openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl 27 Mar 2018 12:22:17 -0000 1.46 @@ -508,7 +508,7 @@ array set reset_result [auth::password::reset \ -authority_id [auth::authority::local] \ -username $test_user(username)] - aa_equals "status should be ok for reseting password" $reset_result(password_status) "ok" + aa_equals "status should be ok for resetting password" $reset_result(password_status) "ok" aa_true "Result contains new password" [info exists reset_result(password)] if { [info exists reset_result(password)] } { 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.49 -r1.50 --- openacs-4/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl 27 Mar 2018 11:17:59 -0000 1.49 +++ openacs-4/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl 27 Mar 2018 12:22:17 -0000 1.50 @@ -831,7 +831,7 @@ the list of returns from the callback function
return -code error or "error"
-
errors will simply propigate (and no value returned) unless -catch +
errors will simply propagate (and no value returned) unless -catch is specified in which case the callback processing will continue but no value will be appended to the return list for the implementation which returned an error. Index: openacs-4/packages/acs-content-repository/sql/postgresql/upgrade/upgrade-5.2.0d14-5.2.0d15.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/sql/postgresql/upgrade/upgrade-5.2.0d14-5.2.0d15.sql,v diff -u -r1.1 -r1.2 --- openacs-4/packages/acs-content-repository/sql/postgresql/upgrade/upgrade-5.2.0d14-5.2.0d15.sql 26 Mar 2005 12:30:49 -0000 1.1 +++ openacs-4/packages/acs-content-repository/sql/postgresql/upgrade/upgrade-5.2.0d14-5.2.0d15.sql 27 Mar 2018 12:22:17 -0000 1.2 @@ -1,4 +1,4 @@ --- JCD: Propigate title rather than name to acs_objects title field. +-- JCD: Propagate title rather than name to acs_objects title field. select define_function_args('content_item__new','name,parent_id,item_id,locale,creation_date;now,creation_user,context_id,creation_ip,item_subtype;content_item,content_type;content_revision,title,description,mime_type;text/plain,nls_language,text,data,relation_tag,is_live;f,storage_type;lob,package_id'); create or replace function content_item__new ( Index: openacs-4/packages/acs-content-repository/tcl/publish-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/tcl/publish-procs.tcl,v diff -u -r1.12 -r1.13 --- openacs-4/packages/acs-content-repository/tcl/publish-procs.tcl 7 Aug 2017 23:47:47 -0000 1.12 +++ openacs-4/packages/acs-content-repository/tcl/publish-procs.tcl 27 Mar 2018 12:22:17 -0000 1.13 @@ -422,7 +422,7 @@ @private merge_with_template Merge the item with its template and return the resulting HTML. This proc - is simlar to content::init + is similar to content::init @param item_id The item id Index: openacs-4/packages/acs-content-repository/tcl/revision-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/tcl/revision-procs.tcl,v diff -u -r1.35 -r1.36 --- openacs-4/packages/acs-content-repository/tcl/revision-procs.tcl 23 Mar 2018 23:53:01 -0000 1.35 +++ openacs-4/packages/acs-content-repository/tcl/revision-procs.tcl 27 Mar 2018 12:22:17 -0000 1.36 @@ -30,7 +30,7 @@ } { if { [info exists revision_id] && [info exists item_id] } { - error "Both revision_id and item_id were specfied" + error "Both revision_id and item_id were specified" } if { [info exists item_id] } { Index: openacs-4/packages/acs-core-docs/www/how-do-I.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/how-do-I.adp,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-core-docs/www/how-do-I.adp 8 Nov 2017 09:42:10 -0000 1.3 +++ openacs-4/packages/acs-core-docs/www/how-do-I.adp 27 Mar 2018 12:22:17 -0000 1.4 @@ -111,7 +111,7 @@ return [permission::permission_p -party_id $user_id -object_id $event_id -privilege write]

This means that a given user must have the write privilige on the event in order to register. Let's assume that the -priviliges inherit, so that if a user has the write privilige on +privileges inherit, so that if a user has the write privilige on the whole package, they will have the write privilege on the event.

  • @@ -143,4 +143,4 @@ Chapter 5. Upgrading" homeLink="index" homeLabel="Home" upLink="configuring-new-site" upLabel="Up"> - \ No newline at end of file + Index: openacs-4/packages/acs-core-docs/www/how-do-I.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/how-do-I.html,v diff -u -r1.29 -r1.30 --- openacs-4/packages/acs-core-docs/www/how-do-I.html 8 Nov 2017 09:42:10 -0000 1.29 +++ openacs-4/packages/acs-core-docs/www/how-do-I.html 27 Mar 2018 12:22:17 -0000 1.30 @@ -88,11 +88,11 @@
    set can_register_p [events::security::can_register_for_event_p -event_id $event_id]

    We need to know what that procedure does, so go to /api-doc, paste events::security::can_register_for_event_p into the ACS Tcl API Search box, and click Feeling Lucky. The next pages shows the proc, and we click "show source" to see more information. The body of the proc is simply

    return [permission::permission_p -party_id $user_id -object_id $event_id -privilege write]
    -

    This means that a given user must have the write privilige on the event in order to register. Let's assume that the priviliges inherit, so that if a user has the write privilige on the whole package, they will have the write privilege on the event.

    +

    This means that a given user must have the write privilege on the event in order to register. Let's assume that the privilege inherit, so that if a user has the write privilege on the whole package, they will have the write privilege on the event.

  • Setting Permissions.  - A permission has three parts: the privilige, the object of the privilige, and the subject being granted the privilige. In this case the privilige is "write," the object is the Events package, and the subject is all Registered Users. + A permission has three parts: the privilege, the object of the privilege, and the subject being granted the privilege. In this case the privilege is "write," the object is the Events package, and the subject is all Registered Users.

    1. To grant permissions on a package, start at the site map. Find the event package and click "Set permissions".

      Index: openacs-4/packages/acs-core-docs/www/i18n-requirements.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/i18n-requirements.adp,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-core-docs/www/i18n-requirements.adp 8 Nov 2017 09:42:10 -0000 1.3 +++ openacs-4/packages/acs-core-docs/www/i18n-requirements.adp 27 Mar 2018 12:22:17 -0000 1.4 @@ -214,7 +214,7 @@ path.

      40.30 The API for lookup of a message will take a locale and message key as arguments, and -return the appropriate translation of that message for the specifed +return the appropriate translation of that message for the specified locale.

      40.40 The API for lookup of a message will accept an optional default string which can be @@ -493,4 +493,4 @@ rightLink="security-requirements" rightLabel="Next" rightTitle="Security Requirements" homeLink="index" homeLabel="Home" upLink="kernel-doc" upLabel="Up"> - \ No newline at end of file + Index: openacs-4/packages/acs-core-docs/www/i18n-requirements.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/i18n-requirements.html,v diff -u -r1.28 -r1.29 --- openacs-4/packages/acs-core-docs/www/i18n-requirements.html 8 Nov 2017 09:42:10 -0000 1.28 +++ openacs-4/packages/acs-core-docs/www/i18n-requirements.html 27 Mar 2018 12:22:17 -0000 1.29 @@ -337,7 +337,7 @@

      40.30 The API for lookup of a message will take a locale and message key as arguments, and return the -appropriate translation of that message for the specifed +appropriate translation of that message for the specified locale.

      40.40 The API for lookup of a message Index: openacs-4/packages/acs-core-docs/www/packages.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/packages.adp,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-core-docs/www/packages.adp 8 Nov 2017 09:42:11 -0000 1.3 +++ openacs-4/packages/acs-core-docs/www/packages.adp 27 Mar 2018 12:22:17 -0000 1.4 @@ -311,7 +311,7 @@ files in this package" link on that page to scan the file system for new files. This will bring you do a page that lists all the files you just added and lets you add them to the notes package.

      Note that while the .sql -files have been added to the packge, they have not been loaded into the database. +files have been added to the package, they have not been loaded into the database. For the purposes of development, you have to load the data model by hand, because while OpenACS has automatic mechanisms for loading and reloading .tcl files for @@ -409,4 +409,4 @@ System" homeLink="index" homeLabel="Home" upLink="dev-guide" upLabel="Up"> - \ No newline at end of file + Index: openacs-4/packages/acs-core-docs/www/packages.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/packages.html,v diff -u -r1.53 -r1.54 --- openacs-4/packages/acs-core-docs/www/packages.html 8 Nov 2017 09:42:11 -0000 1.53 +++ openacs-4/packages/acs-core-docs/www/packages.html 27 Mar 2018 12:22:17 -0000 1.54 @@ -407,7 +407,7 @@

      Note that while the .sql files - have been added to the packge, they have not + have been added to the package, they have not been loaded into the database. For the purposes of development, you have to load the data model by hand, because while OpenACS has automatic mechanisms for loading and reloading Index: openacs-4/packages/acs-core-docs/www/release-notes.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/release-notes.adp,v diff -u -r1.4 -r1.5 --- openacs-4/packages/acs-core-docs/www/release-notes.adp 23 Mar 2018 23:53:01 -0000 1.4 +++ openacs-4/packages/acs-core-docs/www/release-notes.adp 27 Mar 2018 12:22:17 -0000 1.5 @@ -709,7 +709,7 @@

    Release 5.1.2

      -
    • Translations syncronized with the translation server. Basque and +

    • Translations synchronized with the translation server. Basque and Catalan added.

    • For a complete change list, see the Change list since 5.1.0 in ???.

    @@ -719,7 +719,7 @@
  • This is the first release using the newest adjustment to the versioning convention. The OpenACS 5.1.1 tag will apply to OpenACS core as well as to the most recent released version of every -package, including .LRN.

  • Translations syncronized with the translation server.

  • +package, including .LRN.

  • Translations synchronized with the translation server.

  • Bug 1519 fixed. This involved renaming all catalog files for ch_ZH, TH_TH, AR_EG, AR_LB, ms_my, RO_RO, FA_IR, and HR_HR. If you work with any of those locales, you should do a Index: openacs-4/packages/acs-core-docs/www/release-notes.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/release-notes.html,v diff -u -r1.58 -r1.59 --- openacs-4/packages/acs-core-docs/www/release-notes.html 23 Mar 2018 23:53:01 -0000 1.58 +++ openacs-4/packages/acs-core-docs/www/release-notes.html 27 Mar 2018 12:22:17 -0000 1.59 @@ -1223,7 +1223,7 @@

    Release 5.1.2

    Each instance of a package can have parameters associated with it. These are like preferences, and they can be set by the administrator for each application to change the behavior of your application.

    To add parameters for your package, go to the Automatic Package @@ -23,4 +23,4 @@ rightLink="tutorial-upgrade-scripts" rightLabel="Next" rightTitle="Writing upgrade scripts" homeLink="index" homeLabel="Home" upLink="tutorial-advanced" upLabel="Up"> - \ No newline at end of file + Index: openacs-4/packages/acs-core-docs/www/tutorial-parameters.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/tutorial-parameters.html,v diff -u -r1.11 -r1.12 --- openacs-4/packages/acs-core-docs/www/tutorial-parameters.html 8 Nov 2017 09:42:12 -0000 1.11 +++ openacs-4/packages/acs-core-docs/www/tutorial-parameters.html 27 Mar 2018 12:22:17 -0000 1.12 @@ -1,7 +1,7 @@ Adding in parameters for your package

    Adding in parameters for your package

    -

    Each instance of a package can have paramaters associated +

    Each instance of a package can have parameters associated with it. These are like preferences, and they can be set by the administrator for each application to change the behavior of your application.

    Index: openacs-4/packages/acs-core-docs/www/update-repository.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/update-repository.adp,v diff -u -r1.2 -r1.3 --- openacs-4/packages/acs-core-docs/www/update-repository.adp 7 Aug 2017 23:47:53 -0000 1.2 +++ openacs-4/packages/acs-core-docs/www/update-repository.adp 27 Mar 2018 12:22:17 -0000 1.3 @@ -17,7 +17,7 @@ oacs-x-y, and build a repository channel for each of those branches where x>=5 (so not for 4.6 and earlier). It will also build a channel for HEAD, which will be named after what you set in -'head_channel' above.

  • For each channel, it'll do an anonymous checkout of packges +'head_channel' above.

  • For each channel, it'll do an anonymous checkout of packages and contrib/packages, then build .apm files for each package in the checkout.

  • The files will be stored on the server's hard drive in the directory specified by the 'repository_dir' variable in the @@ -53,4 +53,4 @@ Package" homeLink="index" homeLabel="Home" upLink="releasing-openacs" upLabel="Up"> - \ No newline at end of file + Index: openacs-4/packages/acs-core-docs/www/update-repository.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/update-repository.html,v diff -u -r1.20 -r1.21 --- openacs-4/packages/acs-core-docs/www/update-repository.html 8 Nov 2017 09:42:12 -0000 1.20 +++ openacs-4/packages/acs-core-docs/www/update-repository.html 27 Mar 2018 12:22:17 -0000 1.21 @@ -21,7 +21,7 @@

  • - For each channel, it'll do an anonymous checkout of packges and contrib/packages, then build .apm files for each package in the checkout. + For each channel, it'll do an anonymous checkout of packages and contrib/packages, then build .apm files for each package in the checkout.

  • Index: openacs-4/packages/acs-core-docs/www/upgrade-supporting.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/upgrade-supporting.adp,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-core-docs/www/upgrade-supporting.adp 8 Nov 2017 09:42:12 -0000 1.3 +++ openacs-4/packages/acs-core-docs/www/upgrade-supporting.adp 27 Mar 2018 12:22:17 -0000 1.4 @@ -39,7 +39,7 @@ mv /usr/local/aolserver/bin/nsfts.so /usr/local/aolserver/bin/nsfts-0.2.so cp nsfts.so /usr/local/aolserver/bin -

    Build and install the OpenFTS code for PostGresSQL

    +

    Build and install the OpenFTS code for PostgreSQL

     cd /usr/local/src/Search-OpenFTS-tcl-0.3.2/
               cp -r pgsql_contrib_openfts /usr/local/src/postgresql-7.2.3/contrib /usr/local/src/postgresql-7.2.3/contrib/pgsql_contrib_openfts
               make
    @@ -151,4 +151,4 @@
     Chapter 6. Production Environments"
     		    homeLink="index" homeLabel="Home" 
     		    upLink="upgrade" upLabel="Up"> 
    -		
    \ No newline at end of file
    +		
    Index: openacs-4/packages/acs-core-docs/www/upgrade-supporting.html
    ===================================================================
    RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/upgrade-supporting.html,v
    diff -u -r1.22 -r1.23
    --- openacs-4/packages/acs-core-docs/www/upgrade-supporting.html	8 Nov 2017 09:42:12 -0000	1.22
    +++ openacs-4/packages/acs-core-docs/www/upgrade-supporting.html	27 Mar 2018 12:22:17 -0000	1.23
    @@ -27,7 +27,7 @@
               
    mv /usr/local/aolserver/bin/nsfts.so /usr/local/aolserver/bin/nsfts-0.2.so 
               cp nsfts.so /usr/local/aolserver/bin
               
    -

    Build and install the OpenFTS code for PostGresSQL

    +

    Build and install the OpenFTS code for PostgreSQL

    cd /usr/local/src/Search-OpenFTS-tcl-0.3.2/
               cp -r pgsql_contrib_openfts /usr/local/src/postgresql-7.2.3/contrib /usr/local/src/postgresql-7.2.3/contrib/pgsql_contrib_openfts
               make
    Index: openacs-4/packages/acs-core-docs/www/xml/for-everyone/release-notes.xml
    ===================================================================
    RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/for-everyone/release-notes.xml,v
    diff -u -r1.32 -r1.33
    --- openacs-4/packages/acs-core-docs/www/xml/for-everyone/release-notes.xml	24 Dec 2017 13:15:07 -0000	1.32
    +++ openacs-4/packages/acs-core-docs/www/xml/for-everyone/release-notes.xml	27 Mar 2018 12:22:17 -0000	1.33
    @@ -1788,7 +1788,7 @@
         Release 5.1.2
         
           
    -        Translations syncronized with the translation server.
    +        Translations synchronized with the translation server.
             Basque and Catalan added.
             
           
    @@ -1806,7 +1806,7 @@
             This is the first release using the newest adjustment to the versioning convention.  The OpenACS 5.1.1 tag will apply to OpenACS core as well as to the most recent released version of every package, including .LRN.
           
           
    -        Translations syncronized with the translation server.
    +        Translations synchronized with the translation server.
             
           
           
    Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/configuring.xml
    ===================================================================
    RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/configuring.xml,v
    diff -u -r1.15 -r1.16
    --- openacs-4/packages/acs-core-docs/www/xml/install-guide/configuring.xml	24 Dec 2017 13:15:07 -0000	1.15
    +++ openacs-4/packages/acs-core-docs/www/xml/install-guide/configuring.xml	27 Mar 2018 12:22:17 -0000	1.16
    @@ -266,12 +266,12 @@
               set can_register_p [events::security::can_register_for_event_p -event_id $event_id]
               We need to know what that procedure does, so go to /api-doc, paste events::security::can_register_for_event_p into the ACS Tcl API Search box, and click Feeling Lucky.  The next pages shows the proc, and we click "show source" to see more information.  The body of the proc is simply
               return [permission::permission_p -party_id $user_id -object_id $event_id -privilege write]
    -          This means that a given user must have the write privilige on the event in order to register.  Let's assume that the privileges inherit, so that if a user has the write privilige on the whole package, they will have the write privilege on the event.
    +          This means that a given user must have the write privilege on the event in order to register.  Let's assume that the privileges inherit, so that if a user has the write privilege on the whole package, they will have the write privilege on the event.
             
             
               
                 Setting Permissions
    -            A permission has three parts: the privilige, the object of the privilige, and the subject being granted the privilige.  In this case the privilige is "write," the object is the Events package, and the subject is all Registered Users.
    +            A permission has three parts: the privilege, the object of the privilege, and the subject being granted the privilege.  In this case the privilege is "write," the object is the Events package, and the subject is all Registered Users.
               
               
                 
    Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/upgrade.xml
    ===================================================================
    RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/upgrade.xml,v
    diff -u -r1.43 -r1.44
    --- openacs-4/packages/acs-core-docs/www/xml/install-guide/upgrade.xml	24 Mar 2018 00:14:57 -0000	1.43
    +++ openacs-4/packages/acs-core-docs/www/xml/install-guide/upgrade.xml	27 Mar 2018 12:22:17 -0000	1.44
    @@ -631,7 +631,7 @@
               mv /usr/local/aolserver/bin/nsfts.so /usr/local/aolserver/bin/nsfts-0.2.so 
               cp nsfts.so /usr/local/aolserver/bin
               
    -          Build and install the OpenFTS code for PostGresSQL
    +          Build and install the OpenFTS code for PostgreSQL
               cd /usr/local/src/Search-OpenFTS-tcl-0.3.2/
               cp -r pgsql_contrib_openfts /usr/local/src/postgresql-7.2.3/contrib /usr/local/src/postgresql-7.2.3/contrib/pgsql_contrib_openfts
               make
    Index: openacs-4/packages/acs-core-docs/www/xml/kernel/ext-auth-design.xml
    ===================================================================
    RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/kernel/ext-auth-design.xml,v
    diff -u -r1.8 -r1.9
    --- openacs-4/packages/acs-core-docs/www/xml/kernel/ext-auth-design.xml	7 Aug 2017 23:47:55 -0000	1.8
    +++ openacs-4/packages/acs-core-docs/www/xml/kernel/ext-auth-design.xml	27 Mar 2018 12:22:17 -0000	1.9
    @@ -701,7 +701,7 @@
     ad_proc -public auth::password::can_retrieve_p {
         {-authority_id:required}
     } {
    -    Returns whether the given authority can retrive forgotten passwords. 
    +    Returns whether the given authority can retrieve forgotten passwords. 
         
         @param authority_id The ID of the authority that the user is trying to log into.
         @return 1 if the authority allows retrieving passwords, 0 otherwise.
    Index: openacs-4/packages/acs-datetime/www/doc/design.adp
    ===================================================================
    RCS file: /usr/local/cvsroot/openacs-4/packages/acs-datetime/www/doc/design.adp,v
    diff -u -r1.3 -r1.4
    --- openacs-4/packages/acs-datetime/www/doc/design.adp	7 Aug 2017 23:47:55 -0000	1.3
    +++ openacs-4/packages/acs-datetime/www/doc/design.adp	27 Mar 2018 12:22:17 -0000	1.4
    @@ -19,7 +19,7 @@
     date/time information as input and return date/time strings to the
     caller. Rather than standardize on a low-level representation of
     time (like seconds since 00:00:00 UTC, January 1 1970) all of these
    -procedures accept general date specfications. For example, the
    +procedures accept general date specifications. For example, the
     default date for dt_widget_datetime can be specified
     as "2001-01-05", "2000-01-05 09:57 pm",
     "2000-01-05 21:57", etc. Internally these are parsed by
    Index: openacs-4/packages/acs-datetime/www/doc/design.html
    ===================================================================
    RCS file: /usr/local/cvsroot/openacs-4/packages/acs-datetime/www/doc/design.html,v
    diff -u -r1.2 -r1.3
    --- openacs-4/packages/acs-datetime/www/doc/design.html	7 Aug 2017 23:47:55 -0000	1.2
    +++ openacs-4/packages/acs-datetime/www/doc/design.html	27 Mar 2018 12:22:17 -0000	1.3
    @@ -30,7 +30,7 @@
     date/time information as input and return date/time strings
     to the caller.  Rather than standardize on a low-level representation
     of time (like seconds since 00:00:00 UTC, January 1 1970) all of these
    -procedures accept general date specfications.  For example, the
    +procedures accept general date specifications.  For example, the
     default date for dt_widget_datetime can be specified as
     "2001-01-05", "2000-01-05 09:57 pm", "2000-01-05 21:57", etc.
     Internally these are parsed by the standard Tcl procedure clock
    Index: openacs-4/packages/acs-events/sql/postgresql/test/time_intervals-test.sql
    ===================================================================
    RCS file: /usr/local/cvsroot/openacs-4/packages/acs-events/sql/postgresql/test/time_intervals-test.sql,v
    diff -u -r1.3 -r1.4
    --- openacs-4/packages/acs-events/sql/postgresql/test/time_intervals-test.sql	30 Mar 2013 13:00:30 -0000	1.3
    +++ openacs-4/packages/acs-events/sql/postgresql/test/time_intervals-test.sql	27 Mar 2018 12:22:17 -0000	1.4
    @@ -26,7 +26,7 @@
     				    'ut_time_intervals'
     				    );
     
    -	-- Store keys that are in the table prior to the regresion test
    +	-- Store keys that are in the table prior to the regression test
     	create table ut_interval_ids as select interval_id from time_intervals;
     
     	return 0;
    Index: openacs-4/packages/acs-events/sql/postgresql/test/timespan-test.sql
    ===================================================================
    RCS file: /usr/local/cvsroot/openacs-4/packages/acs-events/sql/postgresql/test/timespan-test.sql,v
    diff -u -r1.5 -r1.6
    --- openacs-4/packages/acs-events/sql/postgresql/test/timespan-test.sql	31 Jan 2018 20:43:23 -0000	1.5
    +++ openacs-4/packages/acs-events/sql/postgresql/test/timespan-test.sql	27 Mar 2018 12:22:17 -0000	1.6
    @@ -27,7 +27,7 @@
     				    'ut_timespans'
     				    );
     
    -	-- Store keys that are in the table prior to the regresion test
    +	-- Store keys that are in the table prior to the regression test
     	create table ut_interval_ids as select interval_id from time_intervals;
     	create table ut_timespan_ids as select timespan_id from timespans;
     
    Index: openacs-4/packages/acs-interface/www/doc/requirements.html
    ===================================================================
    RCS file: /usr/local/cvsroot/openacs-4/packages/acs-interface/www/doc/requirements.html,v
    diff -u -r1.3 -r1.4
    --- openacs-4/packages/acs-interface/www/doc/requirements.html	19 Oct 2001 01:41:41 -0000	1.3
    +++ openacs-4/packages/acs-interface/www/doc/requirements.html	27 Mar 2018 12:22:17 -0000	1.4
    @@ -47,7 +47,7 @@
        20.10.10 Add/Delete interface 

    20.10.20 Add/Remove methods to/from interfaces

    20.10.30 Specify parameters for methods

    - 20.10.40 Edit paramters for methods

    + 20.10.40 Edit parameters for methods

    20.10.50 List of interfaces

    20.20 Object type / Interface Registration

    Index: openacs-4/packages/acs-kernel/sql/oracle/rel-constraints-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/oracle/rel-constraints-create.sql,v diff -u -r1.6 -r1.7 --- openacs-4/packages/acs-kernel/sql/oracle/rel-constraints-create.sql 24 Dec 2017 13:10:49 -0000 1.6 +++ openacs-4/packages/acs-kernel/sql/oracle/rel-constraints-create.sql 27 Mar 2018 12:22:17 -0000 1.7 @@ -359,7 +359,7 @@ -- -- What are all the segments in the system that a party has to -- be in if the party were to be on side :rel_side of a relation --- in segement :rel_segment? +-- in segment :rel_segment? -- -- We want not only the direct required_segments (which we could -- get from the rel_constraints table directly), but also the Index: openacs-4/packages/acs-kernel/sql/oracle/upgrade/upgrade-4.1.1-4.2.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/oracle/upgrade/upgrade-4.1.1-4.2.sql,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-kernel/sql/oracle/upgrade/upgrade-4.1.1-4.2.sql 24 Dec 2017 13:10:49 -0000 1.3 +++ openacs-4/packages/acs-kernel/sql/oracle/upgrade/upgrade-4.1.1-4.2.sql 27 Mar 2018 12:22:17 -0000 1.4 @@ -374,7 +374,7 @@ -- -- What are all the segments in the system that a party has to -- be in if the party were to be on side :rel_side of a relation --- in segement :rel_segment? +-- in segment :rel_segment? -- -- We want not only the direct required_segments (which we could -- get from the rel_constraints table directly), but also the Index: openacs-4/packages/acs-kernel/sql/oracle/upgrade/upgrade-5.0d9-5.0d13.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/oracle/upgrade/upgrade-5.0d9-5.0d13.sql,v diff -u -r1.5 -r1.6 --- openacs-4/packages/acs-kernel/sql/oracle/upgrade/upgrade-5.0d9-5.0d13.sql 24 Dec 2017 13:10:49 -0000 1.5 +++ openacs-4/packages/acs-kernel/sql/oracle/upgrade/upgrade-5.0d9-5.0d13.sql 27 Mar 2018 12:22:17 -0000 1.6 @@ -5120,7 +5120,7 @@ -- -- What are all the segments in the system that a party has to -- be in if the party were to be on side :rel_side of a relation --- in segement :rel_segment? +-- in segment :rel_segment? -- -- We want not only the direct required_segments (which we could -- get from the rel_constraints table directly), but also the Index: openacs-4/packages/acs-kernel/sql/postgresql/rel-constraints-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/postgresql/rel-constraints-create.sql,v diff -u -r1.19 -r1.20 --- openacs-4/packages/acs-kernel/sql/postgresql/rel-constraints-create.sql 24 Dec 2017 13:10:50 -0000 1.19 +++ openacs-4/packages/acs-kernel/sql/postgresql/rel-constraints-create.sql 27 Mar 2018 12:22:17 -0000 1.20 @@ -450,7 +450,7 @@ -- -- What are all the segments in the system that a party has to -- be in if the party were to be on side :rel_side of a relation --- in segement :rel_segment? +-- in segment :rel_segment? -- -- We want not only the direct required_segments (which we could -- get from the rel_constraints table directly), but also the Index: openacs-4/packages/acs-kernel/sql/postgresql/upgrade/upgrade-5.7.0d2-5.7.0d3.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/postgresql/upgrade/upgrade-5.7.0d2-5.7.0d3.sql,v diff -u -r1.2 -r1.3 --- openacs-4/packages/acs-kernel/sql/postgresql/upgrade/upgrade-5.7.0d2-5.7.0d3.sql 24 Nov 2010 18:58:45 -0000 1.2 +++ openacs-4/packages/acs-kernel/sql/postgresql/upgrade/upgrade-5.7.0d2-5.7.0d3.sql 27 Mar 2018 12:22:17 -0000 1.3 @@ -6,9 +6,9 @@ -- @cvs-id $Id$ -- --- Avoiding the usage of the coalesce function +-- Avoiding the usage of the coalesce function -- on the site_nodes columns in the where clause --- because this leads to usage of a sequencial scan, +-- because this leads to usage of a sequential scan, -- instead we enforce the usage of an index scan -- by issolating the case on which we need to compare null values -- and using the equal operator. Index: openacs-4/packages/acs-kernel/sql/test/rel-segments-test.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/test/rel-segments-test.sql,v diff -u -r1.5 -r1.6 --- openacs-4/packages/acs-kernel/sql/test/rel-segments-test.sql 7 Aug 2017 23:47:56 -0000 1.5 +++ openacs-4/packages/acs-kernel/sql/test/rel-segments-test.sql 27 Mar 2018 12:22:17 -0000 1.6 @@ -374,14 +374,14 @@ PERFORM acs_group__delete(A); -- Remove the test members. - PERFROM acs_user__delete(joe); - PERFROM acs_user__delete(jane); - PERFROM acs_user__delete(bob); - PERFROM acs_user__delete(betty); - PERFROM acs_user__delete(jack); - PERFROM acs_user__delete(jill); - PERFROM acs_user__delete(sven); - PERFROM acs_user__delete(stacy); + PERFORM acs_user__delete(joe); + PERFORM acs_user__delete(jane); + PERFORM acs_user__delete(bob); + PERFORM acs_user__delete(betty); + PERFORM acs_user__delete(jack); + PERFORM acs_user__delete(jill); + PERFORM acs_user__delete(sven); + PERFORM acs_user__delete(stacy); return null; Index: openacs-4/packages/acs-lang/www/doc/i18n-design.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/www/doc/i18n-design.adp,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-lang/www/doc/i18n-design.adp 27 Mar 2018 11:18:00 -0000 1.3 +++ openacs-4/packages/acs-lang/www/doc/i18n-design.adp 27 Mar 2018 12:22:17 -0000 1.4 @@ -531,7 +531,7 @@
    Example 4: Register the string and display it in the preferred language of the current user. Note that the possible values for the -type paramater are determined by what has been +type parameter are determined by what has been implemented in the ad_locale procedure. By default, only the user type is implemented. An example of a type that could be implemented is subsite, for Index: openacs-4/packages/acs-lang/www/doc/i18n-design.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/www/doc/i18n-design.html,v diff -u -r1.5 -r1.6 --- openacs-4/packages/acs-lang/www/doc/i18n-design.html 27 Mar 2018 11:18:00 -0000 1.5 +++ openacs-4/packages/acs-lang/www/doc/i18n-design.html 27 Mar 2018 12:22:17 -0000 1.6 @@ -668,7 +668,7 @@
    Example 4: Register the string and display it in the preferred language of the current user. Note that the possible values for the type - paramater are determined by what has been implemented in the ad_locale procedure. + parameter are determined by what has been implemented in the ad_locale procedure. By default, only the user type is implemented. An example of a type that could be implemented is subsite, for displaying strings in the language of the subsite that owns the current web page. Index: openacs-4/packages/acs-mail/acs-mail.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail/acs-mail.info,v diff -u -r1.30 -r1.31 --- openacs-4/packages/acs-mail/acs-mail.info 18 Oct 2016 07:03:38 -0000 1.30 +++ openacs-4/packages/acs-mail/acs-mail.info 27 Mar 2018 12:22:17 -0000 1.31 @@ -15,7 +15,7 @@ OpenACS GPL 4 - Provides generic message services, with email sending. The acs-mail-lite package is the prefered + Provides generic message services, with email sending. The acs-mail-lite package is the preferred interface for new packages and it's anticipated that this package will ultimately be deprecated. Index: openacs-4/packages/acs-mail-lite/acs-mail-lite.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/acs-mail-lite.info,v diff -u -r1.58 -r1.59 --- openacs-4/packages/acs-mail-lite/acs-mail-lite.info 8 Mar 2018 11:09:02 -0000 1.58 +++ openacs-4/packages/acs-mail-lite/acs-mail-lite.info 27 Mar 2018 12:22:17 -0000 1.59 @@ -54,7 +54,7 @@ - + Index: openacs-4/packages/acs-mail-lite/sql/postgresql/acs-mail-lite-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/sql/postgresql/acs-mail-lite-create.sql,v diff -u -r1.17 -r1.18 --- openacs-4/packages/acs-mail-lite/sql/postgresql/acs-mail-lite-create.sql 27 Mar 2018 11:18:00 -0000 1.17 +++ openacs-4/packages/acs-mail-lite/sql/postgresql/acs-mail-lite-create.sql 27 Mar 2018 12:22:17 -0000 1.18 @@ -136,7 +136,7 @@ -- The Questions become: -- What scenarios might we run into? --- Another user reseting flags. +-- Another user resetting flags. -- A server migration or restore with some conflicting UIDs. -- Can we recognize a change in server? Index: openacs-4/packages/acs-mail-lite/sql/postgresql/upgrade/upgrade-5.10.0d1-5.10.0d2.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/sql/postgresql/upgrade/upgrade-5.10.0d1-5.10.0d2.sql,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-mail-lite/sql/postgresql/upgrade/upgrade-5.10.0d1-5.10.0d2.sql 27 Mar 2018 11:18:00 -0000 1.3 +++ openacs-4/packages/acs-mail-lite/sql/postgresql/upgrade/upgrade-5.10.0d1-5.10.0d2.sql 27 Mar 2018 12:22:17 -0000 1.4 @@ -69,7 +69,7 @@ -- The Questions become: -- What scenarios might we run into? --- Another user reseting flags. +-- Another user resetting flags. -- A server migration or restore with some conflicting UIDs. -- Can we recognize a change in server? Index: openacs-4/packages/acs-mail-lite/tcl/bounce-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/tcl/Attic/bounce-procs.tcl,v diff -u -r1.17 -r1.18 --- openacs-4/packages/acs-mail-lite/tcl/bounce-procs.tcl 17 Feb 2018 17:08:31 -0000 1.17 +++ openacs-4/packages/acs-mail-lite/tcl/bounce-procs.tcl 27 Mar 2018 12:22:17 -0000 1.18 @@ -162,7 +162,7 @@ set subject "[ad_system_name] Email Reminder" # now periodically send notifications to users with - # disabled email to tell them how to reenable the email + # disabled email to tell them how to re-enable the email set notifications [db_list_of_ns_sets get_recent_bouncing_users {}] # send notification to users with disabled email Index: openacs-4/packages/acs-mail-lite/tcl/email-inbound-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/tcl/email-inbound-procs.tcl,v diff -u -r1.7 -r1.8 --- openacs-4/packages/acs-mail-lite/tcl/email-inbound-procs.tcl 27 Mar 2018 11:18:00 -0000 1.7 +++ openacs-4/packages/acs-mail-lite/tcl/email-inbound-procs.tcl 27 Mar 2018 12:22:17 -0000 1.8 @@ -514,7 +514,7 @@
  • Adds these index to headers array: @@ -784,7 +784,7 @@ set cs2_list [list ] # Really? # We just added dti_cs to si_party_id_cs(party_id) - # This happens when scaning email is delayed some + # This happens when scanning email is delayed some ns_log Warning "acs_mail_lite::email_type.655 \ party_id '${party_id}' prev_start_cs '${prev_start_cs}' i '${i}' \ cs_list_len '${cs_list_len}' cs_list '${cs_list}' cs2_list '${cs2_list}'" @@ -1544,7 +1544,7 @@ # for all attachments and # base64 for encoding of all files. # - # Encoding has already been handled for files before queing. + # Encoding has already been handled for files before queueing. # Legacy approach replaces nested parts with flat list # from parse_email: Index: openacs-4/packages/acs-mail-lite/tcl/incoming-mail-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/tcl/Attic/incoming-mail-procs.tcl,v diff -u -r1.12 -r1.13 --- openacs-4/packages/acs-mail-lite/tcl/incoming-mail-procs.tcl 24 Mar 2018 00:14:57 -0000 1.12 +++ openacs-4/packages/acs-mail-lite/tcl/incoming-mail-procs.tcl 27 Mar 2018 12:22:17 -0000 1.13 @@ -144,7 +144,7 @@ -file:required -array:required } { - An email is splitted into several parts: headers, bodies and files lists and all headers directly. + An email is split into several parts: headers, bodies and files lists and all headers directly. The headers consists of a list with header names as keys and their corresponding values. All keys are lower case. The bodies consists of a list with two elements: content-type and content. Index: openacs-4/packages/acs-mail-lite/www/doc/analysis-notes.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/www/doc/analysis-notes.adp,v diff -u -r1.2 -r1.3 --- openacs-4/packages/acs-mail-lite/www/doc/analysis-notes.adp 20 Feb 2018 09:07:27 -0000 1.2 +++ openacs-4/packages/acs-mail-lite/www/doc/analysis-notes.adp 27 Mar 2018 12:22:17 -0000 1.3 @@ -69,7 +69,7 @@ Ideally, it needs to forecast if it is going to go overtime with processing of the next email, and quit just before it does.

    - Use duration_ms_list to determine a time adjustment for quiting before next cycle: + Use duration_ms_list to determine a time adjustment for quitting before next cycle: scan_in_est_dur_per_cycle_s + scan_repies_start_time = scan_in_est_quit_cs

    Index: openacs-4/packages/acs-mail-lite/www/doc/devel-notes-change-log.txt =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/www/doc/devel-notes-change-log.txt,v diff -u -r1.1 -r1.2 --- openacs-4/packages/acs-mail-lite/www/doc/devel-notes-change-log.txt 17 Feb 2018 17:08:31 -0000 1.1 +++ openacs-4/packages/acs-mail-lite/www/doc/devel-notes-change-log.txt 27 Mar 2018 12:22:17 -0000 1.2 @@ -37,7 +37,7 @@ imap-test For testing nsimap API maildir-test For testing maildir API - maildir-actives-reset For reseting concurrency check if + maildir-actives-reset For resetting concurrency check if acs_mail_lite::maildir_check_incoming errors. IMAP Index: openacs-4/packages/acs-mail-lite/www/doc/index.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/www/doc/Attic/index.html,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-mail-lite/www/doc/index.html 7 Aug 2017 23:47:57 -0000 1.3 +++ openacs-4/packages/acs-mail-lite/www/doc/index.html 27 Mar 2018 12:22:17 -0000 1.4 @@ -53,9 +53,9 @@ from the system by setting the email_bouncing_p flag to t. This value can be changed with the parameter "MaxBounceCount".
  • To notify users that they will not receive any more mails and to -tell them how to reenable the email account in the system again, +tell them how to re-enable the email account in the system again, a notification email gets sent every 7 days (configurable) -up to 4 times (configurable) that contains a link to reenable +up to 4 times (configurable) that contains a link to re-enable the email account.
  • To use this system here is a quick guide how to do it with postfix. Index: openacs-4/packages/acs-mail-lite/www/doc/outbound.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/www/doc/outbound.adp,v diff -u -r1.1 -r1.2 --- openacs-4/packages/acs-mail-lite/www/doc/outbound.adp 17 Feb 2018 17:08:31 -0000 1.1 +++ openacs-4/packages/acs-mail-lite/www/doc/outbound.adp 27 Mar 2018 12:22:17 -0000 1.2 @@ -81,8 +81,8 @@ from the system by setting the email_bouncing_p flag to t. This value can be changed with the parameter "MaxBounceCount".
  • To notify users that they will not receive any more mails and to -tell them how to reenable the email account in the system again, +tell them how to re-enable the email account in the system again, a notification email gets sent every 7 days (configurable) -up to 4 times (configurable) that contains a link to reenable +up to 4 times (configurable) that contains a link to re-enable the email account.
  • Index: openacs-4/packages/acs-subsite/tcl/email-image-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/tcl/email-image-procs.tcl,v diff -u -r1.17 -r1.18 --- openacs-4/packages/acs-subsite/tcl/email-image-procs.tcl 27 Mar 2018 11:18:00 -0000 1.17 +++ openacs-4/packages/acs-subsite/tcl/email-image-procs.tcl 27 Mar 2018 12:22:17 -0000 1.18 @@ -142,7 +142,7 @@ set bg "xc:$bgcolor" - # Creating an image of the rigth length where the email will be + # Creating an image of the right length where the email will be if {[catch {exec convert -size $size $bg $dest_path} errmsg]} { return "" } @@ -225,7 +225,7 @@ set bg "xc:$bgcolor" - # Creating an image of the rigth length where the email will be + # Creating an image of the right length where the email will be if { [catch { exec convert -size $size $bg $dest_path } ] } { # ImageMagick not present return 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.93 -r1.94 --- openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl 19 Jan 2018 20:56:00 -0000 1.93 +++ openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl 27 Mar 2018 12:22:17 -0000 1.94 @@ -94,7 +94,7 @@ # defines the ns_db API, and the OpenACS db_* API depends utterly on # it. However, there are a few holes in the functionality of the # ns_db API, and each AOLserver database driver tends to fill in those -# holes by adding extra functionality with its own, drive specifc +# holes by adding extra functionality with its own, drive specific # functions. Therefore, in order to make the db_* API work with # multiple db drivers, we need to introduce some switches or if # statements in our code. Index: openacs-4/packages/acs-tcl/tcl/apm-install-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/apm-install-procs.tcl,v diff -u -r1.113 -r1.114 --- openacs-4/packages/acs-tcl/tcl/apm-install-procs.tcl 22 Dec 2017 14:14:20 -0000 1.113 +++ openacs-4/packages/acs-tcl/tcl/apm-install-procs.tcl 27 Mar 2018 12:22:17 -0000 1.114 @@ -288,7 +288,7 @@ incr counter } } errmsg]} { - # Failed to parse the specificaton file. + # Failed to parse the specification file. apm_callback_and_log $callback "$spec_file could not be parsed correctly. It is not being installed. The error: $errmsg" } Index: openacs-4/packages/acs-tcl/tcl/json-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/json-procs.tcl,v diff -u -r1.8 -r1.9 --- openacs-4/packages/acs-tcl/tcl/json-procs.tcl 1 Oct 2017 12:16:05 -0000 1.8 +++ openacs-4/packages/acs-tcl/tcl/json-procs.tcl 27 Mar 2018 12:22:17 -0000 1.9 @@ -439,7 +439,7 @@ @param value A value from a parsed JSON string @return Something that works in Real SQL, not to be confused with MySQL. This includes not trying to insert '' into columns of type real, when - "null" is meant (we mimic Oracle bindvar/PG bindvar emulation sematics). + "null" is meant (we mimic Oracle bindvar/PG bindvar emulation semantics). The Ilias RTE JavaScript returns '' rather than null for JS null variables. } { Index: openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl,v diff -u -r1.152 -r1.153 --- openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 24 Mar 2018 08:26:03 -0000 1.152 +++ openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 27 Mar 2018 12:22:17 -0000 1.153 @@ -2121,7 +2121,7 @@ ad_proc -public util_sets_equal_p { list1 list2 } { Tests whether each unique string in list1 occurs as many - times in list1 as in list2 and vice versa (regarless of order). + times in list1 as in list2 and vice versa (regardless of order). @return 1 if the lists have identical sets and 0 otherwise @@ -2699,7 +2699,7 @@ ad_proc -public util_sets_equal_p { list1 list2 } { Tests whether each unique string in list1 occurs as many - times in list1 as in list2 and vice versa (regarless of order). + times in list1 as in list2 and vice versa (regardless of order). @return 1 if the lists have identical sets and 0 otherwise Index: openacs-4/packages/acs-tcl/tcl/test/acs-tcl-apm-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/test/acs-tcl-apm-procs.tcl,v diff -u -r1.4 -r1.5 --- openacs-4/packages/acs-tcl/tcl/test/acs-tcl-apm-procs.tcl 7 Aug 2017 23:48:00 -0000 1.4 +++ openacs-4/packages/acs-tcl/tcl/test/acs-tcl-apm-procs.tcl 27 Mar 2018 12:22:17 -0000 1.5 @@ -37,7 +37,7 @@ set default_value [ad_generate_random_string] } - aa_log "Paramater to be added: name : $parameter_name \n descr: $description \n datatype: $datatype \n default_value: $default_value" + aa_log "Parameter to be added: name : $parameter_name \n descr: $description \n datatype: $datatype \n default_value: $default_value" set parameter_id [apm_parameter_register $parameter_name $description $package_key $default_value $datatype] Index: openacs-4/packages/acs-tcl/tcl/test/test-permissions-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/test/test-permissions-procs.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-tcl/tcl/test/test-permissions-procs.tcl 7 Aug 2017 23:48:00 -0000 1.3 +++ openacs-4/packages/acs-tcl/tcl/test/test-permissions-procs.tcl 27 Mar 2018 12:22:17 -0000 1.4 @@ -32,11 +32,11 @@ # Grant admin privilege permission::grant -party_id $user_id -object_id $new_package_id -privilege "admin" # Verifying the admin privilege on the user - aa_true "testing admin privilige" \ + aa_true "testing admin privilege" \ [expr {[permission::permission_p -party_id $user_id -object_id $new_package_id -privilege "admin"] == 1}] # Revoking admin privilege permission::revoke -party_id $user_id -object_id $new_package_id -privilege "admin" - aa_true "testing if admin privilige was revoked" \ + aa_true "testing if admin privilege was revoked" \ [expr {[permission::permission_p -party_id $user_id -object_id $new_package_id -privilege "admin"] == 0}] # Grant read privilege @@ -47,7 +47,7 @@ # Revoking read privilege permission::revoke -party_id $user_id -object_id $new_package_id -privilege "read" # We tested with a query because we have problems with inherit - aa_true "testing if read privilige was revoked" \ + aa_true "testing if read privilege was revoked" \ [expr {[db_string test_read "select 1 from acs_permissions where object_id = :new_package_id and grantee_id = :user_id" -default 0] == 0}] # Grant write privilege Index: openacs-4/packages/acs-templating/tcl/list-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/list-procs.tcl,v diff -u -r1.71 -r1.72 --- openacs-4/packages/acs-templating/tcl/list-procs.tcl 27 Mar 2018 11:18:00 -0000 1.71 +++ openacs-4/packages/acs-templating/tcl/list-procs.tcl 27 Mar 2018 12:22:17 -0000 1.72 @@ -1709,7 +1709,7 @@ } } } - # DAVEB Make multivar actually DO someting + # DAVEB Make multivar actually DO something # set the other vars according to the settings if {$selected_p && $filter_properties(type) eq "multivar"} { foreach elm $value { @@ -1960,8 +1960,8 @@
  • display_template_name: theme-able template. If a display_template_name is specified, and a file with this name is - available from the ressource directory in the display_templates - section, then take its countent as display_template. The resouce + available from the resource directory in the display_templates + section, then take its countent as display_template. The resource directory is taken from the ResourceDir of the theme (parameter of acs-sub-site) or from the "resources" directory in acs-templating. The display_template_name acts similar to the query names in Index: openacs-4/packages/acs-templating/tcl/richtext-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/richtext-procs.tcl,v diff -u -r1.59 -r1.60 --- openacs-4/packages/acs-templating/tcl/richtext-procs.tcl 25 Mar 2018 22:13:40 -0000 1.59 +++ openacs-4/packages/acs-templating/tcl/richtext-procs.tcl 27 Mar 2018 12:22:17 -0000 1.60 @@ -277,7 +277,7 @@ ad_proc -public template::util::richtext::render_widgets { } { - Render all rich-text editors with their their widget spefic + Render all rich-text editors with their their widget specific code. Every editor might have multiple instances on the page, which are accessible to "render_widgets" via the global variable acs_blank_master__htmlareas. This function can be used to perform @@ -325,7 +325,7 @@ The richtext widget can be extended with several plugins, which are OpenACS packages named richtex-EDITOR. Plugins are available e.g. for xinha, tinymce and ckeditor4. When the plugins are installed, one can use e.g. xinha - by sepcifying 'editor xinha' in the options of the widget spec. + by specifying 'editor xinha' in the options of the widget spec. The following options for xinha may be specified:
    • editor: xinha Index: openacs-4/packages/acs-templating/www/doc/TclDocs/publish.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/TclDocs/publish.adp,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-templating/www/doc/TclDocs/publish.adp 7 Aug 2017 23:48:02 -0000 1.3 +++ openacs-4/packages/acs-templating/www/doc/TclDocs/publish.adp 27 Mar 2018 12:22:17 -0000 1.4 @@ -493,7 +493,7 @@
      publish::merge_with_template
      Merge the item with its template and return the -resulting HTML. This proc is simlar to +resulting HTML. This proc is similar to content::init
      Index: openacs-4/packages/acs-templating/www/doc/TclDocs/publish.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/TclDocs/publish.html,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-templating/www/doc/TclDocs/publish.html 7 Aug 2017 23:48:02 -0000 1.3 +++ openacs-4/packages/acs-templating/www/doc/TclDocs/publish.html 27 Mar 2018 12:22:17 -0000 1.4 @@ -910,7 +910,7 @@
      -Merge the item with its template and return the resulting HTML. This proc is simlar to content::init +Merge the item with its template and return the resulting HTML. This proc is similar to content::init
      Index: openacs-4/packages/acs-templating/www/doc/gen/proc-doc.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/gen/proc-doc.adp,v diff -u -r1.4 -r1.5 --- openacs-4/packages/acs-templating/www/doc/gen/proc-doc.adp 29 Dec 2017 09:59:11 -0000 1.4 +++ openacs-4/packages/acs-templating/www/doc/gen/proc-doc.adp 27 Mar 2018 12:22:17 -0000 1.5 @@ -10,7 +10,7 @@ main text markers to divvy the Tcl library file into neat compartments: namespace, procedure and directive. Each of these divisions has its own text marker(s). In the end, your Tcl file -should look somthing like this: +should look something like this:
      
       [------------------------------------------------------]
       [------  ignored text at beginning of file  -----------]
      @@ -153,4 +153,4 @@
       completely qualified name of the namespace or
       procedure.

      - \ No newline at end of file + Index: openacs-4/packages/acs-templating/www/doc/gen/proc-doc.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/gen/proc-doc.html,v diff -u -r1.4 -r1.5 --- openacs-4/packages/acs-templating/www/doc/gen/proc-doc.html 29 Dec 2017 09:59:11 -0000 1.4 +++ openacs-4/packages/acs-templating/www/doc/gen/proc-doc.html 27 Mar 2018 12:22:17 -0000 1.5 @@ -17,7 +17,7 @@ < blah blah > -The Tcl proc parser relies on three main text markers to divvy the Tcl library file into neat compartments: namespace, procedure and directive. Each of these divisions has its own text marker(s). In the end, your Tcl file should look somthing like this: +The Tcl proc parser relies on three main text markers to divvy the Tcl library file into neat compartments: namespace, procedure and directive. Each of these divisions has its own text marker(s). In the end, your Tcl file should look something like this: