Fisheye: Tag 1.4.2.2 refers to a dead (removed) revision in file `openacs-4/packages/ajaxhelper/tcl/json-procs.tcl'. Fisheye: No comparison available. Pass `N' to diff? 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.27 -r1.14.2.28 --- openacs-4/packages/richtext-ckeditor4/tcl/richtext-procs.tcl 23 Jul 2024 16:10:50 -0000 1.14.2.27 +++ openacs-4/packages/richtext-ckeditor4/tcl/richtext-procs.tcl 24 Jul 2024 17:15:25 -0000 1.14.2.28 @@ -369,13 +369,10 @@ # set install_dir_name [acs_package_root_dir richtext-ckeditor4]/www/resources/$version/standard set download_prefix https://cdnjs.cloudflare.com/ajax/libs/ckeditor/$version/ - if {[info commands ::json::json2dict] eq ""} { - package require json - } file mkdir $install_dir_name set r [ns_http run https://api.cdnjs.com/libraries/ckeditor/$version] - set d [::json::json2dict [dict get $r body]] + set d [::util::json2dict [dict get $r body]] foreach fn [dict get $d files] { if {[string match *.min.* $fn]} continue if {[regexp {plugins/([^/]+)/} $fn . pluginName]} { Index: openacs-4/packages/xooauth/tcl/rest-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xooauth/tcl/rest-procs.tcl,v diff -u -r1.1.2.5 -r1.1.2.6 --- openacs-4/packages/xooauth/tcl/rest-procs.tcl 24 Jul 2023 13:10:36 -0000 1.1.2.5 +++ openacs-4/packages/xooauth/tcl/rest-procs.tcl 24 Jul 2024 17:15:25 -0000 1.1.2.6 @@ -249,10 +249,7 @@ # Convert JSON to a Tcl dict and add it to the result # dict. # - if {[info commands ::json::json2dict] eq ""} { - package require json - } - return [::json::json2dict $json_string] + return [::util::json2dict $json_string] } :method typed_value_to_json {type value} {