annotate client/src/components/importconfiguration/types/Fairwaymarks.vue @ 5627:7768f14f6535 729-node-js-newer-version

Transformed scss variables into css custom properties
author Luisa Beerboom <lbeerboom@intevation.de>
date Tue, 09 May 2023 13:17:58 +0200
parents 1ff56484db4e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
1 <template>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
2 <div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
3 <div class="d-flex px-2">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
4 <div class="flex-column w-100">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
5 <div class="flex-row text-left">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
6 <small class="text-muted"> <translate>URL</translate> </small>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
7 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
8 <div class="w-100">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
9 <input
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
10 @input="urlChanged"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
11 class="url form-control form-control-sm"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
12 type="url"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
13 :value="url"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
14 />
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
15 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
16 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
17 </div>
4901
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
18 <div class="d-flex px-2">
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
19 <div class="flex-column w-100">
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
20 <div class="flex-row text-left">
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
21 <small class="text-muted">
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
22 <translate>Type of mark</translate>
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
23 </small>
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
24 </div>
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
25 <div class="w-50 mt-2">
4916
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
26 <template v-if="isUpdate">
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
27 <select v-model="selectedMark" class="form-control form-control-sm">
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
28 <option
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
29 v-for="(option, value) in $options.FAIRWAYMARKS"
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
30 :key="value"
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
31 :value="value"
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
32 >{{ option }}</option
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
33 >
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
34 </select>
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
35 </template>
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
36 <template v-else="">
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
37 <span class="pl-1">{{ selectedMark }}</span>
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
38 </template>
4901
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
39 </div>
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
40 </div>
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
41 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
42 <div class="d-flex px-2">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
43 <div class="flex-column mt-2 mr-3 w-50">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
44 <div class="flex-row text-left">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
45 <small class="text-muted"> <translate>Featuretype</translate> </small>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
46 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
47 <div class="w-100">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
48 <input
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
49 @input="featureTypeChanged"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
50 class="featuretype form-control form-control-sm"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
51 type="text"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
52 :value="featureType"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
53 />
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
54 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
55 <div v-if="!featureType" class="d-flex flex-row">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
56 <small
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
57 ><translate class="text-danger"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
58 >Please enter a Featuretype</translate
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
59 ></small
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
60 >
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
61 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
62 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
63 <div class="flex-column mt-2 w-50">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
64 <div class="flex-row text-left">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
65 <small class="text-muted"> <translate>SortBy</translate> </small>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
66 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
67 <div class="w-100">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
68 <input
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
69 @input="sortByChanged"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
70 class="sortby form-control form-control-sm"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
71 type="text"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
72 :value="sortBy"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
73 />
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
74 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
75 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
76 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
77 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
78 </template>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
79
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
80 <script>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
81 /* This is Free Software under GNU Affero General Public License v >= 3.0
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
82 * without warranty, see README.md and license for details.
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
83 *
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
84 * SPDX-License-Identifier: AGPL-3.0-or-later
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
85 * License-Filename: LICENSES/AGPL-3.0.txt
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
86 *
5268
1ff56484db4e Made SortBy parameter in WMS import optional
wilde@azure1.rgb.intevation.de
parents: 5158
diff changeset
87 * Copyright (C) 2018, 2019, 2020 by via donau
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
88 * – Österreichische Wasserstraßen-Gesellschaft mbH
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
89 * Software engineering by Intevation GmbH
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
90 *
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
91 * Author(s):
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
92 * Thomas Junk <thomas.junk@intevation.de>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
93 */
4989
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
94 import app from "@/main";
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
95
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
96 export default {
4916
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
97 name: "fairwaymarks",
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
98 props: ["url", "featureType", "sortBy", "mark", "isUpdate"],
4901
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
99 computed: {
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
100 selectedMark: {
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
101 get() {
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
102 return this.mark;
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
103 },
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
104 set(value) {
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
105 this.selected = value;
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
106 this.$emit("selectedMarkChanged", value);
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
107 }
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
108 }
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
109 },
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
110 methods: {
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
111 urlChanged(e) {
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
112 this.$emit("urlChanged", e.target.value);
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
113 },
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
114 featureTypeChanged(e) {
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
115 this.$emit("featureTypeChanged", e.target.value);
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
116 },
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
117 sortByChanged(e) {
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
118 this.$emit("sortByChanged", e.target.value);
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
119 }
4901
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
120 },
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
121 FAIRWAYMARKS: {
5158
c8d36d585f6f Commented unavailable feature types in fairway marks import.
Raimund Renkert <raimund@renkert.org>
parents: 4989
diff changeset
122 // Feature types not available from d4d wfs source are not selectable.
c8d36d585f6f Commented unavailable feature types in fairway marks import.
Raimund Renkert <raimund@renkert.org>
parents: 4989
diff changeset
123 // bcnisd: app.$gettext("Beacon, isolated danger (MARITIME/Hydro feature)"),
c8d36d585f6f Commented unavailable feature types in fairway marks import.
Raimund Renkert <raimund@renkert.org>
parents: 4989
diff changeset
124 // bcnlat_hydro: app.$gettext("Beacon, lateral (MARITIME/Hydro feature)"),
4989
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
125 bcnlat_ienc: app.$gettext("Beacon, lateral (IENC feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
126 boycar: app.$gettext("Buoy, cardinal (MARITIME/Hydro feature)"),
5158
c8d36d585f6f Commented unavailable feature types in fairway marks import.
Raimund Renkert <raimund@renkert.org>
parents: 4989
diff changeset
127 // boyisd: app.$gettext("Buoy, isolated danger (MARITIME/Hydro feature)"),
4989
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
128 boylat_hydro: app.$gettext("Buoy, lateral (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
129 boylat_ienc: app.$gettext("Buoy, lateral (IENC feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
130 boysaw: app.$gettext("Buoy, safe water (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
131 boyspp: app.$gettext(
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
132 "Buoy, special purpose/general (MARITIME/Hydro feature)"
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
133 ),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
134 daymar_hydro: app.$gettext("Daymark (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
135 daymar_ienc: app.$gettext("Daymark (IENC feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
136 lights: app.$gettext("Light (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
137 rtpbcn: app.$gettext("Radar transponder beacon (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
138 topmar: app.$gettext("Topmark (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
139 notmrk: app.$gettext("Notice mark (IENC feature)")
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
140 }
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
141 };
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
142 </script>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
143
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
144 <style></style>