[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Gui front-end to version control program

David Delony

1/19/2008 7:15:00 PM

I spoke with Eric S. Raymond at a Linux user's group meeting a few days ago
about the need for version control for end users.
I thought that Python might be a good candidate for this.

Luckily, Guido was there as well. I talked this over with him and he
suggested using Google Documents sinceI usually collborate on text documents.

I want something that can work with any file, as Subversion does. I can't
think of any
GUI wrappers written in Python off the top of my head. I would like to use one
as a model and get my feet wet by contributing to it. I don't feel proficient
enough to lead a project yet.


--
There's no place like ~!
4 Answers

Paul Rubin

1/19/2008 7:24:00 PM

0

David Delony <ickyelf@gmail.com> writes:
> I want something that can work with any file, as Subversion does. I
> can't think of any GUI wrappers written in Python off the top of my
> head. I would like to use one as a model and get my feet wet by
> contributing to it. I don't feel proficient enough to lead a project yet.

I don't understand what you're asking for. cvs and svn have gui front
ends, I thought. They certainly have web front ends, as does mercurial.

Gabriel Genellina

1/20/2008 1:54:00 AM

0

En Sat, 19 Jan 2008 17:15:21 -0200, David Delony <ickyelf@gmail.com>
escribi�:

> I want something that can work with any file, as Subversion does. I can't
> think of any
> GUI wrappers written in Python off the top of my head. I would like to

There exist TortoiseCVS and TortoiseSVN. They are very intuitive and easy
to use front ends, but being Explorer extensions, they're tied to Windows.
They're not written in Python, but in C++.

--
Gabriel Genellina

Neal Becker

1/20/2008 2:01:00 AM

0

David Delony wrote:

> I spoke with Eric S. Raymond at a Linux user's group meeting a few days
> ago about the need for version control for end users.
> I thought that Python might be a good candidate for this.
>
> Luckily, Guido was there as well. I talked this over with him and he
> suggested using Google Documents sinceI usually collborate on text
> documents.
>
> I want something that can work with any file, as Subversion does. I can't
> think of any
> GUI wrappers written in Python off the top of my head. I would like to use
> one as a model and get my feet wet by contributing to it. I don't feel
> proficient enough to lead a project yet.
>
>

For some dvcs, qct is coming along well. A nice commit tool.
http://qct.source...

For merge, kdiff3 is great (and integrates with hg and qct).

There is an early version of pmpu (pushmepullyou) that I think looks good.
http://xenbits.xensource.com/m...

Grant Edwards

1/20/2008 2:04:00 AM

0

On 2008-01-20, Gabriel Genellina <gagsl-py2@yahoo.com.ar> wrote:
> En Sat, 19 Jan 2008 17:15:21 -0200, David Delony <ickyelf@gmail.com>
> escribi?:
>
>> I want something that can work with any file, as Subversion does. I can't
>> think of any
>> GUI wrappers written in Python off the top of my head. I would like to
>
> There exist TortoiseCVS and TortoiseSVN. They are very intuitive and easy
> to use front ends, but being Explorer extensions, they're tied to Windows.
> They're not written in Python, but in C++.

Meld is written in Python, and it's a limited frontend for both
CVS and SVN. There are probably almost a dozen GUI front ends
for SVN (ones that come to mind are meld, esvn, rapidsvn, ksvn,
smartsvn, qsvn, gsvn). There's also a web-based frontend for
both SVN (and CVS).

I don't really see any need for yet another GUI frontend for SVN.

--
Grant