Skip to content

Commit 2056293

Browse files
authored
Update AGPL headers to include element commercial license (#68)
This was missed in #66. Adds information about the Element-Commercial license.
1 parent af7f726 commit 2056293

31 files changed

Lines changed: 66 additions & 60 deletions

LICENSE-COMMERCIAL

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Licensees holding a valid commercial license with Element may use this
2+
software in accordance with the terms contained in a written agreement
3+
between you and Element.
4+
5+
To purchase a commercial license please contact our sales team at
6+
licensing@element.io

src/matrix_content_scanner/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2022 New Vector Ltd
22
#
3-
# SPDX-License-Identifier: AGPL-3.0-only
4-
# Please see LICENSE in the repository root for full details.
3+
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
4+
# Please see LICENSE files in the repository root for full details.
55

66
from matrix_content_scanner.utils.rust import check_rust_lib_up_to_date
77

src/matrix_content_scanner/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2022 New Vector Ltd
22
#
3-
# SPDX-License-Identifier: AGPL-3.0-only
4-
# Please see LICENSE in the repository root for full details.
3+
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
4+
# Please see LICENSE files in the repository root for full details.
55
from typing import Any, Dict, List, Optional, Union
66

77
import attr

src/matrix_content_scanner/httpserver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2022 New Vector Ltd
22
#
3-
# SPDX-License-Identifier: AGPL-3.0-only
4-
# Please see LICENSE in the repository root for full details.
3+
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
4+
# Please see LICENSE files in the repository root for full details.
55
import logging
66
from typing import TYPE_CHECKING, Awaitable, Callable
77

src/matrix_content_scanner/logutils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2022 New Vector Ltd
22
#
3-
# SPDX-License-Identifier: AGPL-3.0-only
4-
# Please see LICENSE in the repository root for full details.
3+
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
4+
# Please see LICENSE files in the repository root for full details.
55
import logging
66
from contextvars import ContextVar
77
from typing import Any

src/matrix_content_scanner/mcs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2022 New Vector Ltd
22
#
3-
# SPDX-License-Identifier: AGPL-3.0-only
4-
# Please see LICENSE in the repository root for full details.
3+
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
4+
# Please see LICENSE files in the repository root for full details.
55
import argparse
66
import logging
77
import sys
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright 2022 New Vector Ltd
22
#
3-
# SPDX-License-Identifier: AGPL-3.0-only
4-
# Please see LICENSE in the repository root for full details.
3+
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
4+
# Please see LICENSE files in the repository root for full details.

src/matrix_content_scanner/scanner/file_downloader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2022 New Vector Ltd
22
#
3-
# SPDX-License-Identifier: AGPL-3.0-only
4-
# Please see LICENSE in the repository root for full details.
3+
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
4+
# Please see LICENSE files in the repository root for full details.
55
import json
66
import logging
77
import urllib.parse

src/matrix_content_scanner/scanner/scanner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2022 New Vector Ltd
22
#
3-
# SPDX-License-Identifier: AGPL-3.0-only
4-
# Please see LICENSE in the repository root for full details.
3+
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
4+
# Please see LICENSE files in the repository root for full details.
55
import asyncio
66
import hashlib
77
import logging

src/matrix_content_scanner/servlets/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2022 New Vector Ltd
22
#
3-
# SPDX-License-Identifier: AGPL-3.0-only
4-
# Please see LICENSE in the repository root for full details.
3+
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
4+
# Please see LICENSE files in the repository root for full details.
55
import functools
66
import json
77
import logging

0 commit comments

Comments
 (0)