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 -N -r1.114.2.27 -r1.114.2.28 --- openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 20 Apr 2022 08:00:10 -0000 1.114.2.27 +++ openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 27 Nov 2022 18:08:15 -0000 1.114.2.28 @@ -1185,7 +1185,7 @@
  • element_messages: list of (element_name, message, element_name, message, ...) of errors on the individual registration elements. to be relayed on to the user. If update_status is not ok, then either - udpate_message or element_messages is guaranteed to be nonempty, and both are + update_message or element_messages is guaranteed to be nonempty, and both are guaranteed to be in the array list. Cannot contain HTML. @@ -1973,7 +1973,7 @@ # failed consecutive failed login attempts based on the ip-address and subsite. # # After the maximum number of consecutive failed login attempts -# has been excedeed, all further login attempts will be automatically rejected +# has been exceeded, all further login attempts will be automatically rejected # 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 Index: openacs-4/packages/acs-authentication/tcl/test/authentication-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/test/Attic/authentication-procs.tcl,v diff -u -N -r1.1.2.15 -r1.1.2.16 --- openacs-4/packages/acs-authentication/tcl/test/authentication-procs.tcl 10 Feb 2022 21:33:44 -0000 1.1.2.15 +++ openacs-4/packages/acs-authentication/tcl/test/authentication-procs.tcl 27 Nov 2022 18:08:15 -0000 1.1.2.16 @@ -335,7 +335,7 @@ aa_true "No attempts anymore..." \ {[llength [auth::login_attempts::get_all]] == 0} - aa_log "Record two attemps on different keys" + aa_log "Record two attempts on different keys" ::auth::login_attempts::record \ -login_attempt_key $login_attempt_key Index: openacs-4/packages/acs-authentication/tcl/test/local-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/test/Attic/local-procs.tcl,v diff -u -N -r1.1.2.6 -r1.1.2.7 --- openacs-4/packages/acs-authentication/tcl/test/local-procs.tcl 30 Sep 2022 16:51:31 -0000 1.1.2.6 +++ openacs-4/packages/acs-authentication/tcl/test/local-procs.tcl 27 Nov 2022 18:08:15 -0000 1.1.2.7 @@ -266,7 +266,7 @@ set secret_answer "...the service contracts..." try { - aa_log "Password is non-empty" + aa_log "Password is nonempty" aa_log "EmailRegistrationConfirmationToUserP = 0" aa_log "RegistrationProvidesRandomPasswordP = 0" aa_log "NotifyAdminOfNewRegistrationsP = 0" @@ -334,7 +334,7 @@ aa_true "Password works" [ad_check_password $user_id $new_password] aa_equals "No emails were sent" $::auth_registration_implementations_to_addr "" - aa_log "Password is non-empty" + aa_log "Password is nonempty" aa_log "EmailRegistrationConfirmationToUserP = 1" aa_log "RegistrationProvidesRandomPasswordP = 0" aa_log "NotifyAdminOfNewRegistrationsP = 0" @@ -369,7 +369,7 @@ aa_equals "One confirmation email was sent to the user" \ $::auth_registration_implementations_to_addr [list $email] - aa_log "Password is non-empty" + aa_log "Password is nonempty" aa_log "EmailRegistrationConfirmationToUserP = 1" aa_log "RegistrationProvidesRandomPasswordP = 1" aa_log "NotifyAdminOfNewRegistrationsP = 1" @@ -422,7 +422,7 @@ aa_section acs::test::auth::registration::Register - aa_log "Password is non-empty" + aa_log "Password is nonempty" set password $new_password Index: openacs-4/packages/highcharts/tcl/resource-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/highcharts/tcl/Attic/resource-procs.tcl,v diff -u -N -r1.1.2.4 -r1.1.2.5 --- openacs-4/packages/highcharts/tcl/resource-procs.tcl 24 Nov 2022 14:11:08 -0000 1.1.2.4 +++ openacs-4/packages/highcharts/tcl/resource-procs.tcl 27 Nov 2022 18:15:03 -0000 1.1.2.5 @@ -147,7 +147,7 @@ } # - # So far, everything is fine, unpack the dowloaded zip file + # So far, everything is fine, unpack the downloaded zip file # foreach url [dict get $resource_info downloadURLs] { set fn [file tail $url] @@ -168,22 +168,22 @@ # # Settings for the CDN, in case it differs # - dict set urns urn:ad:js:highcharts $prefix/highcharts.min.js - dict set urns urn:ad:js:highcharts-more $prefix/highcharts-more.min.js - dict set urns urn:ad:js:highcharts/modules/exporting $prefix/modules/exporting.min.js - dict set urns urn:ad:js:highcharts/modules/accessibility $prefix/modules/accessibility.min.js + dict set URNs urn:ad:js:highcharts $prefix/highcharts.min.js + dict set URNs urn:ad:js:highcharts-more $prefix/highcharts-more.min.js + dict set URNs urn:ad:js:highcharts/modules/exporting $prefix/modules/exporting.min.js + dict set URNs urn:ad:js:highcharts/modules/accessibility $prefix/modules/accessibility.min.js } else { # # Settings for local installs # - dict set urns urn:ad:js:highcharts $prefix/highcharts.js - dict set urns urn:ad:js:highcharts-more $prefix/highcharts-more.js - dict set urns urn:ad:js:highcharts/modules/exporting $prefix/modules/exporting.js - dict set urns urn:ad:js:highcharts/modules/accessibility $prefix/modules/accessibility.js + dict set URNs urn:ad:js:highcharts $prefix/highcharts.js + dict set URNs urn:ad:js:highcharts-more $prefix/highcharts-more.js + dict set URNs urn:ad:js:highcharts/modules/exporting $prefix/modules/exporting.js + dict set URNs urn:ad:js:highcharts/modules/accessibility $prefix/modules/accessibility.js } - foreach {URN resource} $urns { + foreach {URN resource} $URNs { template::register_urn \ -urn $URN \ -resource $resource \ Index: openacs-4/packages/proctoring-support/tcl/proctoring-callback-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/proctoring-support/tcl/Attic/proctoring-callback-procs.tcl,v diff -u -N -r1.1.2.5 -r1.1.2.6 --- openacs-4/packages/proctoring-support/tcl/proctoring-callback-procs.tcl 23 Feb 2022 15:07:53 -0000 1.1.2.5 +++ openacs-4/packages/proctoring-support/tcl/proctoring-callback-procs.tcl 27 Nov 2022 18:17:11 -0000 1.1.2.6 @@ -6,7 +6,7 @@ ad_proc -private ::proctoring::enforce_filter args { This is the enforcing filter calling the callbacks that will tell - us whether this request whould be proctored or not. + us whether this request would be proctored or not. @see proctoring::enforce @see https://naviserver.sourceforge.io/n/naviserver/files/ns_register.html @@ -92,7 +92,7 @@ -object_id:required } { Implementations of this hook can return a list of timeframes, - retrieved by package-specific logic (e.g. the timeframe of a XoWF + retrieved by package-specific logic (e.g. the timeframe of an XoWF InclassExam) that we can use to e.g. filter the list of proctoring artifacts via presets.