--editor-cmd option of the 'pe' subcommand did not work if the path of the external text editor contains space

2010-02-02 Thread Claude Xu
Hi there, I found the --editor-cmd option of the 'pe' subcommand did not work if the path of your external text editor contains space. Here is my environment: Operating System: Microsoft Windows XP Professional Version 2002 Service Pack 3 Release of Subversion: version 1.6.4 (r38063) Compil

merging trunk to branch merges the whole trunk history

2010-02-02 Thread esatel
Hi, I have an svn repository created by converting an old cvs repository using SVN 1.5.1. If I do the following: 1. Create a branch around trunk revision 1598 2. Work a bit further on the trunk and commit (I don't think this is necessary, but the repository is too busy to exclude) 3. Someone

Re: Repository Access Using HTTPS and SVNSERVE

2010-02-02 Thread Ryan Schmidt
On Feb 2, 2010, at 11:43, Jack VAN GORKUM wrote: > Can multiple users concurrently access Subversion repositories using both the > svnserve Server and the Apache HTTP Server ? > > Is there any risk of conflicts/corruption if both methods are used at the > same time ? As others have already s

Re: Deleted directory committed to repo translated to ignored directory locally

2010-02-02 Thread Ryan Schmidt
On Feb 2, 2010, at 16:34, Dave Purrington wrote: > The scenario goes like this: > • Homer svn deletes a folder and commits to the repository. > • Marge svn updates, and svn reports the folder Homer deleted ("D > ") > • Marge runs svn st, some folder is not reported as unversi

Re: excessive disk usage by revisions?

2010-02-02 Thread kmradke
Kevin Longfellow wrote on 02/02/2010 03:15:19 PM: > I've been looking at a space utilization issue and am a bit > confused. Just looking at the size of the revisions in the db/revs > directory and only looking at the 2.2M size revs I see about 3GB+ of > disk space consumed just for Feb 2: > > l

Deleted directory committed to repo translated to ignored directory locally

2010-02-02 Thread Dave Purrington
The scenario goes like this: 1. Homer svn deletes a folder and commits to the repository. 2. Marge svn updates, and svn reports the folder Homer deleted ("D ") 3. Marge runs svn st, some folder is not reported as unversioned. However, the folder is still on disk (unversioned, i.e. no

excessive disk usage by revisions?

2010-02-02 Thread Kevin Longfellow
Hi, I've been looking at a space utilization issue and am a bit confused. Just looking at the size of the revisions in the db/revs directory and only looking at the 2.2M size revs I see about 3GB+ of disk space consumed just for Feb 2: ls -lhrt /misc_sourcectrl01/svnrepositories/qcfusion/db/re

Re: Revision graphs on the Web

2010-02-02 Thread vishwajeet singh
On Wed, Feb 3, 2010 at 12:09 AM, Pablo Beltran wrote: > Hi all, > > Though revision graphs are not a feature of Subversion, they are very > useful for big projects. > > I'm publishing revision graphs for the public hugest repositories around > the World. Like KDE (+1 million of revisions) and Ap

Revision graphs on the Web

2010-02-02 Thread Pablo Beltran
Hi all, Though revision graphs are not a feature of Subversion, they are very useful for big projects. I'm publishing revision graphs for the public hugest repositories around the World. Like KDE (+1 million of revisions) and Apache (near) which are already available. So far, people needed to d

Re: Repository Access Using HTTPS and SVNSERVE

2010-02-02 Thread Kylo Ginsberg
On Tue, Feb 2, 2010 at 9:59 AM, C. Michael Pilato wrote: > Jack VAN GORKUM wrote: >> Can multiple users concurrently access Subversion repositories using >> both the svnserve Server and the Apache HTTP Server ? >> >> Is there any risk of conflicts/corruption if both methods are used at >> the same

RE: Svnsync - switching source and mirror

2010-02-02 Thread Bailey, Darragh
> -Original Message- > From: C. Michael Pilato [mailto:cmpil...@collab.net] > Sent: 02 February 2010 17:58 > To: Bailey, Darragh > Cc: users@subversion.apache.org > Subject: Re: Svnsync - switching source and mirror > All that 'svnsync init' does is set a bunch of revision > propertie

Re: Repository Access Using HTTPS and SVNSERVE

2010-02-02 Thread C. Michael Pilato
Jack VAN GORKUM wrote: > Hello, > > Can multiple users concurrently access Subversion repositories using > both the svnserve Server and the Apache HTTP Server ? > > Is there any risk of conflicts/corruption if both methods are used at > the same time ? Nope, not as long as you've got the various

Re: Svnsync - switching source and mirror

2010-02-02 Thread C. Michael Pilato
Bailey, Darragh wrote: > Looking to setup a mirror to a locally hosted svn repo, however it's > expected that in the future the role of which repo is the mirror and > which is the master will reverse. > > Reading up on svnsync, there appears to be some suggestion that something > happens with the

RE: Svnsync - switching source and mirror

2010-02-02 Thread Bailey, Darragh
Some typo's in my mail that I didn't spot the first time > 5) Synchronise the repositories > svnsync synchronize --username svnsync > svn+ssh://svns...@remote/var/svn/mirror > > 6) Put the local repo into read-only mode temporarily and > repeat step 6 (since otherwise it would read-only for

Repository Access Using HTTPS and SVNSERVE

2010-02-02 Thread Jack VAN GORKUM
Hello, Can multiple users concurrently access Subversion repositories using both the svnserve Server and the Apache HTTP Server ? Is there any risk of conflicts/corruption if both methods are used at the same time ? Cheers, Jack... Jack van Gorkum IT Systems Analyst, Team Lead 1380

Svnsync - switching source and mirror

2010-02-02 Thread Bailey, Darragh
Looking to setup a mirror to a locally hosted svn repo, however it's expected that in the future the role of which repo is the mirror and which is the master will reverse. Reading up on svnsync, there appears to be some suggestion that something happens with the 'svnsync init' command that is

Re: Usage for svn list

2010-02-02 Thread Ryan Schmidt
On Feb 2, 2010, at 09:07, Tim Landscheidt wrote: > Ryan Schmidt wrote: > >> $ svn log -r '{2010-01-01}' --limit 1 -q \ >> http://svn.macosforge.org/repository/macports >> >> r62218 | portin...@macports.org | 2009-12-31 18:5

Re: howto limit filetypes

2010-02-02 Thread Ryan Schmidt
On Feb 2, 2010, at 09:42, Marco wrote: > Could you give me an example on how to implement this control so that > users can not commit particular filetypes? In the pre-commit hook, you are given the path to the repository and the transaction number. You can use these to call "svnlook" to see what

Re: howto limit filetypes

2010-02-02 Thread Marco
Thanks! Could you give me an example on how to implement this control so that users can not commit particular filetypes? Marco On 2 Feb, 16:24, Ulrich Eckhardt wrote: > On Tuesday 02 February 2010, Marco wrote: > > > is it possible to deny users to commit particular filetypes into > > subversion

Re: howto limit filetypes

2010-02-02 Thread Ulrich Eckhardt
On Tuesday 02 February 2010, Marco wrote: > is it possible to deny users to commit particular filetypes into > subversion repositories? Yes, take a look at pre-commit hooks. Uli -- FAQ: http://subversion.tigris.org/faq.html Docs: http://svnbook.red-bean.com/ Sator Laser GmbH, Fangdieckstraße 7

howto limit filetypes

2010-02-02 Thread Marco
Hi all, is it possible to deny users to commit particular filetypes into subversion repositories? Thanks Marco

Re: Usage for svn list

2010-02-02 Thread Tim Landscheidt
Ryan Schmidt wrote: >> Anyhow, is there a "proper" way to deduce a revision num- >> ber from a date for a given path? At the moment (I'm brows- >> ing the output of cvs2svn to see if the repository has been >> converted correctly), I use "svn log --verbose" on the >> trunk. > Yes, you can use "s

Re: Reintegrate with vendor branches

2010-02-02 Thread Ulrich Eckhardt
On Tuesday 02 February 2010, Olivier Sannier wrote: > tags > branches > feature1 > trunk > libs > libA > libB > project1 > vendors > libA > current > libB > current [...] > the feature1 branch was created as a copy of /trunk at revision 45 and > changes from trunk were reg

RE: Tortoise SVN merge bug?

2010-02-02 Thread Bob Archer
> Here is the version info: > > TortoiseSVN 1.6.6, Build 17493 - 32 Bit , 2009/10/19 20:22:18 > Subversion 1.6.6, > apr 1.3.8 > apr-utils 1.3.9 > neon 0.28.6 > OpenSSL 0.9.8k 25 Mar 2009 > zlib 1.2.3 > > The problem is we rarely use SVN merge when there are conflicts. So if I > understand correc

RE: Tortoise SVN merge bug?

2010-02-02 Thread Jeff Abbott
Here is the version info: TortoiseSVN 1.6.6, Build 17493 - 32 Bit , 2009/10/19 20:22:18 Subversion 1.6.6, apr 1.3.8 apr-utils 1.3.9 neon 0.28.6 OpenSSL 0.9.8k 25 Mar 2009 zlib 1.2.3 The problem is we rarely use SVN merge when there are conflicts. So if I understand correctly the appropriate

Re: Reintegrate with vendor branches

2010-02-02 Thread Olivier Sannier
Olivier Sannier wrote: Hello all, Let's consider the following repository structure : tags branches feature1 trunk libs libA libB project1 vendors libA current libB current The repository is at revision 100 libA and libB are external libraries managed as vendor branch

RE: Tortoise SVN merge bug?

2010-02-02 Thread Bob Archer
Empty ranges are what is the norm. What version of svn client / server are you using? BOb > -Original Message- > From: Jeff Abbott [mailto:jeff.abb...@caemilusa.com] > Sent: Monday, February 01, 2010 8:18 PM > To: Bob Archer; users@subversion.apache.org > Subject: RE: Tortoise SVN merge

Re: windows vs unix question

2010-02-02 Thread Andy Levy
On Tue, Feb 2, 2010 at 02:07, Oftenwrong Soong wrote: > My understanding was that there's some weirdness related to filename case > sensitivity between different platforms, with Windows/Mac being case > preserving but case insensitive and UNIX being case sensitive, such that on > UNIX a repo mi