Re: Common name for transaction and revision object

2010-04-22 Thread Geoff Rowell
On Thu, Apr 22, 2010 at 10:01 AM, Giulio Troccoli wrote: >> Giulio Troccoli wrote: >> > >> > I'm writing the hooks for a new repository in Perl and I'm >> exploring >> > using >> OO Perl. In both pre- and post-commit hooks I need the list >> of files, the author and other similar information. My

Re: Tigris binary packages for Windows

2010-04-22 Thread David Darj
On 2010-04-22 17:06, Cooke, Mark wrote: Folks, I am resurrecting this thread to ask if anyone has come forward to volunteer time and/or effort to resurrect the windoze binaries as we are still on 1.6.6 against 1.6.11 announced a few days ago. In hope... ~ Mark C I have built both 1.6.

Re: want to tell of there are uncommitted changes

2010-04-22 Thread Pat Farrell
Ryan Schmidt wrote: ==> > #!/bin/bash > > if [ -z "$(svn st)" ]; then > echo "working copy is pristine" > else > echo "working copy has changes" > fi Perfect. Thanks a lot -- Pat Farrell http://www.pfarrell.com/

Re: want to tell of there are uncommitted changes

2010-04-22 Thread David Weintraub
On Thu, Apr 22, 2010 at 2:32 PM, Pat Farrell wrote: > Hi, > > I'm trying to wrap a standard sequence of steps in a shell script > (linux/bash) and can't seem to figure out how to tell of the execution of > > svn status The "svn status" command returned 0 because it worked. It successfully reporte

Re: want to tell of there are uncommitted changes

2010-04-22 Thread Ryan Schmidt
On Apr 22, 2010, at 13:32, Pat Farrell wrote: > I'm trying to wrap a standard sequence of steps in a shell script > (linux/bash) and can't seem to figure out how to tell of the execution of > > svn status > > returned anything. For example > > ~/sandbox/$svn status > ? pat/foo > ~/sandbo

RE: cannot break lock due to no matching lock-token

2010-04-22 Thread Tom Jones
I still have no way to break this lock on a file that no longer exists. Any other insights to this thread? *** The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed. If you have received this e-mail in error please notify the

want to tell of there are uncommitted changes

2010-04-22 Thread Pat Farrell
Hi, I'm trying to wrap a standard sequence of steps in a shell script (linux/bash) and can't seem to figure out how to tell of the execution of svn status returned anything. For example ~/sandbox/$svn status ? pat/foo ~/sandbox/$echo $? 0 and if I delete the foo file, then the svn status

RE: Merging a Revision back to the trunk

2010-04-22 Thread Bob Archer
> Hi everybody! > > I’ve got a question about merging a revision of an > feature- branch back to the trunk. > Sounds quiet simple: > - Select the branch > - The revision > > ⇒ The changes made in the specific revision should be > applied on my working copy (trunk) That's not really the use case

RE: Merging a Revision back to the trunk

2010-04-22 Thread Jeremy Mordkoff
What command did you use? When was the branch created? At rev 226? jlm Jeremy Mordkoff Director, QA, IT & Release ZeeVee, Inc. One Monarch Drive | Littleton, MA 01460 Office: 978.467.1395 x233 | Fax: 978.467.1404 Mobile: 978-257-2183 j...@zeevee.com www.zeevee.com > -Original Message---

Merging a Revision back to the trunk

2010-04-22 Thread Georg Heisenberger
Hi everybody! I’ve got a question about merging a revision of an feature- branch back to the trunk. Sounds quiet simple: - Select the branch - The revision ⇒ The changes made in the specific revision should be applied on my working copy (trunk) The “problem” (at least I don’t understand why it’s

Re: Info2 and Status

2010-04-22 Thread Mark Phippard
On Thu, Apr 22, 2010 at 11:03 AM, m g wrote: > I'm exploring JavaHL and found these two classes in the API, which seems a > kind of redundant. > Can you tell me what are the differences between them? One is returned from the svn info API and one from the svn status API. While some of the infor

Info2 and Status

2010-04-22 Thread m g
Hello, I'm exploring JavaHL and found these two classes in the API, which seems a kind of redundant. Can you tell me what are the differences between them? Thanks Mário

RE: Tigris binary packages for Windows

2010-04-22 Thread Cooke, Mark
Folks, I am resurrecting this thread to ask if anyone has come forward to volunteer time and/or effort to resurrect the windoze binaries as we are still on 1.6.6 against 1.6.11 announced a few days ago. In hope... ~ Mark C >> On Wed, Mar 3, 2010 at 5:46 AM, Troy Simpson wrote: >> A minimum l

RE: Compiling Subversion on AIX

2010-04-22 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 From: dig1tal.coo...@gmail.com [mailto:dig1tal.coo...@gmail.com] On Behalf Of Rob

Re: corrupt tree/transaction

2010-04-22 Thread Ulrich Eckhardt
On Thursday 22 April 2010, Php freaked wrote: > I was using subversion until it reported me it ran out of disk-space. It > turns out the svn repository was configured at the smallest disk, so > logically I move the svn repository to other hard-drive. But ever since I > move it I've been unable to c

Compiling Subversion on AIX

2010-04-22 Thread Robert Cooper
Hello, I'm trying to compile subversion 1.6.11 source on AIX 6.1 TL3 using gcc 4.2.0-3. I have already compiled apache httpd 2.2.15 and have it working. (with ldap, dav, and authnz) My end goal is to have subversion running on AIX with apache and LDAP authentication to a Tivoli Directory Server.

corrupt tree/transaction

2010-04-22 Thread Php freaked
Hello I was using subversion until it reported me it ran out of disk-space. It turns out the svn repository was configured at the smallest disk, so logically I move the svn repository to other hard-drive. But ever since I move it I've been unable to commit in my repository. To give you an idea of

RE: Common name for transaction and revision object

2010-04-22 Thread Giulio Troccoli
> Giulio Troccoli wrote: > > > > I'm writing the hooks for a new repository in Perl and I'm > exploring > > using > OO Perl. In both pre- and post-commit hooks I need the list > of files, the author and other similar information. My idea > was to define a class and create an instance of that class

RE: Common name for transaction and revision object

2010-04-22 Thread Geoff Rowell
Giulio Troccoli wrote: > > I'm writing the hooks for a new repository in Perl and I'm exploring using OO Perl. In both pre- and post-commit hooks I need the list of files, the author and other similar information. My idea was to define a class and create an instance of that class given either the

Common name for transaction and revision object

2010-04-22 Thread Giulio Troccoli
Hello guys, I'm writing the hooks for a new repository in Perl and I'm exploring using OO Perl. In both pre- and post-commit hooks I need the list of files, the author and other similar information. My idea was to define a class and create an instance of that class given either the transaction

Subversion 1.6.11 Binaries for CentOS 5, RHEL 5, Debian Lenny and Ubuntu 9.10 released

2010-04-22 Thread Mark Poole
Hi All, Our Subversion packages are now available (no registration required) for 1.6.11. For new installations use our install script located at: http://wandisco.com/subversion/os/downloads If you are already using our packages, do the following to upgrade: Debian/Ubuntu: apt-get update && apt-

Re: Restoring corrupt revision

2010-04-22 Thread Stephen Connolly
The clean way would be to do a dump of your repo from after the dirty revision. Do a dump up to and including the dirty revision from your known good copy do a load of the clean dump + the live dump On 22 April 2010 08:30, vishwajeet singh wrote: > > > On Thu, Apr 22, 2010 at 12:49 PM, Cooke,

Re: does "svn diff" has a bug for external items ?

2010-04-22 Thread Toralf Förster
Stefan Sperling wrote at 17:46:54 > Please try to pin down the problem a bit further before filing a bug > in our tracker. > > The output that says: > Connecting to deprecated signal > QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString) > Index: tcpip.cc > looks as if the

Re: Restoring corrupt revision

2010-04-22 Thread vishwajeet singh
On Thu, Apr 22, 2010 at 12:49 PM, Cooke, Mark wrote: > >> > >> I have identified a single corrupt revision in the repository. > >> > >> Is restoring that ** specific ** revision from a tape > >> backup a reasonable approach or is it a hack and could cause > >> further problems down the track. >

RE: Restoring corrupt revision

2010-04-22 Thread Cooke, Mark
>> >> I have identified a single corrupt revision in the repository. >> >> Is restoring that ** specific ** revision from a tape >> backup a reasonable approach or is it a hack and could cause >> further problems down the track. >> > I don't see any other option than this either, even if th

Re: Restoring corrupt revision

2010-04-22 Thread vishwajeet singh
On Thu, Apr 22, 2010 at 12:35 PM, Srilakshmanan, Lakshman < lakshman.srilakshma...@police.vic.gov.au> wrote: > Hi All, > > I have identified a single corrupt revision in the repository. > > Is restoring that ** specific ** revision from a tape backup a reasonable > approach or is it a hack and

Restoring corrupt revision

2010-04-22 Thread Srilakshmanan, Lakshman
Hi All, I have identified a single corrupt revision in the repository. Is restoring that ** specific ** revision from a tape backup a reasonable approach or is it a hack and could cause further problems down the track. Thanks Lakshman