Re: [fossil-users] Pedagogy Think Tank or Documentation Framework RFC

2016-10-11 Thread Adam Jensen
On 10/11/2016 08:31 PM, Ron W wrote: > Sounds like something Google Docs does or could easily do (at least in > Google docs for Business). I'm not familiar with any recent incarnation of Google Docs. A quick glance at my white board and I see four loops of interaction with the documentation

Re: [fossil-users] Fossil on HN

2016-10-11 Thread K. Fossil user
I read this :"Please steal ideas and code from Fossil"There are no serious reason for people to use Fossil.In the past I was a huge fan of it... 1/ I ask for a poll I was told that I was ... (no matter what).2/ I've tried to compile Fossil it did not... In the past, it did nicely: I've created

Re: [fossil-users] Pedagogy Think Tank or Documentation Framework RFC

2016-10-11 Thread Ron W
On Tue, Oct 11, 2016 at 6:19 PM, Adam Jensen wrote: > On 10/11/2016 03:39 PM, jungle Boogie wrote: > > I would call that a wiki, not only inside fossil-scm but in general. > > I am inclined to think that a wiki probably isn't sufficient for many > projects. What I am casually

Re: [fossil-users] Pedagogy Think Tank or Documentation Framework RFC

2016-10-11 Thread Ron W
On Tue, Oct 11, 2016 at 6:19 PM, Adam Jensen wrote: > On 10/11/2016 03:39 PM, jungle Boogie wrote: > > I would call that a wiki, not only inside fossil-scm but in general. > > I am inclined to think that a wiki probably isn't sufficient for many > projects. What I am casually

Re: [fossil-users] How to make post-commit hook?

2016-10-11 Thread Ron W
On Tue, Oct 11, 2016 at 9:26 AM, Svyatoslav Mishyn wrote: > > as Commit Script I have this: > tclInvoke catch {exec /home/juef/bin/f2g test} > > but it looks like a commit script is executed before commit: > /home/juef/fossil/test: date >> z && f ci -m f1 >

Re: [fossil-users] How to make post-commit hook?

2016-10-11 Thread Ron W
On Tue, Oct 11, 2016 at 9:26 AM, Svyatoslav Mishyn wrote: > > in git repo I have this: > /home/juef/git/mirrors/fossil/test: cat .git/hooks/post-commit > #!/bin/sh > > fossil_dir=/home/juef/fossil > repo=test > > /home/juef/bin/g2f "$repo" > cd "${fossil_dir}/${repo}" &&

Re: [fossil-users] fast-export to git produces unimportable dump

2016-10-11 Thread Ross Berteig
Some aggressive pr0n-selling spammer is subscribed either directly or through an archive site. They are making a sequence of replies directly to the original poster, some just plain text, some including a link to follow, and some containing NSFW photographs. I've had pretty good luck with a

Re: [fossil-users] Pedagogy Think Tank or Documentation Framework RFC

2016-10-11 Thread Adam Jensen
On 10/11/2016 03:39 PM, jungle Boogie wrote: > I would call that a wiki, not only inside fossil-scm but in general. I am inclined to think that a wiki probably isn't sufficient for many projects. What I am casually proposing (just brainstorming, really) is a documentation framework that supports

Re: [fossil-users] How to make post-commit hook?

2016-10-11 Thread Joe Mistachkin
Svyatoslav Mishyn wrote: > > but it looks like a commit script is executed before commit: > The script specified on the "xfersetup_commit" page should run right after the database transaction is committed. However, this will not necessarily be after each Fossil commit. Admittedly, the TH1

Re: [fossil-users] fast-export to git produces unimportable dump

2016-10-11 Thread sky5walk
Can confirm with gmail. Every post now has multiple spam replies. Fossil has been discovered! ___ 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] Pedagogy Think Tank or Documentation Framework RFC

2016-10-11 Thread jungle Boogie
On 11 October 2016 at 12:12, Adam Jensen wrote: > If a documentation framework included an interface that would enable > users to provide feedback in a variety of ways (e.g., annotations, > comments, ratings, etc.) that might be useful information. I would call that a wiki,

Re: [fossil-users] Pedagogy Think Tank or Documentation Framework RFC

2016-10-11 Thread Adam Jensen
Here's an idea that might be a little complicated to describe: Every time a [potential] user interacts with the documentation there is human attention, intelligence, and effort that is engaging the system. What if the system were designed to harness some of that? If a documentation framework

[fossil-users] How to use login-group

2016-10-11 Thread John P. Rouillard
Hi all: I am trying to set up a series of fossil repos for a volunteer coding project. I have a script that I can use to set up the repos, and the plan is to have the developers self register at the event. I would like to have the sign up once and get access to multiple repos. It seems that

[fossil-users] How to make post-commit hook?

2016-10-11 Thread Svyatoslav Mishyn
Hi all, I want to automate bidirectional synchronization (Fossil => Git => Fossil). in git repo I have this: /home/juef/git/mirrors/fossil/test: cat .git/hooks/post-commit #!/bin/sh fossil_dir=/home/juef/fossil repo=test /home/juef/bin/g2f "$repo" cd "${fossil_dir}/${repo}" && fossil co trunk