-
Notifications
You must be signed in to change notification settings - Fork 61
/
index.html
158 lines (138 loc) · 5.64 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
<!DOCTYPE html>
<!--
@license
©2023 Hyland Software, Inc. and its affiliates. All rights reserved.
All Hyland product names are registered or unregistered trademarks of Hyland Software, Inc. or its affiliates.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html lang="">
<head>
<meta charset="utf-8" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="generator" content="Polymer Starter Kit" />
<title><%= htmlWebpackPlugin.options.title %></title>
<!-- Place favicon.ico in the `app/` directory -->
<!-- Chrome for Android theme color -->
<meta name="theme-color" content="#2E3AA1" />
<!-- Web Application Manifest -->
<link rel="manifest" href="manifest.json" crossorigin="use-credentials" />
<!-- Tile color for Win8 -->
<meta name="msapplication-TileColor" content="#3372DF" />
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="Nuxeo" />
<link rel="icon" sizes="32x32" href="images/touch/favicon-32x32.png" />
<link rel="icon" sizes="16x16" href="images/touch/favicon-16x16.png" />
<link rel="shortcut icon" href="favicon.ico" />
<!-- Safari pinned tab icon -->
<link rel="mask-icon" href="images/touch/safari-pinned-tab.svg" color="#0066ff" />
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="Nuxeo" />
<link rel="apple-touch-icon" href="images/touch/apple-touch-icon.png" />
<!-- Tile icon for Win8 (144x144) -->
<meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png" />
<!-- XXX: disable zoom on mobile (fix for NXP-26424) -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<!-- Content security policy (needs Nuxeo.UI.config.expressions.eval = false) -->
<!-- <meta
http-equiv="Content-Security-Policy"
content="img-src data: blob: *; default-src blob: *; script-src data: * 'nonce-dummy'; style-src 'unsafe-inline' *; font-src data: *"
/> -->
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<nuxeo-connection
url="<%= htmlWebpackPlugin.options.nuxeo.url %>"
method="form"
repository-name="default"
></nuxeo-connection>
<nuxeo-app base-url="/" unresolved>
<div id="sidebar">
<img src="themes/default/logo.png" alt="logo" />
</div>
<div id="container">
<div id="toolbar"></div>
<span id="loading"></span>
</div>
</nuxeo-app>
<script src="vendor/webcomponentsjs/webcomponents-loader.js"></script>
<script src="vendor/html-imports/html-imports.min.js"></script>
<script src="vendor/web-animations/web-animations-next-lite.min.js"></script>
<script nonce="dummy">
/* eslint-disable no-var, no-unused-vars */
var Nuxeo = {
UI: {
bundles: <%= htmlWebpackPlugin.options.nuxeo.bundles %>,
config: {
fetch: {
document: ['properties'],
},
enrichers: {
document: [
'hasContent',
'firstAccessibleAncestor',
'permissions',
'breadcrumb',
'preview',
'favorites',
'subscribedNotifications',
'thumbnail',
'renditions',
'pendingTasks',
'runnableWorkflows',
'runningWorkflows',
'collections',
'audit',
'subtypes',
'tags',
'publications',
],
blob: ['appLinks', 'preview'],
},
// expressions: { eval: false },
dateFormat: 'LL',
dateTimeFormat: 'LLL',
firstDayOfWeek: '',
layouts: {
search: {
hrefBase: 'elements/search/',
},
},
/* analytics: {
documentDistribution: {
disableThreshold: 100, // uncomment to set the threshold value that disables the distribution analytics
}
}, */
// pageprovider: { method: 'post', }, // uncomment to enable search using POST (see NXP-29126)
// router: { key: { document: 'uid', }, }, // uncomment to enable navigation by UID (see WEBUI-14)
/* selection: { // uncomment to enable select all items in listings
selectAllEnabled: true
}, */
/*user: {
management: {
fetch: {
document: ['properties'],
},
},
},*/
},
},
};
/* eslint-enable no-var, no-unused-vars */
</script>
<!-- <script>
window.addEventListener('load', () => navigator.serviceWorker.register('sw.js?ts=<%= Date.now() %>'));
</script> -->
</body>
</html>