Re: [fossil-users] Features request

2010-06-30 Thread Joshua Paine
On 06/30/2010 01:52 AM, Ruslan Popov wrote:
 When I use git I like its feature to do 'more' showing huge diff.
 Especially it would be convinient for fossil on Windows.

`fossil diff | more`  Windows doesn't have much of a command line 
environment, but that much at least works on my Windows XP test machine.

-- 
Joshua Paine
LetterBlock: Web applications built with joy
http://letterblock.com/
301-576-1920
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] No Client GUI for fossil

2010-06-30 Thread Stephen De Gabrielle
Hi,

I just posted a stackoverflow answer to the question:

QUESTION
Are there any GUIs for fossil?

I've been getting used to the idea of source control for solo
projects, and having an interface for the commands in fossil would
help.

Something simple that helps browse for files, or open + close. Google
has turned up nothing except the web GUI that works within the
projects themselves.

ANSWER

There are no platform ui clients for Fossil that I am aware of. Nor
are there Windows Explorer or Finder extensions or IDE extensions for
eclipse, emacs or the Microsoft/Apple tool chains that I can find.

That said, many of these would be simple enough to implement, so you
could check one of the OSS clients for CVS or Subversion to see if you
could fork them for your needs. (respecting licences of course)

Sorry the answer is 'no', but this response should change soon as
fossil seems to be attracting a lot of attention.

PS I'm betting emacs will get support first ;)

/---//

Please correct me if I'm wrong!

http://stackoverflow.com/questions/2135779/gui-for-fossil-scm/3151618#3151618

-- 

--
Stephen De Gabrielle
stephen.degabrie...@acm.org
Telephone +44 (0)20 85670911
Mobile+44 (0)79 85189045
http://www.degabrielle.name/stephen
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] No Client GUI for fossil

2010-06-30 Thread Bill Whiting
Stephen,
here is a built-in web interface.

If you have an open repository
 i.e.
 fossil open myProject.fossil

then run fossil with the ui command:
 fossil ui

fossil will run a webserver providing gui access to the currently opened 
repository and it will start your browser pointing to 
http://localhost:8080 (or some previously unused port).

There were a couple of additional answers to the website that explained 
better than my answer.

//Bill

On 06/30/2010 01:16 PM, Stephen De Gabrielle wrote:
 Hi,

 I just posted a stackoverflow answer to the question:

 QUESTION
 Are there any GUIs for fossil?

 I've been getting used to the idea of source control for solo
 projects, and having an interface for the commands in fossil would
 help.

 Something simple that helps browse for files, or open + close. Google
 has turned up nothing except the web GUI that works within the
 projects themselves.

 ANSWER

 There are no platform ui clients for Fossil that I am aware of. Nor
 are there Windows Explorer or Finder extensions or IDE extensions for
 eclipse, emacs or the Microsoft/Apple tool chains that I can find.

 That said, many of these would be simple enough to implement, so you
 could check one of the OSS clients for CVS or Subversion to see if you
 could fork them for your needs. (respecting licences of course)

 Sorry the answer is 'no', but this response should change soon as
 fossil seems to be attracting a lot of attention.

 PS I'm betting emacs will get support first ;)

 /---//

 Please correct me if I'm wrong!

 http://stackoverflow.com/questions/2135779/gui-for-fossil-scm/3151618#3151618



___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] No Client GUI for fossil

2010-06-30 Thread Stephen De Gabrielle
Thanks,

The person asking the question was aware of the web ui - the responses
like yours detailing the webui were really good - but I feel the
question was also after a GUI alternative to the command line
functions. Something like TortoiseGit
See http://code.google.com/p/tortoisegit/

If you do know of anything like TortoiseGit please correct me.

I also think IDE plugins may fit the bill if anyone is aware of any.

Thanks again,

Cheers,

Stephen

On Wednesday, June 30, 2010, Bill Whiting tex...@bellsouth.net wrote:
 Stephen,
 here is a built-in web interface.

 If you have an open repository
      i.e.
      fossil open myProject.fossil

 then run fossil with the ui command:
      fossil ui

 fossil will run a webserver providing gui access to the currently opened
 repository and it will start your browser pointing to
 http://localhost:8080 (or some previously unused port).

 There were a couple of additional answers to the website that explained
 better than my answer.

 //Bill

 On 06/30/2010 01:16 PM, Stephen De Gabrielle wrote:
 Hi,

 I just posted a stackoverflow answer to the question:

 QUESTION
 Are there any GUIs for fossil?

 I've been getting used to the idea of source control for solo
 projects, and having an interface for the commands in fossil would
 help.

 Something simple that helps browse for files, or open + close. Google
 has turned up nothing except the web GUI that works within the
 projects themselves.

 ANSWER

 There are no platform ui clients for Fossil that I am aware of. Nor
 are there Windows Explorer or Finder extensions or IDE extensions for
 eclipse, emacs or the Microsoft/Apple tool chains that I can find.

 That said, many of these would be simple enough to implement, so you
 could check one of the OSS clients for CVS or Subversion to see if you
 could fork them for your needs. (respecting licences of course)

 Sorry the answer is 'no', but this response should change soon as
 fossil seems to be attracting a lot of attention.

 PS I'm betting emacs will get support first ;)

 /---//

 Please correct me if I'm wrong!

 http://stackoverflow.com/questions/2135779/gui-for-fossil-scm/3151618#3151618



 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


-- 

--
Stephen De Gabrielle
stephen.degabrie...@acm.org
Telephone +44 (0)20 85670911
Mobile+44 (0)79 85189045
http://www.degabrielle.name/stephen
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Features request

2010-06-30 Thread Michael Richter
On 30 June 2010 21:24, Joshua Paine jos...@letterblock.com wrote:

 On 06/30/2010 01:52 AM, Ruslan Popov wrote:
  When I use git I like its feature to do 'more' showing huge diff.
  Especially it would be convinient for fossil on Windows.

 `fossil diff | more`  Windows doesn't have much of a command line
 environment, but that much at least works on my Windows XP test machine.


I remember when the Unix philosophy was espoused as a collection of tools,
each of which does one thing well, connected together by pipes.

Now it seems Unix is a collection of tools, each of which is bloated with
overlapping functionality that is none of it very good.

Why does git replicate functionality in a utility that's been in Unix (and
Windows (and OS/2 (and DOS (and even the DEC OSes in some form or
another since time immemorial?

-- 
Perhaps people don't believe this, but throughout all of the discussions of
entering China our focus has really been what's best for the Chinese people.
It's not been about our revenue or profit or whatnot.
--Sergey Brin, demonstrating the emptiness of the don't be evil mantra.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users