# File lib/cgikit/api.rb, line 79
  def other( component, associations )
    optional = ''
    associations.each do |key, as|
      if !has_binding?(key) and !special_binding_key?(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