Re: svn merge operation extremely slow

2011-10-05 Thread Kyle Leber
On Mon, Oct 3, 2011 at 9:55 AM, Johan Corveleyn wrote: > On Mon, Oct 3, 2011 at 3:04 PM, Stefan Sperling wrote: > > On Mon, Oct 03, 2011 at 02:59:25PM +0200, Johan Corveleyn wrote: > >> On Mon, Oct 3, 2011 at 2:35 PM, Johan Corveleyn > wrote: > >> > On Mon, Oct 3, 2011 at 2:16 PM, Kyle Leber >

Subversion 1.6.17 installation

2011-10-05 Thread Kalimuthu Samayan
Hi, Having trouble in installing Subversion 1.6.17 rpm since it is looking for dependency library files like libapr-1.so, libaprutil-1.so and libneon.so. Is that any one give me the URL to download the subversion 1.6.17 installable. -- Regards, Muthu Kalimuthu Samayan Mobile: 0044+(0)782 122 74

Re: how to compare an exported file (or set of files) against the repository?

2011-10-05 Thread Konstantin Kolinko
2011/10/5 Dominik Psenner : > This procedure could be easily automated by a stupid script that does > something like: > > for REV in seq 0 NEWESTREV; do >        svn up -r REV >        cp updated-file repos-file >        if [ -z "`svn diff`" ]; then echo "found candidate rev $REV!"; fi >        svn

RE: how to compare an exported file (or set of files) against the repository?

2011-10-05 Thread Mertens, Bram
> Mazda Motor Logistics Europe NV, Blaasveldstraat 162, B-2830 Willebroek VAT BE 0406.024.281, RPR Mechelen, ING 310-0092504-52, IBAN : BE64 3100 0925 0452, SWIFT : BBRUBEBB -Original Message- > From: Ulrich Eckhardt [mailto:ulrich.eckha...@dominolaser.com] > Sent: woensdag 5 oktober

Re: Transaction author without requiring password

2011-10-05 Thread Matt Joiner
Yes I did, and this is my deduction also. The user names won't make it to the pre-commit unless they're required to authenticate by svnserve first. On Wed, Oct 5, 2011 at 10:31 PM, Dominik Psenner wrote: >>I tried this, but an author is not passed unless auth-access is in use >>AFAICT. So $USER i

RE: how to compare an exported file (or set of files) against the repository?

2011-10-05 Thread Dominik Psenner
This procedure could be easily automated by a stupid script that does something like: for REV in seq 0 NEWESTREV; do svn up -r REV cp updated-file repos-file if [ -z "`svn diff`" ]; then echo "found candidate rev $REV!"; fi svn revert . done JMTC, D. >-Origina

Re: how to compare an exported file (or set of files) against the repository?

2011-10-05 Thread Ulrich Eckhardt
Am 05.10.2011 14:49, schrieb Mertens, Bram: I have been unable to find an answer to this in the FAQ or the mailing list archives. I found one question that appears to be similar to what I'm trying to achieve but it did not contain a > reply that solves my problem. I haven't found the need for

Re: how to compare an exported file (or set of files) against the repository?

2011-10-05 Thread Daniel Shahaf
I'm a bit surprised that 'svn info URL/to/file' does not print the checksum of the file, even when the filesystem backend has the checksum stored and doesn't need to calculate it on demand. Mertens, Bram wrote on Wed, Oct 05, 2011 at 14:49:35 +0200: > Hi, > > I have been unable to find an answer

Re: how to compare an exported file (or set of files) against the repository?

2011-10-05 Thread Thorsten Schöning
Guten Tag Mertens, Bram, am Mittwoch, 5. Oktober 2011 um 14:49 schrieben Sie: > I would like to find out: a) what revision these files are from You can't, even with comparing checksums or stuff like that you would only get any revisions where the files are the same. But you can't tell when the fi

how to compare an exported file (or set of files) against the repository?

2011-10-05 Thread Mertens, Bram
Hi, I have been unable to find an answer to this in the FAQ or the mailing list archives. I found one question that appears to be similar to what I'm trying to achieve but it did not contain a reply that solves my problem. I've got a set of files that were exported from a repository some time

RE: Transaction author without requiring password

2011-10-05 Thread Dominik Psenner
>I tried this, but an author is not passed unless auth-access is in use >AFAICT. So $USER in your example is always empty. This would mean that you would never see any usernames in commits. Did you try to commit using the --username parameter?

Re: Transaction author without requiring password

2011-10-05 Thread Matt Joiner
I tried this, but an author is not passed unless auth-access is in use AFAICT. So $USER in your example is always empty. On Wed, Oct 5, 2011 at 7:16 PM, Dominik Psenner wrote: >>I'm trying to force commits to have an attached author, but I don't >>care for requiring passwords. In other words, com

RE: Transaction author without requiring password

2011-10-05 Thread Dominik Psenner
>I'm trying to force commits to have an attached author, but I don't >care for requiring passwords. In other words, commits should contain >an author field but there's no enforcing that the committer is who >they claim to be. > >I've tried filtering for an author in the pre-commit hook, but the >us