Browse Source

Update boilerplate to reflect shared copyright

Since the library has received external contributions, Google is no
longer the sole copyright holder.  Update the boilerplate at the top of
each file to reflect that, and add AUTHORS and CONTRIBUTORS files to
track this information.
Will Norris 13 years ago
parent
commit
82cbe9ba19
15 changed files with 51 additions and 36 deletions
  1. +5
    -0
      examples/example.go
  2. +7
    -0
      github/AUTHORS
  3. +15
    -0
      github/CONTRIBUTORS
  4. +2
    -3
      github/github.go
  5. +2
    -3
      github/github_test.go
  6. +2
    -3
      github/issues.go
  7. +2
    -3
      github/issues_test.go
  8. +2
    -3
      github/orgs.go
  9. +2
    -3
      github/orgs_test.go
  10. +2
    -3
      github/pulls.go
  11. +2
    -3
      github/pulls_test.go
  12. +2
    -3
      github/repos.go
  13. +2
    -3
      github/repos_test.go
  14. +2
    -3
      github/users.go
  15. +2
    -3
      github/users_test.go

+ 5
- 0
examples/example.go View File

@ -1,3 +1,8 @@
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (


+ 7
- 0
github/AUTHORS View File

@ -0,0 +1,7 @@
# This is the official list of go-github authors for copyright purposes.
# This file is distinct from the CONTRIBUTORS files.
# See the latter for an explanation.
Akeda Bagus <akeda@x-team.com>
Google Inc.
Quinn Slack <qslack@qslack.com>

+ 15
- 0
github/CONTRIBUTORS View File

@ -0,0 +1,15 @@
# People who have agreed to one of the CLAs and can contribute patches.
# The AUTHORS file lists the copyright holders; this file
# lists people. For example, Google employees are listed here
# but not in AUTHORS, because Google holds the copyright.
#
# https://developers.google.com/open-source/cla/individual
# https://developers.google.com/open-source/cla/corporate
#
# Note that the CLA isn't a copyright _assigment_ but rather a
# copyright _license_. You retain the copyright on your
# contributions.
Akeda Bagus <akeda@x-team.com>
Quinn Slack <qslack@qslack.com>
Will Norris <willnorris@google.com> <will@willnorris.com>

+ 2
- 3
github/github.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
/*
Package github provides a client for using the GitHub API.


+ 2
- 3
github/github_test.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


+ 2
- 3
github/issues.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


+ 2
- 3
github/issues_test.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


+ 2
- 3
github/orgs.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


+ 2
- 3
github/orgs_test.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


+ 2
- 3
github/pulls.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


+ 2
- 3
github/pulls_test.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


+ 2
- 3
github/repos.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


+ 2
- 3
github/repos_test.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


+ 2
- 3
github/users.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


+ 2
- 3
github/users_test.go View File

@ -1,8 +1,7 @@
// Copyright 2013 Google. All rights reserved.
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// license that can be found in the LICENSE file.
package github


Loading…
Cancel
Save