Skip to content

Commit

Permalink
chore(*) update Copyright entity
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Aug 23, 2017
1 parent 82881b8 commit c543dd5
Show file tree
Hide file tree
Showing 18 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
limitations under the License.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion kong/dao/dao.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/aws-lambda/handler.lua
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/basic-auth/handler.lua
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/bot-detection/schema.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ return {
whitelist = { type = "array", func = check_regex },
blacklist = { type = "array", func = check_regex },
}
}
}
2 changes: 1 addition & 1 deletion kong/plugins/correlation-id/handler.lua
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/file-log/handler.lua
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/hmac-auth/handler.lua
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/jwt/asn_sequence.lua
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ function _M.resign_integer(input)
return input
end

return _M
return _M
2 changes: 1 addition & 1 deletion kong/plugins/rate-limiting/handler.lua
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/request-size-limiting/handler.lua
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/response-ratelimiting/handler.lua
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/response-ratelimiting/log.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ function _M.execute(conf, api_id, identifier, current_timestamp, increments, usa
end
end

return _M
return _M
2 changes: 1 addition & 1 deletion kong/tools/responses.lua
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion kong/tools/timestamp.lua
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion kong/tools/utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion spec/helpers.lua
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit c543dd5

Please sign in to comment.