Merge branch 'gh-pages' of github.com:breunigs/ingress-intel-total-conversion into gh-pages

This commit is contained in:
Stefan Breunig 2013-02-08 09:49:56 +01:00
commit 12d1c03f97
3 changed files with 22 additions and 2 deletions

View File

@ -93,7 +93,7 @@ Contributors
Hacking
-------
Execute `./build.rb` to effectively concatenate `main.js` with all the files in `code/`. It generates the user script which may be installed into your browser.
Execute `./build.rb` or `./build.py` to effectively concatenate `main.js` with all the files in `code/`. It generates the user script which may be installed into your browser.
`style.css` contains most styles required for the user-script. The extra ones can be found in `code/boot.js#window.setupStyles`. Only CSS rules that depend on config variables should be defined there.

20
build.py Normal file
View File

@ -0,0 +1,20 @@
#!/usr/bin/env python
import glob
import time
def readfile(fn):
with open(fn, 'Ur') as f:
return f.read()
c = '\n\n'.join(map(readfile, glob.glob('code/*')))
n = time.strftime('%Y-%m-%d-%H%M%S')
m = readfile('main.js').replace('@@BUILDDATE@@', n)
m = m.split('@@INJECTHERE@@')
m.insert(1, c)
t = '\n\n'.join(m)
with open('total-conversion-build.user.js', 'w') as f:
f.write(t)
# vim: ai si ts=4 sw=4 sts=4 et

View File

@ -616,7 +616,7 @@ window.chat.setupTime = function() {
var updateTime = function() {
if(window.isIdle()) return;
var d = new Date();
inputTime.text(d.toLocaleTimeString().slice(0, 5));
inputTime.text(d.toISOString().slice(11, 16));
// update ON the minute (1ms after)
setTimeout(updateTime, (60 - d.getSeconds()) * 1000 + 1);
};