Re: Update of missing on non-working directory

2010-05-12 Thread Stein Somers
Why? The command executed successfully and reported what it did. "ls /blah-blah ." successfully lists the . directory, but still returns an error code because of the user error in its first argument. There may be a reason why svn chooses to almost ignore bad input but it's a surprise for sur

RE: Apache + SVN (+ LDAP) don't works

2010-05-12 Thread Bob Archer
> 1. > 2. > 3.         ServerAdmin m...@me.com > 4.         ServerName my.server.net > 5. > 6.         ErrorLog /var/log/apache2/subversion.my.server.net-error_log > 7.         CustomLog /var/log/apache2/subversion.my.server.net-access_log > combined > 8. > 9.         DocumentRoot /var/www > 10. >

Re: using saslauthd for user authendication

2010-05-12 Thread Johan Corveleyn
On Wed, May 12, 2010 at 6:01 PM, Sebastian Kotthoff wrote: > Hello, > > I have a working LDAP-Server and some svn-repositories on an second server. > The svnserv uses the "passwd" file at the moment for user authendication. > Now I like to to use the LDAP instead. > Because the handbook says, svns

Re: Problem with "bogus date" on NFS

2010-05-12 Thread David Brodbeck
On May 12, 2010, at 6:55 AM, Andreas Schwarz wrote: > > Hi, > > I have a strange problem with a working copy on a NFS mount. Checking > out works fine, but whenever I try to svn stat/info/up a certain > directory, I get the message > svn: Error at entry 6 in entries file for 'cfg': > svn: Bogus

Re: Apache + SVN (+ LDAP) don't works

2010-05-12 Thread Saulo Soares de Toledo
To simplify the thread, I removed the LDAP entries! Now a config without authentication and returning "client denied by server configuration" message: 1. 2. 3. ServerAdmin m...@me.com 4. ServerName my.server.net 5. 6. ErrorLog /var/log/apache2/subversi

using saslauthd for user authendication

2010-05-12 Thread Sebastian Kotthoff
Hello, I have a working LDAP-Server and some svn-repositories on an second server. The svnserv uses the "passwd" file at the moment for user authendication. Now I like to to use the LDAP instead. Because the handbook says, svnserv could be used with sasl to access a LDAP-server, I have set up a "

Attempting a transparent(ish) write-through proxy for a remote site.

2010-05-12 Thread Terry Dooher
Hi all, I've been trying to set up mirror repository for a remote site. So far, I have everything running: The mirror repository, the proxy URL (separate from the mirror to avoid sync loops) and the post-commit and post-revprop-change synchronisation hooks are all working well. I'm able to che

RE: What does "Repository moved temporarily " mean?

2010-05-12 Thread David Aldrich
Hi Chris, Yes we do go through a proxy, so maybe your explanation is correct. I haven't tried running it twice in a row but, since it's an invalid command, I am not sure that that would make much difference. BR David

RE: What does "Repository moved temporarily " mean?

2010-05-12 Thread Feldhacker, Chris
> "svn: Repository moved temporarily to 'https://[snip] please relocate" Are you going through a proxy server? What happens if you execute the exact same command twice in a row? We go through a proxy, and when I want to download the latest copy of Subclipse I issue the command: "svn export --us

Problem with "bogus date" on NFS

2010-05-12 Thread Andreas Schwarz
Hi, I have a strange problem with a working copy on a NFS mount. Checking out works fine, but whenever I try to svn stat/info/up a certain directory, I get the message svn: Error at entry 6 in entries file for 'cfg': svn: Bogus date I traced it down to an empty file in this directory that has a w

Re: Update of missing on non-working directory

2010-05-12 Thread Vadym Chepkov
Consider this: $ svn -q --non-interactive update /blah-blah $ echo $? 0 No output even to stderr, no indication of a failure at all. Subversion doesn't always used interactively, hence --non-interactive switch. If you made a mistake in a script it will be unnoticed (well, this was my unpleasant

Re: Update of missing on non-working directory

2010-05-12 Thread Andy Levy
On Wed, May 12, 2010 at 09:23, Vadym Chepkov wrote: > Hi, > > I think the exit code subversion returns isn't right, it should indicate an > error > > $ svn --version > svn, version 1.6.11 (r934486) > > > $ svn update /blah-blah > Skipped '/blah-blah' > $ echo $? > 0 > > $ svn update /etc > Skippe

Update of missing on non-working directory

2010-05-12 Thread Vadym Chepkov
Hi, I think the exit code subversion returns isn't right, it should indicate an error $ svn --version svn, version 1.6.11 (r934486) $ svn update /blah-blah Skipped '/blah-blah' $ echo $? 0 $ svn update /etc Skipped '/etc' $ echo $? 0 Vadym

Re: Best practice for moving folders around?

2010-05-12 Thread Les Mikesell
Cooke, Mark wrote: Good idea, I Have no hooks setup as yet, I will look into this. Otherwise, yes, it is mainly an education issue... Note that making mistakes is fairly normal, so one thing you should work out is a scheme to track the tags that you care about. You probably want some human-

svn update and permissions

2010-05-12 Thread Igmar Palsenberg
Hi, An svn update process doesn roughtly this : open("tempfile.tmp", O_RDWR|O_CREAT|O_EXCL|O_LARGEFILE, 0666) write() tempfile.tml rename("tempfile.tmp", "targetfile"); While this works, it has one problem : The rename recreated the file, and thus applies default permissions. While this is OK

Free Online Subversion Training - All About Subversion Hook Scripts

2010-05-12 Thread george.pow...@wandisco.com
svn.wandisco.com/hookscripts Hook scripts are server-side executables tied to various Subversion events. During this course, attendees will learn how to use hook scripts for: * Email notification of an event * Commit validation * Automatic backup of changes * Integration with issu

RE: Best practice for moving folders around?

2010-05-12 Thread Cooke, Mark
Many thanks Ulrich for your input... > -Original Message- > From: Ulrich Eckhardt [mailto:eckha...@satorlaser.com] > Sent: 11 May 2010 16:33 > > On Tuesday 11 May 2010, Cooke, Mark wrote: > > Can I ask your suggestions on how best to correct the following > > scenario: > > > > In a new r

Re: long path names on windows prefixed with \\?\ not handled by svn commands

2010-05-12 Thread Heinz Prantner
Hello Bert, yes, confirmed, providing absolute paths without the prefix \\?\ works. As you mention, we just have to know which function requires the prefix, or has it implicit or does not support it at all. Thanks for your clarification. Heinz On 11.05.2010, at 21:57, Bert Huijben wrot

What does "Repository moved temporarily " mean?

2010-05-12 Thread David Aldrich
Hi One of our users tried to copy between repositories and got error: "svn: Repository moved temporarily to 'https://[snip] please relocate" We understand that such copying is disallowed, but please will someone explain what "Repository moved temporarily" means in this context? Is it possible