# File daybook/mycgi/daybook/newpost/d_check.rb, line 22
  def daybook_comment_check
    require "uri";error_list = Hash.new
    daybook_comment_page = File.join(@url, "daybook", "daybook_archives")
    script_daybook_comment = File.join(@path_script_dir, "daybook", "daybook_comment.rb")
    ref = URI.parse(@apache_referer)
    uri = URI.parse(daybook_comment_page)
    p_check_script_name(@apache_filename, script_daybook_comment, error_list)
    p_check_host(ref, uri, error_list)
    p_check_path(ref, uri, error_list)
    return error_list
  end