pdf2htmlEX/share/manifest

133 lines
2.5 KiB
Plaintext
Raw Normal View History

# pdf2htmlEX manifest
2013-04-30 04:20:31 +00:00
# Copyright (C) 2012,2013 Lu Wang <coolwanglu@gmail.com>
2012-09-12 15:26:14 +00:00
#
# Syntax
# The first char of each line is the command
# Empty lines are ignored
#
# # - comment
2013-09-27 11:48:40 +00:00
# @ - embed or link to a file from data dir, depending on the values of --embed-*** options
2012-09-12 15:26:14 +00:00
# $ - special use for pdf2htmlEX
#
# Special
# If a line contains """ only, all text until next """ will be included
# #TEST_IGNORE_BEGIN & #TEST_IGNORE_END are used for unittest
2012-09-12 15:26:14 +00:00
2013-10-04 07:17:21 +00:00
#############
2013-09-29 03:00:29 +00:00
# Declaration - Do not modify
2012-09-12 15:26:14 +00:00
"""
<!DOCTYPE html>
2013-10-04 07:17:21 +00:00
<!-- Created by pdf2htmlEX (https://github.com/coolwanglu/pdf2htmlex) -->
2014-07-12 00:45:20 +00:00
<html xmlns="http://www.w3.org/1999/xhtml">
2012-09-12 15:26:14 +00:00
<head>
2014-07-12 00:45:20 +00:00
<meta charset="utf-8"/>
<meta name="generator" content="pdf2htmlEX"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
2012-09-12 15:26:14 +00:00
"""
2013-10-04 07:17:21 +00:00
#############
# Styles
2013-09-29 03:00:29 +00:00
# base CSS styles - Do not modify
2013-11-05 20:48:28 +00:00
@base.min.css
2013-09-29 03:00:29 +00:00
# fancy CSS styles - Optional
2013-11-05 20:48:28 +00:00
@fancy.min.css
2013-09-29 03:00:29 +00:00
# PDF specific CSS styles - Do not modify
2012-09-12 15:26:14 +00:00
$css
2013-10-04 07:17:21 +00:00
#############
# UI stuffs, optional
2013-11-06 08:33:15 +00:00
# compatibility.min.js, extracted from PDF.js
# To support old browsers like IE9
#TEST_IGNORE_BEGIN
2013-11-06 08:33:15 +00:00
@compatibility.min.js
#TEST_IGNORE_END
2013-11-06 08:33:15 +00:00
# entry point of pdf2htmlEX.Viewer
2013-10-07 07:25:47 +00:00
# You can override default configuration by passing an object to the constructor of Viewer
2013-10-19 09:03:16 +00:00
# Refer to DEFAULT_CONFIG in viewer.js for possible keys
2013-11-07 08:11:58 +00:00
# E.g.
# pdf2htmlEX.defaultViewer = new pdf2htmlEX.Viewer({
2013-11-16 08:50:18 +00:00
# 'key_handler' : false
2013-11-07 08:11:58 +00:00
# });
#TEST_IGNORE_BEGIN
2013-10-22 07:03:07 +00:00
@pdf2htmlEX.min.js
2012-09-12 15:26:14 +00:00
"""
<script>
2013-09-28 07:01:15 +00:00
try{
2013-11-07 08:11:58 +00:00
pdf2htmlEX.defaultViewer = new pdf2htmlEX.Viewer({});
2013-09-28 07:01:15 +00:00
}catch(e){}
2012-09-25 14:24:36 +00:00
</script>
"""
#TEST_IGNORE_END
2012-09-25 14:24:36 +00:00
2013-10-04 07:17:21 +00:00
#############
2013-09-29 03:00:29 +00:00
# Do not modify
"""
2012-09-12 15:26:14 +00:00
<title></title>
</head>
<body>
2013-01-28 10:46:44 +00:00
"""
2013-10-04 07:17:21 +00:00
#############
2013-06-12 15:53:14 +00:00
# The sidebar
# By default this is hidden, pdf2htmlEX.js will add the 'opened' class if it is not empty
# You can add a class 'opened' here if you want it always opened or you don't use pdf2htmlEX.js
# e.g.
# <div id="sidebar" class="opened">
#TEST_IGNORE_BEGIN
"""
<div id="sidebar">
"""
# container of outlines
"""
<div id="outline">
"""
2013-01-28 12:00:20 +00:00
$outline
2013-01-28 10:46:44 +00:00
"""
</div>
</div>
2012-09-12 15:26:14 +00:00
"""
#TEST_IGNORE_END
2012-09-12 15:26:14 +00:00
2013-10-04 07:17:21 +00:00
#############
# The container of PDF pages
# check base.css for an example and requirements of its CSS styles
"""
<div id="page-container">
"""
2012-09-12 15:26:14 +00:00
$pages
"""
</div>
"""
2013-10-04 07:17:21 +00:00
#############
2013-09-29 03:00:29 +00:00
# The loading indicator
2013-09-28 03:35:54 +00:00
# shown when loading a page via ajax
2013-11-19 08:18:17 +00:00
# The default appearance should be invisible
# The 'active' class will be added when it is used
#TEST_IGNORE_BEGIN
2013-09-28 03:35:54 +00:00
"""
<div class="loading-indicator">
2013-09-28 03:35:54 +00:00
"""
@pdf2htmlEX-64x64.png
"""
</div>
"""
#TEST_IGNORE_END
2013-09-28 03:35:54 +00:00
2013-10-04 07:17:21 +00:00
#############
2013-09-29 03:00:29 +00:00
# Do not modify
"""
2012-09-12 15:26:14 +00:00
</body>
</html>
"""
# MANIFEST END