Здравствуйте, VladD2, Вы писали:
VD>Можно ли заставить Тортилу заменять \r\n на \n ?
Если ты о замене разделителей строк в исходных файлах при комите и чекаутах, то дело не в Тортиле, а в самом svn. Нужно курить
svn:eol-style. Например, добавить соответствующие правила в config Subversion. Вроде таких:
[auto-props]
### The format of the entries is:
### file-name-pattern = propname[=value][;propname[=value]...]
### The file-name-pattern can contain wildcards (such as '*' and
### '?'). All entries which match will be applied to the file.
### Note that auto-props functionality must be enabled, which
### is typically done by setting the 'enable-auto-props' option.
*.c = svn:eol-style=LF
*.cpp = svn:eol-style=LF
*.h = svn:eol-style=LF
*.rb = svn:eol-style=native
*.tex = svn:eol-style=native
*.dsp = svn:eol-style=CRLF
*.dsw = svn:eol-style=CRLF
*.sh = svn:eol-style=native;svn:executable
*.txt = svn:eol-style=native
*.png = svn:mime-type=image/png
*.jpg = svn:mime-type=image/jpeg
Makefile = svn:eol-style=native
Или ты о чем-то другом?