# File mod_docs/local.rb, line 395
  def publish_if_range(file, stat, req_path, request, response)
    mtime = Time.parse(request.header('If-Range'))
    if (stat.mtime <= mtime) then
      return publish_range(file, stat, req_path, request, response)
    end

    false
  end