# File lib/cgikit/response.rb, line 77
  def initialize( headers = nil )
    super
    self.status = 200
    @headers['Content-Type'] = 'text/html'
    @headers['Cache-Control'] = \
      'private, no-cache, no-store, must-revalidate, max-age=0'
    @headers['Expires'] = Utilities.date(Time.now - 60)
    @headers['Date'] = Utilities.date(Time.now)
    @headers['Pragma'] = 'no-cache'
  end