annotate client/src/components/importconfiguration/types/Fairwaymarks.vue @ 4902:60d9f9220fb4 fairway-marks-import

change options and values for fairway mark type selection
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 05 Feb 2020 16:58:22 +0100
parents 1f2d90312ac6
children ab184888d58b
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">
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
26 <select v-model="selectedMark" class="form-control form-control-sm">
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
27 <option
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
28 v-for="(option, value) in $options.FAIRWAYMARKS"
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
29 :key="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
30 :value="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
31 >{{ option }}</option
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
32 >
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
33 </select>
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
34 </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
35 </div>
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
36 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
37 <div class="d-flex px-2">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
38 <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
39 <div class="flex-row text-left">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
40 <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
41 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
42 <div class="w-100">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
43 <input
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
44 @input="featureTypeChanged"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
45 class="featuretype form-control form-control-sm"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
46 type="text"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
47 :value="featureType"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
48 />
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
49 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
50 <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
51 <small
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
52 ><translate class="text-danger"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
53 >Please enter a Featuretype</translate
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
54 ></small
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
55 >
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
56 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
57 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
58 <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
59 <div class="flex-row text-left">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
60 <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
61 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
62 <div class="w-100">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
63 <input
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
64 @input="sortByChanged"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
65 class="sortby form-control form-control-sm"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
66 type="text"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
67 :value="sortBy"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
68 />
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
69 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
70 <div v-if="!sortBy" class="d-flex flex-row">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
71 <small
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
72 ><translate class="text-danger"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
73 >Please enter SortBy</translate
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
74 ></small
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
75 >
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 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
79 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
80 </template>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
81
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
82 <script>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
83 /* 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
84 * 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
85 *
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
86 * 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
87 * License-Filename: LICENSES/AGPL-3.0.txt
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
88 *
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
89 * Copyright (C) 2018 by via donau
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
90 * – Österreichische Wasserstraßen-Gesellschaft mbH
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
91 * Software engineering by Intevation GmbH
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
92 *
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
93 * Author(s):
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
94 * Thomas Junk <thomas.junk@intevation.de>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
95 */
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
96 export default {
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
97 name: "waterwayarea",
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
98 props: ["url", "featureType", "sortBy", "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
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: {
4902
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
122 BCNISD: "Beacon, isolated danger (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
123 BCNLAT: "Beacon, lateral (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
124 bcnlat: "Beacon, lateral (IENC feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
125 BOYCAR: "Buoy, cardinal (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
126 BOYISD: "Buoy, isolated danger (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
127 BOYLAT: "Buoy, lateral (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
128 BOYSAW: "Buoy, safe water (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
129 BOYSPP: "Buoy, special purpose/general (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
130 DAYMAR: "Daymark (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
131 daymar: "Daymark (IENC feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
132 LIGHTS: "Light (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
133 RTPBCN: "Radar transponder beacon (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
134 TOPMAR: "Topmark (MARITIME/Hydro feature)",
60d9f9220fb4 change options and values for fairway mark type selection
Thomas Junk <thomas.junk@intevation.de>
parents: 4901
diff changeset
135 notmrk: "Notice mark (IENC feature)"
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
136 }
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
137 };
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
138 </script>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
139
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
140 <style></style>