]> Cypherpunks.ru repositories - gostls13.git/commitdiff
all: don't refer to code.google.com/p/go{,-wiki}/
authorPéter Surányi <speter.go1@gmail.com>
Fri, 6 Feb 2015 12:44:39 +0000 (21:44 +0900)
committerIan Lance Taylor <iant@golang.org>
Fri, 6 Feb 2015 14:41:47 +0000 (14:41 +0000)
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 <iant@golang.org>
45 files changed:
doc/gccgo_contribute.html
misc/cgo/test/cflags.go
misc/cgo/test/setgid_linux.go
misc/editors
src/cmd/gc/subr.c
src/compress/bzip2/bzip2_test.go
src/compress/flate/deflate_test.go
src/crypto/tls/handshake_server.go
src/encoding/xml/read_test.go
src/html/template/clone_test.go
src/html/template/content_test.go
src/math/all_test.go
src/math/big/int_test.go
src/net/hosts_test.go
src/net/http/serve_test.go
src/os/os_test.go
src/path/filepath/path_test.go
src/runtime/compiler.go
src/runtime/malloc1.go
test/fixedbugs/bug214.go
test/fixedbugs/bug215.go
test/fixedbugs/bug216.go
test/fixedbugs/bug217.go
test/fixedbugs/bug218.go
test/fixedbugs/bug221.go
test/fixedbugs/bug264.go
test/fixedbugs/bug265.go
test/fixedbugs/bug269.go
test/fixedbugs/bug271.go
test/fixedbugs/bug272.go
test/fixedbugs/bug273.go
test/fixedbugs/bug274.go
test/fixedbugs/bug279.go
test/fixedbugs/bug280.go
test/fixedbugs/bug281.go
test/fixedbugs/bug283.go
test/fixedbugs/bug290.go
test/fixedbugs/bug291.go
test/fixedbugs/bug292.go
test/fixedbugs/bug293.go
test/fixedbugs/bug294.go
test/fixedbugs/bug301.go
test/fixedbugs/bug425.go
test/fixedbugs/bug427.go
test/fixedbugs/bug435.go

index 44007ffb5e3e6d7a18caa11aba15c82009d3b4c9..8878dfe9216007060b471629e80c7e31b7eadf74 100644 (file)
@@ -40,7 +40,7 @@ is mirrored to the <code>gcc/go/gofrontend</code> directory in the GCC
 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>
@@ -65,7 +65,7 @@ from <code>gcc/go/gofrontend</code> to <code>gcc/go</code>.
 
 <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
index 24caab4711386067aed7d638d84785a3bcbc6312..313824a10e9937a3f894b7358f5d0a4cdb0d9af0 100644 (file)
@@ -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
 
 /*
index 829afce1b3153995b61837b45b15f2d8a73a3603..4da0d300e9975c8072f2fe25fb6d3ae6e5fd95ed 100644 (file)
@@ -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
 
index 850ec34011802e1346197519ac7f15d3196d70cf..3a0f73fd7a2cd2555a306d93da3e0af741b8224a 100644 (file)
@@ -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
 
index 3ed194ee8f4aa5faca8f33d6f245dd5f1da9a0c9..5a522efec225e882514a969d45a06e1a15d67f65 100644 (file)
@@ -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();
index fb79d089eb3b0dbf3bdc5ea08620b15f48e8c3d0..77c50dfe948b6dc9c52b0a693ba50228431bf2d2 100644 (file)
@@ -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)
@@ -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.
index 730234c385039510249bd0aa482a793c2871fb5f..53bfd264382586cabc746db6918a057a1c6f071c 100644 (file)
@@ -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")
index a46133439d42eed5b15b822d05d37f1220017e92..c87da50df953f39c24bb48d8fa3f3a36f3171674 100644 (file)
@@ -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
index 01f55d0dd00cec4ae81876f3f5854678705655ae..7d004dc488cdfe7a6bd9bb29e0278acae9b4b514 100644 (file)
@@ -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)
index e11bff2c5dfa7bf7c4dc20e3b16fde484f1ce82b..5de3bc0eefc22e51ffc8c6f16efadd5563e8051a 100644 (file)
@@ -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")
index 5f3ffe2d3259725fb7b15339782e1b51090be9fe..e698328693e211eea7d53347d4a11f276622ba55 100644 (file)
@@ -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}}"))
 
index 763efb2e647a4d032fd8052ccc83978320cf7f07..0848c506e468e409d30536ce456cb918883bf888 100644 (file)
@@ -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{}
index 1418dca3352adeaa49ed032e822f29770049eda4..cb8c76bed1c9348b28df735afc919b91b6e4d907 100644 (file)
@@ -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",
index 2fe358e079c620d59e7548f3c33e9b9bebd3b55f..5bb663b4c793352c4f7ab5147b1eccb0e5923917 100644 (file)
@@ -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"
index 85d5705137f0e29153d79a4848208d6091bde15e..c21b57b57e4d7a00e47de181d293c7bfcc28c459 100644 (file)
@@ -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 {
@@ -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
index a30a2b0313ba35d17dddbc42c53dcf34069e3cab..d26eb9c1812f8f145d7c0fb56fbaed0f0e6e6ccb 100644 (file)
@@ -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)
index c4f74b97ffc2ab6fc7270060a57fb7c1a6ac5bef..293d316124599f009874eac4cfead6528b85b35c 100644 (file)
@@ -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)
index 562a4602266decdc6033c0f3f079c73e0abfebd7..f6edc9595956c03480cce0e977fa3b179b088b1c 100644 (file)
@@ -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"
index 4d0754ba9d04e97017bd2766089d4c23ca9ce347..18d998b5547c54833b7b62ff5591e80c1108ea76 100644 (file)
@@ -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
 
index 5420058c46dc9ea920e9a6e8ce202cd3ab4c2289..5f6824603146310c3db4c9240adf4957dede327f 100644 (file)
@@ -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
 
index 08ed662c65d553a8c446570e5ac4e7416eaa53a8..0bfd678da7ac1293ba42446e966e6ede98844d77 100644 (file)
@@ -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
 
index c83a522bf914b1b8026d47f54579497f5bcd7506..b2a1a70c98a4a23b9dbcd176d3fdce63cfd3f16d 100644 (file)
@@ -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
 
index ec93c25d91707d5ff2434ab61c61f71f6cdbf127..bb741b930923631962b70bfdf875dbc1c4cbe91f 100644 (file)
@@ -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
 
index 0e008db17f228a2f4ef010f24c71d2dd2193cc63..db7abe292d3c7f1f934a772f58f1677fba30fcd7 100644 (file)
@@ -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
 
index 86fda203516b13e67e4bcfad292e914c3dea5a83..bc5a1fa6a0f0920c52e90c3d459b7c28de5423f8 100644 (file)
@@ -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
 
index fcf373cce9894fc813afcfa6c687b6a0f5740177..9d7397c9374006119fa4d13d1b6a998f0190b98d 100644 (file)
@@ -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
 
index 7f06fced6041ae879db875ee296ce1cdeeff4fc2..e5cad584aa0d407e91411c7324baf0fafb512604 100644 (file)
@@ -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
 
index c13eb26ce4aa4402f7745d5dbebfeb08b9c3f20e..d39f0d45e5ba63b38c2f686fc94ad063ede94954 100644 (file)
@@ -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
 
index 88add7040ac0c164742484f2cd2845cae5dbda5d..47d267d63d325adf96d355810a0875d390886650 100644 (file)
@@ -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
 
index c27f7ee446e9e61c80d6e22f0dc5817122ff60a2..68840c538a6ecc1726e0816931657011082b068d 100644 (file)
@@ -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
 
index aabb912b91379afd18583352d389b018cb0460e2..fc9c19a172a45c80c55afcc191fa739d2dc82a83 100644 (file)
@@ -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
 
index beb2d61acc84f67a0381c53d2ba67ad3f83c318d..832ebe3e8de28db685f92c1c79ba09d63723c07d 100644 (file)
@@ -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
 
index e5ec5943c0d1554b9a6e5ecb14da8b5ed4b56342..3921e84057711d78f7137da4b4e919cf8448df87 100644 (file)
@@ -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
 
index ba594a2c48212e072fb2daaa90d47f4a25e5001c..15d0bc55bfd096da5d50931ff593347eaf973a9e 100644 (file)
@@ -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
 
index 24d6fdce8cedf738d0a017a89b2b31512cc13a29..a47f8f7b54d1fcf3d7f518a992d51b035f8627fd 100644 (file)
@@ -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
 
index eefed0334b09f952df6b3030b8f635878f4bc7a0..f8d2d924812253fb46eec5818f9e09e0b63f7f44 100644 (file)
@@ -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
index c8ff0bc45d02e04e29694bbdb854c391d8234edd..b2eab2e5de69b660d8796fd9624fb8f92476deea 100644 (file)
@@ -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
 
index 17a5483ef54f28f2e3d3b96269d558c95bdcc861..19b9ece899452c27fd38d8ba4f8c72eece11064b 100644 (file)
@@ -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
 
index 07051dd3fbeb401dd55c65ae95421d3fbfff6850..8d46bcf3175d5cd48058e55d9c2b87f8d4499c2d 100644 (file)
@@ -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
 
index bf926f5a4dd14fba6df1f00ba88981a38e7aabc8..0190c6a5f43140a02ec833ed16569f116ffef440 100644 (file)
@@ -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
 
index 0f3e38098c592d8d113ef8f9cead105acda26d9b..622f2bf08d31b674a862e3e8bf8053a3fc9550ea 100644 (file)
@@ -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
 
index 572668f19118ede6672ca6ee6838bb3da7843125..fadc80bd790690b9e152b76fcc1627786020dea2 100644 (file)
@@ -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=990
+// http://golang.org/issue/990
 
 package main
 
index 5546bd96ba5b0c6bf0e9daec8063c55dee772636..36a5eee583804847011b0c450837ece56fe43177 100644 (file)
@@ -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=3119
+// http://golang.org/issue/3119
 
 package main
 
index 1239e7a3324879cd627d63b05078e2b010ae3102..8488d1876b29919fb5e9d51d9ad7065f8cd28096 100644 (file)
@@ -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=3351
+// http://golang.org/issue/3351
 
 package main
 
index 45323d8eed6be2c97cd2ff4e8fc37a57840a69d3..0c2ac7b3bef15e01090dbdbfe8bdf4e7b03636be 100644 (file)
@@ -7,7 +7,7 @@
 // Test that a syntax error caused by an unexpected EOF
 // gives an error message with the correct line number.
 //
-// https://code.google.com/p/go/issues/detail?id=3392
+// https://golang.org/issue/3392
 
 package main