build/ -> min/, Ox.UI/ -> UI/
This commit is contained in:
parent
747f5bc8a0
commit
714f495a3d
7 changed files with 9 additions and 9 deletions
|
@ -204,7 +204,7 @@ def update_static():
|
|||
oxjs_build = os.path.join(settings.STATIC_ROOT, 'oxjs/tools/build/build.py')
|
||||
if os.path.exists(oxjs_build):
|
||||
print 'update oxjs'
|
||||
if os.path.exists(os.path.join(settings.STATIC_ROOT, 'oxjs/build/Ox.Geo/json/Ox.Geo.json')):
|
||||
if os.path.exists(os.path.join(settings.STATIC_ROOT, 'oxjs/min/Geo/json/Geo.json')):
|
||||
geo = '-nogeo'
|
||||
else:
|
||||
geo = ''
|
||||
|
@ -244,7 +244,7 @@ def update_static():
|
|||
for f in (pandora_js, pandora_json):
|
||||
os.system('gzip -9 -c "%s" > "%s.gz"' % (f, f))
|
||||
|
||||
for root, folders, files in os.walk(os.path.join(settings.STATIC_ROOT, 'oxjs/build')):
|
||||
for root, folders, files in os.walk(os.path.join(settings.STATIC_ROOT, 'oxjs/min')):
|
||||
for f in files:
|
||||
if os.path.splitext(f)[-1] in ('.js', '.json'):
|
||||
f = os.path.join(root, f)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>{{settings.SITENAME}}</title>
|
||||
<script type="text/javascript" src="/static/oxjs/build/Ox.js"></script>
|
||||
<script type="text/javascript" src="/static/oxjs/min/Ox.js"></script>
|
||||
<script type="text/javascript" src="/static/js/embed/pandora.js?{{settings.CONFIG.site.version}}"></script>
|
||||
<meta name="google" value="notranslate"/>
|
||||
</head>
|
||||
|
|
|
@ -24,7 +24,7 @@ limitations under the License.
|
|||
|
||||
<link rel="stylesheet" href="/static/pdf.js/viewer.css"/>
|
||||
|
||||
<script type="text/javascript" src="/static/oxjs/build/Ox.js?{{settings.CONFIG.site.version}}"></script>
|
||||
<script type="text/javascript" src="/static/oxjs/min/Ox.js?{{settings.CONFIG.site.version}}"></script>
|
||||
<script type="text/javascript" src="/static/pdf.js/compatibility.js"></script>
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>We couldn't find what you're looking for.</title>
|
||||
<link rel="stylesheet" type="text/css" href="/static/oxjs/build/Ox.UI/css/Ox.UI.css"/>
|
||||
<link rel="stylesheet" type="text/css" href="/static/oxjs/min/UI/css/UI.css"/>
|
||||
<style>
|
||||
body {
|
||||
text-align: center;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>We will be back in a moment.</title>
|
||||
<link rel="stylesheet" type="text/css" href="/static/oxjs/build/Ox.UI/css/Ox.UI.css"/>
|
||||
<link rel="stylesheet" type="text/css" href="/static/oxjs/min/UI/css/UI.css"/>
|
||||
<style>
|
||||
body {
|
||||
text-align: center;
|
||||
|
|
|
@ -133,7 +133,7 @@ appPanel
|
|||
images.loadingIcon.style.OUserSelect = 'none';
|
||||
images.loadingIcon.style.WebkitUserSelect = 'none';
|
||||
images.loadingIcon.src = '/static/oxjs/' + (enableDebugMode ? 'dev' : 'build')
|
||||
+ '/Ox.UI/themes/' + theme + '/svg/symbolLoading.svg';
|
||||
+ '/UI/themes/' + theme + '/svg/symbolLoading.svg';
|
||||
callback(images);
|
||||
};
|
||||
images.logo.src = '/static/png/logo.png';
|
||||
|
@ -196,7 +196,7 @@ appPanel
|
|||
} else {
|
||||
script.onload = callback;
|
||||
}
|
||||
script.src = '/static/oxjs/' + (enableDebugMode ? 'dev' : 'build') + '/Ox.js?' + getPandoraVersion();
|
||||
script.src = '/static/oxjs/' + (enableDebugMode ? 'dev' : 'min') + '/Ox.js?' + getPandoraVersion();
|
||||
script.type = 'text/javascript';
|
||||
head.appendChild(script);
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ limitations under the License.
|
|||
|
||||
<link rel="stylesheet" href="/static/pdf.js/viewer.css"/>
|
||||
|
||||
<script type="text/javascript" src="/static/oxjs/build/Ox.js"></script>
|
||||
<script type="text/javascript" src="/static/oxjs/min/Ox.js"></script>
|
||||
<script type="text/javascript" src="compatibility.js"></script>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue