Lines Matching full:svn
4 SVN helper script.
6 Try to set the svn:eol-style property to "native" on every .py, .txt, .c and
9 Files with the svn:eol-style property already set (to anything) are skipped.
11 svn will itself refuse to set this property on a file that's not under SVN
13 that behavior, and passes on whatever warning message the failing "svn
20 svn:eol-style set, output looks like:
22 property 'svn:eol-style' set on 'Lib\ctypes\__init__.py'
26 svn: warning: 'patch-finalizer.txt' is not under version control
30 svn: File 'Lib\test\test_pep263.py' has binary mime type property
37 default = os.path.join(root, ".svn", "props", fn+".svn-work")
39 format = int(open(os.path.join(root, ".svn", "format")).read().strip())
45 return [os.path.join(root, ".svn", "prop-base", fn+".svn-base"),
46 os.path.join(root, ".svn", "props", fn+".svn-work")]
85 if '.svn' in dirs:
86 dirs.remove('.svn')
89 if 'svn:eol-style' not in proplist(root, fn):
91 os.system('svn propset svn:eol-style native "%s"' % path)