Lines Matching refs:path
422 returning the path to that proposal or None otherwise."""
424 path = 'proposals/{}.adoc'.format(extname)
425 if os.path.exists(path) and os.access(path, os.R_OK):
426 return path
433 path = checkProposal(self.name)
434 if path is not None:
435 proposals.append([self.name, path])
438 path = checkProposal(name)
439 if path is not None:
440 proposals.append([name, path])
444 for (name, path) in sorted(proposals):
446 f'link:{{specRepositoryURL}}/{path}[{name}]',