# File lib/cgikit/elements/refresh.rb, line 37
    def append_to_response( response, context )
      take_value(:seconds)
      take_value(:url)

      unless url = @values[:url] then
        url = action_url(context)
      end
      html =  "<meta http-equiv=\"refresh\" "
      html << "content=\"#{@values[:seconds]}; URL=#{url}\""
      html << other()
      html << ' />'
      response.content << html
    end