You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by David Everly <de...@gmail.com> on 2006/05/02 13:50:04 UTC

subversion gui for linux

Hello,

Is there a subversion gui for linux that is able to browse an https
repository and compare the contents of two tags (two different urls) or
a tag and the trunk?

Thanks,
Dave.
-- 
Encrypted Mail Preferred:
    Key ID:  8527B9AF
    Key Fingerprint:  E1B6 40B6 B73F 695E 0D3B  644E 6427 DD74 8527 B9AF
    Information:  http://www.gnupg.org/
                                                                                
ASCII ribbon campaign:
()  against HTML email
/\  against Microsoft attachments
    Information:  http://www.expita.com/nomime.html

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: subversion gui for linux

Posted by Ian Sullivan <is...@gmail.com>.
Another web-based solution is Insurrection, http://insurrection.tigris.org/.

On 5/2/06, Janek Bogucki <ja...@gmail.com> wrote:
>
>
> The web based stuff is called ViewCVS. Here is an example:
> http://svn.netfilter.org/cgi-bin/viewcvs.cgi/trunk/
>
> -Janek Bogucki
>
>


--
Ian Sullivan
Conversagent, Inc.
Development Tools Lead, Perl Mangler, Javascript Tangler & Install Wrangler

Re: subversion gui for linux

Posted by Janek Bogucki <ja...@gmail.com>.
On 02/05/06, Gregory Piñero <gr...@gmail.com> wrote:
>
> You may also have some luck with web based stuff.  I forget their names
> offhand.
>
> -Greg
>
> On 5/2/06, Rainer Sokoll <R....@intershop.de> wrote:
> > On Wed, May 03, 2006 at 02:12:34AM +1000, John Pye wrote:
> >
> > [Quoting fixed]
> >
> > > >> Is there a subversion gui for linux that is able to browse an https
> > > >> repository and compare the contents of two tags (two different
> urls) or
> > > >> a tag and the trunk?
> >
> > > You might have some luck with 'meld' -- have you tried that?
> >
> > Or Eclipse with Subclipse?
> >
> > Rainer
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> > For additional commands, e-mail: users-help@subversion.tigris.org
> >
> >
>
>
> --
> Gregory Piñero
> Chief Innovation Officer
> Blended Technologies
> (www.blendedtechnologies.com)
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org
>
>
The web based stuff is called ViewCVS. Here is an example:
http://svn.netfilter.org/cgi-bin/viewcvs.cgi/trunk/

-Janek Bogucki

Re: subversion gui for linux

Posted by Gregory Piñero <gr...@gmail.com>.
You may also have some luck with web based stuff.  I forget their names offhand.

-Greg

On 5/2/06, Rainer Sokoll <R....@intershop.de> wrote:
> On Wed, May 03, 2006 at 02:12:34AM +1000, John Pye wrote:
>
> [Quoting fixed]
>
> > >> Is there a subversion gui for linux that is able to browse an https
> > >> repository and compare the contents of two tags (two different urls) or
> > >> a tag and the trunk?
>
> > You might have some luck with 'meld' -- have you tried that?
>
> Or Eclipse with Subclipse?
>
> Rainer
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org
>
>


--
Gregory Piñero
Chief Innovation Officer
Blended Technologies
(www.blendedtechnologies.com)

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


Re: subversion gui for linux

Posted by Rainer Sokoll <R....@intershop.de>.
On Wed, May 03, 2006 at 02:12:34AM +1000, John Pye wrote:

[Quoting fixed]

> >> Is there a subversion gui for linux that is able to browse an https
> >> repository and compare the contents of two tags (two different urls) or
> >> a tag and the trunk?

> You might have some luck with 'meld' -- have you tried that?

Or Eclipse with Subclipse?

Rainer

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: subversion gui for linux

Posted by Nick Thompson <ni...@agere.com>.
On Wednesday 03 May 2006 01:48, Raman Gupta wrote:
> David Everly wrote:
> > I like meld, but what I really want is something that will
> > compare two tags, show me all files that have changed between
> > those two tags, then let me click on each file to see what that
> > file's difference is (and at this step, it would be fine to look
> > like meld).
>
> The attached shell script replaces "svn diff" and should do it for
> you. Put them in your path, define DIFFCMD to a graphical diff
> viewer that handles directories e.g.
>
> export DIFFCMD=meld
>
> Then run svntreediff instead of "svn diff" -- svntreediff supports
> all the parameters that "svn diff" does:
>
> svntreediff $REPO/tags/tag1 $REPO/tags/tag2
>
> It will write #old and #new directories to your $TEMP (or /tmp) and
> then use the graphical diff command you specified (or plain old
> diff if none is specified) to show the differences.

Kdiff3 is similar to meld in some ways, but since it is build directly 
on top of KDE, it can use KDE's kioslave architecture to access 
subversions tags directly. So you can do compares like (wrapped):

kdiff3 svn+http://myserver.com/svn/repx/tags/rel1
     svn+http://myserver.com/svn/repx/tags/rel2

kompare is a similar KDE tool and should be able to do something 
similar, but only takes an individual file URL, not dir URLS.

kompare is nice in that it supports piping of diff output into it for 
a nice graphical view. Example:

svn diff myfile | kompare -

If only both tools had all the features. :-)

-- 
> Nick Thompson

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: subversion gui for linux

Posted by Raman Gupta <ro...@fastmail.fm>.
David Everly wrote:
> I like meld, but what I really want is something that will compare two
> tags, show me all files that have changed between those two tags, then
> let me click on each file to see what that file's difference is (and
> at this step, it would be fine to look like meld).

The attached shell script replaces "svn diff" and should do it for you.
Put them in your path, define DIFFCMD to a graphical diff viewer that
handles directories e.g.

export DIFFCMD=meld

Then run svntreediff instead of "svn diff" -- svntreediff supports all
the parameters that "svn diff" does:

svntreediff $REPO/tags/tag1 $REPO/tags/tag2

It will write #old and #new directories to your $TEMP (or /tmp) and then
use the graphical diff command you specified (or plain old diff if none
is specified) to show the differences.

Cheers,
Raman

Re: subversion gui for linux

Posted by David Everly <de...@gmail.com>.
I like meld, but what I really want is something that will compare two
tags, show me all files that have changed between those two tags, then
let me click on each file to see what that file's difference is (and
at this step, it would be fine to look like meld).

On 5/2/06, John Pye <jo...@student.unsw.edu.au> wrote:
> You might have some luck with 'meld' -- have you tried that?
>
> Cheers
> JP
>
> Markus KARG wrote:
>
> > David Everly schrieb:
> >
> >> Hello,
> >>
> >> Is there a subversion gui for linux that is able to browse an https
> >> repository and compare the contents of two tags (two different urls) or
> >> a tag and the trunk?
> >>
> >> Thanks,
> >> Dave.
> >>
> >>
> > Maybe someone likes to port TortoiseSVN to KDE?
> > This would be really great.
> > Unfortunately I don't know anything about Linux and especially KDE
> > APIs, so I cannot help out.
> >
> > Have Fun
> > Markus
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org
>
>


--
ASCII ribbon campaign:
()  against HTML email
/\  against Microsoft attachments
    Information:  http://www.expita.com/nomime.html

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


Re: subversion gui for linux

Posted by John Pye <jo...@student.unsw.edu.au>.
You might have some luck with 'meld' -- have you tried that?

Cheers
JP

Markus KARG wrote:

> David Everly schrieb:
>
>> Hello,
>>
>> Is there a subversion gui for linux that is able to browse an https
>> repository and compare the contents of two tags (two different urls) or
>> a tag and the trunk?
>>
>> Thanks,
>> Dave.
>>  
>>
> Maybe someone likes to port TortoiseSVN to KDE?
> This would be really great.
> Unfortunately I don't know anything about Linux and especially KDE
> APIs, so I cannot help out.
>
> Have Fun
> Markus

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: subversion gui for linux

Posted by Markus KARG <ma...@quipsy.de>.
David Everly schrieb:

>Hello,
>
>Is there a subversion gui for linux that is able to browse an https
>repository and compare the contents of two tags (two different urls) or
>a tag and the trunk?
>
>Thanks,
>Dave.
>  
>
Maybe someone likes to port TortoiseSVN to KDE?
This would be really great.
Unfortunately I don't know anything about Linux and especially KDE APIs, 
so I cannot help out.

Have Fun
Markus

Re: subversion gui for linux

Posted by Mark Phippard <ma...@softlanding.com>.
David Everly <de...@gmail.com> wrote on 05/02/2006 09:50:04 AM:

> Is there a subversion gui for linux that is able to browse an https
> repository and compare the contents of two tags (two different urls) or
> a tag and the trunk?

Subclipse has features like this.  The base Eclipse IDE + Subclipse is 
fairly lightweight and provides a good GUI for Subversion.

When purely browsing the repository, Subclipse will currently only produce 
a diff file for two tags.  However, if you have something checked out 
locally, it can do a graphical compare of the local with some other tag in 
the repository.

Also see: 

http://subclipse.tigris.org/branch_tag.html

Mark

_____________________________________________________________________________
Scanned for SoftLanding Systems, Inc. and SoftLanding Europe Plc by IBM Email Security Management Services powered by MessageLabs. 
_____________________________________________________________________________

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org