Re: [PHP] Looking for a "TODO:" parser.

2004-08-26 Thread Curt Zirzow
*note: re-organized to get some humor out of this* * Thus wrote Jim Grill: > - Original Message - > From: "Rick Fletcher" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: "John Holmes" <[EMAIL PROTECTED]> > Sent: Thursday, Augus

Re: [PHP] Looking for a "TODO:" parser.

2004-08-26 Thread Jim Grill
I'm pretty damn sure he was kidding about the parse error. Jim Grill - Original Message - From: "Rick Fletcher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "John Holmes" <[EMAIL PROTECTED]> Sent: Thursday, August 26, 2004 4:53 PM Subj

Re: [PHP] Looking for a "TODO:" parser.

2004-08-26 Thread Rick Fletcher
This recursively gets you file path/name, line number, the matching line and the 2 that follow it. $ grep -HrnA 2 "TODO:" /path/to/code/root I get a parse error when I put that in my PHP file... That's not PHP code. It's the syntax for using a program called "grep" on the command line which wou

RE: [PHP] Looking for a "TODO:" parser.

2004-08-26 Thread Daevid Vincent
or what would seem to be pretty standard //TODO: comments. daevid.com > -Original Message- > From: Jim Grill [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 25, 2004 7:18 PM > To: Daevid Vincent; [EMAIL PROTECTED] > Subject: Re: [PHP] Looking for a "TODO:" parser

Re: [PHP] Looking for a "TODO:" parser.

2004-08-26 Thread John Holmes
From: "Rick Fletcher" <[EMAIL PROTECTED]> This recursively gets you file path/name, line number, the matching line and the 2 that follow it. $ grep -HrnA 2 "TODO:" /path/to/code/root I get a parse error when I put that in my PHP file... ---John Holmes... -- PHP General Mailing List (http://www.ph

Re: [PHP] Looking for a "TODO:" parser.

2004-08-26 Thread Rick Fletcher
I'm looking for a program that will run through a directory tree and parse all the files (ideally by extension, like *.php, *.js, *.html, *.c) and give me a formatted output (or HTML table or something useful). It should include the //TODO of course, the path/file, the line(s), and perhaps other th

Re: [PHP] Looking for a "TODO:" parser.

2004-08-25 Thread Jim Grill
;Daevid Vincent" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 25, 2004 8:55 PM Subject: [PHP] Looking for a "TODO:" parser. > I, like many other people I'm sure, put //TODO: comments in my code (inspite > of M$ patent on the idea!). > &

[PHP] Looking for a "TODO:" parser.

2004-08-25 Thread Daevid Vincent
I, like many other people I'm sure, put //TODO: comments in my code (inspite of M$ patent on the idea!). http://yro.slashdot.org/article.pl?sid=04/06/08/2319254&tid=155&tid=109&tid= 156&tid=17 I'm looking for a program that will run through a directory tree and parse all the files (ideally by ext