Skip to content

Commit 0017391

Browse files
committed
initial commit
0 parents  commit 0017391

File tree

6 files changed

+98
-0
lines changed

6 files changed

+98
-0
lines changed

AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This source code refers to The Go Authors for copyright purposes.
2+
# The master list of authors is in the main Go distribution,
3+
# visible at https://tip.golang.org/AUTHORS.

CONTRIBUTING.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Contributing to Go
2+
3+
Go is an open source project.
4+
5+
It is the work of hundreds of contributors. We appreciate your help!
6+
7+
## Filing issues
8+
9+
When [filing an issue](https://golang.org/issue/new), make sure to answer these five questions:
10+
11+
1. What version of Go are you using (`go version`)?
12+
2. What operating system and processor architecture are you using?
13+
3. What did you do?
14+
4. What did you expect to see?
15+
5. What did you see instead?
16+
17+
General questions should go to the [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) instead of the issue tracker.
18+
The gophers there will answer or ask you to file an issue if you've tripped over a bug.
19+
20+
## Contributing code
21+
22+
Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
23+
before sending patches.
24+
25+
Unless otherwise noted, the Go source files are distributed under
26+
the BSD-style license found in the LICENSE file.

CONTRIBUTORS

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This source code was written by the Go contributors.
2+
# The master list of contributors is in the main Go distribution,
3+
# visible at https://tip.golang.org/CONTRIBUTORS.

LICENSE

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2009 The Go Authors. All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
* Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
* Redistributions in binary form must reproduce the above
10+
copyright notice, this list of conditions and the following disclaimer
11+
in the documentation and/or other materials provided with the
12+
distribution.
13+
* Neither the name of Google Inc. nor the names of its
14+
contributors may be used to endorse or promote products derived from
15+
this software without specific prior written permission.
16+
17+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

PATENTS

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Additional IP Rights Grant (Patents)
2+
3+
"This implementation" means the copyrightable works distributed by
4+
Google as part of the Go project.
5+
6+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
7+
no-charge, royalty-free, irrevocable (except as stated in this section)
8+
patent license to make, have made, use, offer to sell, sell, import,
9+
transfer and otherwise run, modify and propagate the contents of this
10+
implementation of Go, where such license applies only to those patent
11+
claims, both currently owned or controlled by Google and acquired in
12+
the future, licensable by Google that are necessarily infringed by this
13+
implementation of Go. This grant does not include claims that would be
14+
infringed only as a consequence of further modification of this
15+
implementation. If you or your agent or exclusive licensee institute or
16+
order or agree to the institution of patent litigation against any
17+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
18+
that this implementation of Go or any code incorporated within this
19+
implementation of Go constitutes direct or contributory patent
20+
infringement, or inducement of patent infringement, then any patent
21+
rights granted to you under this License for this implementation of Go
22+
shall terminate as of the date such litigation is filed.

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Go Website
2+
3+
This repository holds the Go Website server code and content.
4+
5+
## Download/Install
6+
7+
The easiest way to install is to run `go get -u golang.org/x/website`. You can
8+
also manually git clone the repository to `$GOPATH/src/golang.org/x/website`.
9+
10+
## Report Issues / Send Patches
11+
12+
This repository uses Gerrit for code changes. To learn how to submit changes to
13+
this repository, see https://golang.org/doc/contribute.html.
14+
15+
The main issue tracker for the time repository is located at
16+
https://github.com/golang/go/issues. Prefix your issue with "x/website:" in the
17+
subject line, so it is easy to find.

0 commit comments

Comments
 (0)