Home | History | Annotate | Download | only in tools

Lines Matching refs:SVN

14 PROPERTY_MIMETYPE = 'svn:mime-type'
24 SVN = 'svn.bat'
26 SVN = 'svn'
34 proc = subprocess.Popen([SVN, 'cat', svn_url],
44 class Svn:
47 """Set up to manipulate SVN control within the given directory.
78 """Run "svn info" and return a dictionary containing its output.
80 output = self._RunCommand([SVN, 'info'])
96 return self._RunCommand([SVN, 'checkout', url, path])
103 "svn update"
106 return self._RunCommand([SVN, 'update', path, '--revision', revision])
109 """Returns a list of all subdirectories (not files) within a given SVN
115 filenames = self._RunCommand([SVN, 'ls', url]).split('\n')
123 SVN control.
129 including those that are not (yet) under SVN control.
135 """Return a list of files in this dir with the given SVN status.
149 stdout = self._RunCommand([SVN, 'status']).replace('\r', '')
155 """Adds these files to SVN control.
157 @param filenames files to add to SVN control
159 self._RunCommand([SVN, 'add'] + filenames)
162 """Sets a svn property for these files.
170 [SVN, 'propset', property_name, property_value] + filenames)
174 """Sets a svn property for all files matching filename_pattern.
188 'svn revert') of a file within the repository.
194 self._RunCommand([SVN, 'export', '--revision', 'BASE', '--force',