# File lib/cgikit.rb, line 1458
        def other_attributes_string
                optional = ''
                each do |key, value|
                        if (self.class.own_attributes.include?(key) == false) and \
                                (value != nil) and (key != 'other') then
                                value = parent.parse_ckd_value value
                                optional << " #{key}=\"#{value}\""
                        end
                end

                unless other = fetch('other') then
                        other = ''
                else
                        other = ' ' + other.to_s
                end                   

                optional + other
        end