Re: svnadmin create and not being method agnostic

2011-01-04 Thread Daniel Becroft
On Wed, Jan 5, 2011 at 12:31 PM, Nico Kadel-Garcia wrote: > On Tue, Jan 4, 2011 at 4:56 PM, Daniel Becroft > wrote: > > > svnadmin create .\repository > > svnserve -r . > > > > and a repository is created and served via svnserve. With the above > > defaults, a third step is required, which can g

Re: Fine and secure dining, was Re: svnadmin create and not being method agnostic

2011-01-04 Thread Nico Kadel-Garcia
On Mon, Jan 3, 2011 at 11:46 AM, Les Mikesell wrote: > On 1/2/2011 9:43 PM, Nico Kadel-Garcia wrote: >> >> It's possible to do secure Subversion. Use svn+ssh access, disable or >> block other services at the firewall, > > If ssh is permitted and you didn't personally set it up, what are the odds >

Re: Apache Software Foundation response to recent WANdisco statements.

2011-01-04 Thread Nico Kadel-Garcia
On Mon, Jan 3, 2011 at 1:27 PM, Stefan Sperling wrote: > There have also been reactions by individuals in the community, > for instance by Ben-Collins Sussman > http://blog.red-bean.com/sussman/?p=475 > and Mark Phippard > http://markphip.blogspot.com/2011/01/open-letter-to-wandisco.html > > Many

Re: svnadmin create and not being method agnostic

2011-01-04 Thread Nico Kadel-Garcia
On Tue, Jan 4, 2011 at 4:56 PM, Daniel Becroft wrote: > svnadmin create .\repository > svnserve -r . > > and a repository is created and served via svnserve. With the above > defaults, a third step is required, which can get tedious. I'd propose > enabling svnserve by default, and it can then be

Re: svnadmin create and not being method agnostic

2011-01-04 Thread Nico Kadel-Garcia
On Mon, Jan 3, 2011 at 3:56 PM, Nick wrote: > On Mon, 2011-01-03 at 11:49 -0500, Mark Phippard wrote: >> > Apologies in advance if this is covered somewhere, but can someone >> > explain (or point me to some references on) why using SVN w/ Apache >> > (HTTPS) is insecure?  I've seen some reference

Re: Best way to maintain patches to a 3rd party library?

2011-01-04 Thread Nico Kadel-Garcia
On Tue, Jan 4, 2011 at 6:35 PM, NN Ott wrote: > Hello, > > I have a source library that I need to periodically import (and then patch) > for use by my code base. > > The SVN Book seems to reccomend a "vendor branch" scheme where you keep a > patched branch of the "vendor drops". This would work, e

Re: 207 Multi-Status error checking out WebKit repository on Windows

2011-01-04 Thread Blair Zajac
On 12/25/10 5:42 PM, Kenneth Russell wrote: Hello, The WebKit project uses Subversion for version control and we are facing a problem with fresh checkouts of the repository on Windows with Subversion 1.6.6 (as well as earlier versions -- I've also tried 1.6.1). The reported error is with a speci

Best way to maintain patches to a 3rd party library?

2011-01-04 Thread NN Ott
Hello, I have a source library that I need to periodically import (and then patch) for use by my code base. The SVN Book seems to reccomend a "vendor branch" scheme where you keep a patched branch of the "vendor drops". This would work, except that I loose any history of the library development.

Re: Feature request: expand wildcards

2011-01-04 Thread Stefan Sperling
On Wed, Jan 05, 2011 at 12:26:30AM +0200, Daniel Shahaf wrote: > (btw, do we have a way to say "except files in $this changelist"?) I don't think we do.

Re: Feature request: expand wildcards

2011-01-04 Thread Daniel Shahaf
Stefan Sperling wrote on Tue, Jan 04, 2011 at 22:44:49 +0100: > On Tue, Jan 04, 2011 at 10:47:52PM +0200, Daniel Shahaf wrote: > > Daniel Shahaf wrote on Tue, Jan 04, 2011 at 22:22:18 +0200: > > > It's hacky, but: > > > > > > svn commit --changelist :glob:'*.foo' > > > > > > where the "changeli

Re: svnadmin create and not being method agnostic

2011-01-04 Thread Stefan Sperling
On Wed, Jan 05, 2011 at 07:56:48AM +1000, Daniel Becroft wrote: > On Wed, Jan 5, 2011 at 5:35 AM, Stefan Sperling wrote: > > = Impact on the repository format = > > > > A format bump (in REPOS/format, not REPOS/db/format) is required. > > The new feature shall only be activated for repositories w

Re: svnadmin create and not being method agnostic

2011-01-04 Thread Daniel Becroft
On Wed, Jan 5, 2011 at 5:35 AM, Stefan Sperling wrote: > On Mon, Jan 03, 2011 at 02:35:08PM +0100, Stefan Sperling wrote: > > On Sat, Jan 01, 2011 at 11:58:09PM -0700, Philip Prindeville wrote: > > > I don't care how you do that. As long as it's easily > > > understandable, preferably to both e

Re: Feature request: expand wildcards

2011-01-04 Thread Stefan Sperling
On Tue, Jan 04, 2011 at 10:47:52PM +0200, Daniel Shahaf wrote: > Daniel Shahaf wrote on Tue, Jan 04, 2011 at 22:22:18 +0200: > > It's hacky, but: > > > > svn commit --changelist :glob:'*.foo' > > > > where the "changelist" is then interpreted as a glob pattern > > (let's say apr_fnmatch()). > >

Re: Feature request: expand wildcards

2011-01-04 Thread Daniel Shahaf
Daniel Shahaf wrote on Tue, Jan 04, 2011 at 22:22:18 +0200: > It's hacky, but: > > svn commit --changelist :glob:'*.foo' > > where the "changelist" is then interpreted as a glob pattern > (let's say apr_fnmatch()). > > Thoughts? > That wasn't hard: [[[ % $svn st -q M subversion/libsvn

Re: svnadmin: Can't write to stream: File too large

2011-01-04 Thread Torsten Krah
Am Montag, 3. Januar 2011 schrieb B Smith-Mannschott: > What *nix flavor are you running? What's the file system you're trying > to write the dump file to? "Around 17 GiB" seems like a strange > maximum size. It isn't 17179869184 bytes, perchance? Found the culprit. My ext3 block size is 1024 - so

Re: Feature request: expand wildcards

2011-01-04 Thread Daniel Shahaf
It's hacky, but: svn commit --changelist :glob:'*.foo' where the "changelist" is then interpreted as a glob pattern (let's say apr_fnmatch()). Thoughts? Ed Avis wrote on Tue, Jan 04, 2011 at 14:48:21 +: > Hi, this is a feature request for the command-line svn client. I am posting > it

Re: Problem with My SVN Server

2011-01-04 Thread Daniel Shahaf
[ Santosh, note that Johan did reply with some questions at the bottom, in addition to his bracketed remark at the top. ] Johan Corveleyn wrote on Tue, Jan 04, 2011 at 09:50:51 +0100: > [ please don't top-post on this list, i.e. please put your reply at > the bottom, or inline, below the thing you

Re: On commit attempt, Server sent unexpected return value (403 Forbidden) in response to CHECKOUT

2011-01-04 Thread Daniel Shahaf
Mark Phippard wrote on Mon, Jan 03, 2011 at 09:32:49 -0500: > On Fri, Dec 31, 2010 at 11:04 AM, wrote: > > I'm trying to integrate a SVN Authz authorization file with apache > > configuration files to provide a solution for not just directory level > > restrictions, but also file level restrictio

Re: svnadmin create and not being method agnostic

2011-01-04 Thread Daniel Shahaf
How about allowing to choose not just at mod_dav_svn v. svnserve granularity, but at the httpd instance / svnserve instance granularity. Requires 'svnserve --instance-name=foo' (and a corresponding httpd.conf directive) and specifying that 'foo' somewhere in the config file. Stefan Sperling wr

Re: svnadmin create and not being method agnostic

2011-01-04 Thread Stefan Sperling
On Mon, Jan 03, 2011 at 02:35:08PM +0100, Stefan Sperling wrote: > On Sat, Jan 01, 2011 at 11:58:09PM -0700, Philip Prindeville wrote: > > I don't care how you do that. As long as it's easily > > understandable, preferably to both existing users and new ones. > > Apart from improving documentatio

Re: Commit fails with path not found

2011-01-04 Thread David Weintraub
2011/1/4 Pazmiño Mazón, Iván Andrés : > I just moved the directories within the IDE, it's eclipse, and worked on > them for quite long before being ready to commit. I'm using subversive > plugin. If you don't have the command line Subversion client installed, install it on your system, and try the

Re: Commit fails with path not found

2011-01-04 Thread Pazmiño Mazón , Iván Andrés
I just moved the directories within the IDE, it's eclipse, and worked on them for quite long before being ready to commit. I'm using subversive plugin. -Original Message- From: David Weintraub To: iapazm...@sri.gob.ec Cc: users@subversion.apache.org Subject: Re: Commit fails with path not

Feature request: expand wildcards

2011-01-04 Thread Ed Avis
Hi, this is a feature request for the command-line svn client. I am posting it here rather than in the issue tracker directly. It is slightly related to the earlier thread but not exactly the same issue. If you remove so

Re: svnserve with corrupt timestamps and malformed text representation

2011-01-04 Thread Daniel Shahaf
René Hjortskov Nielsen wrote on Tue, Jan 04, 2011 at 13:08:51 +0100: > Hopefully this is useful information for someone :) It's useful, yes. You could pass this information directly to the APR project: http://apr.apache.org/ should identify the mailing list you need. Thanks, Daniel René Hjor

RE: Problem with My SVN Server

2011-01-04 Thread Edward Ned Harvey
> From: santhosh kumar [mailto:santhoshkal...@gmail.com] > > The problem is that, I am not able to check out a file from the svn server > system. But the same file can be checked out from any other linux box. > > From the server I wanted to checkout the same file for some script. It is a > tar.bz

Re: svnserve with corrupt timestamps and malformed text representation

2011-01-04 Thread René Hjortskov Nielsen
Thanks for your input. I ended up debugging the subversion and apr code and found the solution. I corrected the timestamps by making some typecasts in subversion-1.6.13/apr/time/unix/time.c: " APR_DECLARE(apr_time_t) apr_time_now(void) { struct timeval tv; gettimeofday(&tv, NULL); //

Re: svnadmin create and not being method agnostic

2011-01-04 Thread Stefan Sperling
On Mon, Jan 03, 2011 at 04:19:20PM -0500, Andy Levy wrote: > On Mon, Jan 3, 2011 at 15:56, Nick wrote: > > On Mon, 2011-01-03 at 11:49 -0500, Mark Phippard wrote: > >> > Apologies in advance if this is covered somewhere, but can someone > >> > explain (or point me to some references on) why using

Re: Problem with My SVN Server

2011-01-04 Thread Johan Corveleyn
[ please don't top-post on this list, i.e. please put your reply at the bottom, or inline, below the thing you're replying to. ] On Tue, Jan 4, 2011 at 9:20 AM, santhosh kumar wrote: > On Mon, Dec 20, 2010 at 12:56 PM, santhosh kumar > wrote: >> >> >> -- Forwarded message -- >> F

Re: Problem with My SVN Server

2011-01-04 Thread santhosh kumar
Thanks for your support, But the problem still remains On Mon, Dec 20, 2010 at 12:56 PM, santhosh kumar wrote: > > > -- Forwarded message -- > From: Johan Corveleyn > Date: Mon, Dec 20, 2010 at 12:55 AM > Subject: Re: Problem with My SVN Server > To: Nico Kadel-Garcia > Cc: sant