update icons
This commit is contained in:
parent
43d7ec33ae
commit
89e215d93a
1 changed files with 17 additions and 0 deletions
17
install.py
17
install.py
|
@ -25,11 +25,28 @@ for root, folders, files in os.walk(join(base, 'static')):
|
||||||
for f in files:
|
for f in files:
|
||||||
src = join(root, f)
|
src = join(root, f)
|
||||||
target = src.replace(base, '/srv/pandora')
|
target = src.replace(base, '/srv/pandora')
|
||||||
|
target_folder = os.path.dirname(target)
|
||||||
|
if not os.path.exists(target_folder):
|
||||||
|
os.makedirs(target_folder)
|
||||||
rel_src = os.path.relpath(src, dirname(target))
|
rel_src = os.path.relpath(src, dirname(target))
|
||||||
if os.path.exists(target):
|
if os.path.exists(target):
|
||||||
os.unlink(target)
|
os.unlink(target)
|
||||||
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:
|
||||||
|
|
Loading…
Reference in a new issue