summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* weekly.2011-12-22weekly.2011-12-22Andrew Gerrand2011-12-231-10/+117
| | | | | | R=dsymonds, r, r, rsc, adg, mikioh.mikioh CC=golang-dev http://codereview.appspot.com/5498074
* cmd/go: two testing fixesRuss Cox2011-12-224-30/+102
| | | | | | | | | 1. Show passing output for "go test" (no args) and with -v flag. 2. Warn about out-of-date packages being rebuilt. R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/5504080
* runtime: delete old asm_*.h if still aroundRuss Cox2011-12-221-1/+1
| | | | | | | | Fixes bug Robert ran into. R=golang-dev, dsymonds CC=golang-dev http://codereview.appspot.com/5501070
* cmd/go: update "go help remote" to use correct Google Code urlsAndrew Gerrand2011-12-232-11/+8
| | | | | | R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5489114
* path/filepath: implement Base and Dir for windowsAlex Brainman2011-12-232-7/+53
| | | | | | R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5501069
* dashboard: Don't highlight first heading row.David Symonds2011-12-231-2/+2
| | | | | | | | | The two heading rows were previously a little hard to pick out, because they were alternately shaded like the commit rows. R=adg CC=golang-dev http://codereview.appspot.com/5500074
* testing: add wrapper methods so the godoc output lists all methodsRob Pike2011-12-223-3/+109
| | | | | | | | To be deleted when godoc catches up. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5504079
* html: Don't ignore whitespace in "after after frameset" mode.Andrew Balholm2011-12-232-1/+14
| | | | | | | | | | | | | | | | Pass tests6.dat, test 46: <html><frameset></frameset></html> | <html> | <head> | <frameset> | " " R=nigeltao CC=golang-dev http://codereview.appspot.com/5505065 Committer: Nigel Tao <nigeltao@golang.org>
* partial build fix: add missing argument to NewPackageDocRobert Griesemer2011-12-221-1/+1
| | | | | | R=r CC=golang-dev http://codereview.appspot.com/5489112
* fix build: correct build scriptsRobert Griesemer2011-12-226-6/+0
| | | | | | R=r CC=golang-dev http://codereview.appspot.com/5498075
* fix build: updated build scriptsRobert Griesemer2011-12-2214-14/+20
| | | | | | R=golang-dev CC=golang-dev http://codereview.appspot.com/5504078
* go/doc, godoc: move export filtering into go/docRobert Griesemer2011-12-225-127/+297
| | | | | | | | | | | | | | | | | | | | | | | | | | - exports.go contains a stripped-down (but semantically unchanged) version of the code in go/ast/filter.go for export filtering - filter.go contains the documentation filtering code found before at the end of doc.go; this is simply a code move w/o any semantic changes - godoc now relies on go/doc for export filtering when creating documentation. It still has a separate form of export filtering for showing the source code version. This needs to be consolidated (perhaps the source form view should just be removed?). - Stripping of function bodies (stripFunctionBodies function of godoc.go) is now happening in doc.go (line 176). - doc.NewPackageDoc has an extra parameter "exportsOnly. If set to false, the behavior is as before. This function is only called once in our source code; a gofix module is probably not warranted. - Deleted doc.NewFileDoc - was never called. This change is mostly a code move w/ some minimal tweaks. It should not cause any changes to the behavior of godoc. It's a prerequisite for extracting anonymous embedded fields. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5502072
* fmt: make the malloc test check its countsRob Pike2011-12-221-67/+31
| | | | | | | | | Discover than %g is now down to 1 malloc from 2 from 4. Have fun with funcs. R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5504077
* go/build: (*Tree).BinDir should not return path with / in it on windowsAlex Brainman2011-12-231-1/+1
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/5502064
* strconv: fix bug in extended-float based conversion.R?my Oudompheng2011-12-222-2/+5
| | | | | | | | | | | A test intended for denormals erroneously returned true also for infinities, leading to bad overflows and wrong error estimates. R=rsc CC=golang-dev, remy http://codereview.appspot.com/5489091 Committer: Russ Cox <rsc@golang.org>
* math/big: Rand shouldn't hang if argument is also receiver.Robert Griesemer2011-12-222-1/+12
| | | | | | | | Fixes issue 2607. R=rsc CC=golang-dev http://codereview.appspot.com/5489109
* path: DirRob Pike2011-12-222-8/+49
| | | | | | | | There was Base but not Dir, so fill in the gap. R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5504076
* go/doc: s/typeDoc/typeInfo/Robert Griesemer2011-12-221-29/+29
| | | | | | | | | To avoid confusion between typeDoc and TypeDoc. No semantic change. R=r CC=golang-dev http://codereview.appspot.com/5502071
* path/filepath: DirRob Pike2011-12-222-0/+42
| | | | | | | | There was Base but not Dir, so fill in the gap. R=n13m3y3r, r, rsc, gustavo CC=golang-dev http://codereview.appspot.com/5503067
* doc: fix misspelt CSS properties.David Symonds2011-12-231-4/+4
| | | | | | R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5498071
* go/doc, godoc: show methods of anonymous fieldsRobert Griesemer2011-12-221-50/+166
| | | | | | | | | | | | Missing: Handling of embedded interfaces. Also, for reasons outlined in the previous CL (5500055), embedded types have to be exported for its "inherited" methods to be visible. This will be addressed w/ a subsequent CL. R=r, rsc CC=golang-dev http://codereview.appspot.com/5502059
* testing: fix the fix to the wording about the bugRob Pike2011-12-221-1/+1
| | | | | | | | TBR=rsc R=rsc CC=golang-dev http://codereview.appspot.com/5498070
* testing: fix wording in explanation of potential bugRob Pike2011-12-221-3/+3
| | | | | | | | TBR=rsc R=rsc CC=golang-dev http://codereview.appspot.com/5504075
* testing: make signalling safer for parallel testsRob Pike2011-12-221-7/+13
| | | | | | | | | Each test gets a private signal channel. Also fix a bug that prevented parallel tests from running. R=r, r CC=golang-dev http://codereview.appspot.com/5505061
* testing: compare Log to PrintlnRobert Hencke2011-12-221-1/+1
| | | | | | | | | | Log always adds spaces between operands, like Println but unlike Print R=golang-dev CC=golang-dev http://codereview.appspot.com/5504069 Committer: Rob Pike <r@golang.org>
* gc: better linenumbers for inlined functionsLuuk van Dijk2011-12-221-1/+33
| | | | | | | | Fixes issue 2580 up to a point. R=rsc CC=golang-dev http://codereview.appspot.com/5498068
* exp/terminal: several cleanupsAdam Langley2011-12-222-27/+189
| | | | | | | | | | | | | | | | 1) Add EscapeCodes to the terminal so that applications don't wire them in. 2) Add a callback for auto-complete 3) Fix an issue with input lines longer than the width of the terminal. 4) Have Write() not stomp the current line. It now erases the current input, writes the output and reprints the prompt and partial input. 5) Support prompting without local echo in Terminal. 6) Add GetSize to report the size of terminal. R=bradfitz CC=golang-dev http://codereview.appspot.com/5479043
* syscall: make pipe work on netbsdJoel Sing2011-12-233-6/+6
| | | | | | R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5504070
* os: update package location of exec to os/exec in commentsBrad Fitzpatrick2011-12-221-2/+2
| | | | | | R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5503065
* dashboard: horizontal crunchRuss Cox2011-12-222-16/+117
| | | | | | | | | | | | | | | | * group builders in to columns by OS * drop builder suffix (moved to hover title) * cut all domain names from email (full name+email in hover title) * make ok smaller This should easily give us room for netbsd and plan9, even on small laptop screens. Running at http://build-rsc.golang.org/. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5501064
* dashboard: do not require key in source codeRuss Cox2011-12-222-14/+61
| | | | | | | | Or else eventually someone will check it in. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5504071
* cmd/go: fix windows buildMikio Hara2011-12-231-1/+1
| | | | | | R=golang-dev, alex.brainman, rsc CC=golang-dev http://codereview.appspot.com/5502066
* cmd/gc: make sure use of pthread for gcc-4.5 and beyondMikio Hara2011-12-221-0/+10
| | | | | | R=golang-dev, rsc, n13m3y3r, rogpeppe CC=golang-dev http://codereview.appspot.com/5501060
* syscall: make getdirentries work on netbsdJoel Sing2011-12-225-11/+44
| | | | | | R=golang-dev, mikioh.mikioh CC=golang-dev http://codereview.appspot.com/5504068
* doc: refer to http://build.golang.org/ where applicableRobert Hencke2011-12-223-3/+3
| | | | | | | | R=golang-dev, bradfitz, adg CC=golang-dev http://codereview.appspot.com/5501062 Committer: Andrew Gerrand <adg@golang.org>
* exec: disable the ExtraFiles test on darwinBrad Fitzpatrick2011-12-212-15/+36
| | | | | | | | Still a mystery. New issue 2603 filed. R=golang-dev, dsymonds, iant CC=golang-dev http://codereview.appspot.com/5503063
* runtime: don't panic on SIGILL, just crashIan Lance Taylor2011-12-211-1/+1
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/5504067
* dashboard: delete old build dashboard codeAndrew Gerrand2011-12-223-621/+4
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/5502063
* os/exec: put the print where it will helpRuss Cox2011-12-211-1/+1
| | | | | | R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5501058
* dashboard: add /key handlerAndrew Gerrand2011-12-222-7/+30
| | | | | | R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5504066
* dashboard: deprecation notice for the old dashboardAndrew Gerrand2011-12-222-0/+14
| | | | | | R=golang-dev, dsymonds, rsc CC=golang-dev http://codereview.appspot.com/5505056
* os/exec: dump lsof on failureRuss Cox2011-12-211-0/+1
| | | | | | R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5504063
* godoc: fix crashRobert Griesemer2011-12-211-1/+1
| | | | | | R=iant, rsc CC=golang-dev http://codereview.appspot.com/5500065
* os/exec: enable inherited file descriptor testAndrew Gerrand2011-12-221-7/+0
| | | | | | | | Fixes issue 2596. R=golang-dev CC=golang-dev http://codereview.appspot.com/5498061
* os/user: not on windowsRuss Cox2011-12-211-1/+1
| | | | | | R=golang-dev CC=golang-dev http://codereview.appspot.com/5498062
* buildscript: make script safer, same output on WindowsRuss Cox2011-12-2115-4217/+4227
| | | | | | R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5502062
* build: fixes for WindowsRuss Cox2011-12-213-3/+18
| | | | | | | | | | | | | * work around a linker/cgo bug * do not run deps.bash on Windows unless we need it (cuts a full minute off the build time) * add windows to the list of cgo-enabled targets The gopack problem is issue 2601. R=golang-dev, r, bradfitz CC=golang-dev http://codereview.appspot.com/5504062
* doc/progs/run: go1 prints output; fix testRob Pike2011-12-211-1/+1
| | | | | | R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/5502060
* path/filepath.Rel: document that the returned path is always relativeRob Pike2011-12-211-0/+2
| | | | | | | | Fixes issue 2593. R=rsc, alex.brainman, n13m3y3r CC=golang-dev http://codereview.appspot.com/5500052
* crypto/x509: don't crash with nil receiver in accessor methodBrad Fitzpatrick2011-12-212-0/+15
| | | | | | | | Fixes issue 2600 R=golang-dev, agl, rsc CC=golang-dev http://codereview.appspot.com/5500064