Re: [fossil-users] Propose changes

2012-06-11 Thread Baruch Burstein
On Tue, Jun 12, 2012 at 1:06 AM, Stephan Beal wrote: > On Mon, Jun 11, 2012 at 10:01 PM, Baruch Burstein wrote: > >> +** (versionable) text files which should have CR+NL line endings >> +** automatically fixed to CR >> > > > LOL! As much as i agree with the sentiment, is

Re: [fossil-users] Submitting edits breaks ticket report?

2012-06-11 Thread Chen, Zon
Apologies, for some reason my mail client has messed up some of the line breaks. All of the *** should be at the very start of the line. -Original Message- From: fossil-users-boun...@lists.fossil-scm.org [mailto:fossil-users-boun...@lists.fossil-scm.org] On Behalf Of Chen, Zon Sent: Tu

Re: [fossil-users] Submitting edits breaks ticket report?

2012-06-11 Thread Chen, Zon
Thanks for your reply. Is it ok to send a giant chunk of text here? Here is my edit ticket script. I've inserted *** in front of the lines that I have altered from default. I've also included my table schema below as well. if {![info exists username]} {set username $login} if {[info exi

Re: [fossil-users] Submitting edits breaks ticket report?

2012-06-11 Thread Richard Hipp
On Mon, Jun 11, 2012 at 8:35 PM, Chen, Zon wrote: > Hi, I've written a report to list unassigned open tickets, code below. > However, it seems that if I make any changes to the ticket, such as adding > a comment or altering its priority, it will no longer appear in this > report, even if it's sti

[fossil-users] Submitting edits breaks ticket report?

2012-06-11 Thread Chen, Zon
Hi, I've written a report to list unassigned open tickets, code below. However, it seems that if I make any changes to the ticket, such as adding a comment or altering its priority, it will no longer appear in this report, even if it's still Unassigned and Open. Also, when the report is display

Re: [fossil-users] Fossil vs. Windows

2012-06-11 Thread Jacek Cała
Hi again, Sorry for not answering your question in my previous post... I'm a bit sleepy (it's about 1am my time). Try double quotes. Just tested with no errors: > fossil add "new file.txt" ADDED new file.txt > fossil chan ADDED new file.txt > fossil commit -m "new file added..." New_Vers

Re: [fossil-users] Fossil vs. Windows

2012-06-11 Thread Jacek Cała
Hi, Could you please be a bit more specific about what errors exactly you have experienced. I've been using fossil on Windows (Vista 32-bit and 7 64-bit) for more than 3 years now and haven't ever experienced any problems with spaces in dirs or file names; Below is an excerpt from the listing of

Re: [fossil-users] Fossil vs. Windows

2012-06-11 Thread Richard Hipp
On Mon, Jun 11, 2012 at 6:36 PM, Mike Meyer wrote: > My boss just sent me mail that said, and I quote: > > Fossil sucks and is actually not compatible with Windows > > I'm pretty sure I've seen people here who use it no Windows, and > there's a Windows distribution, which makes me think he's wr

Re: [fossil-users] Fossil vs. Windows

2012-06-11 Thread Cunningham, Robert
> -Original Message- > From: fossil-users-boun...@lists.fossil-scm.org [mailto:fossil-users- > boun...@lists.fossil-scm.org] On Behalf Of Mike Meyer > > My boss just sent me mail that said, and I quote: > >Fossil sucks and is actually not compatible with Windows > > I'm pretty sure I

[fossil-users] Fossil vs. Windows

2012-06-11 Thread Mike Meyer
My boss just sent me mail that said, and I quote: Fossil sucks and is actually not compatible with Windows I'm pretty sure I've seen people here who use it no Windows, and there's a Windows distribution, which makes me think he's wrong. His problem is that he has lots of spaces in his directo

Re: [fossil-users] Propose changes

2012-06-11 Thread Mike Meyer
On Tue, 12 Jun 2012 00:06:38 +0200 Stephan Beal wrote: > On Mon, Jun 11, 2012 at 10:01 PM, Baruch Burstein wrote: > > > +** (versionable) text files which should have CR+NL line endings > > +** automatically fixed to CR > LOL! As much as i agree with the sentiment, isn

Re: [fossil-users] Propose changes

2012-06-11 Thread Stephan Beal
On Mon, Jun 11, 2012 at 10:01 PM, Baruch Burstein wrote: > +** (versionable) text files which should have CR+NL line endings > +** automatically fixed to CR > LOL! As much as i agree with the sentiment, isn't saying "fixed" likely to alienate users of that other OS? -

Re: [fossil-users] Propose changes

2012-06-11 Thread Baruch Burstein
I would also like to suggest a link to the command list ( http://www.fossil-scm.org/fossil/help) be available on the front page of the website. On Mon, Jun 11, 2012 at 11:01 PM, Baruch Burstein wrote: > Here it is. If you prefer a link I will upload it somewhere: > > > --- src/db.c > +++ src/db.c

Re: [fossil-users] Propose changes

2012-06-11 Thread Baruch Burstein
Here it is. If you prefer a link I will upload it somewhere: --- src/db.c +++ src/db.c @@ -1894,10 +1894,11 @@ { "autosync", 0,0, 0, "on" }, { "binary-glob", 0, 32, 1, ""}, { "clearsign", 0,0, 0

Re: [fossil-users] Propose changes

2012-06-11 Thread Richard Hipp
On Mon, Jun 11, 2012 at 3:12 PM, Baruch Burstein wrote: > I have made a small addition that I would like to propose for fossil > (option to auto-convert line endings). How and where should I send it? > Post the diffs, or a link to the diffs, on this mailing list. > > -- > ˙uʍop-ǝpısdn sı ɹoʇıu

[fossil-users] Propose changes

2012-06-11 Thread Baruch Burstein
I have made a small addition that I would like to propose for fossil (option to auto-convert line endings). How and where should I send it? -- ˙uʍop-ǝpısdn sı ɹoʇıuoɯ ɹnoʎ 'sıɥʇ pɐǝɹ uɐɔ noʎ ɟı ___ fossil-users mailing list fossil-users@lists.fossil-scm

Re: [fossil-users] Adding settings

2012-06-11 Thread Richard Hipp
On Mon, Jun 11, 2012 at 6:18 AM, Baruch Burstein wrote: > Thank you. And is there a function to get the value of a setting, or just > an old-fashioned SELECT? > db_get() and db_get_int(). Use grep. The code really isn't that hard once you have the general layout. Read http://www.fossil-scm.org

Re: [fossil-users] Adding settings

2012-06-11 Thread Baruch Burstein
Never mind, I found it (db_get*). Sorry for the extra question. On Mon, Jun 11, 2012 at 1:18 PM, Baruch Burstein wrote: > Thank you. And is there a function to get the value of a setting, or just > an old-fashioned SELECT? > > > On Mon, Jun 11, 2012 at 12:42 PM, Richard Hipp wrote: > >> >> >> On

Re: [fossil-users] Adding settings

2012-06-11 Thread Baruch Burstein
Thank you. And is there a function to get the value of a setting, or just an old-fashioned SELECT? On Mon, Jun 11, 2012 at 12:42 PM, Richard Hipp wrote: > > > On Mon, Jun 11, 2012 at 3:03 AM, Baruch Burstein wrote: > >> Is there an easy way to add settings (preferably on a per-repository >> base

Re: [fossil-users] Adding settings

2012-06-11 Thread Richard Hipp
On Mon, Jun 11, 2012 at 3:03 AM, Baruch Burstein wrote: > Is there an easy way to add settings (preferably on a per-repository base) > to the `fossil settings` command? And if so, is there an easy way to also > add them to the web interface? > Add entries to the ctrlSettings

Re: [fossil-users] Adding settings

2012-06-11 Thread Remigiusz Modrzejewski
On Jun 11, 2012, at 09:03 , Baruch Burstein wrote: > Is there an easy way to add settings (preferably on a per-repository base) > to the `fossil settings` command? And if so, is there an easy way to also > add them to the web interface? I once added the *self-register* thing after just a few min

[fossil-users] fossil hangs during pull

2012-06-11 Thread Rainer J.H. Brandt
Hello, on my OS X 10.6.8 client, fossil hangs during pull. I have a fossil repository with the fossil sources cloned from www.fossil-scm.org, and I just updated that successfully. This is under Solaris 10. This clone has no local additions. I just use it for the documentation it contains, and fo

[fossil-users] Adding settings

2012-06-11 Thread Baruch Burstein
Is there an easy way to add settings (preferably on a per-repository base) to the `fossil settings` command? And if so, is there an easy way to also add them to the web interface? -- ˙uʍop-ǝpısdn sı ɹoʇıuoɯ ɹnoʎ 'sıɥʇ pɐǝɹ uɐɔ noʎ ɟı ___ fossil-users ma