Re: Newbie question - create projects from an existing project.

2010-06-29 Thread Nico Kadel-Garcia
On Tue, Jun 29, 2010 at 1:55 PM, Bob Archer wrote: >>   I have a repository with 1 project, and some of the directories >> contain code that I would like to maintain separately, so when >> someone >> makes changes, or wants to make a  branch, or tag, I don't have to >> take all directories (includ

Re: Why is --reintegrate neccessary?

2010-06-29 Thread eg
On 6/29/2010 1:56 AM, Tino Schwarze wrote: Hi Olivier, On Tue, Jun 29, 2010 at 10:18:31AM +0200, Olivier Sannier wrote: I've had a discussion with a collegue yesterday and he wondered why --reintegrate is neccessary for reintegration merges at all. He supposed SVN should be able to determine t

Error:1053 when starting Subverion as a Windows 2008 Server R2 service

2010-06-29 Thread Roberto de Castro
Hi all! I've been facing the following error when I start subversion as a Windows 2008 Server R2 service: Error 1053 - The service did not respond to the start or control request in a timely fashion First I created a windows server in a command prompt with the following command: sc create svnserve

Re: Apache Restart Necessary After Changing Access?

2010-06-29 Thread Andy Levy
On Tue, Jun 29, 2010 at 15:03, Williams, James P2 (N-USA) wrote: > If I change the contents of my AuthzSVNAccessFile, do I have to restart my > Apache server to see the changes take effect? Nope. I have my authz & passwd files stored in a repository & a post-commit hook automatically updates them

RE: Ambiguity In AuthzSVNAccessFile Permissions

2010-06-29 Thread Williams, James P2 (N-USA)
I found svnperms.py and a sample configuration file under tools/hook-scripts with Subversion 1.6.2. Alternatively, I can also bypass the Apache server with file:// URLs when I run the "svn mkdir" that creates these toplevel directories at repository setup. That'll probably be what I do since a

Re: Ambiguity In AuthzSVNAccessFile Permissions

2010-06-29 Thread Rob van Oostrum
On Tue, Jun 29, 2010 at 3:12 PM, Williams, James P2 (N-USA) < james.p2.willi...@lmco.com> wrote: > I’m unclear what directory permissions mean in my AuthzSVNAccessFile. > For example, > > > >[/] > >goober = rw > >* = r > > > >[/trunk] > >tuber = rw > >goober = r > > > > wh

RE: How to trigger internal svn diff algorithm when an external one is supplied?

2010-06-29 Thread Daniel Shahaf
Chaintreuil, Philippe wrote on Tue, 29 Jun 2010 at 17:10 -: > > In 1.6, you can try using 'svn diff --config-option' > > So how could I use that command to unset an option/set > config:helpers:diff-cmd to use the internal diff engine in 1.6.x? > I'm not sure you can do that. (You can

Ambiguity In AuthzSVNAccessFile Permissions

2010-06-29 Thread Williams, James P2 (N-USA)
I'm unclear what directory permissions mean in my AuthzSVNAccessFile. For example, [/] goober = rw * = r [/trunk] tuber = rw goober = r who has permissions to create /trunk in this case? I want it to be goober, which is why I gave him rw in /. However, the read-only permis

Re: Exception in blame.c, line 487 encountered

2010-06-29 Thread Daniel Shahaf
CC += dev@ Patrick Kursawe wrote on Tue, 29 Jun 2010 at 13:42 -: > Am 6/28/2010 10:38 PM, schrieb Daniel Shahaf: > [...] > > Wow. > > NICE. > > > > You're the first person I know of to be able to build Subversion on > > Windows without fighting with it for days/weeks before... (and you even >

Re: Exception in blame.c, line 487 encountered

2010-06-29 Thread Daniel Shahaf
Patrick Kursawe wrote on Tue, 29 Jun 2010 at 13:42 -: > Am 6/28/2010 10:38 PM, schrieb Daniel Shahaf: > [...] > > Firstly, could you please file an issue in our tracker, so we don't > > forget it? > > > > > I did not know the correct initial assignee, so I just assigned it to you - > #366

Re: Apache Restart Necessary After Changing Access?

2010-06-29 Thread vishwajeet singh
On Wed, Jun 30, 2010 at 12:33 AM, Williams, James P2 (N-USA) < james.p2.willi...@lmco.com> wrote: > If I change the contents of my AuthzSVNAccessFile, do I have to restart > my Apache server to see the changes take effect? > No you don't have to. > > > After looking at get_access_conf() in mod

Apache Restart Necessary After Changing Access?

2010-06-29 Thread Williams, James P2 (N-USA)
If I change the contents of my AuthzSVNAccessFile, do I have to restart my Apache server to see the changes take effect? After looking at get_access_conf() in mod_authz_svn.c, it appears a restart is unnecessary. It looks like the access file is read on every request and cached during the requ

RE: 'svn switch' and already switched dirs

2010-06-29 Thread Bob Archer
> In a couple of working copies, we have the following setup: > > /release-1.0.0.1 (checked from /branches/release/release-1.0.0.1) > /alpha/beta > /alpha/gamma -> (switched to /trunk/alpha/gamma) > /alpha/delta > /alpha/delta/epsilon -> (switched to > /trunk/alpha/delta/epsilon) >

RE: Newbie question - create projects from an existing project.

2010-06-29 Thread Bob Archer
> I have a repository with 1 project, and some of the directories > contain code that I would like to maintain separately, so when > someone > makes changes, or wants to make a branch, or tag, I don't have to > take all directories (include those I didn't modify), so, how can I > do > that? > >

Newbie question - create projects from an existing project.

2010-06-29 Thread Lauro Costa G. Borges
Hi, I have a repository with 1 project, and some of the directories contain code that I would like to maintain separately, so when someone makes changes, or wants to make a branch, or tag, I don't have to take all directories (include those I didn't modify), so, how can I do that?

Re: What would be the best way to create "working repositories"?

2010-06-29 Thread Tino Schwarze
Hi Tom, On Tue, Jun 29, 2010 at 09:37:24AM -0400, Tom Malia wrote: > I do understand that my people will have to get a little more sophisticated > about Subversion than "it's just a file share" and I think you understand > that my statement of the simplicity "requirement" is to say that, I have t

Re: What would be the best way to create "working repositories"?

2010-06-29 Thread Les Mikesell
On 6/29/2010 8:39 AM, Tom Malia wrote: Completely understood and agreed. As I said, I was setting the stage, not dictating the absolute. I understood and agreed with Stephen's core points. I didn't find the approach to communicating those points particular efficient. The first thing you nee

RE: What would be the best way to create "working repositories"?

2010-06-29 Thread Tom Malia
We're good. Thanks. Tom Malia T &T Data Solutions L.L.C. _ From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] Sent: Tuesday, June 29, 2010 10:17 AM To: Tom Malia Cc: Andy Levy; users@subversion.apache.org Subject: Re: What would be the best w

Re: What would be the best way to create "working repositories"?

2010-06-29 Thread Stephen Connolly
On 29 June 2010 14:39, Tom Malia wrote: > Completely understood and agreed. > > As I said, I was setting the stage, not dictating the absolute. > > I understood and agreed with Stephen's core points. I didn't find the > approach to communicating those points particular efficient. > Only one co

RE: How to trigger internal svn diff algorithm when an external one is supplied?

2010-06-29 Thread Chaintreuil, Philippe
> In 1.6, you can try using 'svn diff --config-option' So how could I use that command to unset an option/set config:helpers:diff-cmd to use the internal diff engine in 1.6.x? Thanks! -- Philippe Chaintreuil

RE: What would be the best way to create "working repositories"?

2010-06-29 Thread Tom Malia
Completely understood and agreed. As I said, I was setting the stage, not dictating the absolute. I understood and agreed with Stephen's core points. I didn't find the approach to communicating those points particular efficient. My goal with the "over taxed" developers is explicitly to reduc

RE: What would be the best way to create "working repositories"?

2010-06-29 Thread Tom Malia
Thanks Andy. This is an extremely useful reply. I do understand that my people will have to get a little more sophisticated about Subversion than "it's just a file share" and I think you understand that my statement of the simplicity "requirement" is to say that, I have to keep how much deeper th

Re: What would be the best way to create "working repositories"?

2010-06-29 Thread Andy Levy
On Tue, Jun 29, 2010 at 09:16, Tom Malia wrote: > Stephen, > > > > I appreciate you taking the time to reply.  I know many of your comments are > tongue-in-cheek and I don’t take them too personally.  However, I don’t find > them terribly helpful either.  I wont waste anymore bandwidth here on tha

Re: What would be the best way to create "working repositories"?

2010-06-29 Thread Andy Levy
On Tue, Jun 29, 2010 at 08:54, Tom Malia wrote: > I’m looking for an easy way to allow programmers on a large project to > create something equivalent to a personal “branch” on the main project that > they can check their “Work In Process” (WIP) in and out of while they > actively develop a featur

RE: What would be the best way to create "working repositories"?

2010-06-29 Thread Tom Malia
Stephen, I appreciate you taking the time to reply. I know many of your comments are tongue-in-cheek and I don't take them too personally. However, I don't find them terribly helpful either. I wont waste anymore bandwidth here on that aspect of your reply. I have no idea what GIT is. If

Re: What would be the best way to create "working repositories"?

2010-06-29 Thread Stephen Connolly
On 29 June 2010 13:54, Tom Malia wrote: > I’m looking for an easy way to allow programmers on a large project to > create something equivalent to a personal “branch” on the main project that > they can check their “Work In Process” (WIP) in and out of while they > actively develop a feature or e

What would be the best way to create "working repositories"?

2010-06-29 Thread Tom Malia
I'm looking for an easy way to allow programmers on a large project to create something equivalent to a personal "branch" on the main project that they can check their "Work In Process" (WIP) in and out of while they actively develop a feature or enhancement over the period of several days to sever

Re: Exception in blame.c, line 487 encountered

2010-06-29 Thread Patrick Kursawe
Am 6/28/2010 10:38 PM, schrieb Daniel Shahaf: [...] Wow. NICE. You're the first person I know of to be able to build Subversion on Windows without fighting with it for days/weeks before... (and you even have a working debug environment) How did you do that? If I had known this, I hadn't tr

Re: Why is --reintegrate neccessary?

2010-06-29 Thread Daniel Becroft
On Tue, Jun 29, 2010 at 6:56 PM, Tino Schwarze wrote: > Hi Olivier, > > On Tue, Jun 29, 2010 at 10:18:31AM +0200, Olivier Sannier wrote: > >>> I've had a discussion with a collegue yesterday and he wondered why >>> --reintegrate is neccessary for reintegration merges at all. He supposed >>> SVN sh

Re: Why is --reintegrate neccessary?

2010-06-29 Thread Tino Schwarze
Hi Olivier, On Tue, Jun 29, 2010 at 10:18:31AM +0200, Olivier Sannier wrote: >> I've had a discussion with a collegue yesterday and he wondered why >> --reintegrate is neccessary for reintegration merges at all. He supposed >> SVN should be able to determine that the intended merge is a reintegra

Re: Why is --reintegrate neccessary?

2010-06-29 Thread Olivier Sannier
Tino Schwarze wrote: Hi there, I've had a discussion with a collegue yesterday and he wondered why --reintegrate is neccessary for reintegration merges at all. He supposed SVN should be able to determine that the intended merge is a reintegrate by looking at the mergeinfo. So, this is just a qu

Re: Trying to build svn on zOS 1.9

2010-06-29 Thread Tino Schwarze
Hi Andy, On Mon, Jun 28, 2010 at 06:10:43PM +0200, andy corpes wrote: > I am trying to build an svn client for zOS (1.9). I am assuming that a will > get a client executeable if i can build the contents of the following tars:- > > subversion-deps-1.6.11.tar > subversion-1.6.11.tar > > To this

Why is --reintegrate neccessary?

2010-06-29 Thread Tino Schwarze
Hi there, I've had a discussion with a collegue yesterday and he wondered why --reintegrate is neccessary for reintegration merges at all. He supposed SVN should be able to determine that the intended merge is a reintegrate by looking at the mergeinfo. So, this is just a question out of curiousit