Stefan Sperling wrote on Mon, Sep 13, 2010 at 12:16:44 +0200: > Having a similar reporting feature in "svnadmin verify", and ways to > fix these problems with "svndumpfilter" or maybe even "svnadmin recover" > wouldn't hurt either.
The verify functionality is part of the FS layer; but the FS layer doesn't treat svn:* props specially --- the requirement for UTF-8/LF is only introduced at the libsvn_repos layer (e.g., validate_prop() in fs-wrap.c is where it's enforced). So there are some layering/design issues here. Daniel (compare path_valid() in fs_loader.c, which enforces an FS-level requirement)