Skip to content

Commit

Permalink
Apply license change to MPL based
Browse files Browse the repository at this point in the history
  • Loading branch information
tdelatorre authored and bameda committed Apr 15, 2021
1 parent 86a3ddc commit c4847f2
Show file tree
Hide file tree
Showing 17 changed files with 841 additions and 57 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## Developer Certificate of Origin + License

By contributing to Taiga Agile LLC., You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Taiga Agile LLC. Except for the license granted herein to Taiga Agile LLC. and recipients of software distributed by Taiga Agile LLC., You reserve all right, title, and interest in and to Your Contributions.
By contributing to Kaleidos Ventures SL, You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Kaleidos Ventures SL Except for the license granted herein to Kaleidos Ventures SL and recipients of software distributed by Kaleidos Ventures SL, You reserve all right, title, and interest in and to Your Contributions.

All Contributions are subject to the following DCO + License terms.

[DCO + License](https://github.com/taigaio/taiga-events/blob/master/DCOLICENSE)
[DCO + License](DCOLICENSE)

There are many different ways to contribute to Taiga's platform, from patches, to documentation and UI enhancements, just find the one that best fits with your skills. Check out our detailed [contribution guide](https://resources.taiga.io/how-can-i-contribute)
405 changes: 371 additions & 34 deletions DCOLICENSE

Large diffs are not rendered by default.

391 changes: 373 additions & 18 deletions LICENSE

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ Help us keep the Taiga Community open and inclusive. Please read and follow our

## License

Every code patch accepted in Taiga codebase is licensed under [MIT-0](LICENSE). You must be careful to not include any code that can not be licensed under this license.
Every code patch accepted in Taiga codebase is licensed under [MPL 2.0](LICENSE). You must be careful to not include any code that can not be licensed under this license.

Please read carefully [our license](https://github.com/taigaio/taiga-events/blob/master/LICENSE) and ask us if you have any questions as well as the [Contribution policy](https://github.com/taigaio/taiga-back/blob/master/CONTRIBUTING.md).
Please read carefully [our license](LICENSE) and ask us if you have any questions as well as the [Contribution policy](https://github.com/taigaio/taiga-back/blob/master/CONTRIBUTING.md).
6 changes: 6 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2021-present Kaleidos Ventures SL

FROM node:12-alpine
LABEL maintainer="[email protected]"

Expand Down
6 changes: 6 additions & 0 deletions docker/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2021-present Kaleidos Ventures SL

#!/bin/sh

set -e
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"Kaleidos OpenSource SL",
"Alivekeep"
],
"license": "MIT-0",
license": "MPL-2",
"repository": {
"type": "git",
"url": "https://github.com/taigaio/taiga-events"
Expand Down
8 changes: 8 additions & 0 deletions src/crypto/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2021-present Kaleidos Ventures SL
*/

const { createHash, createHmac } = require("crypto");
const base64url = require("base64-url");

Expand Down
8 changes: 8 additions & 0 deletions src/health-check/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2021-present Kaleidos Ventures SL
*/

const WebSocket = require("ws");

const { getConnection } = require("../rabbitmq");
Expand Down
8 changes: 8 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2021-present Kaleidos Ventures SL
*/

/**
* Configuration loading from .env
*/
Expand Down
8 changes: 8 additions & 0 deletions src/logger/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2021-present Kaleidos Ventures SL
*/

const { format, createLogger, transports } = require("winston");

const { combine, timestamp, json, printf } = format;
Expand Down
8 changes: 8 additions & 0 deletions src/rabbitmq/client.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2021-present Kaleidos Ventures SL
*/

const { connect } = require("amqplib");
const { logger } = require("../logger");

Expand Down
8 changes: 8 additions & 0 deletions src/rabbitmq/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2021-present Kaleidos Ventures SL
*/

const { destroy, unsubscribe, subscribe, getConnection } = require("./client");
const { Subscription } = require("./subscription");
const { SubscriptionManager } = require("./subscription-manager");
Expand Down
8 changes: 8 additions & 0 deletions src/rabbitmq/subscription-manager.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2021-present Kaleidos Ventures SL
*/

const { destroy } = require("./client");
const { Subscription } = require("./subscription");

Expand Down
8 changes: 8 additions & 0 deletions src/rabbitmq/subscription.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2021-present Kaleidos Ventures SL
*/

const { subscribe, unsubscribe } = require("./client");
const { logger } = require("../logger");

Expand Down
8 changes: 8 additions & 0 deletions src/ws/client.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2021-present Kaleidos Ventures SL
*/

const { v4 } = require("uuid");

const { SubscriptionManager } = require("../rabbitmq");
Expand Down
8 changes: 8 additions & 0 deletions src/ws/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2021-present Kaleidos Ventures SL
*/

const { createClient } = require("./client");

module.exports = { createClient };

0 comments on commit c4847f2

Please sign in to comment.