first cut for lazy loading framework

This commit is contained in:
Rushabh Mehta
2011-09-05 18:43:09 +05:30
parent 09938bda69
commit 66ac2b018a
1512 changed files with 832 additions and 0 deletions

View 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 = """cur_frm.cscript.get_tips(doc, cdt, cdn);"""
new = " "
replace_code(old, new)