/usr/share/pdf2htmlEX/manifest is in pdf2htmlex 0.12+ds-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | # pdf2htmlEX manifest
# Copyright (C) 2012,2013 Lu Wang <coolwanglu@gmail.com>
#
# Syntax
# The first char of each line is the command
# Empty lines are ignored
#
# # - comment
# @ - embed or link to a file from data dir, depending on the values of --embed-*** options
# $ - special use for pdf2htmlEX
#
# Special
# If a line contains """ only, all text until next """ will be included
#############
# Declaration - Do not modify
"""
<!DOCTYPE html>
<!-- Created by pdf2htmlEX (https://github.com/coolwanglu/pdf2htmlex) -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8"/>
<meta name="generator" content="pdf2htmlEX"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
"""
#############
# Styles
# base CSS styles - Do not modify
@base.min.css
# fancy CSS styles - Optional
@fancy.min.css
# PDF specific CSS styles - Do not modify
$css
#############
# UI stuffs, optional
# compatibility.min.js, extracted from PDF.js
# To support old browsers like IE9
@compatibility.js
# entry point of pdf2htmlEX.Viewer
# You can override default configuration by passing an object to the constructor of Viewer
# Refer to DEFAULT_CONFIG in viewer.js for possible keys
# E.g.
# pdf2htmlEX.defaultViewer = new pdf2htmlEX.Viewer({
# 'key_handler' : false
# });
@pdf2htmlEX.min.js
"""
<script>
try{
pdf2htmlEX.defaultViewer = new pdf2htmlEX.Viewer({});
}catch(e){}
</script>
"""
#############
# Do not modify
"""
<title></title>
</head>
<body>
"""
#############
# 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">
"""
<div id="sidebar">
"""
# container of outlines
"""
<div id="outline">
"""
$outline
"""
</div>
</div>
"""
#############
# The container of PDF pages
# check base.css for an example and requirements of its CSS styles
"""
<div id="page-container">
"""
$pages
"""
</div>
"""
#############
# The loading indicator
# shown when loading a page via ajax
# The default appearance should be invisible
# The 'active' class will be added when it is used
"""
<div class="loading-indicator">
"""
@pdf2htmlEX-64x64.png
"""
</div>
"""
#############
# Do not modify
"""
</body>
</html>
"""
# MANIFEST END
|