[themes] Do not automatically download symbols.json
In order to use symbol files, symbol.json needs to be created manually now. Also, remove symbol usage from the prepackaged themes to avoid breakage. fixes #216
This commit is contained in:
parent
1a507ec0cd
commit
13d27d4b81
2 changed files with 13 additions and 16 deletions
|
@ -61,20 +61,17 @@ class Theme(object):
|
|||
except Exception:
|
||||
pass
|
||||
try:
|
||||
if not os.path.exists("{}/symbols.json".format(path)):
|
||||
data = yaml.load(requests.get("https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/src/icons.yml").text)
|
||||
with io.open("{}/symbols.json".format(path), "w") as f:
|
||||
json.dump(data, f)
|
||||
data = json.load(io.open("{}/symbols.json".format(path)))
|
||||
self._symbols = {}
|
||||
for icon in data["icons"]:
|
||||
code = int(icon["unicode"], 16)
|
||||
try:
|
||||
code = unichr(code)
|
||||
except Exception:
|
||||
code = chr(code)
|
||||
self._symbols["${{{}}}".format(icon["id"])] = code
|
||||
self._symbols["${{{}}}".format(icon["name"])] = code
|
||||
if os.path.exists("{}/symbols.json".format(path)):
|
||||
data = json.load(io.open("{}/symbols.json".format(path)))
|
||||
self._symbols = {}
|
||||
for icon in data["icons"]:
|
||||
code = int(icon["unicode"], 16)
|
||||
try:
|
||||
code = unichr(code)
|
||||
except Exception:
|
||||
code = chr(code)
|
||||
self._symbols["${{{}}}".format(icon["id"])] = code
|
||||
self._symbols["${{{}}}".format(icon["name"])] = code
|
||||
except Exception as e:
|
||||
logging.error("failed to load symbols: {}".format(str(e)))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue