Re: [fossil-users] Check-In info

2011-02-16 Thread Justin Mazzi
That ones me to list the files along with the ID: fossil diff a92874056e fossil: file a92874056e does not exist in checkin: I'm looking for something that will show me the entire payload of a checkin, much like `git show commit-id` On Wed, Feb 16, 2011 at 8:14 AM, Richard Hipp d...@sqlite.org

Re: [fossil-users] Check-In info

2011-02-16 Thread Justin Mazzi
Hey, There's absolutely nothing wrong with the way `fossil ui` shows it's changes. Sometimes it's nice to be able to go through the timeline on the command line and view the payload of the commits. I'm looking for diff output that shows all the changes and files affected from that commit. As

Re: [fossil-users] ticket opened date

2011-02-16 Thread Stephen De Gabrielle
I'm sorry, I'm not at all familiar with TH1. What exactly did you put in the form template for the new ticket screen? I'm prety sure this doesn't create a date input field th1 set d [ string range [ date ] 0 10 ]/th1 But I don't see how it can be included in the submitted ticket? Cheers,

Re: [fossil-users] branch vs tags when importing from git

2011-02-16 Thread Richard Hipp
On Tue, Feb 15, 2011 at 1:17 PM, Mark Janssen mpc.jans...@gmail.com wrote: And continuing to reply to myself, the diff to import.c below seems to correctly tag the revisions in at least the case of the first test script. (It also contains some renaming of master-trunk but that can be

Re: [fossil-users] ticket opened date

2011-02-16 Thread Ron Wilson
On Wed, Feb 16, 2011 at 9:18 AM, Stephen De Gabrielle stephen.degabrie...@acm.org wrote: I'm sorry, I'm not at all familiar with TH1. It is a varient of TCL that Fossile uses for scripting of user defined logic for tickets. (It also works in the header and footer html.) What exactly did you

[fossil-users] Fossil file deletion

2011-02-16 Thread Louis Hoefler
Following szenario: I have two computers. On computer 1, I create a fossil with some work. Now I commit my work and copy the fossil to computer 2. I rename files on computer 2, do some other work, and commit. I make some filechanges on computer 1, and commit. Now I have two fossils who are out

Re: [fossil-users] Fossil file deletion

2011-02-16 Thread Justin Mazzi
Check out this commit http://www.fossil-scm.org/index.html/info/a1814d5015. Looks an attempt to address this issue. On Wed, Feb 16, 2011 at 10:19 AM, Louis Hoefler louis.hoef...@gmx.dewrote: Following szenario: I have two computers. On computer 1, I create a fossil with some work. Now I

Re: [fossil-users] Fossil file deletion

2011-02-16 Thread Williams, Brian
I have a question for you: When you say you copy the repo, are you file coping or doing a fossil clone? Again, when you say you overwrite the repo on Computer 1, are overwriting the file or doing a sync? If you are really overwriting the repositories then I can well expect that there are

Re: [fossil-users] Fossil file deletion

2011-02-16 Thread Louis Hoefler
Yes, I overwrite the fossil file, I do not sync it. I somehow just thought that this could cause problems. However, there are a few reasons, which made me try it this way: It is really circular to boot the computer, connect it to the network, start the fossil server just for doing a sync (Then

Re: [fossil-users] SSH status

2011-02-16 Thread Justin Mazzi
That doesn't look like the correct fix. A better fix might be not allocating a real shell/tty. On Wed, Feb 16, 2011 at 12:22 PM, Ramon Ribó ram...@compassis.com wrote: I think that it has still some problems. This ticket contains a bug correction still not applied to the code:

Re: [fossil-users] SSH status

2011-02-16 Thread Justin Mazzi
What about using regular pipes? exec ssh remote-server 'fossil command to output raw server data' | fossil receive data On Wed, Feb 16, 2011 at 12:25 PM, Richard Hipp d...@sqlite.org wrote: On Wed, Feb 16, 2011 at 12:03 PM, Chad Perrin c...@apotheon.net wrote: I'm new to this list. Be

Re: [fossil-users] SSH status

2011-02-16 Thread Richard Hipp
On Wed, Feb 16, 2011 at 12:36 PM, Justin Mazzi jma...@gmail.com wrote: What about using regular pipes? exec ssh remote-server 'fossil command to output raw server data' | fossil receive data Multiple round-trips from client-server-client are required. On Wed, Feb 16, 2011 at 12:25

Re: [fossil-users] SSH status

2011-02-16 Thread Richard Hipp
On Wed, Feb 16, 2011 at 1:06 PM, Joerg Sonnenberger jo...@britannica.bec.de wrote: On Wed, Feb 16, 2011 at 12:25:11PM -0500, Richard Hipp wrote: If any reader has suggestions on a better way to do SSH access for Fossil, please speak up. The correct way is to use ssh -T and a single

Re: [fossil-users] SSH status

2011-02-16 Thread Lluís Batlle i Rossell
On Wed, Feb 16, 2011 at 12:25:11PM -0500, Richard Hipp wrote: On Wed, Feb 16, 2011 at 12:03 PM, Chad Perrin c...@apotheon.net wrote: If any reader has suggestions on a better way to do SSH access for Fossil, please speak up. What do you think about what I suggested some time ago in

Re: [fossil-users] SSH status

2011-02-16 Thread Lluís Batlle i Rossell
On Wed, Feb 16, 2011 at 01:04:56PM -0500, Richard Hipp wrote: On Wed, Feb 16, 2011 at 12:36 PM, Justin Mazzi jma...@gmail.com wrote: What about using regular pipes? exec ssh remote-server 'fossil command to output raw server data' | fossil receive data Multiple round-trips from

Re: [fossil-users] SSH status

2011-02-16 Thread Ron Wilson
On Wed, Feb 16, 2011 at 12:03 PM, Chad Perrin c...@apotheon.net wrote: I've been rummaging through the list archives, and sifting through the Web documentation, but I am still not clear on the status of using SSH to encrypt connections for push/pull and other operations using Fossil.  Is

Re: [fossil-users] SSH status

2011-02-16 Thread Justin Mazzi
What about setting up a persistent connection using ControlMaster/ControlPath/ControlPersist (man ssh_config) and reusing it for the multiple commands needed? On Wed, Feb 16, 2011 at 1:08 PM, Richard Hipp d...@sqlite.org wrote: On Wed, Feb 16, 2011 at 1:06 PM, Joerg Sonnenberger

Re: [fossil-users] SSH status

2011-02-16 Thread Joerg Sonnenberger
On Wed, Feb 16, 2011 at 01:08:40PM -0500, Richard Hipp wrote: On Wed, Feb 16, 2011 at 1:06 PM, Joerg Sonnenberger jo...@britannica.bec.de wrote: On Wed, Feb 16, 2011 at 12:25:11PM -0500, Richard Hipp wrote: If any reader has suggestions on a better way to do SSH access for Fossil,

Re: [fossil-users] SSH status

2011-02-16 Thread Richard Hipp
On Wed, Feb 16, 2011 at 12:03 PM, Chad Perrin c...@apotheon.net wrote: I'm new to this list. Be gentle. I've been rummaging through the list archives, and sifting through the Web documentation, but I am still not clear on the status of using SSH to encrypt connections for push/pull and

Re: [fossil-users] raw (internal) wiki pages

2011-02-16 Thread Stephan Beal
On Wed, Feb 16, 2011 at 10:19 PM, Ron Wilson ronw.m...@gmail.com wrote: For a wiki page created through the UI, is there an URL to access the raw page? I tried replacing /wiki?name=mywikipage with /raw?name=mywikipage, but that did not work. Hi, Ron! i posted this same question a couple

Re: [fossil-users] raw (internal) wiki pages

2011-02-16 Thread Ron Wilson
On Wed, Feb 16, 2011 at 4:21 PM, Stephan Beal sgb...@googlemail.com wrote: On Wed, Feb 16, 2011 at 10:19 PM, Ron Wilson ronw.m...@gmail.com wrote: For a wiki page created through the UI, is there an URL to access the raw page? i posted this same question a couple weeks ago, but so far no

Re: [fossil-users] SSH status

2011-02-16 Thread Lluís Batlle i Rossell
On Wed, Feb 16, 2011 at 02:36:16PM -0500, Richard Hipp wrote: OK, so I've made some tweaks to the SSH code based on the many helpful suggestions sent in by readers. (Thanks!) Now the ball is back over to you, Chad. Go forth and test. Let us know about both your successes and failures.

Re: [fossil-users] raw (internal) wiki pages

2011-02-16 Thread Lluís Batlle i Rossell
On Wed, Feb 16, 2011 at 04:19:08PM -0500, Ron Wilson wrote: For a wiki page created through the UI, is there an URL to access the raw page? I tried replacing /wiki?name=mywikipage with /raw?name=mywikipage, but that did not work. This is related:

Re: [fossil-users] SSH status

2011-02-16 Thread Chad Perrin
On Wed, Feb 16, 2011 at 02:36:16PM -0500, Richard Hipp wrote: OK, so I've made some tweaks to the SSH code based on the many helpful suggestions sent in by readers. (Thanks!) Now the ball is back over to you, Chad. Go forth and test. Let us know about both your successes and failures.

Re: [fossil-users] SSH status

2011-02-16 Thread Chad Perrin
On Wed, Feb 16, 2011 at 10:55:36PM +0100, Lluís Batlle i Rossell wrote: And /bin/sh is a requirement of glibc for system() to work, so I imagine sh will be available in most unix systems. Don't you think so? Using sh instead of something like bash sounds perfectly reasonable to me (if I

Re: [fossil-users] SSH status

2011-02-16 Thread Chad Perrin
On Wed, Feb 16, 2011 at 09:51:14PM +0100, Louis Hoefler wrote: I meant ssl not ssh. Sorry. Well . . . speaking of SSH VPNs . . . Is there some simple way to configure Fossil to use a local proxy by default so that an SSH SOCKS proxy could be used without having to hide some kind of painful

Re: [fossil-users] SSH status

2011-02-16 Thread Richard Hipp
On Wed, Feb 16, 2011 at 6:43 PM, Chad Perrin c...@apotheon.net wrote: On Wed, Feb 16, 2011 at 09:51:14PM +0100, Louis Hoefler wrote: I meant ssl not ssh. Sorry. Well . . . speaking of SSH VPNs . . . Is there some simple way to configure Fossil to use a local proxy by default so that an

Re: [fossil-users] SSH status

2011-02-16 Thread Chad Perrin
On Wed, Feb 16, 2011 at 07:01:29PM -0500, Richard Hipp wrote: On Wed, Feb 16, 2011 at 6:43 PM, Chad Perrin c...@apotheon.net wrote: Is there some simple way to configure Fossil to use a local proxy by default so that an SSH SOCKS proxy could be used without having to hide some kind of