diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..b003eca --- /dev/null +++ b/AUTHORS @@ -0,0 +1,8 @@ +# This is the official list of Gorilla WebSocket authors for copyright +# purposes. +# +# Please keep the list sorted. + +Gary Burd +Joachim Bauch + diff --git a/LICENSE b/LICENSE index 09e5be6..9171c97 100644 --- a/LICENSE +++ b/LICENSE @@ -1,23 +1,22 @@ -Copyright (c) 2013, Gorilla web toolkit -All rights reserved. +Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved. -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. + Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/client.go b/client.go index 15d57ea..f20fe83 100644 --- a/client.go +++ b/client.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/client_server_test.go b/client_server_test.go index 50ee84d..a1ef8dc 100644 --- a/client_server_test.go +++ b/client_server_test.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/conn.go b/conn.go index 2580f9e..de50f64 100644 --- a/conn.go +++ b/conn.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/conn_test.go b/conn_test.go index 2e7477e..44eeeb7 100644 --- a/conn_test.go +++ b/conn_test.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/doc.go b/doc.go index 646c2cf..8135599 100644 --- a/doc.go +++ b/doc.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/examples/autobahn/server.go b/examples/autobahn/server.go index 7308dde..c483cb6 100644 --- a/examples/autobahn/server.go +++ b/examples/autobahn/server.go @@ -1,16 +1,6 @@ -// Copyright 2012 Gary Burd -// -// Licensed under the Apache License, Version 2.0 (the "License"): you may -// not use this file except in compliance with the License. You may obtain -// a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -// License for the specific language governing permissions and limitations -// under the License. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. // Command server is a test server for the Autobahn WebSockets Test Suite. package main diff --git a/examples/chat/conn.go b/examples/chat/conn.go index 85bad27..3dd0d9a 100644 --- a/examples/chat/conn.go +++ b/examples/chat/conn.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/examples/chat/hub.go b/examples/chat/hub.go index 1bab0ed..628366e 100644 --- a/examples/chat/hub.go +++ b/examples/chat/hub.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/examples/chat/main.go b/examples/chat/main.go index 7c2515b..13320b0 100644 --- a/examples/chat/main.go +++ b/examples/chat/main.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/examples/filewatch/main.go b/examples/filewatch/main.go index 499ed63..bd6c06b 100644 --- a/examples/filewatch/main.go +++ b/examples/filewatch/main.go @@ -1,4 +1,4 @@ -// Copyright 2014 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/json.go b/json.go index 594e9f3..ce8f00c 100644 --- a/json.go +++ b/json.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/json_test.go b/json_test.go index f1b7e51..2edb28d 100644 --- a/json_test.go +++ b/json_test.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/server.go b/server.go index f061c61..faeef74 100644 --- a/server.go +++ b/server.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/server_test.go b/server_test.go index 709ee04..ead0776 100644 --- a/server_test.go +++ b/server_test.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. diff --git a/util.go b/util.go index a9cfbf9..ffdc265 100644 --- a/util.go +++ b/util.go @@ -1,4 +1,4 @@ -// Copyright 2013 Gary Burd. All rights reserved. +// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file.