[fossil-users] Problems with the tkt-change-hook branch

2013-10-11 Thread Justin Forest
Hello. I wanted to use the ticket change hooks, and found a problem with the current code. This is how I get the code: 1. fossil update trunk 2. fossil merge tkt-change-hook 3. ./configure && make I'm new to the Fossil code, so I'd appreciate an advice if I did that wrong. The problem wit

[fossil-users] /reports by event type is in place

2013-10-11 Thread Stephan Beal
Hi, all, i'm looking for testers to try out the new /reports feature: filtering by event type (checking, wiki, tag, ticket). It was just committed to trunk. Notes: - It only allows selection of ONE event type (or the 'all' pseudo-type). Though we discussed the possibility of adding multiple filte

Re: [fossil-users] how to fix links to wiki pages if project name is changed?

2013-10-11 Thread j. van den hoff
On Thu, 10 Oct 2013 20:24:35 +0200, Richard Hipp wrote: On Thu, Oct 10, 2013 at 2:19 PM, j. van den hoff wrote: thanks for clarification. another question which comes up for me for the first time: it seems that either all wiki pages are viewable w/o login or none at all. i.e. there is no

Re: [fossil-users] mingw doesn't build anymore on win8-64bit

2013-10-11 Thread Jan Nijtmans
2013/10/11 Jan Nijtmans : > It should be the same whether sqlite3.h is included or not I tested the MinGW compile with the latest SQLite 3.8.1 beta. It works fine. Actually, including before or after doesn't make any difference: The only system include in is , and this include is not affected b

Re: [fossil-users] mingw doesn't build anymore on win8-64bit

2013-10-11 Thread Martin Gagnon
On Fri, Oct 11, 2013 at 02:46:28PM +0200, Jan Nijtmans wrote: > 2013/10/11 Jan Nijtmans : > > Yes, that looks better. And it indeed makes things simpler. > > Why didn't I think of that ;-) ... > > > > Unfortunately, it only fixes one of the two problems, and it breaks > > the normal MinGW build

Re: [fossil-users] mingw doesn't build anymore on win8-64bit

2013-10-11 Thread Jan Nijtmans
2013/10/11 Richard Hipp : > But the content of sqlite3.h is protected from multiple inclusion using > > #ifndef _SQLITE3_H_ > #define _SQLITE3_H_ > ... > #endif > > This protection occurs both in sqlite3.h and sqlite3.c. So why does having > "#include " in matter? It's tricky, in

Re: [fossil-users] mingw doesn't build anymore on win8-64bit

2013-10-11 Thread Richard Hipp
On Fri, Oct 11, 2013 at 8:46 AM, Jan Nijtmans wrote: > 2013/10/11 Jan Nijtmans : > > Yes, that looks better. And it indeed makes things simpler. > > Why didn't I think of that ;-) ... > > > > Unfortunately, it only fixes one of the two problems, and it breaks > > the normal MinGW build. See be

Re: [fossil-users] mingw doesn't build anymore on win8-64bit

2013-10-11 Thread Jan Nijtmans
2013/10/11 Jan Nijtmans : > Yes, that looks better. And it indeed makes things simpler. > Why didn't I think of that ;-) ... > > Unfortunately, it only fixes one of the two problems, and it breaks > the normal MinGW build. See below for the log. I finally figured it out. Fix is here:

Re: [fossil-users] typo on `/setup_modreq' wiki page

2013-10-11 Thread Stephan Beal
On Fri, Oct 11, 2013 at 10:57 AM, j. van den hoff wrote: > location of corrected typo indicated by ***: > > Ticket changes made by a user who ***has*** the Mod-Tkt privilege are > never subject to moderation. > > I also probably would rephrase to: > > Ticket changes made by a user ***with** the M

Re: [fossil-users] mingw doesn't build anymore on win8-64bit

2013-10-11 Thread Jan Nijtmans
2013/10/11 Martin Gagnon : > Would it work to do the opposite way by not defining _USE_32BIT_TIME_T > from the Makefile, and defining it under a #ifdef _WIN64 in the > config.h ? > > What do you think ? Yes, that looks better. And it indeed makes things simpler. Why didn't I think of that ;-)

Re: [fossil-users] mingw doesn't build anymore on win8-64bit

2013-10-11 Thread Martin Gagnon
On Fri, Oct 11, 2013 at 10:50:29AM +0200, Jan Nijtmans wrote: > 2013/10/11 Jan Nijtmans : > > 2013/10/11 Martin Gagnon : > >> I tried to fix this by making sure that every source include config.h > >> before any other includes, but I got stuck when I go the error from > >> sqlite3.c > > Thanks

[fossil-users] typo on `/setup_modreq' wiki page

2013-10-11 Thread j. van den hoff
location of corrected typo indicated by ***: Ticket changes made by a user who ***has*** the Mod-Tkt privilege are never subject to moderation. I also probably would rephrase to: Ticket changes made by a user ***with** the Mod-Tkt privilege are never subject to moderation. -- Using Opera

Re: [fossil-users] mingw doesn't build anymore on win8-64bit

2013-10-11 Thread Jan Nijtmans
2013/10/11 Jan Nijtmans : > 2013/10/11 Martin Gagnon : >> I tried to fix this by making sure that every source include config.h >> before any other includes, but I got stuck when I go the error from >> sqlite3.c Thanks! Fixed now. I was able to reproduce your problem using MinGW-w64 setting MI

Re: [fossil-users] mingw doesn't build anymore on win8-64bit

2013-10-11 Thread Jan Nijtmans
2013/10/11 Martin Gagnon : > Finally, I found that your change in config.h fix the problem on some > source files, but some source files include some system header files > before the config.h (some even doesn't include config.h). > > I tried to fix this by making sure that every source include conf