mirror of
https://github.com/rsms/inter.git
synced 2024-11-23 11:43:47 +03:00
37 lines
802 B
Python
Executable File
37 lines
802 B
Python
Executable File
#!/usr/bin/env python
|
|
# encoding: utf8
|
|
#
|
|
# Updates the "?v=x" in docs/inter-ui.css
|
|
#
|
|
from __future__ import print_function
|
|
import os, sys, re
|
|
from collections import OrderedDict
|
|
from ConfigParser import RawConfigParser
|
|
|
|
|
|
def main():
|
|
rootDir = os.path.dirname(os.path.dirname(__file__))
|
|
|
|
config = RawConfigParser(dict_type=OrderedDict)
|
|
config.read(os.path.join(rootDir, 'src', 'fontbuild.cfg'))
|
|
version = config.get('main', 'version')
|
|
|
|
regex = re.compile(r'(url\("[^"]+?v=)([^"]+)("\))')
|
|
|
|
cssFileName = os.path.join(rootDir, 'docs', 'inter-ui.css')
|
|
|
|
s = ''
|
|
with open(cssFileName, 'r') as f:
|
|
s = f.read()
|
|
|
|
s = regex.sub(
|
|
lambda m: '%s%s%s' % (m.group(1), version, m.group(3)),
|
|
s
|
|
)
|
|
|
|
with open(cssFileName, 'w') as f:
|
|
f.write(s)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|