I noticed that you committed a lot of files which contain windows line
endings which look quite ugly when using a Un*x-based system. Can you set
some svn properties so that svn will convert these automatically, please?
Maybe this page will help you doing it:
http://www.zope.org/DevHome/Subversion/SubversionConfigurationForLineEndings
--
Felix Schwarz
Dipl.-Informatiker
Gubener Str. 38
10243 Berlin
Germany
www.schwarz.eu - software development and consulting
Hi Kevin,
I noticed that you committed a lot of files which contain windows line
endings which look quite ugly when using a Un*x-based system. Can you set
some svn properties so that svn will convert these automatically, please?
Maybe this page will help you doing it:
http://www.zope.org/DevHome/Subversion/SubversionConfigurationForLineEndings
--
Felix Schwarz
Dipl.-Informatiker
Apparently, it got better but there are quite a few leftovers.
A small test script:
--------------------------------------------------------------------------
#!/usr/bin/env python
import re
import sys
for item in sys.argv[1:]:
filename = item.strip()
contents = file(filename, "rb").read()
match = re.search("\r", contents)
if match != None:
print filename
--------------------------------------------------------------------------
detected the following
$ find authorize/ -type f | grep -v .svn | xargs python \
find_dos_line_endings.py
testapp/authoritytestapp/authoritytestapp/i18n/authoritytestapp.pot
testapp/authoritytestapp/authoritytestapp/templates/index.html
testapp/authoritytestapp/authoritytestapp/templates/private.html
testapp/authoritytestapp/authoritytestapp/public/images/under_the_hood_blue.png
testapp/authoritytestapp/authoritytestapp/public/images/header_inner.png
testapp/authoritytestapp/authoritytestapp/public/images/info.png
testapp/authoritytestapp/authoritytestapp/public/images/ok.png
testapp/authoritytestapp/authoritytestapp/public/images/tg_under_the_hood.png
testapp/authoritytestapp/authoritytestapp.egg-info/PKG-INFO
testapp/authoritytestapp/development.ini
setup.py
authority/schemes.py
authority/test/test_basic_auth.py
authority/test/testMiddleware.py
authority/methods.py
doc/sample-authority.ini
doc/_notes.txt
authority/middleware.py
--
Mit freundlichen Grüßen
Felix Schwarz
Dipl.-Informatiker
Gubener Str. 38
10243 Berlin
Germany
www.schwarz.eu - Software-Entwicklung und Beratung