Re: can not delete folder because lock

2010-10-19 Thread Ryan Schmidt
On Oct 18, 2010, at 22:24, netvampire.tw wrote: So the bug didn't fix until now? I guess not. It might be this bug: http://subversion.tigris.org/issues/show_bug.cgi?id=2507

Unusual merge result

2010-10-19 Thread Tony Butt
I have had 2 unusual occurrences with merges with some of our software engineers here in the last month. I wrote the first off as user error, but a similar event has occurred - still possibly user error. We are using subversion 1.6.12 on our server, and a mix of TortoiseSVN 1.5 and 1.6 clients on

Determine the date / time of remote SVN server from the command line?

2010-10-19 Thread Michael March
Hey, Does anyone out there know if there is a way to determine the date / time of remote SVN server from the command line? Hudson is complaining that the time on my Subversion server is out of sync with my client but I can't figure out how to determine the time on the remote server. thanks!

Re: Unusual merge result

2010-10-19 Thread Tony Butt
On Tue, 2010-10-19 at 18:23 +1100, Tony Butt wrote: I have had 2 unusual occurrences with merges with some of our software engineers here in the last month. I wrote the first off as user error, but a similar event has occurred - still possibly user error. We are using subversion 1.6.12 on

Re: svn Farm

2010-10-19 Thread Stephen Connolly
On 19 October 2010 02:17, Nico Kadel-Garcia nka...@gmail.com wrote: On Mon, Oct 18, 2010 at 3:56 AM, Stephen Connolly stephen.alan.conno...@gmail.com wrote: Add a capability called keyringenabled to Subversion and now Nico will probably be much happier... but of course he doesn't trust his

Re: Determine the date / time of remote SVN server from the command line?

2010-10-19 Thread Olivier Mengué
2010/10/19 Michael March mma...@gmail.com Hey, Does anyone out there know if there is a way to determine the date / time of remote SVN server from the command line? As a SVN server is an HTTP Server you can use any HTTP tool to check the Date header. For example, with curl : $ curl -I

Re: svn Farm

2010-10-19 Thread Johan Corveleyn
On Tue, Oct 19, 2010 at 9:46 AM, Stephen Connolly stephen.alan.conno...@gmail.com wrote: Exposing the feature would not in an of itself force the client to use the keyring, but it would allow the server to have a start-commit hook that blocked a commit if the user had plaintext password storage

Re: Unusual merge result

2010-10-19 Thread Johan Corveleyn
On Tue, Oct 19, 2010 at 9:40 AM, Tony Butt tony.b...@cea.com.au wrote: On Tue, 2010-10-19 at 18:23 +1100, Tony Butt wrote: I have had 2 unusual occurrences with merges with some of our software engineers here in the last month. I wrote the first off as user error, but a similar event has

Re: svn Farm

2010-10-19 Thread Stephen Connolly
On 19 October 2010 10:18, Johan Corveleyn jcor...@gmail.com wrote: On Tue, Oct 19, 2010 at 9:46 AM, Stephen Connolly stephen.alan.conno...@gmail.com wrote: Exposing the feature would not in an of itself force the client to use the keyring, but it would allow the server to have a start-commit

Re: Determine the date / time of remote SVN server from the command line?

2010-10-19 Thread Stephen Connolly
2010/10/19 Olivier Mengué olivier.men...@gmail.com: 2010/10/19 Michael March mma...@gmail.com Hey, Does anyone out there know  if  there is a way to determine the date / time of remote SVN server from the command line? As a SVN server is an HTTP Server you can use any HTTP tool to check

Re: svn Farm

2010-10-19 Thread Daniel Shahaf
Johan Corveleyn wrote on Tue, Oct 19, 2010 at 11:18:20 +0200: Maybe there is already some functionality present for protocol/feature negotiation, I don't know ... All RA layers have a 'capability negotiation' support: svn_ra_has_capability() allows the client to ask the server what it supports.

svn commit and branches

2010-10-19 Thread Brian Bird
When committing to a branch in subversion (without the -m switch) svn pre-fills the editor with the filenames to be committed under a line -This line, and those below, will be ignored-. Is it possible for the current branch to be shown here as well? I often have to work on multiple branches

Check out fails Secure Connection truncated

2010-10-19 Thread Phil Pinkerton
What is the issue / cause with regards to Could not read chunk delimiter ?? -- The fundamental principle here is that the justification for a physical concept lies exclusively in its clear and unambiguous relation to the facts that it can be experienced   AE Please Feed and Educate the

Re: svn commit and branches

2010-10-19 Thread Daniel Shahaf
Brian Bird wrote on Tue, Oct 19, 2010 at 13:45:30 +0100: When committing to a branch in subversion (without the -m switch) svn pre-fills the editor with the filenames to be committed under a line -This line, and those below, will be ignored-. Is it possible for the current branch to be shown

difference between subversion 1.4.2 repository and 1.6.12 repository

2010-10-19 Thread Kriparam Faraday
Can someone tell me the difference between a 1.4.2 repository and 1.6.12 repository? I recently upgraded all our repositories(along with the subversion server) from 1.4.2 to 1.6.12. I ran the svnadmin verify, tested check-in, check-out,add,delete file etc... Everything looks good. But, I wanted to

Re: difference between subversion 1.4.2 repository and 1.6.12 repository

2010-10-19 Thread Ryan Schmidt
On Oct 19, 2010, at 10:51, Kriparam Faraday wrote: Can someone tell me the difference between a 1.4.2 repository and 1.6.12 repository? I recently upgraded all our repositories(along with the subversion server) from 1.4.2 to 1.6.12. I ran the svnadmin verify, tested check-in,

Re: difference between subversion 1.4.2 repository and 1.6.12 repository

2010-10-19 Thread Thorsten Schöning
Guten Tag Kriparam Faraday, am Dienstag, 19. Oktober 2010 um 17:51 schrieben Sie: How do I find that out? There's a format file in the db directory of each repository which should look like something aorund the following: 4 layout sharded 1000 The file fsfs.conf wasn't avaliable in version 4

Backgrounded script in post-commit blocks client commit completion

2010-10-19 Thread Kylo Ginsberg
Hi folks, I'm running 1.6.9 on Fedora 12. With this post-commit script: #!/bin/sh REPOS=$1 REV=$2 $REPOS/hooks/delay.sh and delay.sh is just: #!/bin/sh sleep 5 This causes commits to delay 5 seconds before completing at the client. Running post-commit directly from the command-line it

Re: Backgrounded script in post-commit blocks client commit completion

2010-10-19 Thread Johan Corveleyn
On Tue, Oct 19, 2010 at 11:04 PM, Kylo Ginsberg k...@kylo.net wrote: Hi folks, I'm running 1.6.9 on Fedora 12.  With this post-commit script: #!/bin/sh REPOS=$1 REV=$2 $REPOS/hooks/delay.sh and delay.sh is just: #!/bin/sh sleep 5 This causes commits to delay 5 seconds before

Re: Backgrounded script in post-commit blocks client commit completion

2010-10-19 Thread Kylo Ginsberg
On Tue, Oct 19, 2010 at 2:13 PM, Johan Corveleyn jcor...@gmail.com wrote: On Tue, Oct 19, 2010 at 11:04 PM, Kylo Ginsberg k...@kylo.net wrote: Hi folks, I'm running 1.6.9 on Fedora 12.  With this post-commit script: #!/bin/sh REPOS=$1 REV=$2 $REPOS/hooks/delay.sh and delay.sh is just:

Bug report against SVN 1.6.13

2010-10-19 Thread Paul Maier
Hi Daniel, I just ran into something, that might already be fixed with your r1023571, but I think it is worth testing: # 1. setup file a as in previous postings: echo a a svn add a svn propset svn:needs-lock * a svn ci -m # 2. local modification to file a: echo blah a # 3. rename file

Bug report against SVN 1.6.13

2010-10-19 Thread Paul Maier
[Sorry, in my previous posting I forgot to mention the svn lock command. Here the corrected version of my posting.] Hi Daniel, I just ran into something, that might already be fixed with your r1023571, but I think it is worth testing: # 1. setup file a as in previous postings: echo a a svn

Re: Bug report against SVN 1.6.13

2010-10-19 Thread 'Daniel Shahaf'
Paul Maier wrote on Wed, Oct 20, 2010 at 01:55:30 +0200: [Sorry, in my previous posting I forgot to mention the svn lock command. Here the corrected version of my posting.] Hi Daniel, I just ran into something, that might already be fixed with your r1023571, but I think it is worth