-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
247 lines (214 loc) · 11.9 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<!--
Copyright (c) 2021 European Union
Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission – subsequent versions of the EUPL (the “Licence”); You may not use this work except in compliance with the Licence. You may obtain a copy of the Licence at:
https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an “AS IS” basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Licence for the specific language governing permissions and limitations under the Licence.
-->
<title>ESPD Demo</title>
<!-- Favicon -->
<link rel="icon" href="favicon.ico" sizes="any" type="image/ico">
<!-- Required Stylesheets -->
<link type="text/css" rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="https://unpkg.com/[email protected]/dist/bootstrap-vue.css" />
<!-- Load polyfills to support older browsers -->
<!-- Blocked by Edge so getting rid of it
<script src="https://polyfill.io/v3/polyfill.min.js?features=es2015%2CIntersectionObserver"></script>
-->
<!-- Required scripts -->
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/vuex.js"></script>
<script src="https://unpkg.com/[email protected]/dist/bootstrap-vue.js"></script>
<!-- Load the following for BootstrapVueIcons support -->
<script src="https://unpkg.com/[email protected]/dist/bootstrap-vue-icons.min.js"></script>
<!-- Extra libraries needed by BootstrapVue -->
<script src="https://unpkg.com/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/portal-vue.umd.min.js"></script>
<!-- Vue Internationalization framework -->
<script src="https://unpkg.com/vue-i18n@8"></script>
<!-- Vue flag icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lipis/[email protected]/css/flag-icons.min.css" />
<!-- Custom stylesheet -->
<link rel="stylesheet" href="src/css/footer.css" />
<!-- PDFMake framework -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.12/pdfmake.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.12/vfs_fonts.min.js"></script>
<!-- Handlebars famework -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.7.8/handlebars.min.js"></script>
<!-- SheetJS framework -->
<script src="https://cdn.sheetjs.com/xlsx-0.20.3/package/dist/xlsx.full.min.js"></script>
<!-- JSZip v3.10.1 for archiving and export of XML distribution -->
<script src="src/jszip/jszip.min.js"></script>
<script src="src/jszip/jszip-utils.min.js"></script>
<!-- ExcelJS v4.4.0 for Excel export -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.26.0/polyfill.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/exceljs.min.js"></script>
<!-- XML Builder for ESPD Request and Response -->
<script src="https://cdn.jsdelivr.net/npm/xmlbuilder2/lib/xmlbuilder2.min.js"></script>
<!-- PouchDB for storage in browser -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/pouchdb.min.js"></script>
<!-- Translation file -->
<script src="src/js/messages.js"></script>
<!-- Utility library and functions -->
<script src="src/js/utils.js"></script>
<script src="src/js/pdb.js"></script>
<script src="src/js/espd.js"></script>
<!-- Vue components and application logic -->
<script src="ESPD/model/espd_common.js"></script>
<script src="ESPD/model/espd_v3.3.0.js"></script>
<script src="ESPD/model/espd_response_v3.3.0.js"></script>
<script src="ESPD/model/espd_v4.0.0.js"></script>
<script src="ESPD/model/espd_response_v4.0.0.js"></script>
<script src="ESPD/examples/startComponent.js"></script>
<script src="ESPD/examples/procedureComponent.js"></script>
<script src="ESPD/examples/exclusionGrounds.js"></script>
<script src="ESPD/examples/selectionCriteria.js"></script>
<script src="ESPD/examples/ESPDdownload.js"></script>
<script src="src/js/header.js"></script>
<script src="src/js/footer.js"></script>
<script src="src/js/home.js"></script>
<script src="src/js/distribution.js"></script>
<script src="src/js/codelists.js"></script>
<script src="src/js/model.js"></script>
<script src="src/js/service.js"></script>
<script src="src/js/uuid.js"></script>
</head>
<body>
<!-- Our application root element -->
<div id="app">
<header style="border-bottom: 6px solid #2c862d">
<component v-bind:is="currentHeader"></component>
</header>
<main>
<!-- Top menu -->
<div class="mx-3 my-2">
<b-nav tabs>
<b-nav-item id="pov-distribution" href="#" @click="doShow('distribution')">{{$t("mainmenu.distribution")}}</b-nav-item>
<b-nav-item id="pov-codelists" href="#" @click="doShow('codelists')">{{$t("mainmenu.codelists")}}</b-nav-item>
<b-nav-item id="pov-uuid" href="#" @click="doShow('uuid')">{{$t("mainmenu.uuid")}}</b-nav-item>
<b-nav-item id="pov-view" href="#" @click="doShow('model')">{{$t("mainmenu.model")}}</b-nav-item>
<b-nav-item id="pov-examples" href="#" @click="doShow('service')">{{$t("mainmenu.service")}}</b-nav-item>
</b-nav>
<!-- Main content here -->
<component v-bind:is="mainComponent" ref="mainComponent"></component>
<b-popover target="pov-distribution" triggers="" :show.sync="povDistribution" placement="bottom" container="app" ref="povdist">
<template #title>
Section description
</template>
<div>
<b-row class="my-2">
<b-col>
Export ESPD EDM artifacts allow you to select ESPD version and download Excel files for Code Lists and for Model and Data Structure.
The Code Lists can be downloaded in XML gnericode format as archive.
</b-col>
</b-row>
<b-row>
<b-col>
<b-button @click="showNext(0)" size="sm" variant="warning">Cancel</b-button>
</b-col>
<b-col class="text-right">
<b-button @click="showNext(1)" size="sm" variant="primary">Next</b-button>
</b-col>
</b-row>
</div>
</b-popover>
<b-popover target="pov-codelists" triggers="" :show.sync="povCodeLists" placement="bottom" container="app" ref="povcl">
<template #title>
Section description
</template>
<div>
<b-row class="my-2">
<b-col>
Explore ESPD Code Lists in detail. You can select ESPD version and specific Code List. You can explore the elements.
We have external (EU Vocabularies) and technical (ESPD) Code Lists. You can view and download each specific Code List.
</b-col>
</b-row>
<b-row>
<b-col>
<b-button @click="showNext(0)" size="sm" variant="warning">Cancel</b-button>
</b-col>
<b-col class="text-right">
<b-button @click="showNext(2)" size="sm" variant="primary">Next</b-button>
</b-col>
</b-row>
</div>
</b-popover>
<b-popover target="pov-uuid" triggers="" :show.sync="povUUID" placement="bottom" container="app" ref="povuuid">
<template #title>
Section description
</template>
<div>
<b-row class="my-2">
<b-col>
Explore ESPD - eCERTIS integration for Exclusion Grounds and Selection Criteria for each ESPD version.
You can check live the details for each criteria directly in eCertis.
Extensive search based on any text part of the elements.
</b-col>
</b-row>
<b-row>
<b-col>
<b-button @click="showNext(0)" size="sm" variant="warning">Cancel</b-button>
</b-col>
<b-col class="text-right">
<b-button @click="showNext(3)" size="sm" variant="primary">Next</b-button>
</b-col>
</b-row>
</div>
</b-popover>
<b-popover target="pov-view" triggers="" :show.sync="povView" placement="bottom" container="app" ref="povview">
<template #title>
Section description
</template>
<div>
<b-row class="my-2">
<b-col>
View ESPD Model in web fotmat. You can explore and evaluate User Experience for ESPD versions that are not
implemented yet or do not have a publcly availavle ESPD Service.
</b-col>
</b-row>
<b-row>
<b-col>
<b-button @click="showNext(0)" size="sm" variant="warning">Cancel</b-button>
</b-col>
<b-col class="text-right">
<b-button @click="showNext(4)" size="sm" variant="primary">Next</b-button>
</b-col>
</b-row>
</div>
</b-popover>
<b-popover target="pov-examples" triggers="" :show.sync="povExamples" placement="bottom" container="app" ref="povexam">
<template #title>
Section description
</template>
<div>
<b-row class="my-2">
<b-col>
Create ESPD Request and ESPD Response documents in order to test and evaluate the possible implemetation of latest
ESPD version. We strongly recommend to updated to the latest version of ESPD. This section is developed for both
ESPD Service Implementers and ESPD actors (Contractig Authority and Economic Operator).
</b-col>
</b-row>
<b-row>
<b-col>
<b-button @click="showNext(0)" size="sm" variant="warning">Done</b-button>
</b-col>
</b-row>
</div>
</b-popover>
</div>
</main>
<!--<footer class="footer">-->
<!-- We want footer content here -->
<!--<component v-bind:is="currentFooter"></component>-->
<!--</footer>-->
</div>
<!-- Start running your app -->
<script src="src/js/app.js"></script>
</body>
</html>