summaryrefslogtreecommitdiff
path: root/src/pkg/path
AgeCommit message (Collapse)AuthorFilesLines
2015-01-15Imported Upstream version 1.4upstream/1.4Tianon Gravi17-3251/+0
2014-06-19Imported Upstream version 1.3upstream/1.3Michael Stapelberg7-23/+146
2013-12-03Imported Upstream version 1.2upstream/1.2Michael Stapelberg6-10/+43
2013-05-14Imported Upstream version 1.1upstream/1.1Michael Stapelberg2-0/+11
2013-03-04Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304Michael Stapelberg11-95/+407
2012-06-14Imported Upstream version 1.0.2upstream/1.0.2Ondřej Surý3-3/+32
2012-05-02Imported Upstream version 1.0.1upstream/1.0.1Ondřej Surý2-0/+5
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý16-349/+945
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý13-0/+2142
2011-09-13Imported Upstream version 60Ondřej Surý13-2079/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý3-6/+2
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý7-76/+85
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý2-5/+4
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý8-66/+399
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý13-362/+1106
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-4/+14
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý7-130/+306
2010-06-09add path.Base, analogous to Unix basenameRob Pike2-0/+45
R=rsc CC=golang-dev http://codereview.appspot.com/1633042
2010-04-09rename os.Dir to os.FileInfoRob Pike2-12/+12
R=rsc CC=golang-dev http://codereview.appspot.com/902042
2010-03-11math, path: minor comment fixesRobert Griesemer1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/444043
2010-02-25strings: delete Runes, BytesRuss Cox1-1/+1
gofmt -w -r 'strings.Bytes(a) -> []byte(a)' src/cmd src/pkg test/bench gofmt -w -r 'strings.Runes(a) -> []int(a)' src/cmd src/pkg test/bench delete unused imports R=r CC=golang-dev http://codereview.appspot.com/224062
2010-02-25path: Fix bug in Match with non-greedy starsKevin Ballard2-1/+9
path.Match() errors out when testing "*x" against "xxx" because it matches the star non-greedily. Ensure that the last chunk consumes the rest of the name. R=r, rsc CC=golang-dev http://codereview.appspot.com/223050 Committer: Russ Cox <rsc@golang.org>
2010-02-24path: add MatchRuss Cox3-0/+274
R=eridius, r, rog CC=golang-dev http://codereview.appspot.com/217088
2010-02-05path: make Join variadicStephen Weinberg2-16/+34
R=rsc, r CC=golang-dev http://codereview.appspot.com/198049 Committer: Russ Cox <rsc@golang.org>
2009-12-151) Change default gofmt default settings forRobert Griesemer2-72/+72
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 4th set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180049
2009-12-02move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package.Rob Pike1-2/+2
this breaks the dependency of package io on package bytes. R=rsc CC=golang-dev http://codereview.appspot.com/163085
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-2/+2
the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox1-2/+2
R=r, gri CC=golang-dev http://codereview.appspot.com/156115
2009-11-13path.TestWalk: disable error case if rootRuss Cox1-23/+25
(chmod 0 doesn't cause errors for root) Fixes issue 22. R=gri http://codereview.appspot.com/152120
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer1-3/+3
rsc's algorithm - applied gofmt -w misc src - partial CL (last chunk) R=rsc, r http://go/go-review/1024041
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer2-28/+28
R=rsc, r http://go/go-review/1025029
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer1-3/+1
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-11-05gofmt'ed various stragglersRobert Griesemer1-2/+2
R=rsc http://go/go-review/1022002
2009-10-27files that are okay from the last gofmt roundRuss Cox1-12/+10
R=gri http://go/go-review/1015011
2009-10-19directory tree walk w/ visitor per rsc's suggestionRobert Griesemer2-1/+192
R=rsc,r DELTA=193 (191 added, 0 deleted, 2 changed) OCL=35849 CL=35877
2009-10-08more lgtm files from gofmtRuss Cox2-16/+14
R=gri OCL=35485 CL=35488
2009-09-15more "declared and not used".Russ Cox1-4/+4
the last round omitted := range and only checked 1 out of N vars in a multi-var := R=r OCL=34624 CL=34638
2009-09-14fix "declared and not used" errors in non-test code.Russ Cox1-1/+0
R=r DELTA=112 (6 added, 57 deleted, 49 changed) OCL=34610 CL=34610
2009-08-12convert non-low-level non-google pkg codeRuss Cox2-55/+4
to whole-package compilation. R=r OCL=33070 CL=33101
2009-06-29io.StringBytes -> strings.BytesRuss Cox1-2/+2
io.ByteBuffer -> bytes.Buffer left io.ByteBuffer stub around for now, for protocol compiler. R=r OCL=30861 CL=30872
2009-06-09mv src/lib to src/pkgRob Pike3-0/+332
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102