Re: [Leaf-devel] Perl help

2002-07-17 Thread Erich Titl
Hi Mike in case noone noticed until now.. there was a glitch in the perl script anyway, see the following test luna > perl casetest.pl MakefilefoobarDDD All filenames must be completely lowercase except Makefiles. (/) All filenames must be completely lowercase except Makefiles.

Re: [Leaf-devel] Perl help

2002-07-17 Thread Mike Noyes
On Wed, 2002-07-17 at 10:57, Brad Fritz wrote: > I also double-checked the r1.1 to r1.2 diff[1] from last night, > and I don't see anything wrong or any changes that should have > resulted in the broken pipe error. Brad, Thanks for taking another look at the file. I committed the changes again.

Re: [Leaf-devel] Perl help

2002-07-17 Thread Brad Fritz
On 17 Jul 2002 10:24:21 PDT Mike Noyes wrote: > Brad, > Thanks for the proof. The broken pipe may have been a coincidence, but I > thought I should check before trying this again. Almost always better to be safe than sorry, I suppose. :) > My diff doesn't look right (diff output below). The s

Re: [Leaf-devel] Perl help

2002-07-17 Thread Mike Noyes
On Wed, 2002-07-17 at 08:34, Mike Noyes wrote: > leaf/CVSROOT/enforce_naming rev 1.3 > http://cvs.leaf-project.org/cgi-bin/viewcvs.cgi/leaf/CVSROOT/ Everyone, Our enforce_naming is now at rev 1.4, and lowercase name enforcement should be disabled. Please let me know if you experience any problems

Re: [Leaf-devel] Perl help

2002-07-17 Thread Mike Noyes
On Wed, 2002-07-17 at 09:58, Michael D. Schleif wrote: > > Mike Noyes wrote: > > > > On Wed, 2002-07-17 at 08:58, Michael D. Schleif wrote: > > > Mike Noyes wrote: > > > > > > > > Anyone, > > > > Will removing the following lines from enforce_naming leave the perl > > > > script functional? > >

Re: [Leaf-devel] Perl help

2002-07-17 Thread Mike Noyes
On Wed, 2002-07-17 at 09:54, Brad Fritz wrote: > > On 17 Jul 2002 09:11:44 PDT Mike Noyes wrote: > > > Hmm, then what did I do wrong in rev 1.2? I used vi to dd out the lines > > below, and you ended up with a broken pipe from the server last night. > > I am not sure about the broken pipe, but

Re: [Leaf-devel] Perl help

2002-07-17 Thread Michael D. Schleif
Mike Noyes wrote: > > On Wed, 2002-07-17 at 08:58, Michael D. Schleif wrote: > > Mike Noyes wrote: > > > > > > Anyone, > > > Will removing the following lines from enforce_naming leave the perl > > > script functional? > > > > Yes, absolutely yes; provided that either all of the lines are > > co

Re: [Leaf-devel] Perl help

2002-07-17 Thread Brad Fritz
On 17 Jul 2002 09:11:44 PDT Mike Noyes wrote: > Hmm, then what did I do wrong in rev 1.2? I used vi to dd out the lines > below, and you ended up with a broken pipe from the server last night. I am not sure about the broken pipe, but if you need more evidence it *should* work, see below. My ap

Re: [Leaf-devel] Perl help

2002-07-17 Thread Mike Noyes
On Wed, 2002-07-17 at 08:58, Michael D. Schleif wrote: > Mike Noyes wrote: > > > > Anyone, > > Will removing the following lines from enforce_naming leave the perl > > script functional? > > Yes, absolutely yes; provided that either all of the lines are > completely _removed_ or completely comme

Re: [Leaf-devel] Perl help

2002-07-17 Thread Michael D. Schleif
Mike Noyes wrote: > > Anyone, > Will removing the following lines from enforce_naming leave the perl > script functional? Yes, absolutely yes; provided that either all of the lines are completely _removed_ or completely commented out. > # Verify that all files are lowercase, except Makefiles

[Leaf-devel] Perl help

2002-07-17 Thread Mike Noyes
Anyone, Will removing the following lines from enforce_naming leave the perl script functional? # Verify that all files are lowercase, except Makefiles if ((substr($_, 0, 8) ne "Makefile") and (lc($_) ne $_)) { print "All filenames must be completely lowercase except ";