-- cgit v1.2.1 -- cgit v1.2.1 -- cgit v1.2.1 From 104b6590aa0bfd8ee79a778b90562fd254748664 Mon Sep 17 00:00:00 2001 From: Alexandru Scvortov Date: Mon, 10 Oct 2011 11:40:56 +0100 Subject: add extra license info This has always been part of the Debian copyright notice. --- license_info | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 license_info diff --git a/license_info b/license_info new file mode 100644 index 0000000..7ce8e46 --- /dev/null +++ b/license_info @@ -0,0 +1,3 @@ +The files amqp-rabbitmq-0.8.json and amqp-rabbitmq-0.9.1.json are +"Copyright (C) 2008-2011 VMware", Inc. and are covered by the MIT +license. -- cgit v1.2.1 From 90be7941adb2ea17f2915bd22eead3774e99c65a Mon Sep 17 00:00:00 2001 From: Alexandru Scvortov Date: Mon, 10 Oct 2011 12:53:36 +0100 Subject: cosmetic --- license_info | 1 + 1 file changed, 1 insertion(+) diff --git a/license_info b/license_info index 7ce8e46..ccba7bb 100644 --- a/license_info +++ b/license_info @@ -1,3 +1,4 @@ The files amqp-rabbitmq-0.8.json and amqp-rabbitmq-0.9.1.json are "Copyright (C) 2008-2011 VMware", Inc. and are covered by the MIT license. + -- cgit v1.2.1 -- cgit v1.2.1 -- cgit v1.2.1 From 150755f83ebe51d380414b12db768b1f47bb8046 Mon Sep 17 00:00:00 2001 From: Emile Joubert Date: Thu, 2 Feb 2012 12:51:57 +0000 Subject: Update copyright 2012 --- LICENSE-MPL-RabbitMQ | 2 +- amqp-rabbitmq-0.8.json | 2 +- amqp-rabbitmq-0.9.1.json | 2 +- amqp_codegen.py | 2 +- demo_extension.json | 2 +- license_info | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/LICENSE-MPL-RabbitMQ b/LICENSE-MPL-RabbitMQ index 14bcc21..d50e32e 100644 --- a/LICENSE-MPL-RabbitMQ +++ b/LICENSE-MPL-RabbitMQ @@ -447,7 +447,7 @@ EXHIBIT A -Mozilla Public License. The Original Code is RabbitMQ. The Initial Developer of the Original Code is VMware, Inc. - Copyright (c) 2007-2011 VMware, Inc. All rights reserved.'' + Copyright (c) 2007-2012 VMware, Inc. All rights reserved.'' [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should diff --git a/amqp-rabbitmq-0.8.json b/amqp-rabbitmq-0.8.json index bb77302..08f3066 100644 --- a/amqp-rabbitmq-0.8.json +++ b/amqp-rabbitmq-0.8.json @@ -4,7 +4,7 @@ "minor-version": 0, "port": 5672, "copyright": [ - "Copyright (C) 2008-2011 VMware, Inc.\n", + "Copyright (C) 2008-2012 VMware, Inc.\n", "\n", "Permission is hereby granted, free of charge, to any person\n", "obtaining a copy of this file (the \"Software\"), to deal in the\n", diff --git a/amqp-rabbitmq-0.9.1.json b/amqp-rabbitmq-0.9.1.json index bd3b987..9e6d55e 100644 --- a/amqp-rabbitmq-0.9.1.json +++ b/amqp-rabbitmq-0.9.1.json @@ -5,7 +5,7 @@ "revision": 1, "port": 5672, "copyright": [ - "Copyright (C) 2008-2011 VMware, Inc.\n", + "Copyright (C) 2008-2012 VMware, Inc.\n", "\n", "Permission is hereby granted, free of charge, to any person\n", "obtaining a copy of this file (the \"Software\"), to deal in the\n", diff --git a/amqp_codegen.py b/amqp_codegen.py index 026715d..5423350 100644 --- a/amqp_codegen.py +++ b/amqp_codegen.py @@ -11,7 +11,7 @@ ## The Original Code is RabbitMQ. ## ## The Initial Developer of the Original Code is VMware, Inc. -## Copyright (c) 2007-2011 VMware, Inc. All rights reserved. +## Copyright (c) 2007-2012 VMware, Inc. All rights reserved. ## from __future__ import nested_scopes diff --git a/demo_extension.json b/demo_extension.json index 049ad7b..eda1829 100644 --- a/demo_extension.json +++ b/demo_extension.json @@ -2,7 +2,7 @@ "extension": { "name": "demo", "version": "1.0", - "copyright": "Copyright (C) 2009-2011 VMware, Inc." + "copyright": "Copyright (C) 2009-2012 VMware, Inc." }, "domains": [ ["foo-domain", "shortstr"] diff --git a/license_info b/license_info index ccba7bb..74a1602 100644 --- a/license_info +++ b/license_info @@ -1,4 +1,4 @@ The files amqp-rabbitmq-0.8.json and amqp-rabbitmq-0.9.1.json are -"Copyright (C) 2008-2011 VMware", Inc. and are covered by the MIT +"Copyright (C) 2008-2012 VMware", Inc. and are covered by the MIT license. -- cgit v1.2.1 -- cgit v1.2.1 -- cgit v1.2.1 -- cgit v1.2.1 -- cgit v1.2.1 From dd673ebcbe884fa2b8fe77ee6dfde6a4541f382f Mon Sep 17 00:00:00 2001 From: Simon MacMullen Date: Thu, 4 Oct 2012 15:23:24 +0100 Subject: "When opening a file, it?s preferable to use open() instead of invoking this constructor directly." Also fixes it under Python 3 after 2to3 conversion, according to Alan Antonuk. --- amqp_codegen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amqp_codegen.py b/amqp_codegen.py index 5423350..ad57a9f 100644 --- a/amqp_codegen.py +++ b/amqp_codegen.py @@ -119,7 +119,7 @@ mergers = { } def merge_load_specs(filenames, ignore_conflicts): - handles = [file(filename) for filename in filenames] + handles = [open(filename) for filename in filenames] docs = [json.load(handle) for handle in handles] spec = {} for doc in docs: -- cgit v1.2.1 -- cgit v1.2.1 -- cgit v1.2.1 -- cgit v1.2.1 From 2d51052b042561865bc385e1d53d35ca3b86757e Mon Sep 17 00:00:00 2001 From: Emile Joubert Date: Wed, 23 Jan 2013 11:27:10 +0000 Subject: Update copyright 2013 --- LICENSE-MPL-RabbitMQ | 2 +- amqp-rabbitmq-0.8.json | 2 +- amqp-rabbitmq-0.9.1.json | 2 +- amqp_codegen.py | 2 +- demo_extension.json | 2 +- license_info | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/LICENSE-MPL-RabbitMQ b/LICENSE-MPL-RabbitMQ index d50e32e..4cdf783 100644 --- a/LICENSE-MPL-RabbitMQ +++ b/LICENSE-MPL-RabbitMQ @@ -447,7 +447,7 @@ EXHIBIT A -Mozilla Public License. The Original Code is RabbitMQ. The Initial Developer of the Original Code is VMware, Inc. - Copyright (c) 2007-2012 VMware, Inc. All rights reserved.'' + Copyright (c) 2007-2013 VMware, Inc. All rights reserved.'' [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should diff --git a/amqp-rabbitmq-0.8.json b/amqp-rabbitmq-0.8.json index 08f3066..e93dc1a 100644 --- a/amqp-rabbitmq-0.8.json +++ b/amqp-rabbitmq-0.8.json @@ -4,7 +4,7 @@ "minor-version": 0, "port": 5672, "copyright": [ - "Copyright (C) 2008-2012 VMware, Inc.\n", + "Copyright (C) 2008-2013 VMware, Inc.\n", "\n", "Permission is hereby granted, free of charge, to any person\n", "obtaining a copy of this file (the \"Software\"), to deal in the\n", diff --git a/amqp-rabbitmq-0.9.1.json b/amqp-rabbitmq-0.9.1.json index 9e6d55e..141e37b 100644 --- a/amqp-rabbitmq-0.9.1.json +++ b/amqp-rabbitmq-0.9.1.json @@ -5,7 +5,7 @@ "revision": 1, "port": 5672, "copyright": [ - "Copyright (C) 2008-2012 VMware, Inc.\n", + "Copyright (C) 2008-2013 VMware, Inc.\n", "\n", "Permission is hereby granted, free of charge, to any person\n", "obtaining a copy of this file (the \"Software\"), to deal in the\n", diff --git a/amqp_codegen.py b/amqp_codegen.py index ad57a9f..61e2596 100644 --- a/amqp_codegen.py +++ b/amqp_codegen.py @@ -11,7 +11,7 @@ ## The Original Code is RabbitMQ. ## ## The Initial Developer of the Original Code is VMware, Inc. -## Copyright (c) 2007-2012 VMware, Inc. All rights reserved. +## Copyright (c) 2007-2013 VMware, Inc. All rights reserved. ## from __future__ import nested_scopes diff --git a/demo_extension.json b/demo_extension.json index eda1829..26eb322 100644 --- a/demo_extension.json +++ b/demo_extension.json @@ -2,7 +2,7 @@ "extension": { "name": "demo", "version": "1.0", - "copyright": "Copyright (C) 2009-2012 VMware, Inc." + "copyright": "Copyright (C) 2009-2013 VMware, Inc." }, "domains": [ ["foo-domain", "shortstr"] diff --git a/license_info b/license_info index 74a1602..d7dffcc 100644 --- a/license_info +++ b/license_info @@ -1,4 +1,4 @@ The files amqp-rabbitmq-0.8.json and amqp-rabbitmq-0.9.1.json are -"Copyright (C) 2008-2012 VMware", Inc. and are covered by the MIT +"Copyright (C) 2008-2013 VMware", Inc. and are covered by the MIT license. -- cgit v1.2.1