Lines Matching refs:info
119 """Calls svn info to extract the repository, path, and revision."""
121 srctool = subprocess.Popen(['svn.bat', 'info', local_filename],
123 info = srctool.stdout.read()
127 # Hack up into a dictionary of the fields printed by svn info.
128 vals = dict((y.split(': ', 2) for y in info.split('\r\n') if y))
175 info = ExtractSvnInfo(filename)
180 if not info:
187 root = info[0]
188 path = info[1]
189 rev = info[2]
193 if not REPO_MAP.has_key(info[0]):