column_form_error columnWhat it does:
Makes the forms to ask about which error-action type the user desiresDefined in: /web/philip/tcl/prototype-defs.tcl
Source code:
set select_html "<tr align=right><th>$column:</th>\n" set form_var $column append form_var "_error_action" append select_html "<td><input name=$form_var value=nothing checked type=radio>Do Nothing</td>\n" append select_html "<td><input name=$form_var value=complain type=radio>Return an Error</td>\n" append select_html "<td><input name=$form_var value=fixit type=radio>Set a Default</td>\n" append select_html "</tr> " return $select_html