From ff97004e387cb58df0bf45cc0115fb126229e010 Mon Sep 17 00:00:00 2001 From: Julien Schmidt Date: Fri, 13 Sep 2013 20:36:04 +0200 Subject: [PATCH] Change License Header --- AUTHORS | 27 +++++++++++++++++++++++++++ buffer.go | 3 +-- connection.go | 3 +-- const.go | 3 +-- driver.go | 3 +-- driver_test.go | 8 ++++++++ errors.go | 3 +-- infile.go | 3 +-- packets.go | 3 +-- result.go | 3 +-- rows.go | 3 +-- statement.go | 3 +-- transaction.go | 3 +-- utils.go | 3 +-- utils_test.go | 3 +-- 15 files changed, 48 insertions(+), 26 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 000000000..227419641 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,27 @@ +# This is the official list of Go-MySQL-Driver authors for copyright purposes. + +# If you are submitting a patch, please add your name or the name of the +# organization which holds the copyright to this list in alphabetical order. + +# Names should be added to this file as +# Name +# The email address is not required for organizations. +# Please keep the list sorted. + + +# Individual Persons + +Arne Hormann +Hanno Braun +James Harr +Julien Schmidt +Lucas Liu +Luke Scott +Michael Woolnough +Nicola Peduzzi +Xiaobing Jiang + + +# Organizations + +Google Inc. diff --git a/buffer.go b/buffer.go index e70799747..d6c8b72e4 100644 --- a/buffer.go +++ b/buffer.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2013 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/connection.go b/connection.go index df07b955e..246a9ca17 100644 --- a/connection.go +++ b/connection.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2012 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/const.go b/const.go index 852fec55f..eb014d57d 100644 --- a/const.go +++ b/const.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2012 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/driver.go b/driver.go index 8f093c69c..7d1b1cde9 100644 --- a/driver.go +++ b/driver.go @@ -1,5 +1,4 @@ -// Copyright 2012 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/driver_test.go b/driver_test.go index 56b7ae520..247bbb814 100644 --- a/driver_test.go +++ b/driver_test.go @@ -1,3 +1,11 @@ +// Go MySQL Driver - A MySQL-Driver for Go's database/sql package +// +// Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this file, +// You can obtain one at http://mozilla.org/MPL/2.0/. + package mysql import ( diff --git a/errors.go b/errors.go index 09b3ef14e..995921f5f 100644 --- a/errors.go +++ b/errors.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2013 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/infile.go b/infile.go index e3d6cc3ff..518946d0e 100644 --- a/infile.go +++ b/infile.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2013 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/packets.go b/packets.go index 92be62158..b7860ac33 100644 --- a/packets.go +++ b/packets.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2012 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/result.go b/result.go index dd5e656b5..c6438d034 100644 --- a/result.go +++ b/result.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2012 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/rows.go b/rows.go index 4fef1d9d5..c663a8fb9 100644 --- a/rows.go +++ b/rows.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2012 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/statement.go b/statement.go index faa1ad032..a46fa1e1d 100644 --- a/statement.go +++ b/statement.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2012 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/transaction.go b/transaction.go index fb8b32ef1..d58c2b198 100644 --- a/transaction.go +++ b/transaction.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2012 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/utils.go b/utils.go index 6658ef6f3..7dfc2c2fe 100644 --- a/utils.go +++ b/utils.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2012 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/utils_test.go b/utils_test.go index 836790061..7a20fb676 100644 --- a/utils_test.go +++ b/utils_test.go @@ -1,7 +1,6 @@ // Go MySQL Driver - A MySQL-Driver for Go's database/sql package // -// Copyright 2013 Julien Schmidt. All rights reserved. -// http://www.julienschmidt.com +// Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved. // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file,