# File lib_doc/rucy/access.rb, line 268
    def filter_open(context, script_name, request, response, logger)
      for addr_cond in @deny_cond_list
        if (addr_cond === request.path) then
          raise HTTPError.new(403) # Forbidden
        end
      end
      nil
    end