Skip to content

Commit

Permalink
all: don't refer to code.google.com/p/go{,-wiki}/
Browse files Browse the repository at this point in the history
Only documentation / comment changes. Update references to
point to golang.org permalinks or go.googlesource.com/go.
References in historical release notes under doc are left as is.

Change-Id: Icfc14e4998723e2c2d48f9877a91c5abef6794ea
Reviewed-on: https://go-review.googlesource.com/4060
Reviewed-by: Ian Lance Taylor <[email protected]>
  • Loading branch information
speter authored and ianlancetaylor committed Feb 6, 2015
1 parent 89669c6 commit 9b6ccb1
Show file tree
Hide file tree
Showing 45 changed files with 48 additions and 48 deletions.
4 changes: 2 additions & 2 deletions doc/gccgo_contribute.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h2>Code</h2>
repository, and the <code>gofrontend</code> <code>libgo</code>
directory is mirrored to the GCC <code>libgo</code> directory. In
addition, the <code>test</code> directory
from <a href="//code.google.com/p/go">the main Go repository</a>
from <a href="//go.googlesource.com/go">the main Go repository</a>
is mirrored to the <code>gcc/testsuite/go.test/test</code> directory
in the GCC repository.
</p>
Expand All @@ -65,7 +65,7 @@ <h2>Code</h2>

<p>
The run-time library for gccgo is mostly the same as the library
in <a href="//code.google.com/p/go">the main Go repository</a>.
in <a href="//go.googlesource.com/go">the main Go repository</a>.
The library code in the Go repository is periodically merged into
the <code>libgo/go</code> directory of the <code>gofrontend</code> and
then the GCC repositories, using the shell
Expand Down
2 changes: 1 addition & 1 deletion misc/cgo/test/cflags.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// Test that the #cgo CFLAGS directive works,
// with and without platform filters.
// See http://code.google.com/p/go/issues/detail?id=5224 for details.
// See http://golang.org/issue/5224 for details.
package cgotest

/*
Expand Down
2 changes: 1 addition & 1 deletion misc/cgo/test/setgid_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.

// Test that setgid does not hang on GNU/Linux.
// See http://code.google.com/p/go/issues/detail?id=3871 for details.
// See http://golang.org/issue/3871 for details.

package cgotest

Expand Down
2 changes: 1 addition & 1 deletion misc/editors
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
For information about plugins and other support for Go in editors and shells,
see this page on the Go Wiki:

https://code.google.com/p/go-wiki/wiki/IDEsAndTextEditorPlugins
https://golang.org/wiki/IDEsAndTextEditorPlugins

2 changes: 1 addition & 1 deletion src/cmd/gc/subr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ assignop(Type *src, Type *dst, char **why)
*why = "";

// TODO(rsc,lvd): This behaves poorly in the presence of inlining.
// https://code.google.com/p/go/issues/detail?id=2795
// https://golang.org/issue/2795
if(safemode && importpkg == nil && src != T && src->etype == TUNSAFEPTR) {
yyerror("cannot use unsafe.Pointer");
errorexit();
Expand Down
4 changes: 2 additions & 2 deletions src/compress/bzip2/bzip2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func BenchmarkDecodeDigits(b *testing.B) { benchmarkDecode(b, digits) }
func BenchmarkDecodeTwain(b *testing.B) { benchmarkDecode(b, twain) }

func TestBufferOverrun(t *testing.T) {
// Tests https://code.google.com/p/go/issues/detail?id=5747.
// Tests https://golang.org/issue/5747.
buffer := bytes.NewReader([]byte(bufferOverrunBase64))
decoder := base64.NewDecoder(base64.StdEncoding, buffer)
decompressor := NewReader(decoder)
Expand All @@ -209,7 +209,7 @@ func TestBufferOverrun(t *testing.T) {
}

func TestOutOfRangeSelector(t *testing.T) {
// Tests https://code.google.com/p/go/issues/detail?id=8363.
// Tests https://golang.org/issue/8363.
buffer := bytes.NewReader(outOfRangeSelector)
decompressor := NewReader(buffer)
// This shouldn't panic.
Expand Down
2 changes: 1 addition & 1 deletion src/compress/flate/deflate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ func TestWriterDict(t *testing.T) {
}
}

// See http://code.google.com/p/go/issues/detail?id=2508
// See http://golang.org/issue/2508
func TestRegression2508(t *testing.T) {
if testing.Short() {
t.Logf("test disabled with -short")
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/tls/handshake_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Curves:
// Although sending an empty NPN extension is reasonable, Firefox has
// had a bug around this. Best to send nothing at all if
// config.NextProtos is empty. See
// https://code.google.com/p/go/issues/detail?id=5445.
// https://golang.org/issue/5445.
if hs.clientHello.nextProtoNeg && len(config.NextProtos) > 0 {
hs.hello.nextProtoNeg = true
hs.hello.nextProtos = config.NextProtos
Expand Down
2 changes: 1 addition & 1 deletion src/encoding/xml/read_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ type Pod struct {
Pea interface{} `xml:"Pea"`
}

// https://code.google.com/p/go/issues/detail?id=6836
// https://golang.org/issue/6836
func TestUnmarshalIntoInterface(t *testing.T) {
pod := new(Pod)
pod.Pea = new(Pea)
Expand Down
2 changes: 1 addition & 1 deletion src/html/template/clone_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func TestCloneThenParse(t *testing.T) {
}
}

// https://code.google.com/p/go/issues/detail?id=5980
// https://golang.org/issue/5980
func TestFuncMapWorksAfterClone(t *testing.T) {
funcs := FuncMap{"customFunc": func() (string, error) {
return "", errors.New("issue5980")
Expand Down
2 changes: 1 addition & 1 deletion src/html/template/content_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ func TestStringer(t *testing.T) {
}
}

// https://code.google.com/p/go/issues/detail?id=5982
// https://golang.org/issue/5982
func TestEscapingNilNonemptyInterfaces(t *testing.T) {
tmpl := Must(New("x").Parse("{{.E}}"))

Expand Down
2 changes: 1 addition & 1 deletion src/math/all_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2606,7 +2606,7 @@ func TestLargeTan(t *testing.T) {

// Check that math constants are accepted by compiler
// and have right value (assumes strconv.ParseFloat works).
// http://code.google.com/p/go/issues/detail?id=201
// http://golang.org/issue/201

type floatTest struct {
val interface{}
Expand Down
2 changes: 1 addition & 1 deletion src/math/big/int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ var primes = []string{
"10953742525620032441",
"17908251027575790097",

// http://code.google.com/p/go/issues/detail?id=638
// http://golang.org/issue/638
"18699199384836356663",

"98920366548084643601728869055592650835572950932266967461790948584315647051443",
Expand Down
2 changes: 1 addition & 1 deletion src/net/hosts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func TestLookupStaticHost(t *testing.T) {
hostsPath = p
}

// https://code.google.com/p/go/issues/detail?id=6646
// https://golang.org/issue/6646
func TestSingleLineHostsFile(t *testing.T) {
p := hostsPath
hostsPath = "testdata/hosts_singleline"
Expand Down
4 changes: 2 additions & 2 deletions src/net/http/serve_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ func TestServeMuxHandlerRedirects(t *testing.T) {
}
}

// Tests for http://code.google.com/p/go/issues/detail?id=900
// Tests for http://golang.org/issue/900
func TestMuxRedirectLeadingSlashes(t *testing.T) {
paths := []string{"//foo.txt", "///foo.txt", "/../../foo.txt"}
for _, path := range paths {
Expand Down Expand Up @@ -2124,7 +2124,7 @@ func TestDoubleHijack(t *testing.T) {
<-conn.closec
}

// http://code.google.com/p/go/issues/detail?id=5955
// http://golang.org/issue/5955
// Note that this does not test the "request too large"
// exit path from the http server. This is intentional;
// not sending Connection: close is just a minor wire
Expand Down
2 changes: 1 addition & 1 deletion src/os/os_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ func TestSeek(t *testing.T) {
if off != tt.out || err != nil {
if e, ok := err.(*PathError); ok && e.Err == syscall.EINVAL && tt.out > 1<<32 {
// Reiserfs rejects the big seeks.
// http://code.google.com/p/go/issues/detail?id=91
// http://golang.org/issue/91
break
}
t.Errorf("#%d: Seek(%v, %v) = %v, %v want %v, nil", i, tt.in, tt.whence, off, err, tt.out)
Expand Down
2 changes: 1 addition & 1 deletion src/path/filepath/path_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ func TestDriveLetterInEvalSymlinks(t *testing.T) {
}
}

func TestBug3486(t *testing.T) { // http://code.google.com/p/go/issues/detail?id=3486
func TestBug3486(t *testing.T) { // http://golang.org/issue/3486
root, err := filepath.EvalSymlinks(runtime.GOROOT() + "/test")
if err != nil {
t.Fatal(err)
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/compiler.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package runtime
// Compiler is the name of the compiler toolchain that built the
// running binary. Known toolchains are:
//
// gc The 5g/6g/8g compiler suite at code.google.com/p/go.
// gc The 5g/6g/8g compiler suite at go.googlesource.com/go.
// gccgo The gccgo front end, part of the GCC compiler suite.
//
const Compiler = "gc"
2 changes: 1 addition & 1 deletion src/runtime/malloc1.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func mallocinit() {
var reserved bool

// limit = runtime.memlimit();
// See https://code.google.com/p/go/issues/detail?id=5049
// See https://golang.org/issue/5049
// TODO(rsc): Fix after 1.1.
limit = 0

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug214.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// license that can be found in the LICENSE file.

// Used to crash the compiler.
// http://code.google.com/p/go/issues/detail?id=88
// http://golang.org/issue/88

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug215.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// license that can be found in the LICENSE file.

// Used to crash the compiler.
// http://code.google.com/p/go/issues/detail?id=158
// http://golang.org/issue/158

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug216.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// license that can be found in the LICENSE file.

// Used to be rejected
// http://code.google.com/p/go/issues/detail?id=188
// http://golang.org/issue/188

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug217.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// license that can be found in the LICENSE file.

// Used to crash
// http://code.google.com/p/go/issues/detail?id=204
// http://golang.org/issue/204

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug218.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// license that can be found in the LICENSE file.

// Crashes 6g, 8g
// http://code.google.com/p/go/issues/detail?id=238
// http://golang.org/issue/238

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug221.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// function call arg reordering was picking out 1 call that
// didn't need to be in a temporary, but it was picking
// out the first call instead of the last call.
// http://code.google.com/p/go/issues/detail?id=370
// http://golang.org/issue/370

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug264.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Test case for http://code.google.com/p/go/issues/detail?id=692
// Test case for http://golang.org/issue/692

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug265.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Test case for http://code.google.com/p/go/issues/detail?id=700
// Test case for http://golang.org/issue/700

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug269.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=749
// http://golang.org/issue/749

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug271.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=662
// http://golang.org/issue/662

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug272.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=589
// http://golang.org/issue/589

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug273.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=589
// http://golang.org/issue/589

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug274.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// Both gccgo and gofmt correctly refuse this program as is and accept it
// when the semicolons are present.

// This is a test case for issue 777 ( http://code.google.com/p/go/issues/detail?id=777 ).
// This is a test case for issue 777 ( http://golang.org/issue/777 ).

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug279.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=799
// http://golang.org/issue/799

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug280.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=808
// http://golang.org/issue/808

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug281.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=807
// http://golang.org/issue/807

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug283.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=806
// http://golang.org/issue/806
// triggered out of registers on 8g

package bug283
Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug290.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=920
// http://golang.org/issue/920

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug291.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=915
// http://golang.org/issue/915

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug292.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=843
// http://golang.org/issue/843

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug293.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=846
// http://golang.org/issue/846

package main

Expand Down
2 changes: 1 addition & 1 deletion test/fixedbugs/bug294.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// http://code.google.com/p/go/issues/detail?id=800
// http://golang.org/issue/800

package main

Expand Down
Loading

0 comments on commit 9b6ccb1

Please sign in to comment.