Re: [fossil-users] Using fossil with Golang (go get)

2018-06-19 Thread Mark Janssen (fossil)
On 2018-06-18 23:42, Zack Scholl wrote: Hi Mark, The meta tag will not work for importing Go code. The first term needs to match the import path, e.g. "X" in the `go get X` command. And "http(s)://" is not allowed in the import path for `go get`. Is there a fossil variable similar to

Re: [fossil-users] Using fossil with Golang (go get)

2018-06-18 Thread Mark Janssen (fossil)
On 2018-06-17 14:57, Zack Scholl wrote: All you need to do is update your "Header" skin (Admin -> Skins) to include a special meta tag that `go get` will fetch to interpret your fossil as a Go library/program. For example, if you have a fossil hosted at https://yourdomain.com/hello-world then

Re: [fossil-users] Replacing subversion revision number... by what?

2017-12-29 Thread Mark Janssen
All of this will fail in the case of private branches (or other DAG differences) between different repositories, unless you special case private branches. And how will you handle diverging repos so that my version 12 is not your version 12, because I didn't sync after commit 10? I wouldn't be

Re: [fossil-users] tangent vs. wyoung on recent commti

2017-12-17 Thread Mark Janssen
..@lists.fossil-scm.org> wrote: >> >> Date: Sun, 17 Dec 2017 09:56:57 + >> From: Mark Janssen <mpc.jans...@gmail.com> >> Subject: Re: [fossil-users] fossil-users Digest, Vol 119, Issue 28 >> Message-ID: >>

Re: [fossil-users] fossil-users Digest, Vol 119, Issue 28

2017-12-17 Thread Mark Janssen
Unless I am misunderstanding what you mean by permanent record, I don't think this is possible in a DVCS. In a DVCS the remote can be different and even change between pull/syncs Op za 16 dec. 2017 21:42 schreef Ron W : > On Sat, Dec 16, 2017 at 7:00 AM, < >

Re: [fossil-users] binary-glob not honored

2017-12-11 Thread Mark Janssen
ec 2017 12:00:22 + > Mark Janssen <mpc.jans...@gmail.com> > wrote: > > > .fossil-settings should be a subfolder of your repository checkout, > > not your home folder. > > Ahh, my misunderstanding...now I wonder how to enter *several* patterns > via cmd > line

Re: [fossil-users] binary-glob not honored

2017-12-11 Thread Mark Janssen
.fossil-settings should be a subfolder of your repository checkout, not your home folder. On Mon, 11 Dec 2017, 16:03 Gour, wrote: > Hello, > > I'm working on a web site and wanted to perform initial import, but Fossil > (version 2.5 [561fa8a3b7]) complains: > >

Re: [fossil-users] Forget large set of changes

2017-12-04 Thread Mark Janssen
Fossil cannot remove existing history. So removing only one dir and the associated history is not possible. Why don't you just update the files to be sorted and after that always keep adding them sorted? The diffs up until now will still be noisy, but from now on they will be more readable and

Re: [fossil-users] Using Fossil with Apache Proxy

2017-09-28 Thread Mark Janssen
On 28 Sep 2017 13:37, "David Mason" wrote: I have all the logic I need I just want fossil to behave like it would at a terminal prompt, rather than acting like a CGI... the complication is that I am calling it from a CGI! But removing all the environment variable mostly

Re: [fossil-users] Issue with ignore-glob

2017-04-11 Thread Mark Janssen
That's not a security hole at all. Once a file was added, ignoring it will not remove past version from the repository. History in fossil is immutable. If you inadvertently added a file which shouldn't be there you should shun it instead. On Tue, Apr 11, 2017 at 1:27 AM, Thomas

Re: [fossil-users] Support for commonmark markdown in fossil

2017-03-14 Thread Mark Janssen
( data[i]=='`' ){ size_t span_nb = 0, bt; On Tue, Mar 14, 2017 at 4:23 PM, Natacha Porté <nata...@instinctive.eu> wrote: > Hello, > > on Tuesday 14 March 2017 at 15:44, Mark Janssen wrote: >> I did notice a (IMO) bug during the conversion: >> >> $ cat markd

Re: [fossil-users] Support for commonmark markdown in fossil

2017-03-14 Thread Mark Janssen
On Sat, Mar 11, 2017 at 6:18 PM, Natacha Porté wrote: > > > I should really clarify that it was about *fenced* code blocks, since > traditional markdown code blocks are correctly supported (unless there > is a serious bug in there). > > I do understand the use of code

Re: [fossil-users] Support for commonmark markdown in fossil

2017-03-11 Thread Mark Janssen
I wasn't aware that the author of the current implementation was a fossil user as well :) On Sat, 11 Mar 2017, 16:22 Natacha Porté, wrote: > > I never understood the appeal for code blocks, but if it's only that > it's very easy to add to the existing implementation. >

Re: [fossil-users] Support for commonmark markdown in fossil

2017-03-11 Thread Mark Janssen
. On Sat, 11 Mar 2017, 15:38 Scott Robison, <sc...@casaderobison.com> wrote: > On Sat, Mar 11, 2017 at 7:07 AM, Mark Janssen <mpc.jans...@gmail.com> > wrote: > > My question to you all is, would there be any interest in adding > commonmark support? > > > I li

[fossil-users] Support for commonmark markdown in fossil

2017-03-11 Thread Mark Janssen
Recently I have been looking to use fossil as a backend for managing the Tcl tip collection. An obvious format for the new tip format would be markdown, but currently the fossil markdown support is fairly limited (for example there are no code blocks) I have made a version of fossil which

Re: [fossil-users] Excluding [brackets] from a.../a links

2014-05-15 Thread Mark Janssen
On Thu, May 15, 2014 at 1:08 AM, Matt Welland estifo...@gmail.com wrote: I have the same annoyance with scrape 'n paste. Would adding a space between the [ or ] and the hex string alleviate the annoyance but still provide the visual delineation? How about taking a different approach and have

Re: [fossil-users] TH1: support for octal and hexadecimal numbers in expressions

2014-04-04 Thread Mark Janssen
On Fri, Apr 4, 2014 at 10:28 AM, Jan Nijtmans jan.nijtm...@gmail.comwrote: An additional issue is that binary/octal/hex numbers cannot contain dots, so they must be handled separately anyway. Done here: http://fossil-scm.org/index.html/info/a306f771d8 Why can't n-ary numbers have

Re: [fossil-users] Painful team interaction with fossil, how to improve?

2014-02-13 Thread Mark Janssen
I have used the ticket hooks and they do work. However they will not allow automatic updates to be sent to whoever logged the ticket. As a result I have moved the bug tracker to redmine. On 13 Feb 2014 16:25, Baptiste Daroussin baptiste.darous...@gmail.com wrote: Hi, I'm using fossil for a

Re: [fossil-users] Painful team interaction with fossil, how to improve?

2014-02-13 Thread Mark Janssen
On 13 Feb 2014 19:44, Ron Wilson ronw.m...@gmail.com wrote: On Thu, Feb 13, 2014 at 1:13 PM, Mark Janssen mpc.jans...@gmail.com wrote: I have used the ticket hooks and they do work. However they will not allow automatic updates to be sent to whoever logged the ticket. As a result I have moved

Re: [fossil-users] Painful team interaction with fossil, how to improve?

2014-02-13 Thread Mark Janssen
On Thu, Feb 13, 2014 at 9:33 PM, Ron Wilson ronw.m...@gmail.com wrote: On Thu, Feb 13, 2014 at 2:46 PM, Mark Janssen mpc.jans...@gmail.comwrote: True with effort all of this could be retrieved from the underlying sqlite db. The reason I didn't do that is that you need opt out and email

Re: [fossil-users] Windows installer?

2014-02-01 Thread Mark Janssen
On Sat, Feb 1, 2014 at 5:14 PM, Matt Welland estifo...@gmail.com wrote: The last time I installed fossil on Windows it was a minor hassle as there was no installer. I'm considering putting together an installable version of fossil using Inno Setup (http://www.jrsoftware.org/isinfo.php).

Re: [fossil-users] fossil ui/serv

2014-01-28 Thread Mark Janssen
On Tue, Jan 28, 2014 at 12:46 AM, James Turner ja...@calminferno.netwrote: I dunno either. Everything is fine on my main development machine. I'll chalk it up to a messed up virtual machine I guess. Sorry for the noise. I have seen something similar in the past, could it be a permissions

Re: [fossil-users] Version 1.28 release?

2014-01-14 Thread Mark Janssen
On Tue, Jan 14, 2014 at 9:36 AM, Jan Nijtmans jan.nijtm...@gmail.comwrote: 2014/1/13 Mark Janssen mpc.jans...@gmail.com: I am not sure if this is an issue with my MinGW install, but latest trunk fails to build on MinGW. I think it's useful if the official release can also be built on MinGW

Re: [fossil-users] Version 1.28 release?

2014-01-13 Thread Mark Janssen
On Thu, Jan 9, 2014 at 2:20 PM, Richard Hipp d...@sqlite.org wrote: It has been a few months since the last official release of Fossil. I wonder if we should consider publishing trunk as the official version 1.28? -- D. Richard Hipp d...@sqlite.org

Re: [fossil-users] Small issue with ticket hook script

2014-01-11 Thread Mark Janssen
On 11 Jan 2014 20:09, Jan Nijtmans jan.nijtm...@gmail.com wrote: 2014/1/9 Mark Janssen mpc.jans...@gmail.com: When I use the following script as a ticket hook: set project simpletask tclInvoke package require http query {SELECT title, status FROM ticket WHERE

Re: [fossil-users] Small issue with ticket hook script

2014-01-10 Thread Mark Janssen
On Thu, Jan 9, 2014 at 7:49 PM, Mark Janssen mpc.jans...@gmail.com wrote: On Thu, Jan 9, 2014 at 5:58 PM, Mark Janssen mpc.jans...@gmail.comwrote: On Thu, Jan 9, 2014 at 5:31 PM, Jan Nijtmans jan.nijtm...@gmail.comwrote: 2014/1/9 Jan Nijtmans jan.nijtm...@gmail.com: I have

Re: [fossil-users] Small issue with ticket hook script

2014-01-10 Thread Mark Janssen
On Fri, Jan 10, 2014 at 11:46 AM, Jan Nijtmans jan.nijtm...@gmail.comwrote: 2014/1/10 Mark Janssen mpc.jans...@gmail.com: Sorry to keep replying to myself, but with latest version of delay-ticket-hook [e4af590ff9] it still doesn't work. The cause is that in tkt.c the result logic is off

[fossil-users] Using Markdown for tickets and in TH1

2014-01-09 Thread Mark Janssen
All, Attached a patch which will do several things: 1) Add a [markdown ] TH1 command to allow access to the included markdown parser from TH1 2) Slightly tweaked the markdown parser to not produce a p/p pair for strings with at most one newline 3) Changed the default ticket page templates to

[fossil-users] Small issue with ticket hook script

2014-01-09 Thread Mark Janssen
When I use the following script as a ticket hook: set project simpletask tclInvoke package require http query {SELECT title, status FROM ticket WHERE tkt_uuid=$uuid} { set title [tclInvoke http::formatQuery $title] http -asynchronous --

Re: [fossil-users] Small issue with ticket hook script

2014-01-09 Thread Mark Janssen
On Thu, Jan 9, 2014 at 2:20 PM, Jan Nijtmans jan.nijtm...@gmail.com wrote: 2014/1/9 Mark Janssen mpc.jans...@gmail.com: The reflected information in the query is the info from before the ticket update. I suspect the ticket hook is fired before the actual ticket change transaction

Re: [fossil-users] Confirm commit

2014-01-09 Thread Mark Janssen
On Thu, Jan 9, 2014 at 3:54 PM, Arseniy Terekhin sen...@gmail.com wrote: Hello, When developing, I often execute last command blindly and sometimes it happens to be `fossil ci -m text`. And sometimes I commit, forgetting that I'm on a wrong branch. So I purpose to add commit confirmation

Re: [fossil-users] Small issue with ticket hook script

2014-01-09 Thread Mark Janssen
On Thu, Jan 9, 2014 at 5:31 PM, Jan Nijtmans jan.nijtm...@gmail.com wrote: 2014/1/9 Jan Nijtmans jan.nijtm...@gmail.com: I have a different fix in mind, I'll come back on that later. http://fossil-scm.org/index.html/timeline?r=delay-ticket-hook Does this work for you? Regards,

Re: [fossil-users] Small issue with ticket hook script

2014-01-09 Thread Mark Janssen
On Thu, Jan 9, 2014 at 5:58 PM, Mark Janssen mpc.jans...@gmail.com wrote: On Thu, Jan 9, 2014 at 5:31 PM, Jan Nijtmans jan.nijtm...@gmail.comwrote: 2014/1/9 Jan Nijtmans jan.nijtm...@gmail.com: I have a different fix in mind, I'll come back on that later. http://fossil-scm.org

Re: [fossil-users] Question on repo size after repeated binary file commits?

2013-12-22 Thread Mark Janssen
On Sun, Dec 22, 2013 at 7:37 PM, sky5w...@gmail.com wrote: I am curious what is stored in the repo for each new commit that includes a tiny change to a binary file. Whether a dll or an image file, is fossil storing each binary file compressed, uncompressed or some sort of delta? Over

[fossil-users] State of tkt-hook-change branch

2013-12-13 Thread Mark Janssen
What is the state of the tkt-hool-change branch? I tried using it for my own local repo and I can't get the http ticket hook to trigger. th1-uri-regexp: .* hook command is: http -asynchronous -- http://mpcjanssen.nl/cgi-bin/tkt-hook?uuid=$uuid After adding some debugging statements the hook

Re: [fossil-users] State of tkt-hook-change branch

2013-12-13 Thread Mark Janssen
On Fri, Dec 13, 2013 at 12:29 PM, Jan Nijtmans jan.nijtm...@gmail.comwrote: 2013/12/13 Mark Janssen mpc.jans...@gmail.com: What is the state of the tkt-hool-change branch? I tried using it for my own local repo and I can't get the http ticket hook to trigger. Looks like an uninitialized

Re: [fossil-users] State of tkt-hook-change branch

2013-12-13 Thread Mark Janssen
On Fri, Dec 13, 2013 at 2:15 PM, Jan Nijtmans jan.nijtm...@gmail.comwrote: 2013/12/13 Mark Janssen mpc.jans...@gmail.com: With the updated version [85528ef507] I still get the same error. xfer_run_script still fails with error: url must be http:// or https:// At xfer.c line 869

Re: [fossil-users] State of tkt-hook-change branch

2013-12-13 Thread Mark Janssen
On Fri, Dec 13, 2013 at 3:19 PM, Jan Nijtmans jan.nijtm...@gmail.comwrote: Thanks for your feedback! One final piece of feedback, concerning the next step in the trigger process. Fossil seems to encode the trigger request as Content-Type: text/plain even in the case of a GET. Unfortunately

Re: [fossil-users] State of tkt-hook-change branch

2013-12-13 Thread Mark Janssen
On Fri, Dec 13, 2013 at 4:18 PM, Jan Nijtmans jan.nijtm...@gmail.comwrote: 2013/12/13 Mark Janssen mpc.jans...@gmail.com: One final piece of feedback, concerning the next step in the trigger process. Fossil seems to encode the trigger request as Content-Type: text/plain even in the case

Re: [fossil-users] Gentoo: SQLITE_WARNING... best approach for Portage

2013-11-20 Thread Mark Janssen
On 20 Nov 2013 16:40, Stephan Beal sgb...@googlemail.com wrote: On Wed, Nov 20, 2013 at 4:10 PM, Andy Bradford amb-fos...@bradfords.org wrote: Thus said Stephan Beal on Wed, 20 Nov 2013 10:24:02 +0100: If the patch is relatively small, please just paste it to the list (don't attach

Re: [fossil-users] missing branch tag (?)

2013-10-09 Thread Mark Janssen
Branches are controlled by propagating raw tags. Start with fossil tag list --raw checkin. Then I think you should be able to cancel the offending raw tag. On 9 Oct 2013 23:07, B Harder brad.har...@gmail.com wrote: ...and now I see the edit where the trunk tag was cancelled -- question remains

Re: [fossil-users] cgi on Mac problem

2013-09-29 Thread Mark Janssen
On Sun, Sep 29, 2013 at 4:59 PM, j. van den hoff veedeeh...@googlemail.comwrote: hi list, snip what I see: -- access to `http:{mymachine}/cgi-bin/**first.cgi' works just fine (I do get the `hello world' page) -- access to `http:{mymachine}/cgi-bin/**repo.cgi' gives the `internal

Re: [fossil-users] cgi on Mac problem

2013-09-29 Thread Mark Janssen
On Sun, Sep 29, 2013 at 5:22 PM, Stephan Beal sgb...@googlemail.com wrote: On Sun, Sep 29, 2013 at 5:19 PM, Stephan Beal sgb...@googlemail.comwrote: http://www.jmarshall.com/easy/http/#responseline Another tip, taken from that page: try sending the request with telnet and see what comes

Re: [fossil-users] looking for GUI app developer for libfossil

2013-09-18 Thread Mark Janssen
I wouldn't call myself a UI designer by any means, but it would be interesting to try to put something together with libfossil on Android (I do have quite some experience in Android developement). Time permitting, I will have a look at building libfossil on Android (which should be easy as fossil

Re: [fossil-users] looking for GUI app developer for libfossil

2013-09-18 Thread Mark Janssen
The way I get fossil to build for Android is using the NDK which is also used if you mix C code with an Android app so I see no problems there. Will take any other issues up with you off list. On 18 Sep 2013 17:48, Stephan Beal sgb...@googlemail.com wrote: On Wed, Sep 18, 2013 at 12:18 PM, Mark

Re: [fossil-users] Can one display ISO 8601 date-time instead of SHA-1 prefixes in the web UI?

2013-08-25 Thread Mark Janssen
On Sun, Aug 25, 2013 at 4:56 PM, Yannick yannick_duch...@yahoo.fr wrote: ** Hi people, Just discovered Fossil two days ago, and I like the concept, especially it's simplicity (even if I believe this could be made even a bit clearer) and it's low weight. I was wondered if there is a known

Re: [fossil-users] Command-line wildcards

2013-08-21 Thread Mark Janssen
It's a problem with the way MinGW parses and passes the command line. When main is called in fossil, the arguments are already expanded. As for the fix, I am not sure yet. On Wed, Aug 21, 2013 at 2:36 PM, Stephan Beal sgb...@googlemail.com wrote: On Wed, Aug 21, 2013 at 2:31 PM,

Re: [fossil-users] Command-line wildcards

2013-08-21 Thread Mark Janssen
21, 2013 at 2:42 PM, Mark Janssen mpc.jans...@gmail.com wrote: It's a problem with the way MinGW parses and passes the command line. When main is called in fossil, the arguments are already expanded. As for the fix, I am not sure yet. On Wed, Aug 21, 2013 at 2:36 PM, Stephan Beal sgb

Re: [fossil-users] Command-line wildcards

2013-08-21 Thread Mark Janssen
Yes, for example fossil add * will still do the right thing. On Wed, Aug 21, 2013 at 2:51 PM, Stephan Beal sgb...@googlemail.com wrote: On Wed, Aug 21, 2013 at 2:48 PM, Mark Janssen mpc.jans...@gmail.comwrote: I did not test this with the 64bit version of MinGW. Using an unquoted

Re: [fossil-users] Command-line wildcards

2013-08-21 Thread Mark Janssen
Sorry for spamming, but with the change it works within msys, but it fails on the windows command line. Seems like a bit of a Catch 22 caused by the different idea windows and unix have about how to pass arguments. On Wed, Aug 21, 2013 at 2:52 PM, Mark Janssen mpc.jans...@gmail.com wrote

Re: [fossil-users] strange `fossil diff ' behaviour

2013-08-21 Thread Mark Janssen
On Wed, Aug 21, 2013 at 5:09 PM, Richard Hipp d...@sqlite.org wrote: On Wed, Aug 21, 2013 at 10:52 AM, Marc Simpson m...@0branch.com wrote: On Wed, Aug 21, 2013 at 3:36 PM, Stephan Beal sgb...@googlemail.com wrote: DVCSs cannot, by their very nature, portably support sequential numbers.

Re: [fossil-users] strange `fossil diff ' behaviour

2013-08-21 Thread Mark Janssen
For most of the use cases discussed here I think we don't need repository local unique numbers a la mercurial. As far as I can see a more flexible VERSION [1] format (although the git way is probably overkill) seems to be enough. It would be useful for example to be able to say: fossil diff -r -2

Re: [fossil-users] strange `fossil diff ' behaviour

2013-08-21 Thread Mark Janssen
To make this less of an academic discussion and to just be able to play around with it, http://mpcjanssen.nl/fossil/fossil/vdiff?from=root:revlistto=r:5746sbs=1 has an implementation of having repository local rev numbers for commits only. After updating fossil you'll need to do a fossil rebuild

Re: [fossil-users] strange `fossil diff ' behaviour

2013-08-21 Thread Mark Janssen
On Wed, Aug 21, 2013 at 7:36 PM, Stephan Beal sgb...@googlemail.com wrote: On Wed, Aug 21, 2013 at 7:31 PM, Mark Janssen mpc.jans...@gmail.comwrote: Currently the revision numbers are reflecting the fossil rebuild algorithm so they count down from leaves which is a bit odd, but that can

Re: [fossil-users] Bikeshedding opportunity: back to the topic of libfossil's name

2013-08-21 Thread Mark Janssen
On Wed, Aug 21, 2013 at 7:38 PM, Stephan Beal sgb...@googlemail.com wrote: On Wed, Aug 21, 2013 at 7:30 PM, Themba Fletcher themba.fletc...@gmail.com wrote: What about libfree as a portmanteau of lib, fossil, and three? I guess that crosses the line into humor a bit. And sounds very GNU

Re: [fossil-users] strange `fossil diff ' behaviour

2013-08-21 Thread Mark Janssen
On Wed, Aug 21, 2013 at 9:27 PM, j. van den hoff veedeeh...@googlemail.comwrote: On Wed, 21 Aug 2013 19:31:17 +0200, Mark Janssen mpc.jans...@gmail.com wrote: To make this less of an academic discussion and to just be able to play very good point (despite being myself in academia

Re: [fossil-users] strange `fossil diff ' behaviour

2013-08-21 Thread Mark Janssen
On 21 Aug 2013 23:22, j. van den hoff veedeeh...@googlemail.com wrote: On Wed, 21 Aug 2013 23:07:36 +0200, Mark Janssen mpc.jans...@gmail.com wrote: On Wed, Aug 21, 2013 at 9:27 PM, j. van den hoff veedeeh...@googlemail.comwrote: On Wed, 21 Aug 2013 19:31:17 +0200, Mark Janssen mpc.jans

Re: [fossil-users] failure to push/sync

2013-08-14 Thread Mark Janssen
I am curious how auto sync screws with your workflow. I was of the same mind in the beginning, always turning of auto sync on my repos. However these days I always leave it on, I like the extra automatic backup. On Aug 14, 2013 10:42 PM, Chad Perrin c...@apotheon.net wrote: I'm seeing some kind

Re: [fossil-users] failure to push/sync

2013-08-14 Thread Mark Janssen
On Aug 15, 2013 12:00 AM, Chad Perrin c...@apotheon.net wrote: On Wed, Aug 14, 2013 at 11:53:41PM +0200, Mark Janssen wrote: I am curious how auto sync screws with your workflow. I was of the same mind in the beginning, always turning of auto sync on my repos. However these days I always

Re: [fossil-users] Notification on new tickets

2013-08-06 Thread Mark Janssen
On Tue, Aug 6, 2013 at 12:32 AM, Jan Nijtmans jan.nijtm...@gmail.comwrote: 2013/8/5 Mark Janssen mpc.jans...@gmail.com: Until commit hooks are added (if ever, I do understand the issues behind it), I have found a nice workaround which I would like to share. There is an experimental branch

Re: [fossil-users] Notification on new tickets

2013-08-06 Thread Mark Janssen
On Tue, Aug 6, 2013 at 11:29 AM, Jan Nijtmans jan.nijtm...@gmail.comwrote: 2013/8/6 Mark Janssen mpc.jans...@gmail.com: I have built the leaf of that branch, but I can't find any change with the trunk UI. Any 5 minute getting started doc? Mark In the UI go to Admin - Transfers

[fossil-users] Notification on new tickets

2013-08-05 Thread Mark Janssen
One of the things that sites like github do much better than fossil at the moment is to keep you informed of new tickets or ticket changes. When you have a reasonable sized userbase this saves a lot of time in needlessly checking the timeline for ticket changes. Until commit hooks are added (if

Re: [fossil-users] Notification on new tickets

2013-08-05 Thread Mark Janssen
On Aug 5, 2013 8:01 PM, Stephan Beal sgb...@googlemail.com wrote: On Mon, Aug 5, 2013 at 4:10 PM, Mark Janssen mpc.jans...@gmail.com wrote: Fossil has built in RSS feeds with the granularity to only show ticket changes. Historical anecdote: that feature was originally proposed/implemented

Re: [fossil-users] Scripting in Fossil v2

2013-07-24 Thread Mark Janssen
I would just like to add that fossil already has a defined API in the sense that what a fossil repo and server are is described in http://fossil-scm.org/index.html/doc/trunk/www/fileformat.wiki and http://fossil-scm.org/index.html/doc/trunk/www/sync.wiki. I would say that any truly useful fossil

Re: [fossil-users] admin pages are empty and have bad titles

2013-07-24 Thread Mark Janssen
What happens if you set base_url without trailing slash? e.g. https://foobar.com:10443; On Wed, Jul 24, 2013 at 4:55 PM, Eric Rubin-Smith eas@gmail.com wrote: I think the point here is that with a baseurl of https://foobar.com:10443/;, certain links exposed by the fossil HTML

Re: [fossil-users] Random thoughts on Fossil v2

2013-07-23 Thread Mark Janssen
Bit late to the party, but my 2 cents 1) Fossil as a library or API with the fossil executable as a single file built on top of it. One could even consider a SCGI/FCGI type of interface where the fossil binary serves JSON+BSON requests. 2) Ticket notifications by email (notification when merged

[fossil-users] Latest SQLite3 broken on Android?

2013-06-20 Thread Mark Janssen
Just a quick heads up for http://fossil-scm.org/index.html/tktview?name=752aa31a6d since I don't have access to the sqlite3 mailing list/repo. It seems that the latest version of SQLite3 fails to build for Android (the Android Bionic libc doesn't have posix_fallocate). Considering the widespread

Re: [fossil-users] Integrating build scripts for Android

2013-06-14 Thread Mark Janssen
For everyone still trying this out. I have some scripts for Terminal IDE which will transform your Android device in a fossil hosting server. You can find them at http://repos.mpcjanssen.nl/terminal-ide (hosted on my Asus TF101) @drh did you receive my CLA? On Tue, Jun 11, 2013 at 9:32 PM, Mark

[fossil-users] Integrating build scripts for Android

2013-06-11 Thread Mark Janssen
I am still maintaining 2 build scripts for building fossil for Android. It would be nice if this is included in the main fossil tree. I think the amount of code is so small it doesn't warrant a contributors agreement, if it does, is it possible to send a scanned copy by email? The changes are at:

Re: [fossil-users] Integrating build scripts for Android

2013-06-11 Thread Mark Janssen
On Tue, Jun 11, 2013 at 12:51 PM, Richard Hipp d...@sqlite.org wrote: Please do email a scan of the signed CLA. Thanks. CLA is on its way. On Tue, Jun 11, 2013 at 5:06 AM, Mark Janssen mpc.jans...@gmail.comwrote: I am still maintaining 2 build scripts for building fossil for Android

Re: [fossil-users] Integrating build scripts for Android

2013-06-11 Thread Mark Janssen
On Tue, Jun 11, 2013 at 3:32 PM, David Given d...@cowlark.com wrote: Richard Hipp wrote: [...] How do you actually use Fossil on an Android device, since it is a shell application? Is there a shell I can use on Android? I mean something other than adb shell - some way to use Fossil

Re: [fossil-users] Integrating build scripts for Android

2013-06-11 Thread Mark Janssen
On Tue, Jun 11, 2013 at 4:04 PM, Stephan Beal sgb...@googlemail.com wrote: On Tue, Jun 11, 2013 at 4:03 PM, Stephan Beal sgb...@googlemail.comwrote: i tried getting fossil running under AIDE last summer but had no luck. Would you mind posting a short HOWTO? (i would gladly add it to the

Re: [fossil-users] Integrating build scripts for Android

2013-06-11 Thread Mark Janssen
On Jun 11, 2013 8:07 PM, Matt Welland estifo...@gmail.com wrote: If some kind soul posted a binary for android somewhere accessible I'd be very grateful. Having the build stuff integrated is the next best thing. I use the shell and sshdroid and having fossil on my phone would be great. BTW,

Re: [fossil-users] Did you know that Fossil could do...

2013-05-28 Thread Mark Janssen
On Tue, May 28, 2013 at 3:08 PM, Richard Hipp d...@sqlite.org wrote: Survey: How many people know that in the web-based timeline for Fossil, you can click on any two nodes in the graph and get a diff between those two nodes? I think this is a very useful feature. But I'm guessing that not

Re: [fossil-users] fossil not recognizing changes to binary files?

2013-05-07 Thread Mark Janssen
I have never seen this myself personally. How can you tell that the executables on Linux are gzipped? I seem to recall that Tclkits use some gzip compressed parts (which might have the file utility report it as a gzipped archive incorrectly). What happens if you don't manually gunzip the files?

Re: [fossil-users] Patch for building fossil for Android using NDK

2013-03-15 Thread Mark Janssen
On Fri, Mar 15, 2013 at 2:53 PM, Jan Nijtmans jan.nijtm...@gmail.comwrote: 2013/3/15 Mark Janssen mpc.jans...@gmail.com: I have attached the patch for those who are interested. Currently you need to build on Linux because of the source translation step. It would be nice if this could

Re: [fossil-users] proxy setting and ssh:// url

2013-03-15 Thread Mark Janssen
This probably fixes issue 137cf42ad9 as well. Can't check at the moment but will check when at work. On Fri, Mar 15, 2013 at 3:37 PM, Stephan Beal sgb...@googlemail.com wrote: On Fri, Mar 15, 2013 at 2:42 PM, Martin Gagnon eme...@gmail.com wrote: Here's a patch that should ignore proxy

Re: [fossil-users] problems........

2012-01-16 Thread Mark Janssen
Looks like you still have a stray _FOSSIL_ file in your C:\. From: fossil-users-boun...@lists.fossil-scm.org [mailto:fossil-users-boun...@lists.fossil-scm.org] On Behalf Of android devkit Sent: maandag 16 januari 2012 16:43 To: fossil-users@lists.fossil-scm.org Subject: [fossil-users]

Re: [fossil-users] Fossil crashes on Windows

2012-01-11 Thread Mark Janssen
Unless this is not the whole story, this is not a crash, Fossil gives an error. Did you try the solution suggested in the error message? Try a fossil rebuild from the checkout. Mark -Original Message- From: fossil-users-boun...@lists.fossil-scm.org

Re: [fossil-users] Error: wrong project

2011-12-20 Thread Mark Janssen
There is a mismatch in the project-codes. Fortunately chiselapp provides functionality to fix this. When creating the repository on chiselapp override the project code with the project-code you get when doing fossil info -R repository. On Tue, Dec 20, 2011 at 11:05 AM, bobef...@free.fr wrote:

Re: [fossil-users] Mailing list archives for fossil-users not available?

2011-12-06 Thread Mark Janssen
http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/ works for me (from the fossil home page) On Tue, Dec 6, 2011 at 2:07 AM, Steve Bennett ste...@workware.net.au wrote: My email has been broken for a few days, so I went to check the archives. Any of the links at:

Re: [fossil-users] Getting a binary artifact

2011-11-02 Thread Mark Janssen
2011/11/2 Lluís Batlle i Rossell virik...@gmail.com: On Wed, Nov 02, 2011 at 01:00:50PM +0100, Eduardo Morras wrote: Sorry to contact you directly Lluis, i can receive mail form list but can't post (my isp blacklisted this list) Weird. How could that happen? At 12:19 02/11/2011, Lluís

Re: [fossil-users] Getting a binary artifact

2011-11-02 Thread Mark Janssen
On Wed, Nov 2, 2011 at 2:35 PM, Mark Janssen mpc.jans...@gmail.com wrote: 2011/11/2 Lluís Batlle i Rossell virik...@gmail.com: On Wed, Nov 02, 2011 at 01:00:50PM +0100, Eduardo Morras wrote: Sorry to contact you directly Lluis, i can receive mail form list but can't post (my isp blacklisted

Re: [fossil-users] Getting a binary artifact

2011-11-02 Thread Mark Janssen
On Wed, Nov 2, 2011 at 3:02 PM, Richard Hipp d...@sqlite.org wrote: On Wed, Nov 2, 2011 at 9:41 AM, Mark Janssen mpc.jans...@gmail.com wrote: Following patch fixes the issue. This fixes viriketo's specific complaint, but it also creates a bunch of new problems for people running windows

Re: [fossil-users] Getting a binary artifact

2011-11-02 Thread Mark Janssen
On Wed, Nov 2, 2011 at 3:38 PM, Richard Hipp d...@sqlite.org wrote: On Wed, Nov 2, 2011 at 10:13 AM, Mark Janssen mpc.jans...@gmail.com wrote: Without wanting to open a huge can of worms, IMHO a DVCS should return artifacts unmodified (e.g. treat everything as a binary file). And Fossil does

Re: [fossil-users] Getting a binary artifact

2011-11-02 Thread Mark Janssen
On Wed, Nov 2, 2011 at 7:32 PM, Richard Hipp d...@sqlite.org wrote: On Wed, Nov 2, 2011 at 2:27 PM, Mark Janssen mpc.jans...@gmail.com wrote: On Wed, Nov 2, 2011 at 3:38 PM, Richard Hipp d...@sqlite.org wrote: On Wed, Nov 2, 2011 at 10:13 AM, Mark Janssen mpc.jans...@gmail.com wrote

Re: [fossil-users] build error, missing manifest.uuid

2011-03-30 Thread Mark Janssen
On Wed, Mar 30, 2011 at 6:39 PM, Zed A. Shaw zeds...@zedshaw.com wrote: Uh, this may sound stupid but latest trunk fails with: make: *** No rule to make target `src/../manifest.uuid', needed by `bld/VERSION.h'.  Stop. Because, for some reason, my checkout on this one machine does not have a

Re: [fossil-users] Ticket 305143bd876f693f446f78d12dbef143c46eec58

2011-03-21 Thread Mark Janssen
On Mon, Mar 21, 2011 at 3:21 PM, Richard Hipp d...@sqlite.org wrote: On Mon, Mar 21, 2011 at 10:01 AM, Michael Richter ttmrich...@gmail.comwrote: OK, perhaps I'm being as thick as a whale omlette here, but I cannot get this to work at all. First attempt: relay-to was set to

Re: [fossil-users] Building fossil on Windows with MinGW - dependency on libz

2011-03-18 Thread Mark Janssen
On Fri, Mar 18, 2011 at 11:09 AM, Arjen Markus arjen.mar...@deltares.nlwrote: Hello, I have built fossil on Windows (XP) using MinGW and the gcc compiler. That works fine, except that the resulting executable depends on the libz-1.dll that is located in the MinGW bin directory. This means

Re: [fossil-users] Howto construct a download url for the latest file in a repository?

2011-03-13 Thread Mark Janssen
To get the trunk version of file webui.wiki, you can use (in bash): $ fossil artifact `fossil artifact $(fossil info trunk | grep uuid | tr -s | cut -d -f2) | grep webui.wiki | cut -d -f3` What it does is: Get uuid of the last trunk commit. Then get the manifest for that commit. Then check

Re: [fossil-users] git equivalent commands

2011-03-11 Thread Mark Janssen
2011/3/11 Lluís Batlle i Rossell virik...@gmail.com On Fri, Mar 11, 2011 at 06:58:59PM -, Eric wrote: On Fri, March 11, 2011 7:27 am, Federico Ramallo wrote: Hi, I was wondering how to do git reset --hard on a fossil repository. Because fossil clean only clear extra files,

Re: [fossil-users] Check-in [36e3ab4c42] breaks SSL on mingw

2011-03-03 Thread Mark Janssen
On Thu, Mar 3, 2011 at 4:55 PM, Petr Man p...@madnetwork.org wrote: Hello, Check-in [36e3ab4c42] seems to break SSL on mingw, removing -static from TCC fixes it. Petr ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

[fossil-users] [PATCH] Patches for MinGW makefile

2011-02-28 Thread Mark Janssen
Please find attached a patch that contains the following changes to the windows Makefile.mingw * Build the fossil.exe with the icon file in /win * Add a setup target to the Makefile to create a windows installer (requires NSIS) * Change the Makefile so that SSL enabled builds can be created by

Re: [fossil-users] 3-way merge likely to happen anytime soon?

2011-02-22 Thread Mark Janssen
On Mon, Feb 21, 2011 at 6:58 PM, Petr Man p...@madnetwork.org wrote: On Mon, Feb 21, 2011 at 11:35:03AM -0500, Richard Hipp wrote: Please let me know if http://www.fossil-scm.org/fossil/info/9b7a6f80b2 works for you. I guess this closes ticket [427938e2f6]. -- My GnuPG key is at

Re: [fossil-users] Segfaults on Solaris when serving a directory

2011-02-21 Thread Mark Janssen
On Mon, Feb 21, 2011 at 11:21 AM, Petr Man p...@madnetwork.org wrote: Hello, I have been successfully using Fossil on SunOS 5.10/sparc for over six months. I wanted to set up a permanent cgi server this morning, but I am getting core dumps when I try to serve a directory with fossil files.

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

2011-02-15 Thread Mark Janssen
On Tue, Feb 15, 2011 at 1:41 PM, Richard Hipp d...@sqlite.org wrote: On Sun, Feb 13, 2011 at 4:15 PM, Richard Hipp d...@sqlite.org wrote: On Sun, Feb 13, 2011 at 4:09 PM, Martin Gagnon eme...@gmail.com wrote: I've convert a git repository to fossil and I'm a bit confuse with my tags I had

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

2011-02-15 Thread Mark Janssen
On Tue, Feb 15, 2011 at 2:31 PM, Mark Janssen mpc.jans...@gmail.com wrote: On Tue, Feb 15, 2011 at 1:41 PM, Richard Hipp d...@sqlite.org wrote: On Sun, Feb 13, 2011 at 4:15 PM, Richard Hipp d...@sqlite.org wrote: On Sun, Feb 13, 2011 at 4:09 PM, Martin Gagnon eme...@gmail.com wrote: I've

[fossil-users] Fossil cannot add filenames with \*[]?

2009-08-17 Thread Mark Janssen
Hi, I noticed fossil will not add files containing any of the characters \*[]?. If I remove the checks for these chars, I cannot find any adverse effects. Is there a specific reason these characters are forbidden? Regards, Mark ___ fossil-users mailing

Re: [fossil-users] Fossil cannot add filenames with \*[]?

2009-08-17 Thread Mark Janssen
On Mon, Aug 17, 2009 at 3:08 PM, Stephan Bealsgb...@googlemail.com wrote: On Mon, Aug 17, 2009 at 12:06 PM, Mark Janssen mpc.jans...@gmail.com wrote: I noticed fossil will not add files containing any of the characters \*[]?. If I remove the checks for these chars, I cannot find any adverse