# File lib/cgikit/api.rb, line 84
  def other( component, associations )
    optional = ''
    associations.each do |key, as|
      if (has_binding?(key) == false) and (key != Declaration::ELEMENT_KEY) and \
        (key != Declaration::OTHER_KEY) then
        value = as.value(component).to_s
        optional << " #{key}=\"#{value}\""
      end
    end

    if as = associations[Declaration::OTHER_KEY] then
      other = ' ' + as.value(component).to_s
    else
      other = ''
    end      

    optional + other
  end