# File lib/cgikit.rb, line 1594
                def string_for_form_common_attributes
                        string = ''
                        attr = value = nil
                        FORM_COMMON_ATTRIBUTES.each do | attr |
                                value = fetch attr
                                if ( attr == 'enabled' ) and ( value == false ) then
                                        string << " disabled" 
                                elsif value and (attr != 'enabled') then
                                        string << " #{attr}=\"#{value}\"" 
                                end
                        end
                        string
                end