-
-
Notifications
You must be signed in to change notification settings - Fork 581
/
Copy pathgenerate_icon_font.py
54 lines (43 loc) · 1.66 KB
/
generate_icon_font.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
import sys
import shutil
from lib import utils as Utils
def Main (argv):
toolsDir = os.path.dirname (os.path.abspath (__file__))
rootDir = os.path.dirname (toolsDir)
os.chdir (rootDir)
iconsDir = os.path.join (rootDir, 'assets', 'icons')
tempDir = os.path.join ('build', 'temp')
if os.path.exists (tempDir):
shutil.rmtree (tempDir)
fixedIconsDir = os.path.join (tempDir, 'icons')
if not os.path.exists (fixedIconsDir):
os.makedirs (fixedIconsDir)
iconFontDir = os.path.join (tempDir, 'iconfont')
if not os.path.exists (iconFontDir):
os.makedirs (iconFontDir)
Utils.RunCommand ('oslllo-svg-fixer', [
'-s', iconsDir,
'-d', fixedIconsDir
])
Utils.RunCommand ('svgo', [fixedIconsDir])
Utils.RunCommand ('fantasticon', [
fixedIconsDir,
'-o', iconFontDir,
'-t', 'woff',
'-n', 'O3DVIcons'
])
websiteCssDir = os.path.join (rootDir, 'source', 'website', 'css')
websiteIconFontDir = os.path.join (websiteCssDir, 'O3DVIcons')
if not os.path.exists (websiteIconFontDir):
os.makedirs (websiteIconFontDir)
websiteIconsCssPath = os.path.join (websiteCssDir, 'icons.css')
shutil.copy (os.path.join (iconFontDir, 'O3DVIcons.css'), websiteIconsCssPath)
Utils.ReplaceStringInFile (websiteIconsCssPath, './O3DVIcons.woff', 'O3DVIcons/O3DVIcons.woff')
shutil.copy (os.path.join (iconFontDir, 'O3DVIcons.woff'), websiteIconFontDir)
infoCssDir = os.path.join (rootDir, 'website', 'info', 'css')
shutil.copy (os.path.join (iconFontDir, 'O3DVIcons.css'), os.path.join (infoCssDir, 'icons.css'))
shutil.copy (os.path.join (iconFontDir, 'O3DVIcons.woff'), os.path.join (infoCssDir, 'O3DVIcons.woff'))
shutil.rmtree (tempDir)
return 0
sys.exit (Main (sys.argv))