From c543dd5dd81450ce19a24e551eb05edfb4b22f06 Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Tue, 22 Aug 2017 17:33:39 -0700 Subject: [PATCH] chore(*) update Copyright entity --- LICENSE | 4 ++-- README.md | 2 +- kong/dao/dao.lua | 2 +- kong/plugins/aws-lambda/handler.lua | 2 +- kong/plugins/basic-auth/handler.lua | 2 +- kong/plugins/bot-detection/schema.lua | 2 +- kong/plugins/correlation-id/handler.lua | 2 +- kong/plugins/file-log/handler.lua | 2 +- kong/plugins/hmac-auth/handler.lua | 2 +- kong/plugins/jwt/asn_sequence.lua | 2 +- kong/plugins/rate-limiting/handler.lua | 2 +- kong/plugins/request-size-limiting/handler.lua | 2 +- kong/plugins/response-ratelimiting/handler.lua | 2 +- kong/plugins/response-ratelimiting/log.lua | 2 +- kong/tools/responses.lua | 2 +- kong/tools/timestamp.lua | 2 +- kong/tools/utils.lua | 2 +- spec/helpers.lua | 2 +- 18 files changed, 19 insertions(+), 19 deletions(-) diff --git a/LICENSE b/LICENSE index d7df6a2218a..6f59129a018 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2016-2017 Mashape, Inc + Copyright 2016-2017 Kong Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -199,4 +199,4 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. \ No newline at end of file + limitations under the License. diff --git a/README.md b/README.md index 26a6fa5a5d1..87b7b07daf1 100644 --- a/README.md +++ b/README.md @@ -292,7 +292,7 @@ Products, HA, Demo, Training, API Certifications and Professional Services. ## License ``` -Copyright 2016-2017 Mashape, Inc +Copyright 2016-2017 Kong Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/kong/dao/dao.lua b/kong/dao/dao.lua index 00e0d0c3afe..3517572a62b 100644 --- a/kong/dao/dao.lua +++ b/kong/dao/dao.lua @@ -8,7 +8,7 @@ -- and is responsible for propagating clustering events related to data invalidation, -- as well as foreign constraints when the underlying database does not support them -- (as with Cassandra). --- @copyright Copyright 2016-2017 Mashape Inc. All rights reserved. +-- @copyright Copyright 2016-2017 Kong Inc. All rights reserved. -- @license [Apache 2.0](https://opensource.org/licenses/Apache-2.0) -- @module kong.dao diff --git a/kong/plugins/aws-lambda/handler.lua b/kong/plugins/aws-lambda/handler.lua index a7ab60003c6..db88ee434a6 100644 --- a/kong/plugins/aws-lambda/handler.lua +++ b/kong/plugins/aws-lambda/handler.lua @@ -1,4 +1,4 @@ --- Copyright (C) Mashape, Inc. +-- Copyright (C) Kong Inc. local BasePlugin = require "kong.plugins.base_plugin" local aws_v4 = require "kong.plugins.aws-lambda.v4" diff --git a/kong/plugins/basic-auth/handler.lua b/kong/plugins/basic-auth/handler.lua index c40856213ea..2ea601c0d75 100644 --- a/kong/plugins/basic-auth/handler.lua +++ b/kong/plugins/basic-auth/handler.lua @@ -1,4 +1,4 @@ --- Copyright (C) Mashape, Inc. +-- Copyright (C) Kong Inc. local BasePlugin = require "kong.plugins.base_plugin" local access = require "kong.plugins.basic-auth.access" diff --git a/kong/plugins/bot-detection/schema.lua b/kong/plugins/bot-detection/schema.lua index 3609daa077d..289c568e102 100644 --- a/kong/plugins/bot-detection/schema.lua +++ b/kong/plugins/bot-detection/schema.lua @@ -18,4 +18,4 @@ return { whitelist = { type = "array", func = check_regex }, blacklist = { type = "array", func = check_regex }, } -} \ No newline at end of file +} diff --git a/kong/plugins/correlation-id/handler.lua b/kong/plugins/correlation-id/handler.lua index 14a2a1c83aa..4b2114ad631 100644 --- a/kong/plugins/correlation-id/handler.lua +++ b/kong/plugins/correlation-id/handler.lua @@ -1,4 +1,4 @@ --- Copyright (C) Mashape, Inc. +-- Copyright (C) Kong Inc. local BasePlugin = require "kong.plugins.base_plugin" local req_set_header = ngx.req.set_header diff --git a/kong/plugins/file-log/handler.lua b/kong/plugins/file-log/handler.lua index 77a963ddf7e..f9c529bd62a 100644 --- a/kong/plugins/file-log/handler.lua +++ b/kong/plugins/file-log/handler.lua @@ -1,4 +1,4 @@ --- Copyright (C) Mashape, Inc. +-- Copyright (C) Kong Inc. local ffi = require "ffi" local cjson = require "cjson" local system_constants = require "lua_system_constants" diff --git a/kong/plugins/hmac-auth/handler.lua b/kong/plugins/hmac-auth/handler.lua index 0afe5c24ae8..4f789352cdc 100644 --- a/kong/plugins/hmac-auth/handler.lua +++ b/kong/plugins/hmac-auth/handler.lua @@ -1,4 +1,4 @@ --- Copyright (C) Mashape, Inc. +-- Copyright (C) Kong Inc. local BasePlugin = require "kong.plugins.base_plugin" local access = require "kong.plugins.hmac-auth.access" diff --git a/kong/plugins/jwt/asn_sequence.lua b/kong/plugins/jwt/asn_sequence.lua index 78aefca8110..855ae0d7c99 100644 --- a/kong/plugins/jwt/asn_sequence.lua +++ b/kong/plugins/jwt/asn_sequence.lua @@ -125,4 +125,4 @@ function _M.resign_integer(input) return input end -return _M \ No newline at end of file +return _M diff --git a/kong/plugins/rate-limiting/handler.lua b/kong/plugins/rate-limiting/handler.lua index 53a096e5880..f4355a41eab 100644 --- a/kong/plugins/rate-limiting/handler.lua +++ b/kong/plugins/rate-limiting/handler.lua @@ -1,4 +1,4 @@ --- Copyright (C) Mashape, Inc. +-- Copyright (C) Kong Inc. local policies = require "kong.plugins.rate-limiting.policies" local timestamp = require "kong.tools.timestamp" diff --git a/kong/plugins/request-size-limiting/handler.lua b/kong/plugins/request-size-limiting/handler.lua index 4cb21de7018..644ee02e4bb 100644 --- a/kong/plugins/request-size-limiting/handler.lua +++ b/kong/plugins/request-size-limiting/handler.lua @@ -1,4 +1,4 @@ --- Copyright (C) Mashape, Inc. +-- Copyright (C) Kong Inc. local BasePlugin = require "kong.plugins.base_plugin" local responses = require "kong.tools.responses" diff --git a/kong/plugins/response-ratelimiting/handler.lua b/kong/plugins/response-ratelimiting/handler.lua index bdeac875bfe..260b170e2a9 100644 --- a/kong/plugins/response-ratelimiting/handler.lua +++ b/kong/plugins/response-ratelimiting/handler.lua @@ -1,4 +1,4 @@ --- Copyright (C) Mashape, Inc. +-- Copyright (C) Kong Inc. local BasePlugin = require "kong.plugins.base_plugin" local access = require "kong.plugins.response-ratelimiting.access" diff --git a/kong/plugins/response-ratelimiting/log.lua b/kong/plugins/response-ratelimiting/log.lua index 6f6b1591864..f4cf18a35ac 100644 --- a/kong/plugins/response-ratelimiting/log.lua +++ b/kong/plugins/response-ratelimiting/log.lua @@ -23,4 +23,4 @@ function _M.execute(conf, api_id, identifier, current_timestamp, increments, usa end end -return _M \ No newline at end of file +return _M diff --git a/kong/tools/responses.lua b/kong/tools/responses.lua index 780b1f63215..51867805c76 100644 --- a/kong/tools/responses.lua +++ b/kong/tools/responses.lua @@ -1,7 +1,7 @@ --- Kong helper methods to send HTTP responses to clients. -- Can be used in the proxy (core/resolver), plugins or Admin API. -- Most used HTTP status codes and responses are implemented as helper methods. --- @copyright Copyright 2016-2017 Mashape Inc. All rights reserved. +-- @copyright Copyright 2016-2017 Kong Inc. All rights reserved. -- @license [Apache 2.0](https://opensource.org/licenses/Apache-2.0) -- @module kong.tools.responses -- @usage diff --git a/kong/tools/timestamp.lua b/kong/tools/timestamp.lua index 6ef78121dd6..125eb496e21 100644 --- a/kong/tools/timestamp.lua +++ b/kong/tools/timestamp.lua @@ -1,6 +1,6 @@ --- Module for timestamp support. -- Based on the LuaTZ module. --- @copyright Copyright 2016-2017 Mashape Inc. All rights reserved. +-- @copyright Copyright 2016-2017 Kong Inc. All rights reserved. -- @license [Apache 2.0](https://opensource.org/licenses/Apache-2.0) -- @module kong.tools.timestamp diff --git a/kong/tools/utils.lua b/kong/tools/utils.lua index aa03a83e4e4..36468a8b505 100644 --- a/kong/tools/utils.lua +++ b/kong/tools/utils.lua @@ -4,7 +4,7 @@ -- NOTE: Before implementing a function here, consider if it will be used in many places -- across Kong. If not, a local function in the appropriate module is prefered. -- --- @copyright Copyright 2016-2017 Mashape Inc. All rights reserved. +-- @copyright Copyright 2016-2017 Kong Inc. All rights reserved. -- @license [Apache 2.0](https://opensource.org/licenses/Apache-2.0) -- @module kong.tools.utils diff --git a/spec/helpers.lua b/spec/helpers.lua index ed202e63b0c..f93b90d26d6 100644 --- a/spec/helpers.lua +++ b/spec/helpers.lua @@ -1,7 +1,7 @@ ------------------------------------------------------------------ -- Collection of utilities to help testing Kong features and plugins. -- --- @copyright Copyright 2016-2017 Mashape Inc. All rights reserved. +-- @copyright Copyright 2016-2017 Kong Inc. All rights reserved. -- @license [Apache 2.0](https://opensource.org/licenses/Apache-2.0) -- @module spec.helpers