Re: SVN update question

2010-08-13 Thread Nico Kadel-Garcia
On Wed, Aug 11, 2010 at 7:44 PM, Phil Pinkerton wrote: > > > On 08/11/2010 07:28 PM, David Bartmess wrote: >> >> On 8/11/2010 5:20 PM, Phil Pinkerton wrote: >>> >>> I'd like to be able to update a working copy after deleting a file from >>> the Repository and have the file I removed from the Repos

Re: How to avoid the .svn while preparing rpm packages?

2010-08-13 Thread Nico Kadel-Garcia
Then you need to rethink your build procedures, seriuosly. If you've bothered to do a Subversion checkout, building a tarball with "tar czf ---exclude=.svn" of the checked out copy is trivial. If you're SRPM's do not include a tarball for a significantly sized source, you're usually doing somethin

RE: What's the current status for subversion replication?

2010-08-13 Thread Jon Foster
Steven Woody wrote: > Thanks everyone, and, can I get know if the replication/write-through > things support https? Yes, they do. > The master that I want to mirror is using https On the mirror, you need the appropriate Apache modules and configuration. Make sure you have mod_proxy and mod_ssl l

Re: How to avoid the .svn while preparing rpm packages?

2010-08-13 Thread See
My answer is Yes or NO.If we export then Build time will get increase and space also we need to watch.So this solution is not feasible for us.Thanks for your suggestions. On Aug 12, 11:23 am, Bob Archer wrote: > > How to avoid the .svn  directories while preparing rpm packages? > > When I am tryi

Re: What's the current status for subversion replication?

2010-08-13 Thread Steven Woody
On 11 August 2010 17:44, Campbell Allan wrote: > > On Wednesday 11 Aug 2010, Ryan Schmidt wrote: >> On Aug 11, 2010, at 02:46, Steven Woody wrote: >> > What's the current status for subversion servers replication?  Does it >> > allow read/write on both master and slaver sides? Is it stable enough

Re: Can't connect to the host 'hostname':

2010-08-13 Thread Daniel Shahaf
Csaba Raduly wrote on Fri, Aug 13, 2010 at 14:15:57 +0200: > On Thu, Aug 12, 2010 at 9:02 PM, Andre Guilherme Soares e Silva wrote: > > Please, > > I have svnserve running as a service. > > It starts automatically with a repository. > > > > I can use the command "svn list svn://localhost", this ru

Re: svn : problems with files starting with '-'

2010-08-13 Thread Daniel Shahaf
Another option: svn rename -- -MediacatController.php MediacatController.php (which is a bit easier for scripting) Tony Sweeney wrote on Fri, Aug 13, 2010 at 10:34:58 +0100: > The usual UNIX "trick" would be: > > svn rename ./-MediacatController.php MediacatController.php > > Doe

RE: Setting multiple properties with on command

2010-08-13 Thread Bert Huijben
> -Original Message- > From: Daniel Shahaf [mailto:d...@daniel.shahaf.name] > Sent: vrijdag 13 augustus 2010 0:25 > To: Pathy Kongo > Cc: users@subversion.apache.org > Subject: Re: Setting multiple properties with on command > > Pathy Kongo wrote on Wed, Aug 11, 2010 at 18:22:31 +0200: >

Re: Can't connect to the host 'hostname':

2010-08-13 Thread Csaba Raduly
On Thu, Aug 12, 2010 at 9:02 PM, Andre Guilherme Soares e Silva wrote: > Please, > I have svnserve running as a service. > It starts automatically with a repository. > > I can use the command "svn list svn://localhost", this runs very well, but > when i tried to do this from another pc ("svn list

Re: svn checkout - special characters in file name are not encoding properly

2010-08-13 Thread Vincent Lefevre
On 2010-08-13 11:39:43 +0200, Stefan Sperling wrote: > Yes, I see the difference. It's a question of where the primary > configuration knob for the charset is located. > > Right now, the source of charset information is always the locale. > > You want it to be the locale at checkout time and some

Re: svn checkout - special characters in file name are not encoding properly

2010-08-13 Thread Vincent Lefevre
On 2010-08-13 11:18:00 +0200, Stefan Sperling wrote: > On Fri, Aug 13, 2010 at 09:37:57AM +0200, Vincent Lefevre wrote: > > On 2010-08-13 08:16:48 +0200, Alexander Skwar wrote: > > > 2010/8/13 Vincent Lefevre > > > > > > > > On 2010-08-12 17:16:37 +0200, Stefan Sperling wrote: > > > > > > > > ~/b

Re: svn checkout - special characters in file name are not encoding properly

2010-08-13 Thread Vincent Lefevre
On 2010-08-13 09:47:37 +0200, Alexander Skwar wrote: > Well, if you want or need to parse the output of a program, > you'll need to make sure that it's in the "correct" locale. The > way to do that, is by setting the locale variables to the expected > values. Thus, it's totally correct to set LC_CT

Re: Cannot delete directory after deleting included file

2010-08-13 Thread Richard Biffl
"Johan Corveleyn" wrote in message news:aanlktikwgybh37j97rbemcyqrue08uvauyjix=kha...@mail.gmail.com... This looks similar to issue 3526: http://subversion.tigris.org/issues/show_bug.cgi?id=3526 - Commit of newly added file followed by move (or delete) of parent dir causes tree conflict A coupl

Re: svn : problems with files starting with '-'

2010-08-13 Thread João Pinheiro
Hi, Worked like a charm! thanks for the tip :) João Pinheiro Em 13-08-2010 10:34, Alexander Skwar escreveu: Hi. 2010/8/13 João Pinheiro: cm% svn rename '-MediacatController.php' MediacatController.php svn: invalid option character: M Type 'svn help' for usage. Does anyone know a quick w

Re: svn checkout - special characters in file name are not encoding properly

2010-08-13 Thread Stefan Sperling
On Fri, Aug 13, 2010 at 12:27:30AM +0200, Vincent Lefevre wrote: > On 2010-08-12 17:16:37 +0200, Stefan Sperling wrote: > > Using UTF-8 instead of the recorded charset is out of the question. > > That leaves erroring out as the only option. So how is that > > different from the current situation? >

RE: svn : problems with files starting with '-'

2010-08-13 Thread Tony Sweeney
The usual UNIX "trick" would be: svn rename ./-MediacatController.php MediacatController.php Does this not work for you? Tony. > -Original Message- > From: João Pinheiro [mailto:joao.pinhe...@pontosi.pt] > Sent: 13 August 2010 10:24 > To: users@subversion.apache.org > Subject:

Re: svn : problems with files starting with '-'

2010-08-13 Thread Alexander Skwar
Hi. 2010/8/13 João Pinheiro : > cm% svn rename '-MediacatController.php' MediacatController.php > svn: invalid option character: M > Type 'svn help' for usage. > > Does anyone know a quick workaround for this? "svn rename ./-Mediacat..." - this should work. Alexander -- ↯    Lifestream (Twitter

svn : problems with files starting with '-'

2010-08-13 Thread João Pinheiro
Hi, I'm using subversion version 1.6.12 in FreeBSD and I'm having some difficulties with files that start with '-': cm% svn rename -MediacatController.php MediacatController.php svn: invalid option character: M Type 'svn help' for usage. cm% svn rename %2DMediacatController.php MediacatControl

Re: svn checkout - special characters in file name are not encoding properly

2010-08-13 Thread Stefan Sperling
On Fri, Aug 13, 2010 at 09:37:57AM +0200, Vincent Lefevre wrote: > On 2010-08-13 08:16:48 +0200, Alexander Skwar wrote: > > 2010/8/13 Vincent Lefevre > > > > > > On 2010-08-12 17:16:37 +0200, Stefan Sperling wrote: > > > > > > ~/bin/mysvn: > > > >  #!/bin/sh > > > >  env LC_CTYPE="en_US." svn upd

Re: Can't connect to the host 'hostname':

2010-08-13 Thread John Doe
From: Andre Guilherme Soares e Silva >I have svnserve running as a service. >It starts automatically with a repository. >I can use the command "svn list svn://localhost", this runs very well, but >when >i tried to do this from another pc ("svn list svn://mycomputer"), i got the >following erro

Re: svn checkout - special characters in file name are not encoding properly

2010-08-13 Thread Alexander Skwar
Hi. 2010/8/13 Vincent Lefevre : > On 2010-08-13 08:16:48 +0200, Alexander Skwar wrote: >> 2010/8/13 Vincent Lefevre >> > >> > On 2010-08-12 17:16:37 +0200, Stefan Sperling wrote: >> >> > > ~/bin/mysvn: >> > >  #!/bin/sh >> > >  env LC_CTYPE="en_US." svn update >> > >> > Wrong, wrong, wrong! Secur

Re: svn checkout - special characters in file name are not encoding properly

2010-08-13 Thread Vincent Lefevre
On 2010-08-13 08:16:48 +0200, Alexander Skwar wrote: > 2010/8/13 Vincent Lefevre > > > > On 2010-08-12 17:16:37 +0200, Stefan Sperling wrote: > > > > ~/bin/mysvn: > > >  #!/bin/sh > > >  env LC_CTYPE="en_US." svn update > > > > Wrong, wrong, wrong! Security hole! > > No, not wrong, but totally c

svn: Reading one svndiff window read beyond the end of the representation

2010-08-13 Thread Corti Matteo
Dear list, we get the following error message while checking out a directory with some relatively large files: svn: Reading one svndiff window read beyond the end of the representation I am using 1.6.12 (default on Red Hat 5, see below). Any idea? (Google does not help much ...) Regards,