[fossil-users] Unable to open database file

2011-03-10 Thread Sunil Nimmagadda
I am following quick start guide and did the following to setup fossil server and accessing it from a different client machine. My server setup... OpenBSD apache(1.3) chrooted to /var/www Fossil compiled with -static for self-contained executable. Fossil version - This is fossil version

Re: [fossil-users] adding js to themes

2011-03-10 Thread Federico Ramallo
Awesome I'll test it using adding the js to the header ! 2011/3/8 Ron Wilson ronw.m...@gmail.com On Tue, Mar 8, 2011 at 11:37 PM, Federico Ramallo frama...@gmail.com wrote: I've been trying to add a js file but the theme only consider CSS, header and footer... I added as a file on the on

[fossil-users] Ticket reports doesn't sync

2011-03-10 Thread Federico Ramallo
Hi, I'm modifying reports on the main fossil repo. This is the repo everybody syncs to. So I modified a report, and created a new one. But after I sync or pull the report doesn't show up on the local repo. Is this by design or there is an error? Thanks, Federico Ramallo

Re: [fossil-users] Ticket reports doesn't sync

2011-03-10 Thread Federico Ramallo
I can answer myself! :D fossil config pull ticket Notice that AREA can be one of: all email project shun skin ticket user it makes sense not sync it by default with the sync command 2011/3/10 Federico Ramallo frama...@gmail.com Hi, I'm modifying reports on the main fossil repo. This is

[fossil-users] symlinks to directories are traversed by fossil extras?

2011-03-10 Thread Matt Welland
What is the plan for handling symlinks for fossil? My preference would be for fossil to treat links as a file. Storing the pointer would be great. Just ignoring links would also be fine by me. But actually traversing the links is not a good idea IMHO and is a real fossil killer. It is also not

Re: [fossil-users] Work flow with fossil (understanding conflict resolution)

2011-03-10 Thread Matt Welland
For a very nice (IMHO) model on how to handle forks take a look at monotone. Forking is natural, you just want to take precautions to keep your data safe. A fork is just a branch you haven't given a name to and didn't necessarily intentionally create. In the case of monotone it just lets you know

[fossil-users] git equivalent commands

2011-03-10 Thread Federico Ramallo
Hi, I was wondering how to do git reset --hard on a fossil repository. Because fossil clean only clear extra files, but what about changed files? Also I was wondering about git grep, there is any plan on implementing the command? I think is really really usefull Also Today we found a bug on

Re: [fossil-users] git equivalent commands

2011-03-10 Thread Konstantin Khomoutov
On Fri, Mar 11, 2011 at 01:27:39AM -0600, Federico Ramallo wrote: I was wondering how to do git reset --hard on a fossil repository. Because fossil clean only clear extra files, but what about changed files? Possibly you need `fossil revert`. ___