Ignore newline style and whitespace with svn diff

I frequently work in environments where people rather use Notepad than Emacs and then freely commit their changes to the subversion repository. If you then diff your file against the one in the repository, you would get a diff for each line. Subversion can ignore newline style and whitespace diffs with this command:

svn diff -x --ignore-eol-style

(Read also this: How can I set certain properties on everything in the repository? Also, how can I make sure that every new file coming into the repository has these properties?)

Technology: