diff options
Diffstat (limited to 'scripts/copyright.py')
| -rwxr-xr-x | scripts/copyright.py | 26 |
1 files changed, 26 insertions, 0 deletions
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) |