module Seahorse::Util

def uri_escape(string)

def uri_escape(string)
  CGI::escape(string.encode('UTF-8')).gsub('+', '%20').gsub('%7E', '~')
end