annotate client/public/index.html @ 5560:f2204f91d286

Join the log lines of imports to the log exports to recover data from them. Used in SR export to extract information that where in the meta json but now are only found in the log.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 09 Feb 2022 18:34:40 +0100
parents 7a3ace19dc56
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1364
0c5cbbafbd94 add headers license for some client files
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1145
diff changeset
1 <!--
0c5cbbafbd94 add headers license for some client files
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1145
diff changeset
2 This is Free Software under GNU Affero General Public License v >= 3.0
1367
5d4bfe4fa13c client: improve header infos (minor)
Bernhard Reiter <bernhard@intevation.de>
parents: 1364
diff changeset
3 without warranty, see README.md and license for details.
5d4bfe4fa13c client: improve header infos (minor)
Bernhard Reiter <bernhard@intevation.de>
parents: 1364
diff changeset
4
1364
0c5cbbafbd94 add headers license for some client files
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1145
diff changeset
5 SPDX-License-Identifier: AGPL-3.0-or-later
0c5cbbafbd94 add headers license for some client files
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1145
diff changeset
6 License-Filename: LICENSES/AGPL-3.0.txt
0c5cbbafbd94 add headers license for some client files
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1145
diff changeset
7
2891
4cebd0a1f41f client: update creation year on main html
Bernhard Reiter <bernhard@intevation.de>
parents: 1367
diff changeset
8 Copyright (C) 2018, 2019 by via donau
1364
0c5cbbafbd94 add headers license for some client files
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1145
diff changeset
9 – Österreichische Wasserstraßen-Gesellschaft mbH
0c5cbbafbd94 add headers license for some client files
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1145
diff changeset
10 Software engineering by Intevation GmbH
0c5cbbafbd94 add headers license for some client files
Fadi Abbud <fadi.abbud@intevation.de>
parents: 1145
diff changeset
11 -->
3
1597506a2241 merge with vue-cli
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
12 <!DOCTYPE html>
1597506a2241 merge with vue-cli
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
13 <html>
1145
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
14 <head>
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
15 <meta charset="utf-8" />
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
16 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
17 <meta name="viewport" content="width=device-width,initial-scale=1.0" />
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
18 <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
4778
7a3ace19dc56 window title configurable
Thomas Junk <thomas.junk@intevation.de>
parents: 2891
diff changeset
19 <title><%= process.env.VUE_APP_WINDOWTITLE || VUE_APP_TITLE %></title>
1145
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
20 <style>
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
21 html {
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
22 height: 100%;
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
23 width: 100%;
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
24 margin: 0 auto;
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
25 }
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
26 body {
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
27 height: 100%;
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
28 width: 100%;
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
29 background-color: #efefef !important;
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
30 }
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
31 </style>
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
32 </head>
427
e4b961315e9f feat: Pagination added to usermanagement
Thomas Junk <thomas.junk@intevation.de>
parents: 13
diff changeset
33
1145
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
34 <body>
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
35 <noscript>
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
36 <strong
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
37 >This webapplication needs Javascript enabled to run. Please enable it
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
38 to continue.</strong
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
39 >
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
40 </noscript>
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
41 <div id="app"></div>
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
42 <!-- built files will be auto injected -->
2d34715dd52e feat: Import of sounding results
Thomas Junk <thomas.junk@intevation.de>
parents: 595
diff changeset
43 </body>
3
1597506a2241 merge with vue-cli
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
44 </html>