Compare commits

..

No commits in common. "eff50be75fdde7463521d944492c2b3c126ddf15" and "5e37f71dd6fab893c590fe82605f47995644283a" have entirely different histories.

2 changed files with 1 additions and 14 deletions

View file

@ -33,19 +33,6 @@ for root, folders, files in os.walk(join(base, 'static')):
os.makedirs(target_folder) os.makedirs(target_folder)
os.symlink(rel_src, target) os.symlink(rel_src, target)
for img in ('logo.png', 'icon.png'):
f = join('/srv/pandora/static/png', img)
custom = join('/srv/pandora/static/png', img.replace('.png', '.%s.png' % name))
if os.path.exists(custom):
if not os.path.islink(f):
os.unlink(f)
else:
path = os.path.realpath(f)
if name not in path:
os.unlink(f)
if not os.path.exists(f):
os.symlink(os.path.basename(custom), f)
if overwrite: if overwrite:
os.chdir('/srv/pandora/static/js') os.chdir('/srv/pandora/static/js')
for filename, sitename in overwrite: for filename, sitename in overwrite:

View file

@ -291,7 +291,7 @@ pandora.ui.home = function() {
if (loadedCSS) { if (loadedCSS) {
callback() callback()
} else { } else {
Ox.getFile('/static/css/home.collectivecinema.css', function() { Ox.getFile('/static/css/home.css', function() {
loadedCSS = true loadedCSS = true
callback() callback()
}) })