2011-06-08 14:37:15 +05:30
|
|
|
import os
|
|
|
|
|
|
|
|
def replace_code(old, new):
|
|
|
|
txt = os.popen("""grep "%s" ./*/*/*/*.js""" % old).read().split()
|
|
|
|
txt = [t.split(':')[0] for t in txt]
|
|
|
|
txt = list(set(filter(lambda t: t.startswith('./'), txt)))
|
|
|
|
for t in txt:
|
|
|
|
if new:
|
|
|
|
code = open(t,'r').read().replace(old, new)
|
|
|
|
open(t, 'w').write(code)
|
|
|
|
print "Replaced for %s" % t
|
|
|
|
else:
|
|
|
|
print 'Found in %s' % t
|
|
|
|
|
|
|
|
if __name__=='__main__':
|
2011-07-05 14:41:36 +05:30
|
|
|
old = """cur_frm.cscript.get_tips(doc, cdt, cdn);"""
|
2011-07-05 10:54:05 +05:30
|
|
|
new = " "
|
2011-06-08 14:37:15 +05:30
|
|
|
replace_code(old, new)
|
2011-07-05 10:54:05 +05:30
|
|
|
|