From 03f0104bca74439449e48a3db152f54c2f927c6e Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Wed, 25 Mar 2020 17:04:52 +0100 Subject: [PATCH] fix license --- .eslintrc.js | 7 +++++++ index.js | 7 +++++++ jenkins.js | 7 +++++++ stryker.conf.js | 7 +++++++ test/main.js | 7 +++++++ test_files/root.sub/all-root.sub.js | 7 +++++++ test_files/root.sub/delete-root.sub.js | 7 +++++++ test_files/root.sub/get-root.sub.js | 7 +++++++ test_files/root.sub/not-root.sub.js | 7 +++++++ test_files/root.sub/post-root.sub.js | 7 +++++++ test_files/root.sub/put-root.sub.js | 7 +++++++ test_files/root/all-root.js | 7 +++++++ test_files/root/delete-root.js | 7 +++++++ test_files/root/get-root.js | 7 +++++++ test_files/root/not-root.js | 7 +++++++ test_files/root/post-root.js | 7 +++++++ test_files/root/put-root.js | 7 +++++++ test_files/sub/all-sub.js | 7 +++++++ test_files/sub/all-sub.root.js | 7 +++++++ test_files/sub/delete-sub.js | 7 +++++++ test_files/sub/get-sub.js | 7 +++++++ test_files/sub/get-sub.lv1.lv2.lv3.js | 7 +++++++ test_files/sub/not-sub.js | 7 +++++++ test_files/sub/post-sub.js | 7 +++++++ test_files/sub/put-sub.js | 7 +++++++ 25 files changed, 175 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 6710f8a..d1766e9 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + module.exports = { env: { commonjs: true, diff --git a/index.js b/index.js index 7f1c3b1..81f8efa 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + /* eslint-disable no-console */ /* eslint-disable no-sync */ diff --git a/jenkins.js b/jenkins.js index fb5239d..e049241 100644 --- a/jenkins.js +++ b/jenkins.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + /* eslint-disable no-process-exit */ /* eslint-disable no-console */ /* eslint-disable no-sync */ diff --git a/stryker.conf.js b/stryker.conf.js index 9958df2..c34f9da 100644 --- a/stryker.conf.js +++ b/stryker.conf.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; /** diff --git a/test/main.js b/test/main.js index a9c3e48..1acca47 100644 --- a/test/main.js +++ b/test/main.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; const test = require ('ava'); diff --git a/test_files/root.sub/all-root.sub.js b/test_files/root.sub/all-root.sub.js index da546e2..520d02c 100644 --- a/test_files/root.sub/all-root.sub.js +++ b/test_files/root.sub/all-root.sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root.sub/delete-root.sub.js b/test_files/root.sub/delete-root.sub.js index da546e2..520d02c 100644 --- a/test_files/root.sub/delete-root.sub.js +++ b/test_files/root.sub/delete-root.sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root.sub/get-root.sub.js b/test_files/root.sub/get-root.sub.js index da546e2..520d02c 100644 --- a/test_files/root.sub/get-root.sub.js +++ b/test_files/root.sub/get-root.sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root.sub/not-root.sub.js b/test_files/root.sub/not-root.sub.js index da546e2..520d02c 100644 --- a/test_files/root.sub/not-root.sub.js +++ b/test_files/root.sub/not-root.sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root.sub/post-root.sub.js b/test_files/root.sub/post-root.sub.js index da546e2..520d02c 100644 --- a/test_files/root.sub/post-root.sub.js +++ b/test_files/root.sub/post-root.sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root.sub/put-root.sub.js b/test_files/root.sub/put-root.sub.js index da546e2..520d02c 100644 --- a/test_files/root.sub/put-root.sub.js +++ b/test_files/root.sub/put-root.sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root/all-root.js b/test_files/root/all-root.js index da546e2..520d02c 100644 --- a/test_files/root/all-root.js +++ b/test_files/root/all-root.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root/delete-root.js b/test_files/root/delete-root.js index da546e2..520d02c 100644 --- a/test_files/root/delete-root.js +++ b/test_files/root/delete-root.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root/get-root.js b/test_files/root/get-root.js index da546e2..520d02c 100644 --- a/test_files/root/get-root.js +++ b/test_files/root/get-root.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root/not-root.js b/test_files/root/not-root.js index da546e2..520d02c 100644 --- a/test_files/root/not-root.js +++ b/test_files/root/not-root.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root/post-root.js b/test_files/root/post-root.js index da546e2..520d02c 100644 --- a/test_files/root/post-root.js +++ b/test_files/root/post-root.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/root/put-root.js b/test_files/root/put-root.js index da546e2..520d02c 100644 --- a/test_files/root/put-root.js +++ b/test_files/root/put-root.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/sub/all-sub.js b/test_files/sub/all-sub.js index da546e2..520d02c 100644 --- a/test_files/sub/all-sub.js +++ b/test_files/sub/all-sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/sub/all-sub.root.js b/test_files/sub/all-sub.root.js index da546e2..520d02c 100644 --- a/test_files/sub/all-sub.root.js +++ b/test_files/sub/all-sub.root.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/sub/delete-sub.js b/test_files/sub/delete-sub.js index da546e2..520d02c 100644 --- a/test_files/sub/delete-sub.js +++ b/test_files/sub/delete-sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/sub/get-sub.js b/test_files/sub/get-sub.js index da546e2..520d02c 100644 --- a/test_files/sub/get-sub.js +++ b/test_files/sub/get-sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/sub/get-sub.lv1.lv2.lv3.js b/test_files/sub/get-sub.lv1.lv2.lv3.js index da546e2..520d02c 100644 --- a/test_files/sub/get-sub.lv1.lv2.lv3.js +++ b/test_files/sub/get-sub.lv1.lv2.lv3.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/sub/not-sub.js b/test_files/sub/not-sub.js index da546e2..520d02c 100644 --- a/test_files/sub/not-sub.js +++ b/test_files/sub/not-sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/sub/post-sub.js b/test_files/sub/post-sub.js index da546e2..520d02c 100644 --- a/test_files/sub/post-sub.js +++ b/test_files/sub/post-sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => { diff --git a/test_files/sub/put-sub.js b/test_files/sub/put-sub.js index da546e2..520d02c 100644 --- a/test_files/sub/put-sub.js +++ b/test_files/sub/put-sub.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of Requestor which is released under BSD-3-Clause. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , March 2020 + */ + 'use strict'; module.exports = () => {