Index: openacs-4/packages/xowiki/tcl/xowiki-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/xowiki-procs.tcl,v diff -u -r1.485.2.37 -r1.485.2.38 --- openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 24 Nov 2016 10:15:17 -0000 1.485.2.37 +++ openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 24 Nov 2016 11:47:47 -0000 1.485.2.38 @@ -2771,6 +2771,14 @@ append fields "Repeat container:\n" foreach f [::xowiki::formfield::repeatContainer info instances] { append fields "$f\t[$f name]\t [$f spec]\n" + foreach component [$f components] { + append fields "... [$component name]\t[$component info class]\t [$component spec]\n" + if {[$component istype ::xowiki::formfield::CompoundField]} { + foreach c [$component components] { + append fields "..... [$c name]\t[$c info class]\t [$c spec]\n" + } + } + } } ns_log notice "dynamic repeat field $msg: fields & specs:\n$fields" } @@ -2836,7 +2844,7 @@ if {![info exists ::_form_field_names($path.$i)]} { set f [$repeatField require_component $i] ns_log notice "dynamic repeat field created $path.$i -> $f" - set ::_form_field_names($path.$i) $f + :form_field_index $f } } } else {