From a0e5181e424fa1a320da259203975048e855632c Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Sun, 25 Nov 2007 19:42:40 +0000 Subject: added license info --- scripts/copyright.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 scripts/copyright.py (limited to 'scripts') diff --git a/scripts/copyright.py b/scripts/copyright.py new file mode 100755 index 00000000..051eb4ac --- /dev/null +++ b/scripts/copyright.py @@ -0,0 +1,26 @@ +import sys, os + +notice = "/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */\n" + +def fix_copyright_notice(filename): + f = open(filename, "rb") + lines = f.readlines() + f.close() + + if "/*" in lines[0] and "copyright" in lines[0]: + lines[0] = notice + else: + lines = [notice] + lines + file(filename, "wb").writelines(lines) + +for root, dirs, files in os.walk("src"): + for name in files: + filename = os.path.join(root, name) + process = 0 + if ".h" == filename[-2:] or ".c" == filename[-2:] or ".cpp" == filename[-4:]: + process = 1 + if os.sep + "external" + os.sep in filename: + process = 0 + + if process: + fix_copyright_notice(filename) -- cgit 1.4.1