Skip to content

Commit 1ebb15a

Browse files
Merge pull request #471 from nextcloud/docs/noid/reuse-compliance
Add reuse compliance
2 parents 38e464d + fa2d394 commit 1ebb15a

File tree

239 files changed

+3355
-123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+3355
-123
lines changed

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# https://editorconfig.org
2+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
3+
# SPDX-License-Identifier: AGPL-3.0-or-later
24

35
root = true
46

.eslintrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
module.exports = {
27
globals: {
38
appVersion: true

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
13
# Declare files that always have LF line endings on checkout
24
* text eol=lf
35

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
13
/appinfo/info.xml @andrey18106 @bigcat88

.github/CODE_OF_CONDUCT.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
# Code of Conduct
1+
<!--
2+
- SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
3+
- SPDX-License-Identifier: AGPL-3.0-or-later
4+
-->
5+
In the Nextcloud community, participants from all over the world come together to create Free Software for a free internet. This is made possible by the support, hard work and enthusiasm of thousands of people, including those who create and use Nextcloud software.
26

3-
Be openness, as well as friendly and didactic in discussions.
7+
Our code of conduct offers some guidance to ensure Nextcloud participants can cooperate effectively in a positive and inspiring atmosphere, and to explain how together we can strengthen and support each other.
48

5-
Treat everybody equally, and value their contributions.
9+
The Code of Conduct is shared by all contributors and users who engage with the Nextcloud team and its community services. It presents a summary of the shared values and “common sense” thinking in our community.
610

7-
Decisions are made based on technical merit and consensus.
11+
You can find our full code of conduct on our website: https://nextcloud.com/code-of-conduct/
812

9-
Try to follow most principles described here: https://nextcloud.com/code-of-conduct/
13+
Please, keep our CoC in mind when you contribute! That way, everyone can be a part of our community in a productive, positive, creative and fun way.

.github/CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
- SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
3+
- SPDX-License-Identifier: AGPL-3.0-or-later
4+
-->
15
We always welcome contributions. Have an issue or an idea for a feature? Let us know. Additionally, we happily accept pull requests.
26

37
In order to make the process run more smoothly, you can make sure of the following things:

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
name: Bug Report
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
name: 🐞 Bug report
24
description: Create a report to help reproduce and correct the bug
35
labels: ['Bug', 'Needs Triage']
46

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
blank_issues_enabled: true
1+
# SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
23
contact_links:
3-
- name: Discussions
4-
url: https://github.com/cloud-py-api/app_ecosystem_v2/discussions/new
5-
about: Ask questions and discuss
6-
- name: Blank issue
7-
url: https://github.com/cloud-py-api/app_ecosystem_v2/issues/new
8-
about: Please note that Github Discussions should be used in most cases instead
4+
- name: 🚨 Report a security or privacy issue
5+
url: https://hackerone.com/nextcloud
6+
about: Report security and privacy related issues privately to the Nextcloud team, so we can coordinate the fix and release without potentially exposing all Nextcloud servers and users in the meantime.
7+
- name: ❓ Community Support and Help
8+
url: https://help.nextcloud.com/
9+
about: Configuration, webserver/proxy or performance issues and other questions
10+
- name: 💼 Nextcloud Enterprise
11+
url: https://portal.nextcloud.com/
12+
about: If you are a Nextcloud Enterprise customer, or need Professional support, so it can be resolved directly by our dedicated engineers more quickly

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
name: Feature request
1+
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
name: 🚀 Feature request
24
description: Suggest a new feature, enhancement to an existing, etc.
35
labels: ['New Feature', 'Needs Triage']
46

.github/SECURITY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
- SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
3+
- SPDX-License-Identifier: AGPL-3.0-or-later
4+
-->
15
# Security Policy
26

37
## Supported Versions

0 commit comments

Comments
 (0)