mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-17 08:35:00 +00:00
Sourced wnframework-modules from Google Code as erpnext
This commit is contained in:
19
replacecode.py
Normal file
19
replacecode.py
Normal file
@@ -0,0 +1,19 @@
|
||||
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__':
|
||||
old = """\.button("""
|
||||
new = ""
|
||||
replace_code(old, new)
|
||||
|
||||
Reference in New Issue
Block a user