Re: Strange behavior

2013-08-14 Thread Ullrich Jans
Am 09.08.2013 21:58, schrieb Edwin Castro: On 8/9/13 10:27 AM, John Maher wrote: And svn status returns this: C Build.bat > local add, incoming add upon merge You svn add Build.bat in trunk. Later you svn add Build.bat in your branch. Subversion sees those as separate objects w

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread Ryan Schmidt
On Aug 14, 2013, at 17:55, dlel...@rockwellcollins.com wrote: >> I don't follow how each project 'sees' that fixes have been made - you >> shouldn't see that through a pegged external. > > We have a tool that mimics explorer. It queries the repo for the latest > revision on each file external (

Re: svn 1.8 causing locks to be broken on update

2013-08-14 Thread Felipe Alvarez
As of 1.8 SVN only uses the serf library for http communication, and > no longer the neon library (before 1.8, both were part of svn, but > neon was the default library). > > Unfortunately there is no runtime-switch (yet) to enable debug output > with svn+serf. There is already an open enhancement

Re: svn 1.8 causing locks to be broken on update

2013-08-14 Thread Felipe Alvarez
> Can you provide a complete recipe? > > I'm using a 1.8.x client and a 1.6.x server and I can't reproduce it. I > tried this > > svnadmin create repo --compatible-version 1.6 > svn co http://localhost:/obj/repo wc > svn mkdir --parents wc/A/B/C > touch wc/A/B/C/f > svn add wc/A/B/C/f > svn ci

RE: SVN 1.8.1 Errors - Show Log and Commit New Files

2013-08-14 Thread Geoff Field
> From: Philip Martin > Sent: Wednesday, 14 August 2013 9:59 AM > Geoff Field writes: > >> When I try to reproduce the problem I get a HEAD request that > >> generates > >> "404 not found" rather than "401 unauthorized". What sort of > >> authentication have you configured? Are you using > pa

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread dlellis
> > > > No HEAD revisions, all files are pegged. > > > > For example, if everyone is linked to a common file (foo.c, revision 20, > > project A "pedigree") and a bug is fixed, each project will see that a fix > > has been made. Each project has to make a decision: to remain on the > > current re

Re: svn 1.8 causing locks to be broken on update

2013-08-14 Thread Philip Martin
Felipe Alvarez writes: >> >> >> I have the same issue. >> >> It happens when I run 1.8.1 windows client with 1.6.9 https >> repository sever. I haven't tried so many combinations ATM, >> but here are some observations: >> > > Hi Hiroharu > > You are indeed correct. We have done a very similar exp

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread Les Mikesell
On Wed, Aug 14, 2013 at 5:14 PM, wrote: > >> >> So the point is to intentionally pull the HEAD revision of a whole >> bunch of files together where each is located arbitrarily and can >> change independently? I guess that's about the opposite of the way I >> think of version control, so I can'

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread dlellis
Les Mikesell wrote on 08/14/2013 02:49:38 PM: > On Wed, Aug 14, 2013 at 4:23 PM, wrote: > > > > Now, in our case, we do stuff for aircraft,... wouldn't it be nice to > > maintain living pedigrees with all similar models of aircraft? Fix an issue > > in one place and advertise it to all the o

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread Les Mikesell
On Wed, Aug 14, 2013 at 4:23 PM, wrote: > > Now, in our case, we do stuff for aircraft,... wouldn't it be nice to > maintain living pedigrees with all similar models of aircraft? Fix an issue > in one place and advertise it to all the others. File externals give you > this. It fits very well i

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread Ben Reser
On 8/14/13 12:04 PM, dlel...@rockwellcollins.com wrote: > Kevin M Radke/CedarRapids/RockwellCollins wrote on 08/14/2013 11:52:44 AM: >> dlel...@rockwellcollins.com wrote on 08/14/2013 01:13:52 PM: > We're ok with _some_ performance cost. Also, it might be valuable to > the SVN community to underst

Re: svn 1.8 causing locks to be broken on update

2013-08-14 Thread Johan Corveleyn
On Wed, Aug 14, 2013 at 12:05 PM, Felipe Alvarez wrote: >> >> I have the same issue. >> >> It happens when I run 1.8.1 windows client with 1.6.9 https >> repository sever. I haven't tried so many combinations ATM, >> but here are some observations: >> >> 1.8.1 client run with 1.6.9 https:// repo s

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread dlellis
Les Mikesell wrote on 08/14/2013 01:58:29 PM: > From: Les Mikesell > To: dlel...@rockwellcollins.com > Cc: kmra...@rockwellcollins.com, Ben Reser , Ivan > Zhakov , Johan Corveleyn , > "users@subversion.apache.org" > Date: 08/14/2013 01:58 PM > Subject: Re: How to change paths on an external fi

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread Les Mikesell
On Wed, Aug 14, 2013 at 2:04 PM, wrote: > > >> Designing a build >> management system on top of subversion using only externals >> is risky. > > I disagree, but we've had this conversation already. I'd be very welcome to > try anything to help our performance. Externals can be very useful to as

Re: svn status --show-updates does not mark file externals with '*' when there is a new revision available on the server

2013-08-14 Thread Johan Corveleyn
On Wed, Aug 14, 2013 at 12:00 PM, Piontek Mark wrote: > Hi all, > > > > I already searched the open isssues list for “svn status --show-update” but > didn’t find anything relating to my problem. > > > > In my project I have files externals which are included by svn:externals > like this: > > > > ^

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread kmradke
dlel...@rockwellcollins.com wrote on 08/14/2013 01:13:52 PM: > > I'm not sure that current SVN users accept problems with depth != > > infinity as much as they arrange their layout so they don't have to do > > that. What's a common use case for needing some disjoint arrangement > > of components

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread dlellis
Kevin M Radke/CedarRapids/RockwellCollins wrote on 08/14/2013 11:52:44 AM: > dlel...@rockwellcollins.com wrote on 08/14/2013 01:13:52 PM: > > > I'm not sure that current SVN users accept problems with depth != > > > infinity as much as they arrange their layout so they don't have to do > > > tha

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread Les Mikesell
On Wed, Aug 14, 2013 at 1:13 PM, wrote: > > This is a case of trying to improve performance on externals by only > updating externals that have changed. Without connection caching, > performing an external update over a WAN is a test of patience. For us, our > repo is accessed over a WAN. Its

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread dlellis
Les Mikesell wrote on 08/14/2013 10:17:41 AM: > From: Les Mikesell > To: dlel...@rockwellcollins.com > Cc: Ben Reser , Ivan Zhakov , > Johan Corveleyn , "users@subversion.apache.org" > > Date: 08/14/2013 10:18 AM > Subject: Re: How to change paths on an external file without a full > update -

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread Les Mikesell
On Wed, Aug 14, 2013 at 11:48 AM, wrote: > > I believe that if we can improve external performance (speed and integration > -- like handling externals when depth != infinity), not only would we help > the current users of SVN that have come to accept this, but we would have a > huge opportunity t

Re: How to change paths on an external file without a full update --depth infinity?

2013-08-14 Thread dlellis
Ben Reser wrote on 08/11/2013 09:54:43 AM: > From: Ben Reser > To: Johan Corveleyn > Cc: dlel...@rockwellcollins.com, "users@subversion.apache.org" > , Ivan Zhakov > Date: 08/11/2013 09:55 AM > Subject: Re: How to change paths on an external file without a full > update --depth infinity? >

Re:

2013-08-14 Thread Mat Booth
On 14 August 2013 10:24, Pablo Beltran wrote: > Hi!, > > Please, see the log below. The newer revision r333117 is older (1999) than > the its ancestor r333113 (2005). > > I guess that someone imported an older CVS repository in the 2005 year by > using the cvs2svn tool, hence the r333117 date com

svnserve: could not find auxprop plugin, was searching for 'ldap' (1.8.1, linux, from source)

2013-08-14 Thread Klaus Thorn
The error: svnserve: could not find auxprop plugin, was searching for 'ldap' is appearing in /var/log/auth.log whenever I try to log in. It always fails. Test setup: I am opening Tortoise-SVN repo-browser on a Windows client machine with a svn:// URL pointing to my new subversion server and try

svn status --show-updates does not mark file externals with '*' when there is a new revision available on the server

2013-08-14 Thread Piontek Mark
Hi all, I already searched the open isssues list for “svn status --show-update” but didn’t find anything relating to my problem. In my project I have files externals which are included by svn:externals like this: ^/OtherProjectsA/trunk/FolderA/src/foo.c src/Fold

Re: svn 1.8 causing locks to be broken on update

2013-08-14 Thread Felipe Alvarez
> > > I have the same issue. > > It happens when I run 1.8.1 windows client with 1.6.9 https > repository sever. I haven't tried so many combinations ATM, > but here are some observations: > > 1.8.1 client run with 1.6.9 https:// repo server gives this issue. > 1.8.1 client run with 1.6.9 generated

Re: your mail

2013-08-14 Thread Stefan Sperling
On Wed, Aug 14, 2013 at 11:24:02AM +0200, Pablo Beltran wrote: > Hi!, > > Please, see the log below. The newer revision r333117 is older (1999) than > the its ancestor r333113 (2005). > > I guess that someone imported an older CVS repository in the 2005 year by > using the cvs2svn tool, hence the

[no subject]

2013-08-14 Thread Pablo Beltran
Hi!, Please, see the log below. The newer revision r333117 is older (1999) than the its ancestor r333113 (2005). I guess that someone imported an older CVS repository in the 2005 year by using the cvs2svn tool, hence the r333117 date comes from the original CVS repo . Should it be considered as