Index: openacs-4/packages/bootstrap-icons/tcl/resource-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/bootstrap-icons/tcl/Attic/resource-init.tcl,v diff -u -N -r1.1.2.3 -r1.1.2.4 --- openacs-4/packages/bootstrap-icons/tcl/resource-init.tcl 12 May 2023 17:53:10 -0000 1.1.2.3 +++ openacs-4/packages/bootstrap-icons/tcl/resource-init.tcl 11 Oct 2023 13:06:16 -0000 1.1.2.4 @@ -19,8 +19,16 @@ } else { set fn bootstrap-icons.css - if {[apm_version_names_compare $::bootstrap_icons::version 1.10.4] >= 0} { - ns_log notice "CSS [dict get $resource_info prefix]/$fn " + # + # Unfortunately, the structure of the distributed .zip file is + # version dependent: Versions greater or equal to 1.10.4 and less + # than 1.11.0 require a "font" in the path. + # + if {[apm_version_names_compare $::bootstrap_icons::version 1.10.4] >= 0 + && [apm_version_names_compare $::bootstrap_icons::version 1.11.0 ] < 0 } { + # + # Adding "font" to the path. + # set fn font/$fn } }