This commit is contained in:
j 2013-02-12 20:05:30 +05:30
commit 5379b45b53
6 changed files with 24 additions and 18 deletions

View file

@ -2,9 +2,9 @@
<html>
<head>
<title>videopdf</title>
<script src="/static/js/jquery.js" type="text/javascript"></script>
<script src="/static/js/chunkupload.js" type="text/javascript"></script>
<script src="/static/js/upload.js?1" type="text/javascript"></script>
<script src="{{PREFIX}}/static/js/jquery.js" type="text/javascript"></script>
<script src="{{PREFIX}}/static/js/chunkupload.js" type="text/javascript"></script>
<script src="{{PREFIX}}/static/js/upload.js?1" type="text/javascript"></script>
</head>
<body>
<h1>videopdf</h1>

View file

@ -21,24 +21,25 @@ limitations under the License.
<title>{{item.filename}}</title>
<link rel="stylesheet" href="/static/viewer.css"/>
<link rel="stylesheet" href="{{PREFIX}}/static/viewer.css"/>
<script type="text/javascript" src="/static/oxjs/Ox.js"></script>
<script type="text/javascript" src="/static/compatibility.js"></script>
<script type="text/javascript" src="{{PREFIX}}/static/oxjs/Ox.js"></script>
<script type="text/javascript" src="{{PREFIX}}/static/compatibility.js"></script>
<!-- This snippet is used in production, see Makefile -->
<link rel="resource" type="application/l10n" href="/static/locale/locale.properties"/>
<script type="text/javascript" src="/static/l10n.js"></script>
<script type="text/javascript" src="/static/pdf.js"></script>
<script type="text/javascript" src="/static/debugger.js"></script>
<link rel="resource" type="application/l10n" href="{{PREFIX}}/static/locale/locale.properties"/>
<script type="text/javascript" src="{{PREFIX}}/static/l10n.js"></script>
<script type="text/javascript" src="{{PREFIX}}/static/pdf.js"></script>
<script type="text/javascript" src="{{PREFIX}}/static/debugger.js"></script>
<script type="text/javascript">
var PREFIX = '{{PREFIX}}';
var DEFAULT_URL = '{{item.get_absolute_pdf_url}}';
var videoOverlay = {{item.get_overlay|safe}};
var editable = {{editable}};
</script>
<script type="text/javascript" src="/static/videoOverlay.js"></script>
<script type="text/javascript" src="/static/viewer.js"></script>
<link rel="stylesheet" type="text/css" href="/static/css/videopdf.css"/>
<script type="text/javascript" src="{{PREFIX}}/static/videoOverlay.js"></script>
<script type="text/javascript" src="{{PREFIX}}/static/viewer.js"></script>
<link rel="stylesheet" type="text/css" href="{{PREFIX}}/static/css/videopdf.css"/>
</head>
<body>