Index: openacs-4/packages/xowiki/tcl/form-field-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/form-field-procs.tcl,v diff -u -r1.284.2.123 -r1.284.2.124 --- openacs-4/packages/xowiki/tcl/form-field-procs.tcl 7 Nov 2020 11:57:51 -0000 1.284.2.123 +++ openacs-4/packages/xowiki/tcl/form-field-procs.tcl 7 Nov 2020 12:07:03 -0000 1.284.2.124 @@ -2168,8 +2168,13 @@ } localized_text instproc render_input {} { - ::html::input [:get_attributes type id name value disabled autocomplete {CSSclass class}] {} # + # Rely on the superclass to do the right rendering of the main + # content widget. + # + next + + # # Add a small selector for specifying the locale for the provided # message string. # @@ -2187,7 +2192,21 @@ } } + ########################################################### + # + # ::xowiki::formfield::localized_richtext + # + ########################################################### + Class create localized_richtext -superclass {localized_text richtext} -ad_doc { + + This class can be used to provide an interface for specifying + internationalized text strings saved in message keys via input + from a form. Very similar to localized_text + + @see ::xowiki::formfield::localized_text + } + ########################################################### # # ::xowiki::formfield::correct_when