Skip to content

Commit

Permalink
Add licenseinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Junk committed Feb 8, 2024
1 parent fdbfc00 commit 70bf113
Show file tree
Hide file tree
Showing 14 changed files with 116 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# This file is Free Software under the MIT License
# without warranty, see README.md and LICENSES/MIT.txt for details.
#
# SPDX-License-Identifier: MIT
#
# SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
# Software-Engineering: 2023 Intevation GmbH <https://intevation.de>

PUBLIC_PROXY_PATH=
7 changes: 7 additions & 0 deletions .env.development
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# This file is Free Software under the MIT License
# without warranty, see README.md and LICENSES/MIT.txt for details.
#
# SPDX-License-Identifier: MIT
#
# SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
# Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
PUBLIC_PROXY_PATH=/proxy/
7 changes: 7 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is Free Software under the MIT License
# without warranty, see README.md and LICENSES/MIT.txt for details.
#
# SPDX-License-Identifier: MIT
#
# SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
# Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
name: Report Coverage

on:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/integrationtest.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is Free Software under the MIT License
# without warranty, see README.md and LICENSES/MIT.txt for details.
#
# SPDX-License-Identifier: MIT
#
# SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
# Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
name: Integrationtest

on:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is Free Software under the MIT License
# without warranty, see README.md and LICENSES/MIT.txt for details.
#
# SPDX-License-Identifier: MIT
#
# SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
# Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
name: "Test"
on:
pull_request:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# This file is Free Software under the MIT License
# without warranty, see README.md and LICENSES/MIT.txt for details.
#
# SPDX-License-Identifier: MIT
#
# SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
# Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
name: Unittest

on:
Expand Down
9 changes: 9 additions & 0 deletions src/lib/Spinner.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is Free Software under the MIT License
without warranty, see README.md and LICENSES/MIT.txt for details.
SPDX-License-Identifier: MIT
SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
-->
<script lang="ts">
export let active = false;
export let modal = false;
Expand Down
9 changes: 9 additions & 0 deletions src/lib/singleview/producttree/product/ProductName.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is Free Software under the MIT License
without warranty, see README.md and LICENSES/MIT.txt for details.
SPDX-License-Identifier: MIT
SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
-->
<script lang="ts">
import ProductIdentificationHelper from "./ProductIdentificationHelper.svelte";
import KeyValue from "$lib/KeyValue.svelte";
Expand Down
8 changes: 8 additions & 0 deletions src/lib/types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// This file is Free Software under the MIT License
// without warranty, see README.md and LICENSES/MIT.txt for details.
//
// SPDX-License-Identifier: MIT
//
// SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
// Software-Engineering: 2023 Intevation GmbH <https://intevation.de>

/**
* Contains a list of acknowledgment elements associated with the whole document.
*/
Expand Down
8 changes: 8 additions & 0 deletions src/lib/urlloader.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// This file is Free Software under the MIT License
// without warranty, see README.md and LICENSES/MIT.txt for details.
//
// SPDX-License-Identifier: MIT
//
// SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
// Software-Engineering: 2023 Intevation GmbH <https://intevation.de>

import { appStore } from "$lib/store";
import { convertToDocModel } from "$lib/singleview/docmodel/docmodel";
import { PUBLIC_PROXY_PATH } from "$env/static/public";
Expand Down
9 changes: 9 additions & 0 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is Free Software under the MIT License
without warranty, see README.md and LICENSES/MIT.txt for details.
SPDX-License-Identifier: MIT
SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
-->
<script lang="ts">
import "boxicons/css/boxicons.min.css";
import { appStore } from "$lib/store";
Expand Down
9 changes: 9 additions & 0 deletions src/routes/feed/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
This file is Free Software under the MIT License
without warranty, see README.md and LICENSES/MIT.txt for details.
SPDX-License-Identifier: MIT
SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
-->
<script lang="ts">
import { appStore } from "$lib/store";
import { browser } from "$app/environment";
Expand Down
14 changes: 12 additions & 2 deletions static/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
<!--
This file is Free Software under the MIT License
without warranty, see README.md and LICENSES/MIT.txt for details.
SPDX-License-Identifier: MIT
SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI)
<https://www.bsi.bund.de>
Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
-->
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<square150x150logo src="/mstile-150x150.png" />
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>
</browserconfig>
9 changes: 9 additions & 0 deletions static/css/main.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/* This file is Free Software under the MIT License
without warranty, see README.md and LICENSES/MIT.txt for details.
SPDX-License-Identifier: MIT
SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
*/

/* Sane CSS defaults*/
::root {
font-size: 18px;
Expand Down

0 comments on commit 70bf113

Please sign in to comment.