[fossil-users] FTS4 Search, MATCH query requires UPDATE, no worky from TH1

2015-01-29 Thread mario
So this is more of a SQLite question. I've been trying to move my TH1 search function to a FTS table lately too. But it really only worked from SQlite or Fsl Admin SQL. In TH1 query{} calls it just returns SQLITE_AUTH errors. query SELECT * FROM fx_search WHERE content MATCH 'test' { }

Re: [fossil-users] Jim Tcl website is broken

2015-01-29 Thread Steve Bennett
On 29 Jan 2015, at 10:44 am, Richard Hipp d...@sqlite.org wrote: On 1/28/15, Steve Bennett ste...@workware.net.au wrote: Hi All, The Jim Tcl website is hosted as a fossil repository here: http://jim.tcl.tk/index.html/doc/www/www/index.html The front page still works, but none of the

Re: [fossil-users] BUG: /doc pages on ckout not rendered correctly any more.

2015-01-29 Thread Jan Nijtmans
2015-01-29 11:05 GMT+01:00 Jan Nijtmans jan.nijtm...@gmail.com: When starting fossil ui locally and then opening the following URL: http://localhost:8080/doc/ckout/www/changes.wiki This page is not rendered correctly any more. With fossil 1.30 this still was OK. Bisecting shows the

[fossil-users] BUG: /doc pages on ckout not rendered correctly any more.

2015-01-29 Thread Jan Nijtmans
When starting fossil ui locally and then opening the following URL: http://localhost:8080/doc/ckout/www/changes.wiki This page is not rendered correctly any more. With fossil 1.30 this still was OK. Bisecting shows the following commit somehow introduced the bug:

Re: [fossil-users] 4 Year Fossil Success Story

2015-01-29 Thread Warren Young
On Jan 29, 2015, at 1:35 PM, Backe, Martin G martin.g.ba...@boeing.com wrote: The Wiki is used for some key documentation, but its use has been limited by the lack of a search capability (in practical terms, it’s impossible to find information in the Wiki). It searches titles, but not

Re: [fossil-users] 4 Year Fossil Success Story

2015-01-29 Thread Stephan Beal
:-D i'd be interested in seeing your ticketing customizations,if you are at liberty to show them to us. - stephan Sent from a mobile device, possibly from bed. Please excuse brevity and typos. On Jan 29, 2015 9:35 PM, Backe, Martin G martin.g.ba...@boeing.com wrote: I thought I’d use

[fossil-users] 4 Year Fossil Success Story

2015-01-29 Thread Backe, Martin G
I thought I'd use Fossil for a bit before posting our success in using it. It's been about four years now, so it's time ;-) Having been a fan of Richard's work during my Tcl days, it wasn't much of a leap of faith when I chose Fossil for our SCM for a new internal project. I loved the fact

[fossil-users] Compilation problems

2015-01-29 Thread Kees Nuyt
Hi, My build of fossil breaks on undefined NI_* symbols in http_socket.c Last successful build was: fossil version 1.30 [236087b98e] 2015-01-22 13:44:44 UTC Am I missing something? Outdated system includes perhaps? (see details below). Thanks in advance! -- Regards, Kees Nuyt Make: cd

Re: [fossil-users] Compilation problems

2015-01-29 Thread Kees Nuyt
On Thu, 29 Jan 2015 19:39:07 -0500, Richard Hipp d...@sqlite.org wrote: On 1/29/15, Kees Nuyt k.n...@zonnet.nl wrote: Hi, My build of fossil breaks on undefined NI_* symbols in http_socket.c This is the code that was added to support IPv6. Maybe there is another header file that needs to

Re: [fossil-users] 4 Year Fossil Success Story

2015-01-29 Thread Backe, Martin G
Unfortunately I'm not able to expose any specifics of our configuration. But in general, we've just added some additional fields which allow us to maintain PBIs as tickets within Fossil. Reports are then created which allow us to view completed and to-be-completed work for a given Sprint.

Re: [fossil-users] Search feature

2015-01-29 Thread Richard Hipp
On 1/29/15, jungle Boogie jungleboog...@gmail.com wrote: Hi Barcuch, On 28 January 2015 at 12:43, Baruch Burstein bmburst...@gmail.com wrote: On Wed, Jan 28, 2015 at 7:10 PM, Jungle Boogie jungleboog...@gmail.com Question: Will this also eventually let you search file names i.e. http_socket.c

Re: [fossil-users] 4 Year Fossil Success Story

2015-01-29 Thread Backe, Martin G
The Wiki works great for a couple dozen pages. But since you can't search the content, you become reluctant to create new pages because you aren't confident the information will be findable. So it becomes a self-fulfilling prophecy - The Wiki works great for a small set of pages.

Re: [fossil-users] Compilation problems

2015-01-29 Thread Richard Hipp
On 1/29/15, Kees Nuyt k.n...@zonnet.nl wrote: Hi, My build of fossil breaks on undefined NI_* symbols in http_socket.c Thanks for the report. I was able to repro the problem on a Sparc server and devised a fix. If you download the latest sources and rerun configure you should be fine. Or

Re: [fossil-users] 4 Year Fossil Success Story

2015-01-29 Thread Backe, Martin G
You're correct. We keep all of our jar libraries in the repository. I know that's not always recommended, but it's convenient, and it works! Richard Hipp Thu, 29 Jan 2015 12:53:38 -0800 Thanks for sharing. I'm glad Fossil is working out for you. I did note that your repository is not

Re: [fossil-users] Compilation problems

2015-01-29 Thread Stephan Beal
On Fri, Jan 30, 2015 at 1:39 AM, Richard Hipp d...@sqlite.org wrote: your system. Can you grep in /usr/include/*.h and /usr/include/*/*.h and anyplace else where header files are located, and see which file contains the NI_MAXHOST symbol, if any? Per Wikipedia (of all places), the 3

Re: [fossil-users] Search feature

2015-01-29 Thread jungle Boogie
Hi Barcuch, On 28 January 2015 at 12:43, Baruch Burstein bmburst...@gmail.com wrote: On Wed, Jan 28, 2015 at 7:10 PM, Jungle Boogie jungleboog...@gmail.com Question: Will this also eventually let you search file names i.e. http_socket.c This might do what you want:

Re: [fossil-users] Compilation problems

2015-01-29 Thread Richard Hipp
On 1/29/15, Kees Nuyt k.n...@zonnet.nl wrote: Hi, My build of fossil breaks on undefined NI_* symbols in http_socket.c This is the code that was added to support IPv6. Maybe there is another header file that needs to be #include-ed on your system. Can you grep in /usr/include/*.h and

Re: [fossil-users] Compilation problems

2015-01-29 Thread Kees Nuyt
[Default] On Thu, 29 Jan 2015 20:13:16 -0500, Richard Hipp d...@sqlite.org wrote: On 1/29/15, Kees Nuyt k.n...@zonnet.nl wrote: Hi, My build of fossil breaks on undefined NI_* symbols in http_socket.c Thanks for the report. I was able to repro the problem on a Sparc server and devised a