class ACL::ACLEntry

def dot_pat_str(str)

def dot_pat_str(str)
  list = str.split('.').collect { |s|
    (s == '*') ? '.+' : s
  }
  list.join("\\.")
end