-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathindex.html
212 lines (187 loc) · 6.94 KB
/
index.html
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html>
<head>
<title>JSPrintManager - Print Commands & Files, Manage Printers & Scan Docs from Javascript</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<meta charset="utf-8" />
<style>
table,
textarea {
width: 100%;
height: 200px;
padding: 3px;
}
a {
cursor: pointer;
}
.githubIcon {
margin-right: 10px;
color: #fff;
font-size: 32px;
}
.jspmStatus {
color: #fff;
margin-left: 10px;
}
.round {
display: inline-block;
height: 40px;
width: 40px;
line-height: 40px;
-moz-border-radius: 20px;
border-radius: 20px;
background-color: #cd2122;
color: #fff;
text-align: center;
}
.content {
padding-top: 80px;
padding-bottom: 20px;
}
.fileFormats {
background-color: #ececec;
font-weight: bold;
color: #666;
}
.topMost {
z-index: 1080;
}
.white {
color: #fff;
}
.iconDemo {
color: #cd2122;
}
.tab-content,
.nav-tabs {
border-bottom: 2px solid #cd2122;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
background: #cd2122;
border-bottom: 2px solid #cd2122;
color: #fff;
}
.nav-link {
color: #cd2122;
}
.terminal {
background-color: #171a1d;
color: #fff;
font-family: 'Courier New', Courier, monospace;
}
.terminal-light {
background-color:#def1ff;
color: #000;
font-family: 'Courier New', Courier, monospace;
}
.text-monospace {
font-family: 'Courier New', Courier, monospace;
}
.myDropDown, .myDropDown:hover{
display: inline-block;
width: 100%;
height: calc(1.5em + .75rem + 2px);
padding: .375rem 1.75rem .375rem .75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
vertical-align: middle;
background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;
border: 1px solid #ced4da;
border-radius: .25rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
text-decoration: none;
}
.dropdown-menu {
width: 100%;
}
</style>
</head>
<body>
<div id="root"></div>
<file-formats-modal id="files-requeriments"></file-formats-modal>
<script src="scripts/ie11.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.3.5/bluebird.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<!--JSPrintManager scripts-->
<script src="scripts/JSPrintManager.js"></script>
<!--<script src="https://cdn.jsdelivr.net/gh/gildas-lormeau/zip.js/dist/zip-full.min.js"></script>-->
<!--end JSPrintManager scripts-->
<!--Encoding tables scripts https://github.com/SheetJS/js-codepage -->
<script src="https://cdn.jsdelivr.net/gh/SheetJS/js-codepage/dist/cptable.js"></script>
<script src="https://cdn.jsdelivr.net/gh/SheetJS/js-codepage/dist/cputils.js"></script>
<!--end Encoding tables scripts-->
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
<script type="text/babel" src="components/JSPMStatus.js">
</script>
<script type="text/babel" src="components/DemoStartPage.js">
</script>
<script type="text/babel" src="components/InstallJSPMClientApp.js">
</script>
<script type="text/babel" src="components/WebsiteBlocked.js">
</script>
<script type="text/babel" src="components/Printers.js">
</script>
<script type="text/babel" src="components/PrintJobForRawCommands.js">
</script>
<script type="text/babel" src="components/PrintJobForFiles.js">
</script>
<script type="text/babel" src="components/PrintJob.js">
</script>
<script type="text/babel" src="components/PrintingMultiplePrintJobsSample.js">
</script>
<script type="text/babel" src="components/PrintingRawCommandsSample.js">
</script>
<script type="text/babel" src="components/PrintingFilesSample.js">
</script>
<script type="text/babel" src="components/PrintingPDFSample.js">
</script>
<script type="text/babel" src="components/PrintingTIFSample.js">
</script>
<script type="text/babel" src="components/PrintingFileGroupDuplexSample.js">
</script>
<script type="text/babel" src="components/PrintingDOCSample.js">
</script>
<script type="text/babel" src="components/PrintingXLSSample.js">
</script>
<script type="text/babel" src="components/PrintingTXTSample.js">
</script>
<script type="text/babel" src="components/PrintersInfoSample.js">
</script>
<script type="text/babel" src="components/ScanningSample.js">
</script>
<script type="text/babel" src="components/SerialPortBIDISample.js">
</script>
<script type="text/babel" src="components/PrintersWatcherSample.js">
</script>
<script type="text/babel" src="components/PrintingPwdProtectedFilesSample.js">
</script>
<script type="text/babel" src="components/TcpBIDISample.js">
</script>
<script type="text/babel" src="components/BTBIDISample.js">
</script>
<script type="text/babel" src="components/BTDevicesInfoSample.js">
</script>
<script type="text/babel" src="components/IPPSample.js">
</script>
<script type="text/babel" src="components/ClientInfo.js">
</script>
<script type="text/babel" src="components/App.js">
</script>
</body>
</html>