Index: openacs-4/packages/bootstrap-icons/tcl/resource-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/bootstrap-icons/tcl/resource-procs.tcl,v diff -u -r1.1.2.3 -r1.1.2.4 --- openacs-4/packages/bootstrap-icons/tcl/resource-procs.tcl 7 Aug 2022 12:47:21 -0000 1.1.2.3 +++ openacs-4/packages/bootstrap-icons/tcl/resource-procs.tcl 24 Nov 2022 14:37:45 -0000 1.1.2.4 @@ -21,12 +21,12 @@ # configuration file: # # ns_section ns/server/${server}/acs/bootstrap-icons - # ns_param BootstrapIconsVersion 1.9.1 + # ns_param BootstrapIconsVersion 1.10.2 # set ::bootstrap_icons::version [parameter::get \ -package_id $package_id \ -parameter BootstrapIconsVersion \ - -default 1.9.1] + -default 1.10.2] ad_proc ::bootstrap_icons::resource_info { {-version ""} @@ -101,7 +101,9 @@ extraFiles {} \ downloadURLs https://github.com/twbs/icons/releases/download/v${version}/bootstrap-icons-${version}.zip \ cspMap $cspMap \ - urnMap {} + urnMap {} \ + versionCheckURL "https://cdnjs.com/libraries?q=bootstrap-icons" + return $result } Index: openacs-4/packages/fa-icons/tcl/resource-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/fa-icons/tcl/resource-procs.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/fa-icons/tcl/resource-procs.tcl 17 Apr 2022 10:41:37 -0000 1.1.2.1 +++ openacs-4/packages/fa-icons/tcl/resource-procs.tcl 24 Nov 2022 14:37:45 -0000 1.1.2.2 @@ -20,12 +20,12 @@ # configuration file: # # ns_section ns/server/${server}/acs/fa-icons - # ns_param FAIconsVersion 6.1.1 + # ns_param FAIconsVersion 6.2.1 # set ::fa_icons::version [parameter::get \ -package_id $package_id \ -parameter FAIconsVersion \ - -default 6.1.1] + -default 6.2.1] ad_proc ::fa_icons::resource_info { {-version ""} @@ -63,7 +63,7 @@ # # cloudflare has e.g. the following resources: # - # https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css + # https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css # # We just need the CSS file, which is on the CDN in the # "font" directory. @@ -89,8 +89,8 @@ extraFiles {} \ downloadURLs https://github.com/FortAwesome/Font-Awesome/releases/download/${version}/fontawesome-free-${version}-web.zip \ cspMap $cspMap \ - urnMap {} - + urnMap {} \ + versionCheckURL https://cdnjs.com/libraries/font-awesome return $result } Index: openacs-4/packages/openacs-bootstrap5-theme/tcl/resource-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/openacs-bootstrap5-theme/tcl/resource-procs.tcl,v diff -u -r1.1.2.6 -r1.1.2.7 --- openacs-4/packages/openacs-bootstrap5-theme/tcl/resource-procs.tcl 23 Oct 2022 18:16:21 -0000 1.1.2.6 +++ openacs-4/packages/openacs-bootstrap5-theme/tcl/resource-procs.tcl 24 Nov 2022 14:37:45 -0000 1.1.2.7 @@ -1,5 +1,5 @@ namespace eval openacs_bootstrap5_theme { - set bootstrap_version 5.2.2 + set bootstrap_version 5.2.3 ad_proc -private ::openacs_bootstrap5_theme::resource_info {} { @@ -30,8 +30,8 @@ set prefix $resourceUrl/$versionDir set cdnHost "" } else { - # https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css - # https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js + # https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css + # https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js set prefix $cdn/$versionDir } @@ -48,7 +48,9 @@ urnMap { urn:ad:css:bootstrap5 css/bootstrap.min.css urn:ad:js:bootstrap5 js/bootstrap.bundle.min.js - } + } \ + versionCheckURL "https://cdnjs.com/libraries?q=bootstrap" + #urn:ad:js:popper2 dist/umd/popper.min.js if {$cdnHost ne ""} { Index: openacs-4/packages/richtext-ckeditor4/tcl/richtext-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/richtext-ckeditor4/tcl/richtext-procs.tcl,v diff -u -r1.14.2.21 -r1.14.2.22 --- openacs-4/packages/richtext-ckeditor4/tcl/richtext-procs.tcl 9 Oct 2022 16:04:12 -0000 1.14.2.21 +++ openacs-4/packages/richtext-ckeditor4/tcl/richtext-procs.tcl 24 Nov 2022 14:37:44 -0000 1.14.2.22 @@ -258,7 +258,9 @@ jsFiles {} \ extraFiles {} \ downloadURLs http://download.cksource.com/CKEditor/CKEditor/CKEditor%20${version}/ckeditor_${version}_${ck_package}.zip \ - urnMap {} + urnMap {} \ + versionCheckURL https://cdn.ckeditor.com/ + return $result }