Exemplo n.º 1
0
 def expand_pathfile(rpf):
     """Return the expanded RootPathFile"""
     expanded = []
     root = expanduser(rpf.root)
     pathfile = expanduser(rpf.pathfile)
     if rx_params.search(pathfile):
         root = expand_patterns(root).format(self)
         pathfile = expand_patterns(pathfile).format(self)
     rpf = RootPathFile(root, pathfile)
     expanded.append(rpf)
     if not os.path.exists(pathfile) and is_windows():
         # prioritise a special character encoded version
         #
         # most 'alien' chars are supported for 'nix fs paths, and we
         # only pass the proposed path through 'escape_filename' (which
         # apparently doesn't respect case) if we don't care about case!
         #
         # FIX: assumes 'nix build used on a case-sensitive fs, nt case
         # insensitive. clearly this is not biting anyone though (yet!)
         pathfile = os.path.sep.join([rpf.root, rpf.end_escaped])
         rpf = RootPathFile(rpf.root, pathfile)
         expanded.insert(len(expanded) - 1, rpf)
     return expanded
Exemplo n.º 2
0
 def expand_pathfile(rpf):
     """Return the expanded RootPathFile"""
     expanded = []
     root = expanduser(rpf.root)
     pathfile = expanduser(rpf.pathfile)
     if rx_params.search(pathfile):
         root = expand_patterns(root).format(self)
         pathfile = expand_patterns(pathfile).format(self)
     rpf = RootPathFile(root, pathfile)
     expanded.append(rpf)
     if not os.path.exists(pathfile) and is_windows():
         # prioritise a special character encoded version
         #
         # most 'alien' chars are supported for 'nix fs paths, and we
         # only pass the proposed path through 'escape_filename' (which
         # apparently doesn't respect case) if we don't care about case!
         #
         # FIX: assumes 'nix build used on a case-sensitive fs, nt case
         # insensitive. clearly this is not biting anyone though (yet!)
         pathfile = os.path.sep.join([rpf.root, rpf.end_escaped])
         rpf = RootPathFile(rpf.root, pathfile)
         expanded.insert(len(expanded) - 1, rpf)
     return expanded