File: update_email_contact.py

package info (click to toggle)
vistrails 2.1.1-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 74,208 kB
  • ctags: 46,250
  • sloc: python: 316,267; xml: 52,512; sql: 3,627; php: 731; sh: 260; makefile: 108
file content (37 lines) | stat: -rw-r--r-- 1,077 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Finds all files matching extensions recursively in current directory (.)
# and updates tthe contact e-mail address

import re
import os

OLD_EMAIL = "Copyright (C) 2011-2012, NYU-Poly"
NEW_EMAIL = "Copyright (C) 2011-2014, NYU-Poly"
EXTENSIONS = [".py", ".xml", ".xsd", ".php", ".sql", ".sh", ".rst", ".tex",
              ".txt", "LICENSE", ".iss", ".sty", ".mako"]
IGNORE_LIST = ["update_email_contact.py"]

files = []
for (path, dnames, fnames) in os.walk('.'):
    for fn in fnames:
        for ext in EXTENSIONS:
            if fn.endswith(ext) and fn not in IGNORE_LIST:
                files.append(os.path.join(path, fn))
                break

print len(files), " files will be processed."

count = 0
for fname in files:
    fin = open(fname)
    all_lines = fin.read()
    fin.close()
    pos = all_lines.find(OLD_EMAIL)
    if pos > -1:
        print "Updating: %s"%fname
        newlines = all_lines.replace(OLD_EMAIL, NEW_EMAIL)
        fout = file(fname, 'w')
        fout.write(newlines)
        fout.close()
        count += 1
print count, " files updated "