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

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

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

2004-08-26 Thread Daevid Vincent
//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. Not sure about other file types, but phpdoc includes a tag for todo

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 would

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 Subject: Re: [PHP] Looking for a TODO: parser

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, August 26, 2004 4:53 PM Subject: Re: [PHP] Looking for a TODO: parser

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

2004-08-25 Thread Jim Grill
Not sure about other file types, but phpdoc includes a tag for todo. It also makes nice documentation on the fly based on your comments. http://phpdoc.org/docs/HTMLSmartyConverter/default/phpDocumentor/tutorial_tags.todo.pkg.html Jim Grill - Original Message - From: Daevid Vincent