From b6a224ae642e7d16cc71688bb8661db54bfef052 Mon Sep 17 00:00:00 2001 From: Tobias Oberstein Date: Mon, 7 Nov 2016 12:20:15 +0100 Subject: [PATCH] copyrights transferred from Tavendo to Crossbar.io Technologies --- LICENSE | 2 +- autobahn/__init__.py | 2 +- autobahn/_version.py | 4 ++-- autobahn/asyncio/__init__.py | 2 +- autobahn/asyncio/rawsocket.py | 2 +- autobahn/asyncio/util.py | 2 +- autobahn/asyncio/wamp.py | 2 +- autobahn/asyncio/websocket.py | 2 +- autobahn/rawsocket/__init__.py | 2 +- autobahn/rawsocket/test/__init__.py | 2 +- autobahn/rawsocket/test/test_rawsocket_url.py | 2 +- autobahn/rawsocket/util.py | 2 +- autobahn/test/__init__.py | 2 +- autobahn/test/test_util.py | 2 +- autobahn/twisted/__init__.py | 2 +- autobahn/twisted/choosereactor.py | 2 +- autobahn/twisted/component.py | 2 +- autobahn/twisted/forwarder.py | 2 +- autobahn/twisted/rawsocket.py | 2 +- autobahn/twisted/resource.py | 2 +- autobahn/twisted/test/__init__.py | 2 +- autobahn/twisted/test/test_application_runner.py | 2 +- autobahn/twisted/test/test_choosereactor.py | 2 +- autobahn/twisted/test/test_endpoint_plugins.py | 2 +- autobahn/twisted/test/test_protocol.py | 2 +- autobahn/twisted/test/test_rawsocket.py | 2 +- autobahn/twisted/util.py | 2 +- autobahn/twisted/wamp.py | 2 +- autobahn/twisted/websocket.py | 2 +- autobahn/util.py | 2 +- autobahn/wamp/__init__.py | 2 +- autobahn/wamp/auth.py | 2 +- autobahn/wamp/component.py | 2 +- autobahn/wamp/cryptobox.py | 2 +- autobahn/wamp/cryptosign.py | 2 +- autobahn/wamp/exception.py | 2 +- autobahn/wamp/interfaces.py | 2 +- autobahn/wamp/message.py | 2 +- autobahn/wamp/protocol.py | 2 +- autobahn/wamp/request.py | 2 +- autobahn/wamp/role.py | 2 +- autobahn/wamp/serializer.py | 2 +- autobahn/wamp/test/__init__.py | 2 +- autobahn/wamp/test/test_auth.py | 2 +- autobahn/wamp/test/test_component.py | 2 +- autobahn/wamp/test/test_exception.py | 2 +- autobahn/wamp/test/test_message.py | 2 +- autobahn/wamp/test/test_protocol.py | 2 +- autobahn/wamp/test/test_protocol_peer.py | 2 +- autobahn/wamp/test/test_runner.py | 2 +- autobahn/wamp/test/test_serializer.py | 2 +- autobahn/wamp/test/test_uri_pattern.py | 2 +- autobahn/wamp/test/test_user_handler_errors.py | 2 +- autobahn/wamp/test/test_websocket.py | 2 +- autobahn/wamp/types.py | 2 +- autobahn/wamp/uri.py | 2 +- autobahn/wamp/websocket.py | 2 +- autobahn/websocket/__init__.py | 2 +- autobahn/websocket/compress.py | 2 +- autobahn/websocket/compress_base.py | 2 +- autobahn/websocket/compress_bzip2.py | 2 +- autobahn/websocket/compress_deflate.py | 2 +- autobahn/websocket/compress_snappy.py | 2 +- autobahn/websocket/interfaces.py | 2 +- autobahn/websocket/protocol.py | 2 +- autobahn/websocket/test/__init__.py | 2 +- autobahn/websocket/test/test_protocol.py | 2 +- autobahn/websocket/test/test_websocket.py | 2 +- autobahn/websocket/test/test_websocket_url.py | 2 +- autobahn/websocket/types.py | 2 +- autobahn/websocket/utf8validator.py | 2 +- autobahn/websocket/util.py | 2 +- autobahn/websocket/xormasker.py | 2 +- examples/asyncio/wamp/pubsub/basic/backend.py | 2 +- examples/asyncio/wamp/pubsub/basic/frontend.py | 2 +- examples/asyncio/wamp/pubsub/complex/backend.py | 2 +- examples/asyncio/wamp/pubsub/complex/frontend.py | 2 +- examples/asyncio/wamp/pubsub/decorators/backend.py | 2 +- examples/asyncio/wamp/pubsub/decorators/frontend.py | 2 +- examples/asyncio/wamp/pubsub/options/backend.py | 2 +- examples/asyncio/wamp/pubsub/options/frontend.py | 2 +- examples/asyncio/wamp/pubsub/tls/backend_selfsigned.py | 2 +- examples/asyncio/wamp/pubsub/unsubscribe/backend.py | 2 +- examples/asyncio/wamp/pubsub/unsubscribe/frontend.py | 2 +- examples/asyncio/wamp/rpc/arguments/backend.py | 2 +- examples/asyncio/wamp/rpc/arguments/frontend.py | 2 +- examples/asyncio/wamp/rpc/complex/backend.py | 2 +- examples/asyncio/wamp/rpc/complex/frontend.py | 2 +- examples/asyncio/wamp/rpc/decorators/backend.py | 2 +- examples/asyncio/wamp/rpc/decorators/frontend.py | 2 +- examples/asyncio/wamp/rpc/errors/backend.py | 2 +- examples/asyncio/wamp/rpc/errors/frontend.py | 2 +- examples/asyncio/wamp/rpc/options/backend.py | 2 +- examples/asyncio/wamp/rpc/options/frontend.py | 2 +- examples/asyncio/wamp/rpc/progress/backend.py | 2 +- examples/asyncio/wamp/rpc/progress/frontend.py | 2 +- examples/asyncio/wamp/rpc/slowsquare/backend.py | 2 +- examples/asyncio/wamp/rpc/slowsquare/frontend.py | 2 +- examples/asyncio/wamp/rpc/timeservice/backend.py | 2 +- examples/asyncio/wamp/rpc/timeservice/frontend.py | 2 +- examples/asyncio/wamp/session/series/backend.py | 2 +- examples/asyncio/wamp/session/series/frontend.py | 2 +- examples/asyncio/websocket/echo/client.py | 2 +- examples/asyncio/websocket/echo/client_coroutines.py | 2 +- examples/asyncio/websocket/echo/client_coroutines_py2.py | 2 +- examples/asyncio/websocket/echo/server.py | 2 +- examples/asyncio/websocket/slowsquare/client.py | 2 +- examples/asyncio/websocket/slowsquare/server.py | 2 +- examples/asyncio/websocket/slowsquare/server_py2.py | 2 +- examples/asyncio/websocket/testee/testee_client.py | 2 +- examples/asyncio/websocket/testee/testee_server.py | 2 +- examples/twisted/wamp/app/calculator/calculator.py | 2 +- examples/twisted/wamp/app/crochet/example1/server.py | 2 +- examples/twisted/wamp/app/crochet/example2/server.py | 2 +- examples/twisted/wamp/app/dbus/bridge.py | 2 +- examples/twisted/wamp/app/hello/hello.py | 2 +- examples/twisted/wamp/app/keyvalue/store.py | 2 +- examples/twisted/wamp/app/klein/example1/server_wamp.py | 2 +- examples/twisted/wamp/app/klein/example1/server_web.py | 2 +- examples/twisted/wamp/app/klein/example2/server.py | 2 +- examples/twisted/wamp/app/serial2ws/serial2ws.ino | 2 +- examples/twisted/wamp/app/serial2ws/serial2ws.py | 2 +- .../wamp/app/subscribe_upon_call/subscribe_upon_call.py | 2 +- examples/twisted/wamp/pubsub/basic/backend.py | 2 +- examples/twisted/wamp/pubsub/basic/frontend.py | 2 +- examples/twisted/wamp/pubsub/complex/backend.py | 2 +- examples/twisted/wamp/pubsub/complex/frontend.py | 2 +- examples/twisted/wamp/pubsub/decorators/backend.py | 2 +- examples/twisted/wamp/pubsub/decorators/frontend.py | 2 +- examples/twisted/wamp/pubsub/options/backend.py | 2 +- examples/twisted/wamp/pubsub/options/frontend.py | 2 +- examples/twisted/wamp/pubsub/tls/backend_selfsigned.py | 2 +- examples/twisted/wamp/pubsub/unsubscribe/backend.py | 2 +- examples/twisted/wamp/pubsub/unsubscribe/frontend.py | 2 +- examples/twisted/wamp/rpc/arguments/backend.py | 2 +- examples/twisted/wamp/rpc/arguments/frontend.py | 2 +- examples/twisted/wamp/rpc/complex/backend.py | 2 +- examples/twisted/wamp/rpc/complex/frontend.py | 2 +- examples/twisted/wamp/rpc/decorators/backend.py | 2 +- examples/twisted/wamp/rpc/decorators/frontend.py | 2 +- examples/twisted/wamp/rpc/errors/backend.py | 2 +- examples/twisted/wamp/rpc/errors/frontend.py | 2 +- examples/twisted/wamp/rpc/options/backend.py | 2 +- examples/twisted/wamp/rpc/options/frontend.py | 2 +- examples/twisted/wamp/rpc/progress/backend.py | 2 +- examples/twisted/wamp/rpc/progress/frontend.py | 2 +- examples/twisted/wamp/rpc/slowsquare/backend.py | 2 +- examples/twisted/wamp/rpc/slowsquare/frontend.py | 2 +- examples/twisted/wamp/rpc/timeservice/backend.py | 2 +- examples/twisted/wamp/rpc/timeservice/frontend.py | 2 +- examples/twisted/websocket/auth_persona/server.py | 2 +- examples/twisted/websocket/broadcast/client.py | 2 +- examples/twisted/websocket/broadcast/server.py | 2 +- examples/twisted/websocket/echo/client.py | 2 +- examples/twisted/websocket/echo/client_coroutines.py | 2 +- examples/twisted/websocket/echo/server.py | 2 +- examples/twisted/websocket/echo_compressed/client.py | 2 +- examples/twisted/websocket/echo_compressed/client_advanced.py | 2 +- examples/twisted/websocket/echo_compressed/server.py | 2 +- examples/twisted/websocket/echo_compressed/server_advanced.py | 2 +- examples/twisted/websocket/echo_endpoints/client.py | 2 +- examples/twisted/websocket/echo_endpoints/server.py | 2 +- examples/twisted/websocket/echo_httpheaders/client.py | 2 +- examples/twisted/websocket/echo_httpheaders/server.py | 2 +- examples/twisted/websocket/echo_multicore/server.py | 2 +- examples/twisted/websocket/echo_multicore/server_reuseport.py | 2 +- examples/twisted/websocket/echo_service/echows/__init__.py | 2 +- examples/twisted/websocket/echo_service/echows/echoservice.py | 2 +- examples/twisted/websocket/echo_service/echows/main.py | 2 +- examples/twisted/websocket/echo_service/setup.py | 2 +- .../websocket/echo_service/twisted/plugins/echows_plugin.py | 2 +- examples/twisted/websocket/echo_site/server.py | 2 +- examples/twisted/websocket/echo_site_tls/server.py | 2 +- examples/twisted/websocket/echo_tls/client.py | 2 +- examples/twisted/websocket/echo_tls/server.py | 2 +- examples/twisted/websocket/echo_variants/client.py | 2 +- .../twisted/websocket/echo_variants/client_reconnecting.py | 2 +- .../twisted/websocket/echo_variants/client_with_params.py | 2 +- examples/twisted/websocket/echo_variants/client_with_proxy.py | 2 +- examples/twisted/websocket/echo_variants/server.py | 2 +- examples/twisted/websocket/echo_wsfallbacks/server.py | 2 +- examples/twisted/websocket/echo_wsgi/server.py | 2 +- examples/twisted/websocket/multiproto/client.py | 2 +- examples/twisted/websocket/multiproto/server1.py | 2 +- examples/twisted/websocket/multiproto/server2.py | 2 +- examples/twisted/websocket/ping/client.py | 2 +- examples/twisted/websocket/ping/server.py | 2 +- examples/twisted/websocket/pingpong_keepalive/client.py | 2 +- examples/twisted/websocket/pingpong_keepalive/server.py | 2 +- examples/twisted/websocket/reconnecting/client.py | 2 +- examples/twisted/websocket/reconnecting/server.py | 2 +- examples/twisted/websocket/slowsquare/client.py | 2 +- examples/twisted/websocket/slowsquare/server.py | 2 +- examples/twisted/websocket/streaming/frame_based_client.py | 2 +- examples/twisted/websocket/streaming/frame_based_server.py | 2 +- examples/twisted/websocket/streaming/message_based_client.py | 2 +- examples/twisted/websocket/streaming/message_based_server.py | 2 +- examples/twisted/websocket/streaming/ranstring.py | 2 +- examples/twisted/websocket/streaming/streaming_client.py | 2 +- .../twisted/websocket/streaming/streaming_producer_client.py | 2 +- examples/twisted/websocket/streaming/streaming_server.py | 2 +- examples/twisted/websocket/testee/testee_client.py | 2 +- examples/twisted/websocket/testee/testee_server.py | 2 +- examples/twisted/websocket/wrapping/client.py | 2 +- examples/twisted/websocket/wrapping/client_endpoint.py | 2 +- examples/twisted/websocket/wrapping/server.py | 2 +- examples/twisted/websocket/wrapping/server_endpoint.py | 2 +- examples/twisted/websocket/wxpython/client.py | 2 +- examples/twisted/websocket/wxpython/server.py | 2 +- setup.py | 2 +- twisted/plugins/autobahn_endpoints.py | 2 +- twisted/plugins/autobahn_twistd.py | 2 +- 212 files changed, 213 insertions(+), 213 deletions(-) diff --git a/LICENSE b/LICENSE index 99e2fed3b..98b5b346c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) Tavendo GmbH +Copyright (c) Crossbar.io Technologies GmbH Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/__init__.py b/autobahn/__init__.py index bebe2b29d..d186d94d5 100644 --- a/autobahn/__init__.py +++ b/autobahn/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/_version.py b/autobahn/_version.py index 652da392c..142d05392 100644 --- a/autobahn/_version.py +++ b/autobahn/_version.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,4 +24,4 @@ # ############################################################################### -__version__ = u'0.16.0' +__version__ = u'0.16.1' diff --git a/autobahn/asyncio/__init__.py b/autobahn/asyncio/__init__.py index 78d4107f8..a35c6bb7e 100644 --- a/autobahn/asyncio/__init__.py +++ b/autobahn/asyncio/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/asyncio/rawsocket.py b/autobahn/asyncio/rawsocket.py index 0e6729444..4831fadbe 100644 --- a/autobahn/asyncio/rawsocket.py +++ b/autobahn/asyncio/rawsocket.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/asyncio/util.py b/autobahn/asyncio/util.py index 19be5ce70..a95cf1295 100644 --- a/autobahn/asyncio/util.py +++ b/autobahn/asyncio/util.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/asyncio/wamp.py b/autobahn/asyncio/wamp.py index 8e6132995..dd8b9fc87 100644 --- a/autobahn/asyncio/wamp.py +++ b/autobahn/asyncio/wamp.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/asyncio/websocket.py b/autobahn/asyncio/websocket.py index bbfd9d887..f08ac6d97 100644 --- a/autobahn/asyncio/websocket.py +++ b/autobahn/asyncio/websocket.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/rawsocket/__init__.py b/autobahn/rawsocket/__init__.py index 8a4c67bff..89caae255 100644 --- a/autobahn/rawsocket/__init__.py +++ b/autobahn/rawsocket/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/rawsocket/test/__init__.py b/autobahn/rawsocket/test/__init__.py index 8a4c67bff..89caae255 100644 --- a/autobahn/rawsocket/test/__init__.py +++ b/autobahn/rawsocket/test/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/rawsocket/test/test_rawsocket_url.py b/autobahn/rawsocket/test/test_rawsocket_url.py index f0adc78ae..a5f0edd1e 100644 --- a/autobahn/rawsocket/test/test_rawsocket_url.py +++ b/autobahn/rawsocket/test/test_rawsocket_url.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/rawsocket/util.py b/autobahn/rawsocket/util.py index 66ecf8bd9..3eee819de 100644 --- a/autobahn/rawsocket/util.py +++ b/autobahn/rawsocket/util.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/test/__init__.py b/autobahn/test/__init__.py index 82b625a79..4e690480b 100644 --- a/autobahn/test/__init__.py +++ b/autobahn/test/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/test/test_util.py b/autobahn/test/test_util.py index ab2be7bcf..2d859a595 100644 --- a/autobahn/test/test_util.py +++ b/autobahn/test/test_util.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/__init__.py b/autobahn/twisted/__init__.py index 5772de7a8..80e24ad2d 100644 --- a/autobahn/twisted/__init__.py +++ b/autobahn/twisted/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/choosereactor.py b/autobahn/twisted/choosereactor.py index 8238b2275..87e3a7e76 100644 --- a/autobahn/twisted/choosereactor.py +++ b/autobahn/twisted/choosereactor.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/component.py b/autobahn/twisted/component.py index 111767dfd..9b86c2b4e 100644 --- a/autobahn/twisted/component.py +++ b/autobahn/twisted/component.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/forwarder.py b/autobahn/twisted/forwarder.py index 3cac1112b..fab716e8c 100644 --- a/autobahn/twisted/forwarder.py +++ b/autobahn/twisted/forwarder.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/rawsocket.py b/autobahn/twisted/rawsocket.py index 6e40378c1..dde7a15a9 100644 --- a/autobahn/twisted/rawsocket.py +++ b/autobahn/twisted/rawsocket.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/resource.py b/autobahn/twisted/resource.py index cb3b7b234..fa6f72cc7 100644 --- a/autobahn/twisted/resource.py +++ b/autobahn/twisted/resource.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/test/__init__.py b/autobahn/twisted/test/__init__.py index 8a4c67bff..89caae255 100644 --- a/autobahn/twisted/test/__init__.py +++ b/autobahn/twisted/test/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/test/test_application_runner.py b/autobahn/twisted/test/test_application_runner.py index 7a5f018c7..c7408ed2c 100644 --- a/autobahn/twisted/test/test_application_runner.py +++ b/autobahn/twisted/test/test_application_runner.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/test/test_choosereactor.py b/autobahn/twisted/test/test_choosereactor.py index 5e1282c31..3e8cb1c77 100644 --- a/autobahn/twisted/test/test_choosereactor.py +++ b/autobahn/twisted/test/test_choosereactor.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/test/test_endpoint_plugins.py b/autobahn/twisted/test/test_endpoint_plugins.py index c81bedd88..806ae6eef 100644 --- a/autobahn/twisted/test/test_endpoint_plugins.py +++ b/autobahn/twisted/test/test_endpoint_plugins.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/test/test_protocol.py b/autobahn/twisted/test/test_protocol.py index da50ebae8..149e18ec6 100644 --- a/autobahn/twisted/test/test_protocol.py +++ b/autobahn/twisted/test/test_protocol.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/test/test_rawsocket.py b/autobahn/twisted/test/test_rawsocket.py index efa61bf6a..3e17de279 100644 --- a/autobahn/twisted/test/test_rawsocket.py +++ b/autobahn/twisted/test/test_rawsocket.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/util.py b/autobahn/twisted/util.py index 55461531d..0b7304747 100644 --- a/autobahn/twisted/util.py +++ b/autobahn/twisted/util.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/wamp.py b/autobahn/twisted/wamp.py index 364288337..e00035ccf 100644 --- a/autobahn/twisted/wamp.py +++ b/autobahn/twisted/wamp.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/twisted/websocket.py b/autobahn/twisted/websocket.py index fdb3d243f..6ab1b99cf 100644 --- a/autobahn/twisted/websocket.py +++ b/autobahn/twisted/websocket.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/util.py b/autobahn/util.py index b190404f0..9056a88a6 100644 --- a/autobahn/util.py +++ b/autobahn/util.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/__init__.py b/autobahn/wamp/__init__.py index dd8748d2b..92b051f06 100644 --- a/autobahn/wamp/__init__.py +++ b/autobahn/wamp/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/auth.py b/autobahn/wamp/auth.py index d003608fb..e0e55755f 100644 --- a/autobahn/wamp/auth.py +++ b/autobahn/wamp/auth.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/component.py b/autobahn/wamp/component.py index c8380e652..f5e77b1e6 100644 --- a/autobahn/wamp/component.py +++ b/autobahn/wamp/component.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/cryptobox.py b/autobahn/wamp/cryptobox.py index a9277b5a3..7778c67a2 100644 --- a/autobahn/wamp/cryptobox.py +++ b/autobahn/wamp/cryptobox.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/cryptosign.py b/autobahn/wamp/cryptosign.py index 642608821..465acf6ab 100644 --- a/autobahn/wamp/cryptosign.py +++ b/autobahn/wamp/cryptosign.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/exception.py b/autobahn/wamp/exception.py index a95c5b033..d7d3a7984 100644 --- a/autobahn/wamp/exception.py +++ b/autobahn/wamp/exception.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/interfaces.py b/autobahn/wamp/interfaces.py index db5a278f7..2452f8f30 100644 --- a/autobahn/wamp/interfaces.py +++ b/autobahn/wamp/interfaces.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/message.py b/autobahn/wamp/message.py index b3fb4c404..495bfcb2d 100644 --- a/autobahn/wamp/message.py +++ b/autobahn/wamp/message.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/protocol.py b/autobahn/wamp/protocol.py index 35b77fb5d..6f8d8d487 100644 --- a/autobahn/wamp/protocol.py +++ b/autobahn/wamp/protocol.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/request.py b/autobahn/wamp/request.py index 3c7c8d87b..2d1f51c61 100644 --- a/autobahn/wamp/request.py +++ b/autobahn/wamp/request.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/role.py b/autobahn/wamp/role.py index c4fae8bad..80caffc00 100644 --- a/autobahn/wamp/role.py +++ b/autobahn/wamp/role.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/serializer.py b/autobahn/wamp/serializer.py index 8515a24ea..b7a48cf42 100644 --- a/autobahn/wamp/serializer.py +++ b/autobahn/wamp/serializer.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/__init__.py b/autobahn/wamp/test/__init__.py index 8a4c67bff..89caae255 100644 --- a/autobahn/wamp/test/__init__.py +++ b/autobahn/wamp/test/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_auth.py b/autobahn/wamp/test/test_auth.py index 6d47298b4..97d7d5b04 100644 --- a/autobahn/wamp/test/test_auth.py +++ b/autobahn/wamp/test/test_auth.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_component.py b/autobahn/wamp/test/test_component.py index bef9f5194..6e3616be7 100644 --- a/autobahn/wamp/test/test_component.py +++ b/autobahn/wamp/test/test_component.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_exception.py b/autobahn/wamp/test/test_exception.py index 802248c74..75da1c209 100644 --- a/autobahn/wamp/test/test_exception.py +++ b/autobahn/wamp/test/test_exception.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_message.py b/autobahn/wamp/test/test_message.py index 3a5d283eb..677be165e 100644 --- a/autobahn/wamp/test/test_message.py +++ b/autobahn/wamp/test/test_message.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_protocol.py b/autobahn/wamp/test/test_protocol.py index ef97e578a..37992434f 100644 --- a/autobahn/wamp/test/test_protocol.py +++ b/autobahn/wamp/test/test_protocol.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_protocol_peer.py b/autobahn/wamp/test/test_protocol_peer.py index b074f8ad9..ee2078619 100644 --- a/autobahn/wamp/test/test_protocol_peer.py +++ b/autobahn/wamp/test/test_protocol_peer.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_runner.py b/autobahn/wamp/test/test_runner.py index ec5ca82c5..2d5e4f48a 100644 --- a/autobahn/wamp/test/test_runner.py +++ b/autobahn/wamp/test/test_runner.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_serializer.py b/autobahn/wamp/test/test_serializer.py index af87010e4..212add9b4 100644 --- a/autobahn/wamp/test/test_serializer.py +++ b/autobahn/wamp/test/test_serializer.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_uri_pattern.py b/autobahn/wamp/test/test_uri_pattern.py index f296954b7..62601cd6e 100644 --- a/autobahn/wamp/test/test_uri_pattern.py +++ b/autobahn/wamp/test/test_uri_pattern.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_user_handler_errors.py b/autobahn/wamp/test/test_user_handler_errors.py index e64ffb192..35570badc 100644 --- a/autobahn/wamp/test/test_user_handler_errors.py +++ b/autobahn/wamp/test/test_user_handler_errors.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/test/test_websocket.py b/autobahn/wamp/test/test_websocket.py index 32e45bfcb..0a1ecfafb 100644 --- a/autobahn/wamp/test/test_websocket.py +++ b/autobahn/wamp/test/test_websocket.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/types.py b/autobahn/wamp/types.py index 17529a14c..2bdb91116 100644 --- a/autobahn/wamp/types.py +++ b/autobahn/wamp/types.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/uri.py b/autobahn/wamp/uri.py index 18072994c..c58892345 100644 --- a/autobahn/wamp/uri.py +++ b/autobahn/wamp/uri.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/wamp/websocket.py b/autobahn/wamp/websocket.py index 059c5e911..498c68290 100644 --- a/autobahn/wamp/websocket.py +++ b/autobahn/wamp/websocket.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/__init__.py b/autobahn/websocket/__init__.py index d9aec846f..90d6418fa 100644 --- a/autobahn/websocket/__init__.py +++ b/autobahn/websocket/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/compress.py b/autobahn/websocket/compress.py index 9cf79fb49..5a732c108 100644 --- a/autobahn/websocket/compress.py +++ b/autobahn/websocket/compress.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/compress_base.py b/autobahn/websocket/compress_base.py index dac85a6f6..5402466fa 100644 --- a/autobahn/websocket/compress_base.py +++ b/autobahn/websocket/compress_base.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/compress_bzip2.py b/autobahn/websocket/compress_bzip2.py index e47f33323..5b759235a 100644 --- a/autobahn/websocket/compress_bzip2.py +++ b/autobahn/websocket/compress_bzip2.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/compress_deflate.py b/autobahn/websocket/compress_deflate.py index 20fd6d808..9ea1a9aa1 100644 --- a/autobahn/websocket/compress_deflate.py +++ b/autobahn/websocket/compress_deflate.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/compress_snappy.py b/autobahn/websocket/compress_snappy.py index 53800c099..4416c523b 100644 --- a/autobahn/websocket/compress_snappy.py +++ b/autobahn/websocket/compress_snappy.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/interfaces.py b/autobahn/websocket/interfaces.py index 7bcdada41..d569a0a04 100644 --- a/autobahn/websocket/interfaces.py +++ b/autobahn/websocket/interfaces.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/protocol.py b/autobahn/websocket/protocol.py index ec4eea838..6ab4dafb6 100755 --- a/autobahn/websocket/protocol.py +++ b/autobahn/websocket/protocol.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/test/__init__.py b/autobahn/websocket/test/__init__.py index 8a4c67bff..89caae255 100644 --- a/autobahn/websocket/test/__init__.py +++ b/autobahn/websocket/test/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/test/test_protocol.py b/autobahn/websocket/test/test_protocol.py index 9e578bfc5..aee732fc7 100644 --- a/autobahn/websocket/test/test_protocol.py +++ b/autobahn/websocket/test/test_protocol.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/test/test_websocket.py b/autobahn/websocket/test/test_websocket.py index 81a231478..0e76ab09c 100644 --- a/autobahn/websocket/test/test_websocket.py +++ b/autobahn/websocket/test/test_websocket.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/test/test_websocket_url.py b/autobahn/websocket/test/test_websocket_url.py index 4fba7973f..15fd8b5e7 100644 --- a/autobahn/websocket/test/test_websocket_url.py +++ b/autobahn/websocket/test/test_websocket_url.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/types.py b/autobahn/websocket/types.py index 1b99a2f6e..37c734983 100644 --- a/autobahn/websocket/types.py +++ b/autobahn/websocket/types.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/utf8validator.py b/autobahn/websocket/utf8validator.py index bb4ad3471..5828fd67b 100644 --- a/autobahn/websocket/utf8validator.py +++ b/autobahn/websocket/utf8validator.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/util.py b/autobahn/websocket/util.py index 3a47374c0..3935a1d89 100644 --- a/autobahn/websocket/util.py +++ b/autobahn/websocket/util.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/autobahn/websocket/xormasker.py b/autobahn/websocket/xormasker.py index 84f6c6bb5..d52ffee58 100644 --- a/autobahn/websocket/xormasker.py +++ b/autobahn/websocket/xormasker.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/basic/backend.py b/examples/asyncio/wamp/pubsub/basic/backend.py index ceafdf3fe..ad02573de 100644 --- a/examples/asyncio/wamp/pubsub/basic/backend.py +++ b/examples/asyncio/wamp/pubsub/basic/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/basic/frontend.py b/examples/asyncio/wamp/pubsub/basic/frontend.py index fe2747b0b..79f8011aa 100644 --- a/examples/asyncio/wamp/pubsub/basic/frontend.py +++ b/examples/asyncio/wamp/pubsub/basic/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/complex/backend.py b/examples/asyncio/wamp/pubsub/complex/backend.py index 508e8b94b..f3932e2ae 100644 --- a/examples/asyncio/wamp/pubsub/complex/backend.py +++ b/examples/asyncio/wamp/pubsub/complex/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/complex/frontend.py b/examples/asyncio/wamp/pubsub/complex/frontend.py index 5871b8b55..65b9ff274 100644 --- a/examples/asyncio/wamp/pubsub/complex/frontend.py +++ b/examples/asyncio/wamp/pubsub/complex/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/decorators/backend.py b/examples/asyncio/wamp/pubsub/decorators/backend.py index ea6be815e..443e76fc3 100644 --- a/examples/asyncio/wamp/pubsub/decorators/backend.py +++ b/examples/asyncio/wamp/pubsub/decorators/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/decorators/frontend.py b/examples/asyncio/wamp/pubsub/decorators/frontend.py index 75efd41cd..dccdc5491 100644 --- a/examples/asyncio/wamp/pubsub/decorators/frontend.py +++ b/examples/asyncio/wamp/pubsub/decorators/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/options/backend.py b/examples/asyncio/wamp/pubsub/options/backend.py index 8046713d6..407bd42e8 100644 --- a/examples/asyncio/wamp/pubsub/options/backend.py +++ b/examples/asyncio/wamp/pubsub/options/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/options/frontend.py b/examples/asyncio/wamp/pubsub/options/frontend.py index 11d2eb99f..816c39f58 100644 --- a/examples/asyncio/wamp/pubsub/options/frontend.py +++ b/examples/asyncio/wamp/pubsub/options/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/tls/backend_selfsigned.py b/examples/asyncio/wamp/pubsub/tls/backend_selfsigned.py index 8137a7dad..41b8bc9bd 100644 --- a/examples/asyncio/wamp/pubsub/tls/backend_selfsigned.py +++ b/examples/asyncio/wamp/pubsub/tls/backend_selfsigned.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/unsubscribe/backend.py b/examples/asyncio/wamp/pubsub/unsubscribe/backend.py index 08ae438f7..8192f6bae 100644 --- a/examples/asyncio/wamp/pubsub/unsubscribe/backend.py +++ b/examples/asyncio/wamp/pubsub/unsubscribe/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/pubsub/unsubscribe/frontend.py b/examples/asyncio/wamp/pubsub/unsubscribe/frontend.py index 79f44c4d6..bd27dc7cf 100644 --- a/examples/asyncio/wamp/pubsub/unsubscribe/frontend.py +++ b/examples/asyncio/wamp/pubsub/unsubscribe/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/arguments/backend.py b/examples/asyncio/wamp/rpc/arguments/backend.py index 630084290..5920cc935 100644 --- a/examples/asyncio/wamp/rpc/arguments/backend.py +++ b/examples/asyncio/wamp/rpc/arguments/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/arguments/frontend.py b/examples/asyncio/wamp/rpc/arguments/frontend.py index 8b56f737f..dcbb5b376 100644 --- a/examples/asyncio/wamp/rpc/arguments/frontend.py +++ b/examples/asyncio/wamp/rpc/arguments/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/complex/backend.py b/examples/asyncio/wamp/rpc/complex/backend.py index 42d2ceb68..049f6614b 100644 --- a/examples/asyncio/wamp/rpc/complex/backend.py +++ b/examples/asyncio/wamp/rpc/complex/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/complex/frontend.py b/examples/asyncio/wamp/rpc/complex/frontend.py index 180c115ec..6196ed4b8 100644 --- a/examples/asyncio/wamp/rpc/complex/frontend.py +++ b/examples/asyncio/wamp/rpc/complex/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/decorators/backend.py b/examples/asyncio/wamp/rpc/decorators/backend.py index 76bd45a7d..27c55082e 100644 --- a/examples/asyncio/wamp/rpc/decorators/backend.py +++ b/examples/asyncio/wamp/rpc/decorators/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/decorators/frontend.py b/examples/asyncio/wamp/rpc/decorators/frontend.py index 37c83848d..4b061482e 100644 --- a/examples/asyncio/wamp/rpc/decorators/frontend.py +++ b/examples/asyncio/wamp/rpc/decorators/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/errors/backend.py b/examples/asyncio/wamp/rpc/errors/backend.py index e567af34b..61c7ce0e5 100644 --- a/examples/asyncio/wamp/rpc/errors/backend.py +++ b/examples/asyncio/wamp/rpc/errors/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/errors/frontend.py b/examples/asyncio/wamp/rpc/errors/frontend.py index 41757561b..f3d5abdcb 100644 --- a/examples/asyncio/wamp/rpc/errors/frontend.py +++ b/examples/asyncio/wamp/rpc/errors/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/options/backend.py b/examples/asyncio/wamp/rpc/options/backend.py index 32940862e..edb25cd97 100644 --- a/examples/asyncio/wamp/rpc/options/backend.py +++ b/examples/asyncio/wamp/rpc/options/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/options/frontend.py b/examples/asyncio/wamp/rpc/options/frontend.py index 4b5de8d38..d69400e49 100644 --- a/examples/asyncio/wamp/rpc/options/frontend.py +++ b/examples/asyncio/wamp/rpc/options/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/progress/backend.py b/examples/asyncio/wamp/rpc/progress/backend.py index 133d9158e..852921f64 100644 --- a/examples/asyncio/wamp/rpc/progress/backend.py +++ b/examples/asyncio/wamp/rpc/progress/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/progress/frontend.py b/examples/asyncio/wamp/rpc/progress/frontend.py index 4386cab51..8f63cba9e 100644 --- a/examples/asyncio/wamp/rpc/progress/frontend.py +++ b/examples/asyncio/wamp/rpc/progress/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/slowsquare/backend.py b/examples/asyncio/wamp/rpc/slowsquare/backend.py index f24b3cef7..a17eaec83 100644 --- a/examples/asyncio/wamp/rpc/slowsquare/backend.py +++ b/examples/asyncio/wamp/rpc/slowsquare/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/slowsquare/frontend.py b/examples/asyncio/wamp/rpc/slowsquare/frontend.py index f7b19499a..3c3b5d052 100644 --- a/examples/asyncio/wamp/rpc/slowsquare/frontend.py +++ b/examples/asyncio/wamp/rpc/slowsquare/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/timeservice/backend.py b/examples/asyncio/wamp/rpc/timeservice/backend.py index ed3a93517..9329616b5 100644 --- a/examples/asyncio/wamp/rpc/timeservice/backend.py +++ b/examples/asyncio/wamp/rpc/timeservice/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/rpc/timeservice/frontend.py b/examples/asyncio/wamp/rpc/timeservice/frontend.py index 5a130eef3..95f869dfc 100644 --- a/examples/asyncio/wamp/rpc/timeservice/frontend.py +++ b/examples/asyncio/wamp/rpc/timeservice/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/session/series/backend.py b/examples/asyncio/wamp/session/series/backend.py index c23041b40..cedb122ab 100644 --- a/examples/asyncio/wamp/session/series/backend.py +++ b/examples/asyncio/wamp/session/series/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/wamp/session/series/frontend.py b/examples/asyncio/wamp/session/series/frontend.py index f353563b7..199b0c1bf 100644 --- a/examples/asyncio/wamp/session/series/frontend.py +++ b/examples/asyncio/wamp/session/series/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/websocket/echo/client.py b/examples/asyncio/websocket/echo/client.py index 737b1df23..d47a09e06 100644 --- a/examples/asyncio/websocket/echo/client.py +++ b/examples/asyncio/websocket/echo/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/websocket/echo/client_coroutines.py b/examples/asyncio/websocket/echo/client_coroutines.py index 7d4a08996..0e0a9e533 100644 --- a/examples/asyncio/websocket/echo/client_coroutines.py +++ b/examples/asyncio/websocket/echo/client_coroutines.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/websocket/echo/client_coroutines_py2.py b/examples/asyncio/websocket/echo/client_coroutines_py2.py index 0bad9baff..3532c8d34 100644 --- a/examples/asyncio/websocket/echo/client_coroutines_py2.py +++ b/examples/asyncio/websocket/echo/client_coroutines_py2.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/websocket/echo/server.py b/examples/asyncio/websocket/echo/server.py index 65ce35c67..0815a6158 100644 --- a/examples/asyncio/websocket/echo/server.py +++ b/examples/asyncio/websocket/echo/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/websocket/slowsquare/client.py b/examples/asyncio/websocket/slowsquare/client.py index deeb8f7cf..1c12b2966 100644 --- a/examples/asyncio/websocket/slowsquare/client.py +++ b/examples/asyncio/websocket/slowsquare/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/websocket/slowsquare/server.py b/examples/asyncio/websocket/slowsquare/server.py index 8cf32c5ed..03cc0a4e3 100644 --- a/examples/asyncio/websocket/slowsquare/server.py +++ b/examples/asyncio/websocket/slowsquare/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/websocket/slowsquare/server_py2.py b/examples/asyncio/websocket/slowsquare/server_py2.py index 960b6ce62..142b80cdf 100644 --- a/examples/asyncio/websocket/slowsquare/server_py2.py +++ b/examples/asyncio/websocket/slowsquare/server_py2.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/websocket/testee/testee_client.py b/examples/asyncio/websocket/testee/testee_client.py index 16ae94b35..3239480a0 100644 --- a/examples/asyncio/websocket/testee/testee_client.py +++ b/examples/asyncio/websocket/testee/testee_client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/asyncio/websocket/testee/testee_server.py b/examples/asyncio/websocket/testee/testee_server.py index da9733d68..d1b5c7257 100644 --- a/examples/asyncio/websocket/testee/testee_server.py +++ b/examples/asyncio/websocket/testee/testee_server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/calculator/calculator.py b/examples/twisted/wamp/app/calculator/calculator.py index 8a2b8ebac..186c49cb6 100644 --- a/examples/twisted/wamp/app/calculator/calculator.py +++ b/examples/twisted/wamp/app/calculator/calculator.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/crochet/example1/server.py b/examples/twisted/wamp/app/crochet/example1/server.py index 269e68f75..67c35b580 100644 --- a/examples/twisted/wamp/app/crochet/example1/server.py +++ b/examples/twisted/wamp/app/crochet/example1/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/crochet/example2/server.py b/examples/twisted/wamp/app/crochet/example2/server.py index 6b761e14b..4844a7c03 100644 --- a/examples/twisted/wamp/app/crochet/example2/server.py +++ b/examples/twisted/wamp/app/crochet/example2/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/dbus/bridge.py b/examples/twisted/wamp/app/dbus/bridge.py index 2f5d83a48..6ce14b7bd 100644 --- a/examples/twisted/wamp/app/dbus/bridge.py +++ b/examples/twisted/wamp/app/dbus/bridge.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/hello/hello.py b/examples/twisted/wamp/app/hello/hello.py index b77283a7e..b851c6f3f 100644 --- a/examples/twisted/wamp/app/hello/hello.py +++ b/examples/twisted/wamp/app/hello/hello.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/keyvalue/store.py b/examples/twisted/wamp/app/keyvalue/store.py index 4480b8728..ce7166964 100644 --- a/examples/twisted/wamp/app/keyvalue/store.py +++ b/examples/twisted/wamp/app/keyvalue/store.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/klein/example1/server_wamp.py b/examples/twisted/wamp/app/klein/example1/server_wamp.py index b80abde86..226441c89 100644 --- a/examples/twisted/wamp/app/klein/example1/server_wamp.py +++ b/examples/twisted/wamp/app/klein/example1/server_wamp.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/klein/example1/server_web.py b/examples/twisted/wamp/app/klein/example1/server_web.py index 1c8dcc120..ab6de2332 100644 --- a/examples/twisted/wamp/app/klein/example1/server_web.py +++ b/examples/twisted/wamp/app/klein/example1/server_web.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/klein/example2/server.py b/examples/twisted/wamp/app/klein/example2/server.py index 7824f058b..8f31aa195 100644 --- a/examples/twisted/wamp/app/klein/example2/server.py +++ b/examples/twisted/wamp/app/klein/example2/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/serial2ws/serial2ws.ino b/examples/twisted/wamp/app/serial2ws/serial2ws.ino index 25a6780d4..3205e6778 100644 --- a/examples/twisted/wamp/app/serial2ws/serial2ws.ino +++ b/examples/twisted/wamp/app/serial2ws/serial2ws.ino @@ -2,7 +2,7 @@ // // The MIT License (MIT) // -// Copyright (c) Tavendo GmbH +// Copyright (c) Crossbar.io Technologies GmbH // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/serial2ws/serial2ws.py b/examples/twisted/wamp/app/serial2ws/serial2ws.py index d4b2226ec..9e652f43e 100644 --- a/examples/twisted/wamp/app/serial2ws/serial2ws.py +++ b/examples/twisted/wamp/app/serial2ws/serial2ws.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/app/subscribe_upon_call/subscribe_upon_call.py b/examples/twisted/wamp/app/subscribe_upon_call/subscribe_upon_call.py index 5729a1d13..cd8a0db9b 100644 --- a/examples/twisted/wamp/app/subscribe_upon_call/subscribe_upon_call.py +++ b/examples/twisted/wamp/app/subscribe_upon_call/subscribe_upon_call.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/basic/backend.py b/examples/twisted/wamp/pubsub/basic/backend.py index 6bee0fb54..6d8e905ad 100644 --- a/examples/twisted/wamp/pubsub/basic/backend.py +++ b/examples/twisted/wamp/pubsub/basic/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/basic/frontend.py b/examples/twisted/wamp/pubsub/basic/frontend.py index 2a0d96cdc..c8fb55a5d 100644 --- a/examples/twisted/wamp/pubsub/basic/frontend.py +++ b/examples/twisted/wamp/pubsub/basic/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/complex/backend.py b/examples/twisted/wamp/pubsub/complex/backend.py index e8fdea7e1..9e397f070 100644 --- a/examples/twisted/wamp/pubsub/complex/backend.py +++ b/examples/twisted/wamp/pubsub/complex/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/complex/frontend.py b/examples/twisted/wamp/pubsub/complex/frontend.py index 259f28074..3d946b50f 100644 --- a/examples/twisted/wamp/pubsub/complex/frontend.py +++ b/examples/twisted/wamp/pubsub/complex/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/decorators/backend.py b/examples/twisted/wamp/pubsub/decorators/backend.py index 274e7a1db..93fab04a4 100644 --- a/examples/twisted/wamp/pubsub/decorators/backend.py +++ b/examples/twisted/wamp/pubsub/decorators/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/decorators/frontend.py b/examples/twisted/wamp/pubsub/decorators/frontend.py index 5d84019a0..a2b0441c1 100644 --- a/examples/twisted/wamp/pubsub/decorators/frontend.py +++ b/examples/twisted/wamp/pubsub/decorators/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/options/backend.py b/examples/twisted/wamp/pubsub/options/backend.py index 94a97201e..96dc5e1f4 100644 --- a/examples/twisted/wamp/pubsub/options/backend.py +++ b/examples/twisted/wamp/pubsub/options/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/options/frontend.py b/examples/twisted/wamp/pubsub/options/frontend.py index 8dbc84652..8c9fba3a9 100644 --- a/examples/twisted/wamp/pubsub/options/frontend.py +++ b/examples/twisted/wamp/pubsub/options/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/tls/backend_selfsigned.py b/examples/twisted/wamp/pubsub/tls/backend_selfsigned.py index ff4bcff9b..92c49a59b 100644 --- a/examples/twisted/wamp/pubsub/tls/backend_selfsigned.py +++ b/examples/twisted/wamp/pubsub/tls/backend_selfsigned.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/unsubscribe/backend.py b/examples/twisted/wamp/pubsub/unsubscribe/backend.py index d09dcaa10..25cc8dba3 100644 --- a/examples/twisted/wamp/pubsub/unsubscribe/backend.py +++ b/examples/twisted/wamp/pubsub/unsubscribe/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/pubsub/unsubscribe/frontend.py b/examples/twisted/wamp/pubsub/unsubscribe/frontend.py index 0fadd508e..66b5be71f 100644 --- a/examples/twisted/wamp/pubsub/unsubscribe/frontend.py +++ b/examples/twisted/wamp/pubsub/unsubscribe/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/arguments/backend.py b/examples/twisted/wamp/rpc/arguments/backend.py index 4804fad95..d8ab4d728 100644 --- a/examples/twisted/wamp/rpc/arguments/backend.py +++ b/examples/twisted/wamp/rpc/arguments/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/arguments/frontend.py b/examples/twisted/wamp/rpc/arguments/frontend.py index 0dadf5416..880bff097 100644 --- a/examples/twisted/wamp/rpc/arguments/frontend.py +++ b/examples/twisted/wamp/rpc/arguments/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/complex/backend.py b/examples/twisted/wamp/rpc/complex/backend.py index a18be359e..2b7a0268d 100644 --- a/examples/twisted/wamp/rpc/complex/backend.py +++ b/examples/twisted/wamp/rpc/complex/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/complex/frontend.py b/examples/twisted/wamp/rpc/complex/frontend.py index a1f78c915..ae50ec2b2 100644 --- a/examples/twisted/wamp/rpc/complex/frontend.py +++ b/examples/twisted/wamp/rpc/complex/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/decorators/backend.py b/examples/twisted/wamp/rpc/decorators/backend.py index 8ff981277..92825c026 100644 --- a/examples/twisted/wamp/rpc/decorators/backend.py +++ b/examples/twisted/wamp/rpc/decorators/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/decorators/frontend.py b/examples/twisted/wamp/rpc/decorators/frontend.py index 3b285b1a6..19f82b7ac 100644 --- a/examples/twisted/wamp/rpc/decorators/frontend.py +++ b/examples/twisted/wamp/rpc/decorators/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/errors/backend.py b/examples/twisted/wamp/rpc/errors/backend.py index ceebf11bf..33d108d4b 100644 --- a/examples/twisted/wamp/rpc/errors/backend.py +++ b/examples/twisted/wamp/rpc/errors/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/errors/frontend.py b/examples/twisted/wamp/rpc/errors/frontend.py index d0f9a7dd5..b5c726022 100644 --- a/examples/twisted/wamp/rpc/errors/frontend.py +++ b/examples/twisted/wamp/rpc/errors/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/options/backend.py b/examples/twisted/wamp/rpc/options/backend.py index d01263b75..bf2397472 100644 --- a/examples/twisted/wamp/rpc/options/backend.py +++ b/examples/twisted/wamp/rpc/options/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/options/frontend.py b/examples/twisted/wamp/rpc/options/frontend.py index 56f42f27f..be0ca1615 100644 --- a/examples/twisted/wamp/rpc/options/frontend.py +++ b/examples/twisted/wamp/rpc/options/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/progress/backend.py b/examples/twisted/wamp/rpc/progress/backend.py index 612acbff9..1bb53dc60 100644 --- a/examples/twisted/wamp/rpc/progress/backend.py +++ b/examples/twisted/wamp/rpc/progress/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/progress/frontend.py b/examples/twisted/wamp/rpc/progress/frontend.py index 09f648e75..9cd81125c 100644 --- a/examples/twisted/wamp/rpc/progress/frontend.py +++ b/examples/twisted/wamp/rpc/progress/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/slowsquare/backend.py b/examples/twisted/wamp/rpc/slowsquare/backend.py index cb12b1e96..5fd733778 100644 --- a/examples/twisted/wamp/rpc/slowsquare/backend.py +++ b/examples/twisted/wamp/rpc/slowsquare/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/slowsquare/frontend.py b/examples/twisted/wamp/rpc/slowsquare/frontend.py index cde5aac41..d9d5854a2 100644 --- a/examples/twisted/wamp/rpc/slowsquare/frontend.py +++ b/examples/twisted/wamp/rpc/slowsquare/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/timeservice/backend.py b/examples/twisted/wamp/rpc/timeservice/backend.py index c98f51fb5..6e7a796cd 100644 --- a/examples/twisted/wamp/rpc/timeservice/backend.py +++ b/examples/twisted/wamp/rpc/timeservice/backend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/wamp/rpc/timeservice/frontend.py b/examples/twisted/wamp/rpc/timeservice/frontend.py index 7f98eec07..763933e32 100644 --- a/examples/twisted/wamp/rpc/timeservice/frontend.py +++ b/examples/twisted/wamp/rpc/timeservice/frontend.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/auth_persona/server.py b/examples/twisted/websocket/auth_persona/server.py index 551f27a5c..e2593f0b4 100644 --- a/examples/twisted/websocket/auth_persona/server.py +++ b/examples/twisted/websocket/auth_persona/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/broadcast/client.py b/examples/twisted/websocket/broadcast/client.py index 337e07207..a50ea6bbe 100644 --- a/examples/twisted/websocket/broadcast/client.py +++ b/examples/twisted/websocket/broadcast/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/broadcast/server.py b/examples/twisted/websocket/broadcast/server.py index 122ca0e1b..27a56fd6c 100644 --- a/examples/twisted/websocket/broadcast/server.py +++ b/examples/twisted/websocket/broadcast/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo/client.py b/examples/twisted/websocket/echo/client.py index 0a23d4d8c..677cc05ed 100644 --- a/examples/twisted/websocket/echo/client.py +++ b/examples/twisted/websocket/echo/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo/client_coroutines.py b/examples/twisted/websocket/echo/client_coroutines.py index af21f8b58..6c4171c25 100644 --- a/examples/twisted/websocket/echo/client_coroutines.py +++ b/examples/twisted/websocket/echo/client_coroutines.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo/server.py b/examples/twisted/websocket/echo/server.py index 59c99a299..1dea01021 100644 --- a/examples/twisted/websocket/echo/server.py +++ b/examples/twisted/websocket/echo/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_compressed/client.py b/examples/twisted/websocket/echo_compressed/client.py index aeb34bdad..2a20ab3ca 100644 --- a/examples/twisted/websocket/echo_compressed/client.py +++ b/examples/twisted/websocket/echo_compressed/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_compressed/client_advanced.py b/examples/twisted/websocket/echo_compressed/client_advanced.py index a1c439501..fa42c9596 100644 --- a/examples/twisted/websocket/echo_compressed/client_advanced.py +++ b/examples/twisted/websocket/echo_compressed/client_advanced.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_compressed/server.py b/examples/twisted/websocket/echo_compressed/server.py index ffd61150d..c807426a7 100644 --- a/examples/twisted/websocket/echo_compressed/server.py +++ b/examples/twisted/websocket/echo_compressed/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_compressed/server_advanced.py b/examples/twisted/websocket/echo_compressed/server_advanced.py index 5e4d3b5e3..30b06e9b4 100644 --- a/examples/twisted/websocket/echo_compressed/server_advanced.py +++ b/examples/twisted/websocket/echo_compressed/server_advanced.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_endpoints/client.py b/examples/twisted/websocket/echo_endpoints/client.py index df0e3f45c..62e2f83ad 100644 --- a/examples/twisted/websocket/echo_endpoints/client.py +++ b/examples/twisted/websocket/echo_endpoints/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_endpoints/server.py b/examples/twisted/websocket/echo_endpoints/server.py index 7fc2965c4..fcda6202c 100644 --- a/examples/twisted/websocket/echo_endpoints/server.py +++ b/examples/twisted/websocket/echo_endpoints/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_httpheaders/client.py b/examples/twisted/websocket/echo_httpheaders/client.py index 0e92f30c2..5e3c07d34 100644 --- a/examples/twisted/websocket/echo_httpheaders/client.py +++ b/examples/twisted/websocket/echo_httpheaders/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_httpheaders/server.py b/examples/twisted/websocket/echo_httpheaders/server.py index d9678c8fd..8fa492915 100644 --- a/examples/twisted/websocket/echo_httpheaders/server.py +++ b/examples/twisted/websocket/echo_httpheaders/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_multicore/server.py b/examples/twisted/websocket/echo_multicore/server.py index 99d6195a4..a87d89863 100644 --- a/examples/twisted/websocket/echo_multicore/server.py +++ b/examples/twisted/websocket/echo_multicore/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_multicore/server_reuseport.py b/examples/twisted/websocket/echo_multicore/server_reuseport.py index 5d0812c45..16807de07 100644 --- a/examples/twisted/websocket/echo_multicore/server_reuseport.py +++ b/examples/twisted/websocket/echo_multicore/server_reuseport.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_service/echows/__init__.py b/examples/twisted/websocket/echo_service/echows/__init__.py index 27b1af29f..1e0d0df0c 100644 --- a/examples/twisted/websocket/echo_service/echows/__init__.py +++ b/examples/twisted/websocket/echo_service/echows/__init__.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_service/echows/echoservice.py b/examples/twisted/websocket/echo_service/echows/echoservice.py index 7abfd607f..5d80ed650 100644 --- a/examples/twisted/websocket/echo_service/echows/echoservice.py +++ b/examples/twisted/websocket/echo_service/echows/echoservice.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_service/echows/main.py b/examples/twisted/websocket/echo_service/echows/main.py index a24ce6589..3471e1d91 100644 --- a/examples/twisted/websocket/echo_service/echows/main.py +++ b/examples/twisted/websocket/echo_service/echows/main.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_service/setup.py b/examples/twisted/websocket/echo_service/setup.py index 494337891..de228758f 100644 --- a/examples/twisted/websocket/echo_service/setup.py +++ b/examples/twisted/websocket/echo_service/setup.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_service/twisted/plugins/echows_plugin.py b/examples/twisted/websocket/echo_service/twisted/plugins/echows_plugin.py index 94338b039..f62dc1115 100644 --- a/examples/twisted/websocket/echo_service/twisted/plugins/echows_plugin.py +++ b/examples/twisted/websocket/echo_service/twisted/plugins/echows_plugin.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_site/server.py b/examples/twisted/websocket/echo_site/server.py index 9c9b34975..e8abe203b 100644 --- a/examples/twisted/websocket/echo_site/server.py +++ b/examples/twisted/websocket/echo_site/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_site_tls/server.py b/examples/twisted/websocket/echo_site_tls/server.py index 02a3142e4..df3408d2b 100644 --- a/examples/twisted/websocket/echo_site_tls/server.py +++ b/examples/twisted/websocket/echo_site_tls/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_tls/client.py b/examples/twisted/websocket/echo_tls/client.py index 237e30d70..f3213a000 100644 --- a/examples/twisted/websocket/echo_tls/client.py +++ b/examples/twisted/websocket/echo_tls/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_tls/server.py b/examples/twisted/websocket/echo_tls/server.py index 00444dc1d..30c9b804e 100644 --- a/examples/twisted/websocket/echo_tls/server.py +++ b/examples/twisted/websocket/echo_tls/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_variants/client.py b/examples/twisted/websocket/echo_variants/client.py index f88aac664..a4de3ccd9 100644 --- a/examples/twisted/websocket/echo_variants/client.py +++ b/examples/twisted/websocket/echo_variants/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_variants/client_reconnecting.py b/examples/twisted/websocket/echo_variants/client_reconnecting.py index 688caeedd..5f8a728fe 100644 --- a/examples/twisted/websocket/echo_variants/client_reconnecting.py +++ b/examples/twisted/websocket/echo_variants/client_reconnecting.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_variants/client_with_params.py b/examples/twisted/websocket/echo_variants/client_with_params.py index c2ac5ddb3..3b821f595 100644 --- a/examples/twisted/websocket/echo_variants/client_with_params.py +++ b/examples/twisted/websocket/echo_variants/client_with_params.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_variants/client_with_proxy.py b/examples/twisted/websocket/echo_variants/client_with_proxy.py index 7cecfdf8e..b38ee736c 100644 --- a/examples/twisted/websocket/echo_variants/client_with_proxy.py +++ b/examples/twisted/websocket/echo_variants/client_with_proxy.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_variants/server.py b/examples/twisted/websocket/echo_variants/server.py index c785fc7a4..60374b175 100644 --- a/examples/twisted/websocket/echo_variants/server.py +++ b/examples/twisted/websocket/echo_variants/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_wsfallbacks/server.py b/examples/twisted/websocket/echo_wsfallbacks/server.py index 9086b0902..e02b04727 100644 --- a/examples/twisted/websocket/echo_wsfallbacks/server.py +++ b/examples/twisted/websocket/echo_wsfallbacks/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/echo_wsgi/server.py b/examples/twisted/websocket/echo_wsgi/server.py index 381a7d167..47a31f951 100644 --- a/examples/twisted/websocket/echo_wsgi/server.py +++ b/examples/twisted/websocket/echo_wsgi/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/multiproto/client.py b/examples/twisted/websocket/multiproto/client.py index 8d9f0ac54..13f46f4c3 100644 --- a/examples/twisted/websocket/multiproto/client.py +++ b/examples/twisted/websocket/multiproto/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/multiproto/server1.py b/examples/twisted/websocket/multiproto/server1.py index 6999369c3..a1e0a6b7f 100644 --- a/examples/twisted/websocket/multiproto/server1.py +++ b/examples/twisted/websocket/multiproto/server1.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/multiproto/server2.py b/examples/twisted/websocket/multiproto/server2.py index 32334fbc6..1b42c0427 100644 --- a/examples/twisted/websocket/multiproto/server2.py +++ b/examples/twisted/websocket/multiproto/server2.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/ping/client.py b/examples/twisted/websocket/ping/client.py index a81bc5beb..96aa3ccec 100644 --- a/examples/twisted/websocket/ping/client.py +++ b/examples/twisted/websocket/ping/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/ping/server.py b/examples/twisted/websocket/ping/server.py index 6c1e6cad2..45b8fe770 100644 --- a/examples/twisted/websocket/ping/server.py +++ b/examples/twisted/websocket/ping/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/pingpong_keepalive/client.py b/examples/twisted/websocket/pingpong_keepalive/client.py index 484e99885..4a18be060 100644 --- a/examples/twisted/websocket/pingpong_keepalive/client.py +++ b/examples/twisted/websocket/pingpong_keepalive/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/pingpong_keepalive/server.py b/examples/twisted/websocket/pingpong_keepalive/server.py index f78eb45bd..03f9c0d3b 100644 --- a/examples/twisted/websocket/pingpong_keepalive/server.py +++ b/examples/twisted/websocket/pingpong_keepalive/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/reconnecting/client.py b/examples/twisted/websocket/reconnecting/client.py index e31d6dd7b..1c50e5e96 100644 --- a/examples/twisted/websocket/reconnecting/client.py +++ b/examples/twisted/websocket/reconnecting/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/reconnecting/server.py b/examples/twisted/websocket/reconnecting/server.py index 5691616b0..c4c8c16ce 100644 --- a/examples/twisted/websocket/reconnecting/server.py +++ b/examples/twisted/websocket/reconnecting/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/slowsquare/client.py b/examples/twisted/websocket/slowsquare/client.py index 351183298..e6851c3dd 100644 --- a/examples/twisted/websocket/slowsquare/client.py +++ b/examples/twisted/websocket/slowsquare/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/slowsquare/server.py b/examples/twisted/websocket/slowsquare/server.py index eae45571d..871574608 100644 --- a/examples/twisted/websocket/slowsquare/server.py +++ b/examples/twisted/websocket/slowsquare/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/streaming/frame_based_client.py b/examples/twisted/websocket/streaming/frame_based_client.py index 181c60e3f..5e51d937c 100644 --- a/examples/twisted/websocket/streaming/frame_based_client.py +++ b/examples/twisted/websocket/streaming/frame_based_client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/streaming/frame_based_server.py b/examples/twisted/websocket/streaming/frame_based_server.py index ba23e6ccb..a5f8f1670 100644 --- a/examples/twisted/websocket/streaming/frame_based_server.py +++ b/examples/twisted/websocket/streaming/frame_based_server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/streaming/message_based_client.py b/examples/twisted/websocket/streaming/message_based_client.py index 25f8ed45d..44a26a35e 100644 --- a/examples/twisted/websocket/streaming/message_based_client.py +++ b/examples/twisted/websocket/streaming/message_based_client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/streaming/message_based_server.py b/examples/twisted/websocket/streaming/message_based_server.py index ec2c06f14..21f29a5cc 100644 --- a/examples/twisted/websocket/streaming/message_based_server.py +++ b/examples/twisted/websocket/streaming/message_based_server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/streaming/ranstring.py b/examples/twisted/websocket/streaming/ranstring.py index abb4bd128..4641bd9f4 100644 --- a/examples/twisted/websocket/streaming/ranstring.py +++ b/examples/twisted/websocket/streaming/ranstring.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/streaming/streaming_client.py b/examples/twisted/websocket/streaming/streaming_client.py index 27d1a1a2d..a36197324 100644 --- a/examples/twisted/websocket/streaming/streaming_client.py +++ b/examples/twisted/websocket/streaming/streaming_client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/streaming/streaming_producer_client.py b/examples/twisted/websocket/streaming/streaming_producer_client.py index 7a9a296d2..395c35b1e 100644 --- a/examples/twisted/websocket/streaming/streaming_producer_client.py +++ b/examples/twisted/websocket/streaming/streaming_producer_client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/streaming/streaming_server.py b/examples/twisted/websocket/streaming/streaming_server.py index 851ea8651..fb9100256 100644 --- a/examples/twisted/websocket/streaming/streaming_server.py +++ b/examples/twisted/websocket/streaming/streaming_server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/testee/testee_client.py b/examples/twisted/websocket/testee/testee_client.py index 4f9aec191..698b11a6e 100644 --- a/examples/twisted/websocket/testee/testee_client.py +++ b/examples/twisted/websocket/testee/testee_client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/testee/testee_server.py b/examples/twisted/websocket/testee/testee_server.py index 0c0323b46..87eb397aa 100644 --- a/examples/twisted/websocket/testee/testee_server.py +++ b/examples/twisted/websocket/testee/testee_server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/wrapping/client.py b/examples/twisted/websocket/wrapping/client.py index 545cf065d..533fa66a6 100644 --- a/examples/twisted/websocket/wrapping/client.py +++ b/examples/twisted/websocket/wrapping/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/wrapping/client_endpoint.py b/examples/twisted/websocket/wrapping/client_endpoint.py index 66dbc2f86..10ea1d76f 100644 --- a/examples/twisted/websocket/wrapping/client_endpoint.py +++ b/examples/twisted/websocket/wrapping/client_endpoint.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/wrapping/server.py b/examples/twisted/websocket/wrapping/server.py index 71c8cbc45..c41d5b81d 100644 --- a/examples/twisted/websocket/wrapping/server.py +++ b/examples/twisted/websocket/wrapping/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/wrapping/server_endpoint.py b/examples/twisted/websocket/wrapping/server_endpoint.py index 63c0f1af3..a318c0be5 100644 --- a/examples/twisted/websocket/wrapping/server_endpoint.py +++ b/examples/twisted/websocket/wrapping/server_endpoint.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/wxpython/client.py b/examples/twisted/websocket/wxpython/client.py index a00d9a8ce..2eaf8ebb6 100644 --- a/examples/twisted/websocket/wxpython/client.py +++ b/examples/twisted/websocket/wxpython/client.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/examples/twisted/websocket/wxpython/server.py b/examples/twisted/websocket/wxpython/server.py index a3f08fdd0..b05aadca3 100644 --- a/examples/twisted/websocket/wxpython/server.py +++ b/examples/twisted/websocket/wxpython/server.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py index b5a323b93..1a502a412 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/twisted/plugins/autobahn_endpoints.py b/twisted/plugins/autobahn_endpoints.py index c9f107b44..2538d292f 100644 --- a/twisted/plugins/autobahn_endpoints.py +++ b/twisted/plugins/autobahn_endpoints.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/twisted/plugins/autobahn_twistd.py b/twisted/plugins/autobahn_twistd.py index 7a99b2e3e..142541b95 100644 --- a/twisted/plugins/autobahn_twistd.py +++ b/twisted/plugins/autobahn_twistd.py @@ -2,7 +2,7 @@ # # The MIT License (MIT) # -# Copyright (c) Tavendo GmbH +# Copyright (c) Crossbar.io Technologies GmbH # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal