Index: openacs-4/packages/cookie-consent/www/sitewide-admin/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/cookie-consent/www/sitewide-admin/index.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/packages/cookie-consent/www/sitewide-admin/index.tcl 20 Jan 2018 22:57:54 -0000 1.3 +++ openacs-4/packages/cookie-consent/www/sitewide-admin/index.tcl 11 Jun 2018 09:41:40 -0000 1.4 @@ -8,7 +8,7 @@ if {$::tcl_version eq "8.5"} { # - # In Tcl 8.5, "::try" was not yet a builtin of Tcl + # In Tcl 8.5, "::try" was not yet a built-in of Tcl # package require try } Index: openacs-4/packages/faq/tcl/faq-sc-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/faq/tcl/faq-sc-procs.tcl,v diff -u -r1.4 -r1.5 --- openacs-4/packages/faq/tcl/faq-sc-procs.tcl 7 Aug 2017 23:48:10 -0000 1.4 +++ openacs-4/packages/faq/tcl/faq-sc-procs.tcl 11 Jun 2018 09:41:40 -0000 1.5 @@ -32,7 +32,7 @@ } ad_proc -private faq::fts::url { faq_id } { - returns a url for a faq to the search package + returns a URL for a faq to the search package @author davis@xarg.net @creation-date 2004-04-01 @@ -75,7 +75,7 @@ } ad_proc -private faq_qanda::fts::url { entry_id } { - returns a url for a faq to the search package + returns a URL for a faq to the search package @author davis@xarg.net @creation-date 2004-04-01 Index: openacs-4/packages/file-storage/tcl/file-storage-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/tcl/file-storage-procs.tcl,v diff -u -r1.77 -r1.78 --- openacs-4/packages/file-storage/tcl/file-storage-procs.tcl 9 May 2018 15:33:31 -0000 1.77 +++ openacs-4/packages/file-storage/tcl/file-storage-procs.tcl 11 Jun 2018 09:41:40 -0000 1.78 @@ -575,7 +575,7 @@ {-path ""} {-file_name ""} } { - publish a url object to the file system as a Windows shortcut + publish a URL object to the file system as a Windows shortcut (which at least KDE also knows how to handle) } { if {$path eq ""} { Index: openacs-4/packages/file-storage/tcl/test/file-storage-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/tcl/test/file-storage-procs.tcl,v diff -u -r1.6 -r1.7 --- openacs-4/packages/file-storage/tcl/test/file-storage-procs.tcl 7 Aug 2017 23:48:11 -0000 1.6 +++ openacs-4/packages/file-storage/tcl/test/file-storage-procs.tcl 11 Jun 2018 09:41:40 -0000 1.7 @@ -168,13 +168,13 @@ file_storage::twt::call_fs_page - # Create an URL in a folder + # Create a URL in a folder set url_title [ad_generate_random_string] set url "e-lane.org" set url_description [ad_generate_random_string] set response [file_storage::twt::create_url_in_folder $url_title $url $url_description] - aa_display_result -response $response -explanation {for creating an URL in a folder} + aa_display_result -response $response -explanation {for creating a URL in a folder} twt::user::logout } @@ -196,7 +196,7 @@ file_storage::twt::call_fs_page - # Create an URL + # Create a URL set url_title [ad_generate_random_string] set url "e-lane.org" set url_description [ad_generate_random_string] Index: openacs-4/packages/file-storage/tcl/test/tclwebtest-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/tcl/test/tclwebtest-procs.tcl,v diff -u -r1.6 -r1.7 --- openacs-4/packages/file-storage/tcl/test/tclwebtest-procs.tcl 7 Aug 2017 23:48:11 -0000 1.6 +++ openacs-4/packages/file-storage/tcl/test/tclwebtest-procs.tcl 11 Jun 2018 09:41:40 -0000 1.7 @@ -170,9 +170,9 @@ if { [string match "*\?folder_id*" $response_url] } { if {[catch {tclwebtest::link find $url_title} errmsg]} { - aa_error "file_storage::twt::create_url_in_folder $errmsg : Didn't create an URL in a folder" + aa_error "file_storage::twt::create_url_in_folder $errmsg : Didn't create a URL in a folder" } else { - aa_log "an URL created in a folder" + aa_log "a URL created in a folder" set response 1 } @@ -368,9 +368,9 @@ if { [string match "*\?folder*id*" $response_url] } { if {[catch {tclwebtest::link find $url_title} errmsg]} { - aa_error "file_storage::twt::create_url $errmsg : Didn't create an URL" + aa_error "file_storage::twt::create_url $errmsg : Didn't create a URL" } else { - aa_log "an URL created" + aa_log "a URL created" set response 1 } @@ -405,9 +405,9 @@ if { [string match "*/dotlrn/file-storage/\?folder*id*" $response_url] } { if {[catch {tclwebtest::link find $url_title} errmsg]} { - aa_error "file_storage::twt::edit_url $errmsg : Didn't edit an URL" + aa_error "file_storage::twt::edit_url $errmsg : Didn't edit a URL" } else { - aa_log "an URL edited" + aa_log "a URL edited" set response 1 } @@ -432,9 +432,9 @@ if { [string match "*/dotlrn/file-storage/\?folder*id*" $response_url] } { if {![catch {tclwebtest::link find $url_title} errmsg]} { - aa_error "file_storage::twt::delete_url $errmsg : Didn't delete an URL" + aa_error "file_storage::twt::delete_url $errmsg : Didn't delete a URL" } else { - aa_log "an URL deleted" + aa_log "a URL deleted" set response 1 } Index: openacs-4/packages/richtext-ckeditor4/tcl/ckfinder-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/richtext-ckeditor4/tcl/ckfinder-init.tcl,v diff -u -r1.4 -r1.5 --- openacs-4/packages/richtext-ckeditor4/tcl/ckfinder-init.tcl 10 Dec 2017 15:18:34 -0000 1.4 +++ openacs-4/packages/richtext-ckeditor4/tcl/ckfinder-init.tcl 11 Jun 2018 09:41:40 -0000 1.5 @@ -214,7 +214,7 @@ # if {$::tcl_version eq "8.5"} { # - # In Tcl 8.5, "::try" was not yet a builtin of Tcl + # In Tcl 8.5, "::try" was not yet a built-in of Tcl # package require try } Index: openacs-4/packages/richtext-ckeditor5/tcl/ckfinder-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/richtext-ckeditor5/tcl/ckfinder-init.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/richtext-ckeditor5/tcl/ckfinder-init.tcl 10 Dec 2017 15:19:46 -0000 1.2 +++ openacs-4/packages/richtext-ckeditor5/tcl/ckfinder-init.tcl 11 Jun 2018 09:41:40 -0000 1.3 @@ -214,7 +214,7 @@ # if {$::tcl_version eq "8.5"} { # - # In Tcl 8.5, "::try" was not yet a builtin of Tcl + # In Tcl 8.5, "::try" was not yet a built-in of Tcl # package require try } Index: openacs-4/Announce-OpenACS-5.8.0 =================================================================== RCS file: /usr/local/cvsroot/openacs-4/Announce-OpenACS-5.8.0,v diff -u -r1.2 -r1.3 --- openacs-4/Announce-OpenACS-5.8.0 27 Oct 2014 16:38:49 -0000 1.2 +++ openacs-4/Announce-OpenACS-5.8.0 11 Jun 2018 09:46:54 -0000 1.3 @@ -164,10 +164,9 @@ tsearch errors * misc: - - removed duplicate files that caused troubles under Mac OS - X. For some reason, several files existed with uppercase + - removed duplicate files that caused troubles under macOS. For some reason, several files existed with uppercase and lowercase names, where the latter was a previous - convention in Xinha. cvs on Mac OS X reported "cvs + convention in Xinha. cvs on macOS reported "cvs update: move away...; it is in the way" even on new checkouts. - convert ppt now via catppt to text, part of catdoc Index: openacs-4/Announce-OpenACS-5.8.1 =================================================================== RCS file: /usr/local/cvsroot/openacs-4/Announce-OpenACS-5.8.1,v diff -u -r1.2 -r1.3 --- openacs-4/Announce-OpenACS-5.8.1 27 Oct 2014 16:38:50 -0000 1.2 +++ openacs-4/Announce-OpenACS-5.8.1 11 Jun 2018 09:46:54 -0000 1.3 @@ -84,7 +84,7 @@ in the application packages). The full list of changes is included in the raw ChangeLog [1]. -OpenACS.org runs these package at the newest level (but not all +OpenACS.org runs this package at the newest level (but not all packages of the list are installed on OpenACS.org). The list of application packages contains as well the Index: openacs-4/Announce-OpenACS-5.9.0 =================================================================== RCS file: /usr/local/cvsroot/openacs-4/Announce-OpenACS-5.9.0,v diff -u -r1.2 -r1.3 --- openacs-4/Announce-OpenACS-5.9.0 7 Aug 2017 23:47:43 -0000 1.2 +++ openacs-4/Announce-OpenACS-5.9.0 11 Jun 2018 09:46:54 -0000 1.3 @@ -95,7 +95,7 @@ pages (controlled via package parameter "TclTraceSaveNsReturn" in the acs-tcl package parameters) - - New api function "ad_log" having the same interface as ns_log, but + - New API function "ad_log" having the same interface as ns_log, but which logs the calling information (like URL and call-stack) to ease tracking of errors. @@ -189,7 +189,7 @@ in the application packages). The full list of changes is included in the raw ChangeLog [1]. -OpenACS.org runs these package at the newest level (but not all +OpenACS.org runs this package at the newest level (but not all packages of the list are installed on OpenACS.org). The list of application packages contains as well the Index: openacs-4/Announce-OpenACS-5.9.1 =================================================================== RCS file: /usr/local/cvsroot/openacs-4/Announce-OpenACS-5.9.1,v diff -u -r1.2 -r1.3 --- openacs-4/Announce-OpenACS-5.9.1 7 Aug 2017 23:47:43 -0000 1.2 +++ openacs-4/Announce-OpenACS-5.9.1 11 Jun 2018 09:46:54 -0000 1.3 @@ -156,7 +156,7 @@ - Reduced number of insert cr_child_rels operations, just when needed: - cr_child_rels provide only little benefit (allow to use roles in + cr_child_rels provide only little benefit (allow one to use roles in a child-rel), but the common operation is a well available in cr_items via the parent_id. cr_child_rels do not help for recursive queries either. One option would be to add an @@ -169,8 +169,7 @@ * OpenACS maintains a per-request CSRF token that ensures that form replies are coming just from sites that received the form * CSRF support is optional for packages where CSRF is less - dangerous, and such requests are wanted (e.g. search and - api-browser) + dangerous, and such requests are wanted (e.g. search and API-browser) - Added Support for W3C "Upgrade-Insecure-Headers" (see https://www.w3.org/TR/upgrade-insecure-requests/): @@ -265,7 +264,7 @@ such as Accept-Language) - Fixed quoting of message keys on many places - - Improved exception handling (often, a "catch" swallows to much, + - Improved exception handling (often, a "catch" swallows one too much, e.g. script_aborts), introducing "ad_exception". - Generalized handling of leading zeros: @@ -340,7 +339,7 @@ for detecting message keys * "ns_md5" and "ns_parseurl": improve compatibility between AOLserver and NaviServer - * "ad_dom_sanitize_html": allow to specify different sets of + * "ad_dom_sanitize_html": allow one to specify different sets of tags, attributes and protocols and "ad_dom_fix_html", which is a light weight tidy variant. @@ -436,7 +435,7 @@ * Better value checking for query parameter, error reporting via ad_return_complaint * Added option "-path_encode" to methods "pretty_link" and - "folder_path" to allow to control, whether the result should be + "folder_path" to allow one to control, whether the result should be encoded or not (default true) * Form fields: @@ -448,7 +447,7 @@ "autocomplete" + Fixed generation of "orderby" attribute based on form-field names - + richtext: allow to specify "extraAllowedContent" via options + + richtext: allow one to specify "extraAllowedContent" via options + Improved layout of horizontal check boxes * Menu bar: