Index: openacs-4/packages/xowiki/xowiki.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/xowiki.info,v diff -u -r1.153.2.14 -r1.153.2.15 --- openacs-4/packages/xowiki/xowiki.info 25 May 2016 19:33:46 -0000 1.153.2.14 +++ openacs-4/packages/xowiki/xowiki.info 24 Jun 2016 15:17:24 -0000 1.153.2.15 @@ -10,7 +10,7 @@ t xowiki - + Gustaf Neumann A xotcl-based enterprise wiki system with multiple object types 2015-10-04 @@ -55,7 +55,7 @@ BSD-Style 2 - + 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.248.2.21 -r1.248.2.22 --- openacs-4/packages/xowiki/tcl/form-field-procs.tcl 5 May 2016 11:57:12 -0000 1.248.2.21 +++ openacs-4/packages/xowiki/tcl/form-field-procs.tcl 24 Jun 2016 15:17:24 -0000 1.248.2.22 @@ -504,9 +504,8 @@ # set old_value [my set value] my set value [xo::escape_message_keys $old_value] - ::html::input [my get_attributes type size maxlength id name value \ - pattern placeholder {CSSclass class} {*}$booleanAtts] {} + autocomplete pattern placeholder {CSSclass class} {*}$booleanAtts] {} # # Reset values to original content # @@ -1218,7 +1217,7 @@ } inform instproc render_input {} { ::html::t [my value] - ::html::input [my get_attributes type id name value disabled {CSSclass class}] {} + ::html::input [my get_attributes type id name value disabled autocomplete {CSSclass class}] {} } inform instproc render_help_text {} { } @@ -1376,7 +1375,7 @@ } number instproc render_input {} { ::html::input [my get_attributes type id name value disabled {CSSclass class} min max step value \ - autofocus formnovalidate multiple pattern placeholder readonly required] {} + autofocus autocomplete formnovalidate multiple pattern placeholder readonly required] {} } ########################################################### @@ -1394,7 +1393,7 @@ } range instproc render_input {} { ::html::input [my get_attributes type id name value disabled {CSSclass class} min max step value \ - autofocus formnovalidate multiple pattern placeholder readonly required] {} + autofocus autocomplete formnovalidate multiple pattern placeholder readonly required] {} }