From 8e24c4a204485ff95f4b6a577870eb02af0afdf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Mon, 27 Jan 2020 19:20:52 +0100 Subject: [PATCH] Correct copyright holder. rejectedsoftware e.K. doesn't exist anymore since mid-2019. --- source/vibe/appmain.d | 2 +- source/vibe/core/args.d | 2 +- source/vibe/core/channel.d | 2 +- source/vibe/core/concurrency.d | 2 +- source/vibe/core/connectionpool.d | 2 +- source/vibe/core/core.d | 2 +- source/vibe/core/file.d | 2 +- source/vibe/core/log.d | 2 +- source/vibe/core/net.d | 2 +- source/vibe/core/stream.d | 2 +- source/vibe/core/task.d | 2 +- source/vibe/core/taskpool.d | 2 +- source/vibe/internal/array.d | 2 +- source/vibe/internal/freelistref.d | 2 +- source/vibe/internal/hashmap.d | 2 +- source/vibe/internal/string.d | 2 +- source/vibe/internal/traits.d | 2 +- source/vibe/internal/typetuple.d | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/source/vibe/appmain.d b/source/vibe/appmain.d index 21a4f0f..fa97649 100644 --- a/source/vibe/appmain.d +++ b/source/vibe/appmain.d @@ -14,7 +14,7 @@ calls to vibe.core.args.finalizeCommandLineOptions and vibe.core.core.lowerPrivileges to get the same behavior. - Copyright: © 2012-2016 RejectedSoftware e.K. + Copyright: © 2012-2016 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/core/args.d b/source/vibe/core/args.d index 309f185..e510468 100755 --- a/source/vibe/core/args.d +++ b/source/vibe/core/args.d @@ -7,7 +7,7 @@ to their values. It is searched for in the local directory, user's home directory, or /etc/vibe/ (POSIX only), whichever is found first. - Copyright: © 2012-2016 RejectedSoftware e.K. + Copyright: © 2012-2016 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig, Vladimir Panteleev */ diff --git a/source/vibe/core/channel.d b/source/vibe/core/channel.d index 10f389b..9a60335 100644 --- a/source/vibe/core/channel.d +++ b/source/vibe/core/channel.d @@ -1,6 +1,6 @@ /** Implements a thread-safe, typed producer-consumer queue. - Copyright: © 2017-2019 RejectedSoftware e.K. + Copyright: © 2017-2019 Sönke Ludwig Authors: Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. */ diff --git a/source/vibe/core/concurrency.d b/source/vibe/core/concurrency.d index c792e58..70be177 100644 --- a/source/vibe/core/concurrency.d +++ b/source/vibe/core/concurrency.d @@ -4,7 +4,7 @@ This module is modeled after std.concurrency, but provides a fiber-aware alternative to it. All blocking operations will yield the calling fiber instead of blocking it. - Copyright: © 2013-2014 RejectedSoftware e.K. + Copyright: © 2013-2014 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/core/connectionpool.d b/source/vibe/core/connectionpool.d index ce13b3b..3b89674 100644 --- a/source/vibe/core/connectionpool.d +++ b/source/vibe/core/connectionpool.d @@ -1,7 +1,7 @@ /** Generic connection pool for reusing persistent connections across fibers. - Copyright: © 2012-2016 RejectedSoftware e.K. + Copyright: © 2012-2016 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/core/core.d b/source/vibe/core/core.d index f188b20..ee507a2 100644 --- a/source/vibe/core/core.d +++ b/source/vibe/core/core.d @@ -1,7 +1,7 @@ /** This module contains the core functionality of the vibe.d framework. - Copyright: © 2012-2019 RejectedSoftware e.K. + Copyright: © 2012-2019 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/core/file.d b/source/vibe/core/file.d index db2a1ea..fe8cf6b 100644 --- a/source/vibe/core/file.d +++ b/source/vibe/core/file.d @@ -1,7 +1,7 @@ /** File handling functions and types. - Copyright: © 2012-2019 RejectedSoftware e.K. + Copyright: © 2012-2019 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/core/log.d b/source/vibe/core/log.d index bd78382..899c43f 100644 --- a/source/vibe/core/log.d +++ b/source/vibe/core/log.d @@ -1,7 +1,7 @@ /** Central logging facility for vibe. - Copyright: © 2012-2014 RejectedSoftware e.K. + Copyright: © 2012-2014 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/core/net.d b/source/vibe/core/net.d index 8fc6933..8968cfe 100644 --- a/source/vibe/core/net.d +++ b/source/vibe/core/net.d @@ -1,7 +1,7 @@ /** TCP/UDP connection and server handling. - Copyright: © 2012-2016 RejectedSoftware e.K. + Copyright: © 2012-2016 Sönke Ludwig Authors: Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. */ diff --git a/source/vibe/core/stream.d b/source/vibe/core/stream.d index 78d3d88..6a68f87 100644 --- a/source/vibe/core/stream.d +++ b/source/vibe/core/stream.d @@ -10,7 +10,7 @@ using the appropriate trait (e.g. `isInputStream`) instead of assuming the specific interface type (e.g. `InputStream`). - Copyright: © 2012-2016 RejectedSoftware e.K. + Copyright: © 2012-2016 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/core/task.d b/source/vibe/core/task.d index 7b32eac..e71d378 100644 --- a/source/vibe/core/task.d +++ b/source/vibe/core/task.d @@ -1,7 +1,7 @@ /** Contains interfaces and enums for evented I/O drivers. - Copyright: © 2012-2016 RejectedSoftware e.K. + Copyright: © 2012-2016 Sönke Ludwig Authors: Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. */ diff --git a/source/vibe/core/taskpool.d b/source/vibe/core/taskpool.d index c94d40d..1b71142 100644 --- a/source/vibe/core/taskpool.d +++ b/source/vibe/core/taskpool.d @@ -1,7 +1,7 @@ /** Multi-threaded task pool implementation. - Copyright: © 2012-2017 RejectedSoftware e.K. + Copyright: © 2012-2017 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/internal/array.d b/source/vibe/internal/array.d index f537018..6cb69a9 100644 --- a/source/vibe/internal/array.d +++ b/source/vibe/internal/array.d @@ -1,7 +1,7 @@ /** Utility functions for array processing - Copyright: © 2012 RejectedSoftware e.K. + Copyright: © 2012 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/internal/freelistref.d b/source/vibe/internal/freelistref.d index c6f07cc..395fea0 100644 --- a/source/vibe/internal/freelistref.d +++ b/source/vibe/internal/freelistref.d @@ -4,7 +4,7 @@ Note that this module currently is a big sand box for testing allocation related stuff. Nothing here, including the interfaces, is final but rather a lot of experimentation. - Copyright: © 2012-2013 RejectedSoftware e.K. + Copyright: © 2012-2013 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/internal/hashmap.d b/source/vibe/internal/hashmap.d index dfabe46..4a09df8 100644 --- a/source/vibe/internal/hashmap.d +++ b/source/vibe/internal/hashmap.d @@ -1,7 +1,7 @@ /** Internal hash map implementation. - Copyright: © 2013 RejectedSoftware e.K. + Copyright: © 2013 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/internal/string.d b/source/vibe/internal/string.d index 8c3387b..7d23aef 100644 --- a/source/vibe/internal/string.d +++ b/source/vibe/internal/string.d @@ -1,7 +1,7 @@ /** Utility functions for string processing - Copyright: © 2012-2014 RejectedSoftware e.K. + Copyright: © 2012-2014 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ diff --git a/source/vibe/internal/traits.d b/source/vibe/internal/traits.d index 1b1cc08..6de15c4 100644 --- a/source/vibe/internal/traits.d +++ b/source/vibe/internal/traits.d @@ -2,7 +2,7 @@ Extensions to `std.traits` module of Phobos. Some may eventually make it into Phobos, some are dirty hacks that work only for vibe.d - Copyright: © 2012 RejectedSoftware e.K. + Copyright: © 2012 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig, Михаил Страшун */ diff --git a/source/vibe/internal/typetuple.d b/source/vibe/internal/typetuple.d index bee6a8b..496420b 100644 --- a/source/vibe/internal/typetuple.d +++ b/source/vibe/internal/typetuple.d @@ -1,7 +1,7 @@ /** Additions to std.typetuple pending for inclusion into Phobos. - Copyright: © 2013 RejectedSoftware e.K. + Copyright: © 2013 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Михаил Страшун */