Lines Matching full:svn

7 #  Script to check and fix svn property settings for CLDR source files.
9 # Also check for the correct line endings on files with svn:eol-style = native
22 # Only files from the svn repository are checked.
32 # svn autoprops definitions.
48 *.c = svn:eol-style=native
49 *.cc = svn:eol-style=native
50 *.cpp = svn:eol-style=native
51 *.h = svn:eol-style=native
52 *.rc = svn:eol-style=native
53 *.dsp = svn:eol-style=native
54 *.dsw = svn:eol-style=native
55 *.sln = svn:eol-style=native
56 *.vcproj = svn:eol-style=native
57 configure = svn:eol-style=native;svn:executable
58 *.sh = svn:eol-style=native;svn:executable
59 *.pl = svn:eol-style=native;svn:executable
60 *.py = svn:eol-style=native;svn:executable
61 *.txt = svn:mime-type=text/plain;svn:eol-style=native
62 *.java = svn:eol-style=native;svn:mime-type=text/plain;;charset=utf-8
63 *.ucm = svn:eol-style=native
64 *.html = svn:eol-style=native;svn:mime-type=text/html
65 *.htm = svn:eol-style=native;svn:mime-type=text/html
66 *.xml = svn:eol-style=native
67 Makefile = svn:eol-style=native
68 *.in = svn:eol-style=native
69 *.mak = svn:eol-style=native
70 *.mk = svn:eol-style=native
71 *.png = svn:mime-type=image/png
72 *.jpeg = svn:mime-type=image/jpeg
73 *.jpg = svn:mime-type=image/jpeg
74 *.bin = svn:mime-type=application/octet-stream
75 *.brk = svn:mime-type=application/octet-stream
76 *.cnv = svn:mime-type=application/octet-stream
77 *.dat = svn:mime-type=application/octet-stream
78 *.icu = svn:mime-type=application/octet-stream
79 *.res = svn:mime-type=application/octet-stream
80 *.spp = svn:mime-type=application/octet-stream
90 # file_types: The parsed form of the svn auto-props specification.
117 # example string_proplist at this point: " svn:eol-style=native;svn:executable"
127 # properties with no explicit value, e.g. svn:executable
132 # *.java = svn:eol-style=native;svn:mime-type=text/plain;;charset=utf-8
157 # base_mime_type: svn:mime-type property value from the auto-props file (no charset= part)
158 # actual_mime_type: existing svn:mime-type property value for the file.
159 # return: svn:mime-type property value, with charset added when appropriate.
210 output = runCommand("svn ls -R ");
225 actual_propval = runCommand("svn propget --strict " + propname + " '" + f + "'")
227 if propname == "svn:mime-type" and propval.find("text/") == 0:
228 … # check for UTF-8 text files, should have svn:mime-type=text/something; charset=utf8
231 print "svn propset %s '%s' '%s'" % (propname, propval, f)
233 os.system("svn propset %s '%s' '%s'" % (propname, propval, f))
234 if propname == "svn:eol-style" and propval == "native":