Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Benoit Mortgat
I already had reported this problem on the mailing list one month ago. http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg03942.html My workaround was basically the following: fossil sqlite3 -R "%LOCALAPPDATA%\_fossil" INSERT OR REPLACE INTO global_config(name, text) VALUES('crnl-gl

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Wilson, Ronald
you at correct. we need file expansion on globs, just not in this case. I'll be content to use the ui for this one. rw from my mobile 434.851.1612 On Apr 7, 2011, at 4:59 PM, "Bill Burdick" mailto:bill.burd...@gmail.com>> wrote: I wonder if this would affect commands like fossil add *.txt B

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Konstantin Khomoutov
On Thu, Apr 07, 2011 at 05:15:12PM -0400, sky5w...@gmail.com wrote: > >> Confirmed. Single quotes work on Win7. > > Actually, single quotes don't work either because the single quotes get > > preserved in fossil: > > > > PS C:\rev\src\fossil> cmd > > Microsoft Windows [Version 6.0.6002] > > Copyr

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread sky5walk
LOL...I didn't check the resultant settings. Bummer, so we gotta use the ui for windows 7 and beyond? On Thu, Apr 7, 2011 at 4:44 PM, Wilson, Ronald wrote: >> >> Confirmed. Single quotes work on Win7. >> > > Actually, single quotes don't work either because the single quotes get > preserved in f

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Bill Burdick
I wonder if this would affect commands like fossil add *.txt Bill On Thu, Apr 7, 2011 at 3:50 PM, Scott Robison wrote: > On Thu, Apr 7, 2011 at 2:44 PM, Wilson, Ronald > wrote: > >> > >> Confirmed. Single quotes work on Win7. > >> > > > > Actually, single quotes don't work either because the

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Scott Robison
On Thu, Apr 7, 2011 at 2:44 PM, Wilson, Ronald wrote: >> >> Confirmed. Single quotes work on Win7. >> > > Actually, single quotes don't work either because the single quotes get > preserved in fossil: According to http://gnuwin32.sourceforge.net/compile.html: Filename globbing Wildcards on the

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Wilson, Ronald
> > Confirmed. Single quotes work on Win7. > Actually, single quotes don't work either because the single quotes get preserved in fossil: PS C:\rev\src\fossil> cmd Microsoft Windows [Version 6.0.6002] Copyright (c) 2006 Microsoft Corporation. All rights reserved. C:\rev\src\fossil>fossil set

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread sky5walk
Confirmed. Single quotes work on Win7. On Thu, Apr 7, 2011 at 3:33 PM, Scott Robison wrote: > On Thu, Apr 7, 2011 at 1:24 PM, Ron Wilson wrote: >> On Thu, Apr 7, 2011 at 3:16 PM, Scott Robison wrote: >>> I believe the glob-style wildcard pattern matching is being performed >>> by mingw during p

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Scott Robison
On Thu, Apr 7, 2011 at 1:24 PM, Ron Wilson wrote: > On Thu, Apr 7, 2011 at 3:16 PM, Scott Robison wrote: >> I believe the glob-style wildcard pattern matching is being performed >> by mingw during program startup before handing control over to main >> (because cmd.exe does not do wildcard expansi

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Ron Wilson
On Thu, Apr 7, 2011 at 3:16 PM, Scott Robison wrote: > I believe the glob-style wildcard pattern matching is being performed > by mingw during program startup before handing control over to main > (because cmd.exe does not do wildcard expansion itself in either > Windows 7 or XP). And, I would gu

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Scott Robison
On Thu, Apr 7, 2011 at 1:16 PM, Scott Robison wrote: > I believe the glob-style wildcard pattern matching is being performed > by mingw during program startup before handing control over to main > (because cmd.exe does not do wildcard expansion itself in either > Windows 7 or XP). Bah, stupid gma

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Scott Robison
I believe the glob-style wildcard pattern matching is being performed by mingw during program startup before handing control over to main (because cmd.exe does not do wildcard expansion itself in either Windows 7 or XP). SDR On Thu, Apr 7, 2011 at 10:53 AM, Konstantin Khomoutov wrote: > On Thu,

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Konstantin Khomoutov
On Thu, 7 Apr 2011 15:44:12 + "Wilson, Ronald" wrote: > PS C:\Users\rwilso20> cmd > Microsoft Windows [Version 6.0.6002] > Copyright (c) 2006 Microsoft Corporation. All rights reserved. > > C:\Users\rwilso20>cd \rev\src\fossil > > C:\rev\src\fossil>fossil setting crnl-glob "*" > Usage: C:\

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Bill Burdick
Apparently the Vista and Windows 7 shell does the file matching and sends the matched files to the command, rather than sending "*.*' to the command and having the command do the matching, somewhat like how shells work in UNIX. Bill On Thu, Apr 7, 2011 at 11:18 AM, wrote: > Whoa! How do you..

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread sky5walk
Whoa! How do you... c:\temp>del *.* Some Dot.Net framework class is required? ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Bill Burdick
It seems that Vista and Windows 7 don't support sending "*" as an argument. For XP, apparently it works. Bill On Thu, Apr 7, 2011 at 10:58 AM, wrote: > I prefer an automated approach. (assuming the batch file is simpler > than sending data to the ui) > The fossil settings work for me on XPs

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread sky5walk
I prefer an automated approach. (assuming the batch file is simpler than sending data to the ui) The fossil settings work for me on XPsp3. C:\fossil>cmd Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\fossil>fossil setting crnl-glob "*" C:\fossil> -Steve On

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Konstantin Khomoutov
On Thu, 7 Apr 2011 15:44:12 + "Wilson, Ronald" wrote: > PS C:\Users\rwilso20> cmd > Microsoft Windows [Version 6.0.6002] > Copyright (c) 2006 Microsoft Corporation. All rights reserved. > > C:\Users\rwilso20>cd \rev\src\fossil > > C:\rev\src\fossil>fossil setting crnl-glob "*" > Usage: C:\

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Wilson, Ronald
fossil-scm.org] On Behalf Of Konstantin Khomoutov > Sent: Thursday, April 07, 2011 11:25 AM > To: fossil-users@lists.fossil-scm.org > Subject: Re: [fossil-users] crnl-setting bug > > On Thu, 7 Apr 2011 10:04:22 -0400 > Richard Hipp wrote: > > > On Thu, Apr 7, 2011 at 9:37

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Konstantin Khomoutov
On Thu, 7 Apr 2011 10:04:22 -0400 Richard Hipp wrote: > On Thu, Apr 7, 2011 at 9:37 AM, Wilson, Ronald > wrote: > > > crnl-globA comma-separated list of GLOB patterns for > > text files > > > > in which it is ok to have CR+NL line endings. > > > >

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Ron Wilson
On Thu, Apr 7, 2011 at 10:51 AM, Richard Hipp wrote: > On Thu, Apr 7, 2011 at 10:46 AM, Bill Burdick > wrote: >> >> You can use fossil ui to set it. > > Excellent suggestion, Bill.  That is my new preferred solution.  Please > ignore my prior hack. Nevertheless, your hack is both clever and humo

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Richard Hipp
On Thu, Apr 7, 2011 at 10:46 AM, Bill Burdick wrote: > You can use fossil ui to set it. Excellent suggestion, Bill. That is my new preferred solution. Please ignore my prior hack. > > Bill > > > On Thu, Apr 7, 2011 at 9:04 AM, Richard Hipp wrote: > >> >> >> On Thu, Apr 7, 2011 at 9:37 AM, W

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Bill Burdick
You can use fossil ui to set it. Bill On Thu, Apr 7, 2011 at 9:04 AM, Richard Hipp wrote: > > > On Thu, Apr 7, 2011 at 9:37 AM, Wilson, Ronald wrote: > >> crnl-globA comma-separated list of GLOB patterns for text >> files >> >> in which it is ok to have CR+NL lin

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Richard Hipp
On Thu, Apr 7, 2011 at 9:37 AM, Wilson, Ronald wrote: > crnl-globA comma-separated list of GLOB patterns for text > files > > in which it is ok to have CR+NL line endings. > > Set to "*" to disable CR+NL checking. > > > > I’m unable to set crnl-

Re: [fossil-users] crnl-setting bug

2011-04-07 Thread Konstantin Khomoutov
On Thu, 7 Apr 2011 13:37:38 + "Wilson, Ronald" wrote: >crnl-globA comma-separated list of GLOB patterns for text > files in which it is ok to have CR+NL line endings. > Set to "*" to disable CR+NL checking. > > I'm unable to set crnl-glob to * in windows, per

[fossil-users] crnl-setting bug

2011-04-07 Thread Wilson, Ronald
crnl-globA comma-separated list of GLOB patterns for text files in which it is ok to have CR+NL line endings. Set to "*" to disable CR+NL checking. I'm unable to set crnl-glob to * in windows, per the documentation. I'm using powershell in windo