> Hi, Will... > > I read your blog on your code review tool. Looks interesting. > I've never used a tool like this and was wondering if you would > explain exactly what it does. What does it scan for? > > (Knowing my code is always *perfect* and very *sexy* (as you like to > say), > I'm wondering if it would be of use for me? ;o) >
Well the oode in the scan tool definitely AIN'T sexy! It's kind of disruptor'ish. :) I have a readme.txt file in the zip that explains why I built it. THAT pretty much explains what it does. My company uses a code review tool that scans your code that you've submitted, and spits out a report of errors. What's an error? Any piece of code that doesn't fit their standards. For instance, they do not allow tab characters. I can add \t (tab) to my regex library and it will automatically scan the file for \t (tab). Or you name it. If you can write a regex, you can scan your file for it. That's mostly why I think it's cool. I can practice learning regex with this tool. I can read over the company's standards doc, pick out items to test, and write regexs. I've screwed up a lot but that's not a bad thing. And if you want, it'll even remove them all and rewrite the file back out to the directory! Hope that helps explain it some. Again, it's kind of crude and needs work, but it's a good start I think. Will ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308518 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

