svnlook

How can I match the svnlook output in Perl?

I'm running SVN on a Windows server, and I'm using Perl scripts to implement some pre-commit hooks. I'm seeing the following error message from TortoiseSVN: Error !!ScriptError!! Can't parse line: _U path/to/files/trunk and this is the script: foreach my $line (`$svnlook changed -t "$txn" "$repos"`) { chomp($line); if ($line...

SvnLook with unicode Ouptut

Hi ! On Windows Vista, with Subversion 1.6.12 setup throught VisualSvn Server 2.1.3, I have the following output Commentaires AccentuÚs. Instead of Commentaires Accentués. with the command (in a dos or powershell console in admin mode) svnlook log "D:\MyRepo" I've tried with other subversion binaries distribution (silksvn) and...

Can "svnlook cat" be forced to output properly formatted text during a commit transaction?

In writing a pre-commit hook for subversion, I am in a situation where my call to svnlook as MESSAGE=`svnlook cat -t $TXN $REPOS $FILE` results in a returned value which consists of a single, continuous line instead of the properly formatted file(s) that changed in the attempted commit. This is problematic because the formatting of th...