Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(4)

Delta Between Two Patch Sets: src/cmd/go/vcs.go

Issue 5708054: code review 5708054: cmd/go: fixes (Closed)
Left Patch Set: diff -r aa7ded1d6fab https://go.googlecode.com/hg/ Created 13 years, 1 month ago
Right Patch Set: diff -r 64311b514185 https://go.googlecode.com/hg/ Created 13 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/cmd/go/testdata/local/sub/sub/subsub.go ('k') | src/cmd/go/vet.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2012 The Go Authors. All rights reserved. 1 // Copyright 2012 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package main 5 package main
6 6
7 import ( 7 import (
8 "bytes" 8 "bytes"
9 "encoding/json" 9 "encoding/json"
10 "fmt" 10 "fmt"
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 269
270 regexp *regexp.Regexp // cached compiled form of re 270 regexp *regexp.Regexp // cached compiled form of re
271 } 271 }
272 272
273 // vcsForDir inspects dir and its parents to determine the 273 // vcsForDir inspects dir and its parents to determine the
274 // version control system and code repository to use. 274 // version control system and code repository to use.
275 // On return, root is the import path 275 // On return, root is the import path
276 // corresponding to the root of the repository 276 // corresponding to the root of the repository
277 // (thus root is a prefix of importPath). 277 // (thus root is a prefix of importPath).
278 func vcsForDir(p *Package) (vcs *vcsCmd, root string, err error) { 278 func vcsForDir(p *Package) (vcs *vcsCmd, root string, err error) {
279 » // Clean and double-check that dir is in srcRoot. 279 » // Clean and double-check that dir is in (a subdirectory of) srcRoot.
280 dir := filepath.Clean(p.Dir) 280 dir := filepath.Clean(p.Dir)
281 srcRoot := filepath.Clean(p.build.SrcRoot) 281 srcRoot := filepath.Clean(p.build.SrcRoot)
282 if len(dir) <= len(srcRoot) || dir[len(srcRoot)] != filepath.Separator { 282 if len(dir) <= len(srcRoot) || dir[len(srcRoot)] != filepath.Separator {
r 2012/03/01 04:55:37 doesn't this reject "a" for "a/"? must path be a a
283 return nil, "", fmt.Errorf("directory %q is outside source root %q", dir, srcRoot) 283 return nil, "", fmt.Errorf("directory %q is outside source root %q", dir, srcRoot)
284 } 284 }
285 285
286 for len(dir) > len(srcRoot) { 286 for len(dir) > len(srcRoot) {
287 for _, vcs := range vcsList { 287 for _, vcs := range vcsList {
288 if fi, err := os.Stat(filepath.Join(dir, "."+vcs.cmd)); err == nil && fi.IsDir() { 288 if fi, err := os.Stat(filepath.Join(dir, "."+vcs.cmd)); err == nil && fi.IsDir() {
289 return vcs, dir[len(srcRoot)+1:], nil 289 return vcs, dir[len(srcRoot)+1:], nil
290 } 290 }
291 } 291 }
292 292
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 if match["project"] == "" || match["series"] == "" { 514 if match["project"] == "" || match["series"] == "" {
515 return nil 515 return nil
516 } 516 }
517 _, err := httpGET(expand(match, "https://code.launchpad.net/{project}{se ries}/.bzr/branch-format")) 517 _, err := httpGET(expand(match, "https://code.launchpad.net/{project}{se ries}/.bzr/branch-format"))
518 if err != nil { 518 if err != nil {
519 match["root"] = expand(match, "launchpad.net/{project}") 519 match["root"] = expand(match, "launchpad.net/{project}")
520 match["repo"] = expand(match, "https://{root}") 520 match["repo"] = expand(match, "https://{root}")
521 } 521 }
522 return nil 522 return nil
523 } 523 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b