py3: Switch almost all shebang lines to use `python3`.
This causes `upgrade-zulip-from-git`, as well as a no-option run of
`tools/build-release-tarball`, to produce a Zulip install running
Python 3, rather than Python 2. In particular this means that the
virtualenv we create, in which all application code runs, is Python 3.
One shebang line, on `zulip-ec2-configure-interfaces`, explicitly
keeps Python 2, and at least one external ops script, `wal-e`, also
still runs on Python 2. See discussion on the respective previous
commits that made those explicit. There may also be some other
third-party scripts we use, outside of this source tree and running
outside our virtualenv, that still run on Python 2.
2017-08-02 23:15:16 +02:00
|
|
|
#!/usr/bin/env python3
|
2013-02-15 20:27:15 +01:00
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
# Generates the favicon images containing unread message counts.
|
|
|
|
|
|
|
|
# Open the SVG and find the number text elements using XPath
|
2017-10-14 10:46:09 +02:00
|
|
|
tree = ET.parse('orig.svg')
|
2013-02-15 20:27:15 +01:00
|
|
|
elems = [tree.getroot().findall(
|
|
|
|
".//*[@id='%s']/{http://www.w3.org/2000/svg}tspan" % (name,))[0]
|
2017-01-24 07:06:13 +01:00
|
|
|
for name in ('number_back', 'number_front')]
|
2013-02-15 20:27:15 +01:00
|
|
|
|
2016-03-10 18:43:31 +01:00
|
|
|
for i in range(1, 100):
|
2013-02-15 20:27:15 +01:00
|
|
|
# Prepare a modified SVG
|
|
|
|
s = '%2d' % (i,)
|
|
|
|
for e in elems:
|
|
|
|
e.text = s
|
2018-01-30 16:07:25 +01:00
|
|
|
with open('tmp.svg', 'wb') as out:
|
2013-02-15 20:27:15 +01:00
|
|
|
tree.write(out)
|
|
|
|
|
|
|
|
# Convert to PNG
|
|
|
|
subprocess.check_call(['inkscape', '--without-gui', '--export-area-page',
|
2018-01-30 16:07:25 +01:00
|
|
|
'--export-png=../../../static/images/favicon/favicon-%d.png' % (i,),
|
2016-12-11 14:30:45 +01:00
|
|
|
'tmp.svg'])
|