Re: Source code line count

2006-05-23 Thread Robert Everland III
The c sharp counter worked well. The only issue I found was that it uses a free UI manager and when I compiled it in the latest VS it would display the folder list. I was able to get around this by running the program and selecting the directory in the original program and it created a file .sta

Re: Source code line count

2006-05-23 Thread Jerry Johnson
I wasn't sure if YOU were going to be running it. Glad you found a free offering. Let us know how it works. On 5/23/06, Robert Everland III <[EMAIL PROTECTED]> wrote: > Our development server is on 6, but I do not have CF installed on my machine. > I found a c sharp solution I should be able to

Re: Source code line count

2006-05-23 Thread Skorp Croze
You want to know horror? Ive got half my boxes on 5, and half on 7. And I have to remember what I can do on which. On 5/23/06, John Galt <[EMAIL PROTECTED]> wrote: > So you're on 5? > > Jesus man, the horror. ~| Message: http://w

Re: Source code line count

2006-05-23 Thread Robert Everland III
Our development server is on 6, but I do not have CF installed on my machine. I found a c sharp solution I should be able to edit for my purposes. http://www.codeproject.com/csharp/CSharpLineCounter.asp , always pays to know another language. B

RE: Source code line count

2006-05-23 Thread John Galt
So you're on 5? Jesus man, the horror. > -Original Message- > From: Robert Everland III [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 23, 2006 4:00 PM > To: CF-Community > Subject: Re: Source code line count > > Probably because I work for a school system

Re: Source code line count

2006-05-23 Thread Robert Everland III
Probably because I work for a school system and my development machine runs out of memory on a daily basis. Let's not add greedy JRUN to the mix. bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:5:207380 Archives:

Re: Source code line count

2006-05-23 Thread Jerry Johnson
then I would suggest a product like Practiline, which can be customized to remove various comments (different rules based on file extension, like # or

RE: Source code line count

2006-05-23 Thread John Galt
, 2006 3:57 PM > To: CF-Community > Subject: Re: Source code line count > > I'm not. > > > B > > ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:5:207377 Archives: http://www.houseof

Re: Source code line count

2006-05-23 Thread Robert Everland III
I'm not. B ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:5:207376 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/5 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:5 Unsubscribe: http://www.ho

RE: Source code line count

2006-05-23 Thread John Galt
It'll work just fine if he's in CF 7. > -Original Message- > From: Robert Everland III [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 23, 2006 3:50 PM > To: CF-Community > Subject: Re: Source code line count > > Using cf to count the lines is NOT goin

Re: Source code line count

2006-05-23 Thread Robert Everland III
I would assume every line break, not including empty lines. Idealy whatever I use to count the lines would skip all comments. Any old files should be counted as they are part of the works. Bob ~| Message: http://www.houseoffus

Re: Source code line count

2006-05-23 Thread Jerry Johnson
The old standby, wc If you have MKS, you have it, otherwise... http://www.simtel.net/product.php%5Bid%5D27480%5Bcid%5D298%5BSiteID%5Dsimtel.net http://www.diamondedge.com/products/linecount.html Or a new-fangled type of system (there are dozens of them out there) http://www.topshareware.com/Practi

Re: Source code line count

2006-05-23 Thread Robert Everland III
Using cf to count the lines is NOT going to be able to work. If you've ever used CF to try to do a recursive parsing of files you would understand. Bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:5:207372 Archives

RE: Source code line count

2006-05-23 Thread John Galt
Total rows = #totalLines# Total Files = #files.recordCount# > -Original Message- > From: Robert Everland III [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 23, 2006 3:37 PM > To: CF-Community > Subject: Source code line count > > Is there a tool that will allow me

Re: Source code line count

2006-05-23 Thread Jerry Johnson
Not to be too pedantic, but how are you going to count the lines? simple linebreaks? non-empty linebreaks? (empty, tabs or spaces only) linebreaks + split lines longer than 80 characters? Do you need to remove html comments? Do you get extra points for documentation? Are your diretories clean? Do