
24 Mar
2005
24 Mar
'05
3:29 p.m.
On Wed, 2005-03-23 at 20:09, Kees Cook wrote:
On Wed, Mar 23, 2005 at 06:36:06PM -0500, mental@...3... wrote:
- Anything more than ~10 lines or so warrants a copyright notice.
I think four is the lower legal limit for copyright in the US.
This will produce a list of all files touched by a given author, where the number of "+" lines is 10 or greater:
cvs log -wkeescook | egrep '^(Working|^date: )' | awk '{ if ($1 == "date:" && !shown && $9>=10) { shown=1; print file; } if ($1 == "Working") { shown=0; file=$3; } }'
Replace "keescook" with your sourceforge id.
This is helpful, but of course needs reviewing further since it cannot distinguish between reformatting and actual new/rewritten code.
-mental