From 728a1986dfc0f0aba2f5b1eddab78ecb54b448ba Mon Sep 17 00:00:00 2001 From: Ryan Graham Date: Tue, 3 May 2016 16:18:18 -0700 Subject: [PATCH] update/insert copyright notices --- index.js | 5 +++++ lib/factory.js | 5 +++++ lib/providers/filesystem/container.js | 5 +++++ lib/providers/filesystem/file.js | 5 +++++ lib/providers/filesystem/index.js | 5 +++++ lib/storage-connector.js | 5 +++++ lib/storage-handler.js | 5 +++++ lib/storage-service.js | 5 +++++ test/fixtures/app.js | 5 +++++ test/fs.test.js | 5 +++++ test/storage-service.test.js | 5 +++++ test/upload-download.test.js | 5 +++++ 12 files changed, 60 insertions(+) diff --git a/index.js b/index.js index e3a0a3d..2b5656a 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var StorageConnector = require('./lib/storage-connector'); StorageConnector.StorageService = require('./lib/storage-service'); diff --git a/lib/factory.js b/lib/factory.js index e03bc71..140ad89 100644 --- a/lib/factory.js +++ b/lib/factory.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2013,2014. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var pkgcloud = require('pkgcloud'); /*! diff --git a/lib/providers/filesystem/container.js b/lib/providers/filesystem/container.js index 9329c8b..fe61d93 100644 --- a/lib/providers/filesystem/container.js +++ b/lib/providers/filesystem/container.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2013,2014. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var base = require('pkgcloud').storage; var util = require('util'); diff --git a/lib/providers/filesystem/file.js b/lib/providers/filesystem/file.js index 09bc990..f675c55 100644 --- a/lib/providers/filesystem/file.js +++ b/lib/providers/filesystem/file.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2013,2014. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var base = require('pkgcloud').storage; var util = require('util'); diff --git a/lib/providers/filesystem/index.js b/lib/providers/filesystem/index.js index e728dad..0c27129 100644 --- a/lib/providers/filesystem/index.js +++ b/lib/providers/filesystem/index.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2013,2015. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + /** * File system based on storage provider */ diff --git a/lib/storage-connector.js b/lib/storage-connector.js index b09360f..ff0c213 100644 --- a/lib/storage-connector.js +++ b/lib/storage-connector.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2013,2014. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var StorageService = require('./storage-service'); /** * Initialize the storage service as a connector for LoopBack data sources diff --git a/lib/storage-handler.js b/lib/storage-handler.js index ebdaa8d..63a8db9 100644 --- a/lib/storage-handler.js +++ b/lib/storage-handler.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2013,2015. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var IncomingForm = require('formidable'); var StringDecoder = require('string_decoder').StringDecoder; diff --git a/lib/storage-service.js b/lib/storage-service.js index 15a2733..6ebf21d 100644 --- a/lib/storage-service.js +++ b/lib/storage-service.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var factory = require('./factory'); var handler = require('./storage-handler'); diff --git a/test/fixtures/app.js b/test/fixtures/app.js index 0121b43..49e4ae6 100644 --- a/test/fixtures/app.js +++ b/test/fixtures/app.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var loopback = require('loopback') , app = module.exports = loopback(); diff --git a/test/fs.test.js b/test/fs.test.js index e177e0a..e37d841 100644 --- a/test/fs.test.js +++ b/test/fs.test.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2013,2014. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var FileSystemProvider = require('../lib/providers/filesystem/index.js').Client; var assert = require('assert'); diff --git a/test/storage-service.test.js b/test/storage-service.test.js index be745a9..2037d89 100644 --- a/test/storage-service.test.js +++ b/test/storage-service.test.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2013,2015. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var StorageService = require('../lib/storage-service.js'); var assert = require('assert'); diff --git a/test/upload-download.test.js b/test/upload-download.test.js index 845cff4..173039a 100644 --- a/test/upload-download.test.js +++ b/test/upload-download.test.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Node module: loopback-component-storage +// This file is licensed under the Artistic License 2.0. +// License text available at https://opensource.org/licenses/Artistic-2.0 + var request = require('supertest'); var loopback = require('loopback'); var assert = require('assert');