2014-05-09 22:49:33 +00:00
|
|
|
import urllib2
|
|
|
|
import re
|
|
|
|
import os
|
|
|
|
|
2015-09-08 18:31:28 +00:00
|
|
|
LOCAL_DIRECTORY = '/static/ldn/'
|
2014-05-09 22:49:33 +00:00
|
|
|
|
|
|
|
EXTERNAL_JS = [
|
|
|
|
'code.jquery.com/jquery.js',
|
2015-02-18 00:15:54 +00:00
|
|
|
'netdna.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js',
|
2016-05-17 20:29:24 +00:00
|
|
|
'ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js',
|
|
|
|
'ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-route.min.js',
|
|
|
|
'ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-sanitize.min.js',
|
|
|
|
'ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-animate.min.js',
|
|
|
|
'ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-cookies.min.js',
|
2016-04-01 17:55:29 +00:00
|
|
|
'cdn.jsdelivr.net/g/momentjs',
|
2014-05-09 22:49:33 +00:00
|
|
|
'cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.2.0/js/bootstrap-datepicker.min.js',
|
2016-04-01 17:55:29 +00:00
|
|
|
'cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/js/bootstrap-datetimepicker.min.js',
|
|
|
|
'cdn.jsdelivr.net/g/bootbox@4.1.0,underscorejs@1.5.2,restangular@1.2.0,d3js@3.3.3',
|
2016-06-21 18:11:43 +00:00
|
|
|
'cdn.ravenjs.com/3.1.0/angular/raven.min.js',
|
2016-06-22 18:50:59 +00:00
|
|
|
'cdn.jsdelivr.net/cal-heatmap/3.3.10/cal-heatmap.min.js',
|
2016-12-17 07:13:36 +00:00
|
|
|
'cdnjs.cloudflare.com/ajax/libs/angular-recaptcha/3.2.1/angular-recaptcha.min.js',
|
2014-05-09 22:49:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
EXTERNAL_CSS = [
|
2016-09-28 21:06:10 +00:00
|
|
|
'netdna.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.css',
|
2015-02-18 00:15:54 +00:00
|
|
|
'netdna.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css',
|
2016-04-01 17:55:29 +00:00
|
|
|
'fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700',
|
|
|
|
's3.amazonaws.com/cdn.core-os.net/icons/core-icons.css',
|
|
|
|
'cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/css/bootstrap-datetimepicker.min.css',
|
2016-06-22 18:50:59 +00:00
|
|
|
'cdn.jsdelivr.net/cal-heatmap/3.3.10/cal-heatmap.css',
|
2014-05-09 22:49:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
EXTERNAL_FONTS = [
|
2016-09-28 21:06:10 +00:00
|
|
|
'netdna.bootstrapcdn.com/font-awesome/4.6.0/fonts/fontawesome-webfont.eot?v=4.6.0',
|
|
|
|
'netdna.bootstrapcdn.com/font-awesome/4.6.0/fonts/fontawesome-webfont.woff?v=4.6.0',
|
|
|
|
'netdna.bootstrapcdn.com/font-awesome/4.6.0/fonts/fontawesome-webfont.ttf?v=4.6.0',
|
|
|
|
'netdna.bootstrapcdn.com/font-awesome/4.6.0/fonts/fontawesome-webfont.svg?v=4.6.0',
|
2016-08-12 19:41:01 +00:00
|
|
|
|
|
|
|
'netdna.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.eot',
|
|
|
|
'netdna.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.woff2',
|
|
|
|
'netdna.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.woff',
|
|
|
|
'netdna.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.ttf',
|
|
|
|
'netdna.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.svg',
|
2015-05-13 21:14:20 +00:00
|
|
|
]
|
2015-03-23 19:22:22 +00:00
|
|
|
|
2015-05-13 21:14:20 +00:00
|
|
|
EXTERNAL_CSS_FONTS = [
|
2015-12-10 19:10:12 +00:00
|
|
|
's3.amazonaws.com/cdn.core-os.net/icons/core-icons.eot',
|
|
|
|
's3.amazonaws.com/cdn.core-os.net/icons/core-icons.woff',
|
|
|
|
's3.amazonaws.com/cdn.core-os.net/icons/core-icons.ttf',
|
|
|
|
's3.amazonaws.com/cdn.core-os.net/icons/core-icons.svg',
|
2014-05-09 22:49:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_external_javascript(local=False):
|
|
|
|
if local:
|
|
|
|
return [LOCAL_DIRECTORY + format_local_name(src) for src in EXTERNAL_JS]
|
|
|
|
|
|
|
|
return ['//' + src for src in EXTERNAL_JS]
|
|
|
|
|
|
|
|
|
|
|
|
def get_external_css(local=False):
|
|
|
|
if local:
|
|
|
|
return [LOCAL_DIRECTORY + format_local_name(src) for src in EXTERNAL_CSS]
|
|
|
|
|
|
|
|
return ['//' + src for src in EXTERNAL_CSS]
|
|
|
|
|
|
|
|
|
|
|
|
def format_local_name(url):
|
|
|
|
filename = url.split('/')[-1]
|
|
|
|
filename = re.sub(r'[+,?@=:]', '', filename)
|
|
|
|
if not filename.endswith('.css') and not filename.endswith('.js'):
|
|
|
|
if filename.find('css') >= 0:
|
|
|
|
filename = filename + '.css'
|
|
|
|
else:
|
|
|
|
filename = filename + '.js'
|
2014-11-24 21:07:38 +00:00
|
|
|
|
2014-05-09 22:49:33 +00:00
|
|
|
return filename
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
for url in EXTERNAL_JS + EXTERNAL_CSS:
|
|
|
|
print 'Downloading %s' % url
|
|
|
|
response = urllib2.urlopen('https://' + url)
|
|
|
|
contents = response.read()
|
|
|
|
|
|
|
|
filename = format_local_name(url)
|
|
|
|
print 'Writing %s' % filename
|
|
|
|
with open(LOCAL_DIRECTORY + filename, 'w') as f:
|
|
|
|
f.write(contents)
|
|
|
|
|
2015-05-13 21:14:20 +00:00
|
|
|
for url in EXTERNAL_CSS_FONTS:
|
|
|
|
print 'Downloading %s' % url
|
|
|
|
response = urllib2.urlopen('https://' + url)
|
|
|
|
|
|
|
|
filename = os.path.basename(url).split('?')[0]
|
|
|
|
with open('static/ldn/' + filename, "wb") as local_file:
|
|
|
|
local_file.write(response.read())
|
2014-05-09 22:49:33 +00:00
|
|
|
|
|
|
|
for url in EXTERNAL_FONTS:
|
|
|
|
print 'Downloading %s' % url
|
|
|
|
response = urllib2.urlopen('https://' + url)
|
2014-11-24 21:07:38 +00:00
|
|
|
|
2014-05-09 22:49:33 +00:00
|
|
|
filename = os.path.basename(url).split('?')[0]
|
|
|
|
with open('static/fonts/' + filename, "wb") as local_file:
|
|
|
|
local_file.write(response.read())
|