# File lib/cookiejar/cookie_validation.rb, line 131
    def self.determine_cookie_path request_uri, cookie_path
      uri = to_uri request_uri
      cookie_path = to_path cookie_path
      
      if cookie_path == nil || cookie_path.empty?
        cookie_path = cookie_base_path uri.path
      end
      cookie_path
    end