module Seahorse::Util

def uri_path_escape(path)

def uri_path_escape(path)
  path.gsub(/[^\/]+/) { |part| uri_escape(part) }
end