Index: openacs-4/packages/acs-templating/tcl/parse-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/parse-procs.tcl,v diff -u -r1.67 -r1.68 --- openacs-4/packages/acs-templating/tcl/parse-procs.tcl 11 Sep 2024 06:15:48 -0000 1.67 +++ openacs-4/packages/acs-templating/tcl/parse-procs.tcl 13 Nov 2024 08:40:51 -0000 1.68 @@ -862,7 +862,7 @@ @param tag the tag identifier @param attribute the attribute name } { - return [ns_set get $tag $attribute] + return [ns_set iget $tag $attribute] } ad_proc -private template::current_tag {} { Index: openacs-4/packages/acs-templating/tcl/tab-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/tab-procs.tcl,v diff -u -r1.11 -r1.12 --- openacs-4/packages/acs-templating/tcl/tab-procs.tcl 3 Sep 2024 15:37:35 -0000 1.11 +++ openacs-4/packages/acs-templating/tcl/tab-procs.tcl 13 Nov 2024 08:40:51 -0000 1.12 @@ -215,7 +215,7 @@ # Change the default style if no style is specified if {[ns_set iget $params style] eq ""} { - ns_set update $params style tabbed-dialog + ns_set iupdate $params style tabbed-dialog } # Render the template Index: openacs-4/packages/acs-templating/tcl/tag-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/tag-init.tcl,v diff -u -r1.54 -r1.55 --- openacs-4/packages/acs-templating/tcl/tag-init.tcl 27 Oct 2024 18:19:32 -0000 1.54 +++ openacs-4/packages/acs-templating/tcl/tag-init.tcl 13 Nov 2024 08:40:51 -0000 1.55 @@ -223,7 +223,7 @@ # Check, if the src can be resolved against resources/templates in # the theme package # - ns_set update $params src [template::themed_template [ns_set iget $params src]] + ns_set iupdate $params src [template::themed_template [ns_set iget $params src]] template::template_tag_include_helper $params } @@ -238,7 +238,7 @@ set src [ns_set iget $params src] set adp_stub [template::resource_path -type widgets -style $src -relative] if {[file exists $::acs::rootdir/$adp_stub.adp]} { - ns_set update $params src $adp_stub + ns_set iupdate $params src $adp_stub } template::template_tag_include_helper $params } @@ -534,7 +534,7 @@ # set id [template::get_attribute formerror $params id] - set type [ns_set get $params type] + set type [ns_set iget $params type] if {$type eq {}} { set key $id @@ -577,13 +577,13 @@ "template::element options \${form:id} [list $id] { $tag_attributes }" # make sure name is a parameter to pass to the rendering tag handler - ns_set update $params name formgroup - ns_set update $params id formgroup + ns_set iupdate $params name formgroup + ns_set iupdate $params id formgroup # Use the multiple or grid tag to render the form group depending on # whether the cols attribute was specified - if { [ns_set find $params cols] == -1 } { + if { [ns_set ifind $params cols] == -1 } { template_tag_multiple $chunk $params } else { template_tag_grid $chunk $params @@ -609,8 +609,8 @@ "template::element options \${form:id} [list $id] { $tag_attributes }" # make sure name is a parameter to pass to the rendering tag handler - ns_set update $params name formgroup - ns_set update $params id formgroup + ns_set iupdate $params name formgroup + ns_set iupdate $params id formgroup template::adp_append_code "append __adp_output \"\$\{formgroup:${row}(widget)\} \$\{formgroup:${row}(label)\}\"" } @@ -951,9 +951,7 @@ if { $i == $size_1 } { template::adp_append_code "$switches $value {" -nobreak - template::adp_compile_chunk $chunk - template::adp_append_code "}" } else {