Re: Regexp for parsing urls

2010-04-16 Thread Andy Levy
On Fri, Apr 16, 2010 at 17:47, Pablo Beltran wrote: > Hi, > > Do you know a regexp to validate Subversion urls? > > I've written one quite basic > > /^(svn|file|http|https):\/\/\w+(:[0-9]+)?(\/\w*)*/ > > but it doesn't work for all cases. Can you provide examples of cases which don't work?

Using a password that is stored in the database as a hash of the password+salt (bugzilla, subversion, Cyrus-SASL integration)

2010-04-16 Thread Barneck, Jared
Hey all, My goal is to have Subversion and Bugzilla share the same users by pointing Subversion to Cyrus-SASL and pointing Cyrus-SASL at the bugzilla database. I have spent enough time searching the internet, reading the manuals, and reading posts to know that there isn't a simple answer to this

RE: Sync Fail on svn 1.6.9

2010-04-16 Thread Andersen, Krista
I have run into the same "first" sync issue again today. This time it was on a commit that involved over 8000 paths. When I gave the sync command myself I got this error output: Transmitting file data .svnsync: REPORT of 'http://serverName/parentDirectory/repoName': Could n

Subversion Repository At Symlink

2010-04-16 Thread Jonas Zimmermann
Hi, Haven't found info on this one: I try to set up a subversion server with apache, with some repositories living on a separate drive linked to by a symlink. However, I cannot get this setup to work. FollowSymLinks is set for , the svn parent path; the symlink belongs to apache and the reposito

Regexp for parsing urls

2010-04-16 Thread Pablo Beltran
Hi, Do you know a regexp to validate Subversion urls? I've written one quite basic /^(svn|file|http|https):\/\/\w+(:[0-9]+)?(\/\w*)*/ but it doesn't work for all cases. Pablo.

Re: svnsync isn't working

2010-04-16 Thread Konstantin Kolinko
2010/4/16 J. Norment : > ( I started replicating at revision 0. ) > > I'm now getting: > svnsync: Path 'QA/Releases/Q2 2.6.3/Q2 Adaptors > 2.6.3.1617/ProgramBins/Sample/QuorumChangeOfAddress' not present > Make sure that the svn account used by svnsync has read permissions for the entire source re

Re: svnsync isn't working

2010-04-16 Thread Rob van Oostrum
On Fri, Apr 16, 2010 at 2:21 PM, J. Norment wrote: > > Is anyone seeing this message that has any ideas how to fix this? ( This > message is a repeat. ) It's now been about 3 weeks since the last > replication / backup. > The repo is large enough that doing a hot-backup on the production server

svnsync isn't working

2010-04-16 Thread J. Norment
Is anyone seeing this message that has any ideas how to fix this? ( This message is a repeat. ) It's now been about 3 weeks since the last replication / backup. The repo is large enough that doing a hot-backup on the production server causes delays in day-to-day business. ( This is one of t

Subversion 1.6.11 Released

2010-04-16 Thread Hyrum Wright
I'm happy to announce Subversion 1.6.11, available from: http://subversion.tigris.org/downloads/subversion-1.6.11.tar.bz2 http://subversion.tigris.org/downloads/subversion-1.6.11.tar.gz http://subversion.tigris.org/downloads/subversion-1.6.11.zip http://subversion.tigris.org/downlo

Re: Working with Subversion

2010-04-16 Thread David Weintraub
You want to build Subversion from the source code, or you just want to use Subversion? If you want to use Subversion, you can download the binary for the platform you have. If you want to build Subversion from the source code, you'll need to check it our, or get the tarball of the source, and fol

Re: Extra newline added to commit messages -- why?

2010-04-16 Thread Ori Avtalion
On 04/16/2010 01:56 AM, Ryan Schmidt wrote: I think you should use log-police.py to make it a non-issue. This script ensures all log messages end with exactly one newline, regardless how many were there originally. You can set it up as a hook script to auto-correct new commits as they happen,

RE: SVN MOVE don't perform a delete in some case

2010-04-16 Thread Giulio Troccoli
Please do not top-post or post in HTML See http://subversion.apache.org/docs/community-guide/mailing-lists.html Now, scroll down for my response Linedata Services (UK) Ltd Registered Office: Bishopsgate Court, 4-12 Norton Folgate, London, E1 6DB Registered in England and Wales No 3027851VAT

Re: SVN MOVE don't perform a delete in some case

2010-04-16 Thread Yann Crueghe
Hi ! Thank you very much for your quick replies ! In fact, the only thing that the hook control is that the user don't try to delete a directory (he can delete the content) in an other directory called "branches" ie : myapp /branches/my_branch/myfile.txt /trunk/myfile.txt

Re: svnsync: Path.. not present

2010-04-16 Thread J. Norment
I had a replication repo start failing a few weeks ago with the message: syncing: "svnsync: Delta source ended unexpectedly" Ultimately, I ended up unintentionally removing the files for the replication repo. So now I'm creating a new one. The source repo is located on a server running svn

RE: SVN MOVE don't perform a delete in some case

2010-04-16 Thread Giulio Troccoli
> Linedata Services (UK) Ltd Registered Office: Bishopsgate Court, 4-12 Norton Folgate, London, E1 6DB Registered in England and Wales No 3027851VAT Reg No 778499447 -Original Message- > From: Stefan Sperling [mailto:s...@elego.de] > Sent: 16 April 2010 08:52 > To: Yann Crueghe > C

Re: Sync Fail on svn 1.6.9

2010-04-16 Thread Daniel Shahaf
Stefan Sperling wrote on Thu, 15 Apr 2010 at 21:02 +0200: > svn pg --revprop -r 0 svnsync:last-merged-rev You mean 'svn:sync-last-merged-rev'. And the same for the other property names. (One way to remember this is by noting they are under the reserved "svn:" namespace.)

Re: SVN MOVE don't perform a delete in some case

2010-04-16 Thread Stefan Sperling
On Fri, Apr 16, 2010 at 09:40:34AM +0200, Yann Crueghe wrote: > Hi ! Hi! > *Test 1 : Try to rename a directory BRANCHE to BRANCHE_1* > > *Command :* > svn move --message "Rename BRANCHE to BRANCHE_1" > http://tetris.agora.msanet:16060/svn/METIER/y78amodifier/branches/BRANCHE > http://tetris.ag

SVN MOVE don't perform a delete in some case

2010-04-16 Thread Yann Crueghe
Hi ! When i refer to the svn-book 1.6, it's written that a svn move perform first a svn copy and then a svn delete. But in some case, the command never perform a svn delete. To test, i have written a pre-commit hook who deny deletion of a branch catching a "D ReposPath" action. *Test 1 : Try