Re: [fossil-users] (no subject)

2014-08-29 Thread Stephan Beal
On Fri, Aug 29, 2014 at 4:59 AM, Timothy Beyer bey...@fastmail.net wrote: There are some limitations that we worked around, such as the fact that the % symbol has a lot of bugs when used in JSON SQL queries (thus making most wildcard matches with LIKE useless), so I use GLOB with a regular

Re: [fossil-users] (no subject)

2014-08-29 Thread Joe Mistachkin
Stephan Beal wrote: th1 is extremely limited. libfossil is developing more powerful script bindings: I'm growing more than a bit tired of this meme. TH1 been enhanced, extended, and it can integrate seamlessly with full Tcl rather easily (i.e. when the right compile-time and runtime options

Re: [fossil-users] (no subject)

2014-08-29 Thread Stephan Beal
On Fri, Aug 29, 2014 at 8:42 AM, Joe Mistachkin sql...@mistachkin.com wrote: Stephan Beal wrote: th1 is extremely limited. libfossil is developing more powerful script bindings: I'm growing more than a bit tired of this meme. No offense intended, but try developing a 1000-lins script

Re: [fossil-users] (no subject)

2014-08-29 Thread Joe Mistachkin
Stephan Beal wrote: No offense intended, I'm not offended. I'm just weary. but try developing a 1000-lins script which fails on line 743 with the sole message syntax error. That's exceedingly limiting for someone who isn't intimately familiar with that code, and often painful for

Re: [fossil-users] (no subject)

2014-08-29 Thread Stephan Beal
On Fri, Aug 29, 2014 at 9:11 AM, Joe Mistachkin sql...@mistachkin.com wrote: It would be _much_ easier now. My view is this: I view TH1 purely as an avenue to access Fossil-specific commands and expose them to Tcl, period. If I wanted to do serious custom script development with Fossil,

[fossil-users] Why do doc/trunk/foo URLs break when last checkin was on a branch?

2014-08-29 Thread Warren Young
I've got a link like this from one of my wiki pages: a href=/repo/doc/trunk/path/to/file.mdFile/a When the last checkin was on the trunk, this works. When I check something into one of the branches, though, I get No such document errors when clicking such links until I check something

Re: [fossil-users] Why do doc/trunk/foo URLs break when last checkin was on a branch?

2014-08-29 Thread Richard Hipp
On Fri, Aug 29, 2014 at 11:54 AM, Warren Young war...@etr-usa.com wrote: I've got a link like this from one of my wiki pages: a href=/repo/doc/trunk/path/to/file.mdFile/a When the last checkin was on the trunk, this works. When I check something into one of the branches, though, I get

Re: [fossil-users] Why do doc/trunk/foo URLs break when last checkin was on a branch?

2014-08-29 Thread Warren Young
On 8/29/2014 09:59, Richard Hipp wrote: No, it means that it will show the version of /path/to/file.md http://file.md that is on the current trunk check-in. But you just said that file doesn't exist. I think I see what's happening. My branches have two tags on them, the one I think of as

Re: [fossil-users] Why do doc/trunk/foo URLs break when last checkin was on a branch?

2014-08-29 Thread Richard Hipp
On Fri, Aug 29, 2014 at 12:39 PM, Warren Young war...@etr-usa.com wrote: On 8/29/2014 09:59, Richard Hipp wrote: No, it means that it will show the version of /path/to/file.md http://file.md that is on the current trunk check-in. But you just said that file doesn't exist. I think I see

Re: [fossil-users] (no subject)

2014-08-29 Thread Timothy Beyer
At Fri, 29 Aug 2014 08:33:13 +0200, Stephan Beal wrote: [1 multipart/alternative (7bit)] [1.1 text/plain; UTF-8 (7bit)] [1.2 text/html; UTF-8 (quoted-printable)] On Fri, Aug 29, 2014 at 4:59 AM, Timothy Beyer bey...@fastmail.net wrote: There are some limitations that we worked

Re: [fossil-users] (no subject)

2014-08-29 Thread Stephan Beal
On Sat, Aug 30, 2014 at 5:59 AM, Timothy Beyer bey...@fastmail.net wrote: foo LIKE '%BAR%' I believe that there is some sort of issue with the way the % symbol is handled. When passing anything via URLs, '%' needs to be encoded as %25 - it's a special HTTP character. If you pass the query

Re: [fossil-users] (no subject)

2014-08-29 Thread Timothy Beyer
At Sat, 30 Aug 2014 06:46:28 +0200, Stephan Beal wrote: [1 multipart/alternative (7bit)] [1.1 text/plain; UTF-8 (7bit)] [1.2 text/html; UTF-8 (quoted-printable)] On Sat, Aug 30, 2014 at 5:59 AM, Timothy Beyer bey...@fastmail.net wrote: foo LIKE '%BAR%' I believe that