37 lines
797 B
Python
Executable File
37 lines
797 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import glob
|
|
import time
|
|
import re
|
|
import io
|
|
|
|
def readfile(fn):
|
|
with io.open(fn, 'Ur', encoding='utf8') as f:
|
|
return f.read()
|
|
|
|
def loaderString(var):
|
|
fn = var.group(1)
|
|
return readfile(fn).replace('\n', '\\n').replace('\'', '\\\'')
|
|
|
|
def loaderRaw(var):
|
|
fn = var.group(1)
|
|
return readfile(fn)
|
|
|
|
|
|
c = '\n\n'.join(map(readfile, glob.glob('code/*')))
|
|
n = time.strftime('%Y-%m-%d-%H%M%S')
|
|
m = readfile('main.js')
|
|
|
|
m = m.split('@@INJECTHERE@@')
|
|
m.insert(1, c)
|
|
m = '\n\n'.join(m)
|
|
|
|
m = m.replace('@@BUILDDATE@@', n)
|
|
m = re.sub('@@INCLUDERAW:([0-9a-zA-Z_./-]+)@@', loaderRaw, m)
|
|
m = re.sub('@@INCLUDESTRING:([0-9a-zA-Z_./-]+)@@', loaderString, m)
|
|
|
|
with io.open('iitc-debug.user.js', 'w', encoding='utf8') as f:
|
|
f.write(m)
|
|
|
|
# vim: ai si ts=4 sw=4 sts=4 et
|