changeset 1019:ca628dce90dd

Licensing information added
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 24 Oct 2018 09:42:32 +0200
parents ab64c76af1b0
children e89be4af3a9f
files client/src/App.vue client/src/application/Main.vue client/src/application/Sidebar.vue client/src/application/Topbar.vue client/src/application/Userbar.vue client/src/application/assets/application.scss client/src/application/assets/tooltip.scss client/src/application/lib/errors.js client/src/application/lib/geo.js client/src/application/lib/http.js client/src/application/lib/session.js client/src/application/stores/application.js client/src/application/stores/user.js client/src/fairway/Fairwayprofile.vue client/src/fairway/store.js client/src/identify/Identify.vue client/src/identify/store.js client/src/layers/Layers.vue client/src/layers/Layerselect.vue client/src/layers/LegendElement.vue client/src/layers/layers.js client/src/linetool/Linetool.vue client/src/logs/logs.vue client/src/main.js client/src/map/Maplayer.vue client/src/map/store.js client/src/morphtool/Morphtool.vue client/src/morphtool/store.js client/src/router.js client/src/store.js client/src/systemconfiguration/systemconfiguration.vue client/src/usermanagement/Passwordfield.vue client/src/usermanagement/Userdetail.vue client/src/usermanagement/Usermanagement.vue client/src/usermanagement/Users.vue client/src/usermanagement/store.js
diffstat 36 files changed, 535 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/App.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/App.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -85,6 +85,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import Sidebar from "./application/Sidebar";
 import Topbar from "./application/Topbar";
 import { mapGetters } from "vuex";
--- a/client/src/application/Main.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/Main.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -15,6 +15,21 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 import Maplayer from "../map/Maplayer";
 import FairwayProfile from "../fairway/Fairwayprofile";
 import { mapGetters, mapState } from "vuex";
--- a/client/src/application/Sidebar.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/Sidebar.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -5,7 +5,7 @@
                 <router-link to="/" class="text-body d-flex flex-row nav-link">
                     <i class="fa fa-map-o align-self-center navicon"></i>Riverbed Morphology</router-link>
                 <div v-if="isSysAdmin">
-                    <hr/>
+                    <hr />
                     <div class="nav-link d-flex menupadding text-muted">Administration</div>
                     <router-link class="text-body d-flex flex-row nav-link" to="usermanagement">
                         <i class="fa fa-address-card-o align-self-center navicon"></i>Users
@@ -23,6 +23,20 @@
 </template>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { mapGetters } from "vuex";
 
 export default {
--- a/client/src/application/Topbar.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/Topbar.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -99,6 +99,20 @@
 
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import debounce from "lodash.debounce";
 import { fromLonLat } from "ol/proj";
 import { mapState } from "vuex";
--- a/client/src/application/Userbar.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/Userbar.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -45,6 +45,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { mapGetters } from "vuex";
 export default {
   name: "user",
--- a/client/src/application/assets/application.scss	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/assets/application.scss	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,17 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 $basic-shadow-light: 1px 1px 12px 1px rgba(235, 235, 235, 0.75);
 $basic-shadow: 1px 3px 8px 2px rgba(220, 220, 220, 0.75);
 $border-radius: 5px;
--- a/client/src/application/assets/tooltip.scss	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/assets/tooltip.scss	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,17 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 .tooltip {
   display: block !important;
   z-index: 10000;
--- a/client/src/application/lib/errors.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/lib/errors.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 /** facade to wrap calls to vue2-toastr */
 import app from "../../main";
 
--- a/client/src/application/lib/geo.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/lib/geo.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 /**
  *
  * Distance calculations
--- a/client/src/application/lib/http.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/lib/http.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 import axios from "axios";
 
 export const HTTP = axios.create({
--- a/client/src/application/lib/session.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/lib/session.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 /**
  * Compares whether session is current
  * based on the expiry information and the
--- a/client/src/application/stores/application.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/stores/application.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 import { version } from "../../../package.json";
 
 const defaultCollapseState = true;
@@ -60,14 +75,14 @@
 
       // hg revision
       if (
-        process.env.VUE_APP_HGREV && (
-          state.version.includes('dev') ||
-          state.version.includes('beta') ||
-          state.version.includes('alpha')
-        )
-      ) versionStr += " " + process.env.VUE_APP_HGREV;
+        process.env.VUE_APP_HGREV &&
+        (state.version.includes("dev") ||
+          state.version.includes("beta") ||
+          state.version.includes("alpha"))
+      )
+        versionStr += " " + process.env.VUE_APP_HGREV;
 
-      return versionStr; 
+      return versionStr;
     }
   },
   mutations: {
--- a/client/src/application/stores/user.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/application/stores/user.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 import { HTTP } from "../lib/http";
 
 const User = {
--- a/client/src/fairway/Fairwayprofile.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/fairway/Fairwayprofile.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -49,6 +49,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import * as d3 from "d3";
 import { mapState } from "vuex";
 
--- a/client/src/fairway/store.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/fairway/store.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 import { HTTP } from "../application/lib/http";
 import { prepareProfile } from "../application/lib/geo";
 
--- a/client/src/identify/Identify.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/identify/Identify.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -78,6 +78,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { mapState } from "vuex";
 import { mapGetters } from "vuex";
 
@@ -107,7 +121,7 @@
         "text-info":
           this.identifiedFeatures && this.identifiedFeatures.length > 0
       };
-    },
+    }
   },
   methods: {
     collapse() {
--- a/client/src/identify/store.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/identify/store.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 // note that some identified features may not have an id
 // especially related to drawing in our own vector layer
 
--- a/client/src/layers/Layers.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/layers/Layers.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -53,6 +53,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import Layerselect from "./Layerselect";
 import { mapGetters } from "vuex";
 export default {
--- a/client/src/layers/Layerselect.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/layers/Layerselect.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -22,6 +22,20 @@
 
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { HTTP } from "../application/lib/http";
 import LegendElement from "./LegendElement.vue";
 export default {
--- a/client/src/layers/LegendElement.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/layers/LegendElement.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -1,9 +1,23 @@
 <template>
-  <div :id="id" class="bg-light shadow-sm rounded legendelement"></div>
+    <div :id="id" class="bg-light shadow-sm rounded legendelement"></div>
 
 </template>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { mapGetters } from "vuex";
 
 import { Map, View } from "ol";
--- a/client/src/layers/layers.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/layers/layers.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 import TileWMS from "ol/source/TileWMS.js";
 import { Tile as TileLayer, Vector as VectorLayer } from "ol/layer.js";
 import OSM from "ol/source/OSM";
--- a/client/src/linetool/Linetool.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/linetool/Linetool.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -26,6 +26,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { mapGetters, mapState } from "vuex";
 
 export default {
--- a/client/src/logs/logs.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/logs/logs.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -81,6 +81,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { mapGetters } from "vuex";
 import { HTTP } from "../application/lib/http.js";
 import "../../node_modules/highlight.js/styles/paraiso-dark.css";
--- a/client/src/main.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/main.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 import Vue from "vue";
 import App from "./App.vue";
 import router from "./router";
--- a/client/src/map/Maplayer.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/map/Maplayer.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -24,6 +24,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { HTTP } from "../application/lib/http";
 import { mapGetters, mapState } from "vuex";
 import "ol/ol.css";
--- a/client/src/map/store.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/map/store.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 //import { HTTP } from "../lib/http";
 
 import { layers } from "../layers/layers";
--- a/client/src/morphtool/Morphtool.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/morphtool/Morphtool.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -81,6 +81,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { mapGetters, mapState } from "vuex";
 
 import { displayError } from "../application/lib/errors.js";
--- a/client/src/morphtool/store.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/morphtool/store.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,17 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 const MorphStore = {
   namespaced: true,
   state: {
--- a/client/src/router.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/router.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,17 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import Vue from "vue";
 import Router from "vue-router";
 import store from "./store";
--- a/client/src/store.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/store.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 import Vue from "vue";
 import Vuex from "vuex";
 import Application from "./application/stores/application";
--- a/client/src/systemconfiguration/systemconfiguration.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/systemconfiguration/systemconfiguration.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -46,6 +46,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { Chrome } from "vue-color";
 import { Compact } from "vue-color";
 
--- a/client/src/usermanagement/Passwordfield.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/usermanagement/Passwordfield.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -1,12 +1,12 @@
 <template>
-  <div>
-    <label for="password">{{this.label}}</label>
-    <div class="d-flex d-row">
-      <input :type="isPasswordVisible" @change="fieldChanged" class="form-control" :placeholder='placeholder' :required="required">
-      <span class="input-group-text" @click="showPassword"><i :class="eyeIcon"></i></span>
+    <div>
+        <label for="password">{{this.label}}</label>
+        <div class="d-flex d-row">
+            <input :type="isPasswordVisible" @change="fieldChanged" class="form-control" :placeholder='placeholder' :required="required">
+            <span class="input-group-text" @click="showPassword"><i :class="eyeIcon"></i></span>
+        </div>
+        <div v-show="passworderrors" class="text-danger"><small><i class="fa fa-warning"></i> {{ this.passworderrors}}</small></div>
     </div>
-    <div v-show="passworderrors" class="text-danger"><small><i class="fa fa-warning"></i> {{ this.passworderrors}}</small></div>
-  </div>
 </template>
 
 <style>
@@ -17,6 +17,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 export default {
   name: "passwordfield",
   props: ["model", "placeholder", "label", "passworderrors", "required"],
--- a/client/src/usermanagement/Userdetail.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/usermanagement/Userdetail.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -91,6 +91,20 @@
 }
 </style>
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import { HTTP } from "../application/lib/http";
 import { displayError } from "../application/lib/errors.js";
 import { mapGetters } from "vuex";
--- a/client/src/usermanagement/Usermanagement.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/usermanagement/Usermanagement.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -177,6 +177,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import Userdetail from "./Userdetail";
 import store from "../store";
 import { mapGetters } from "vuex";
--- a/client/src/usermanagement/Users.vue	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/usermanagement/Users.vue	Wed Oct 24 09:42:32 2018 +0200
@@ -146,6 +146,20 @@
 </style>
 
 <script>
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
 import Userdetail from "./Userdetail";
 import store from "../store";
 import { mapGetters } from "vuex";
--- a/client/src/usermanagement/store.js	Wed Oct 24 09:12:51 2018 +0200
+++ b/client/src/usermanagement/store.js	Wed Oct 24 09:42:32 2018 +0200
@@ -1,3 +1,18 @@
+/*
+ * This is Free Software under GNU Affero General Public License v >= 3.0
+ * without warranty, see README.md and license for details.
+ * 
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ * License-Filename: LICENSES/AGPL-3.0.txt
+ * 
+ * Copyright (C) 2018 by via donau 
+ *   – Österreichische Wasserstraßen-Gesellschaft mbH
+ * Software engineering by Intevation GmbH
+ * 
+ * Author(s):
+ * Thomas Junk <thomas.junk@intevation.de>
+ */
+
 import { HTTP } from "../application/lib/http";
 
 const newUser = () => {