# File mod_docs/local.rb, line 370
  def publish_if_modified_since(stat, request, response)
    mtime = Time.parse(request.header('If-Modified-Since'))
    if (stat.mtime <= mtime) then
      response.status = 304 # Not Modified
      response.start_body
      return true
    end

    false
  end