An error occurred fetching the project authors.
  1. 22 Feb, 2012 1 commit
    • Robert Griesemer's avatar
      go/printer, gofmt: improved comma placement · 8b7cdb7f
      Robert Griesemer authored
      Not a Go 1 issue, but appeared to be fairly easy to fix.
      
      - Note that a few existing test cases look slightly worse but
        those cases were not representative for real code. All real
        code looks better now.
      
      - Manual move of the comment in go/scanner/example_test.go
        before applying gofmt.
      
      - gofmt -w $GOROOT/src $GOROOT/misc
      
      Fixes #3062.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/5674093
      8b7cdb7f
  2. 15 Jan, 2012 1 commit
  3. 14 Jan, 2012 1 commit
  4. 22 Dec, 2011 1 commit
    • Adam Langley's avatar
      exp/terminal: several cleanups · 7350c771
      Adam Langley authored
      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
      https://golang.org/cl/5479043
      7350c771
  5. 15 Dec, 2011 1 commit
  6. 11 Nov, 2011 1 commit
  7. 02 Nov, 2011 1 commit
  8. 18 Oct, 2011 2 commits
    • Adam Langley's avatar
      exp/terminal: split terminal handling from exp/ssh · 7bc4f8de
      Adam Langley authored
      This change splits terminal handling from exp/ssh, as suggested
      several times in the ssh code review.
      
      shell.go and shell_test.go are copies from exp/ssh with minimal
      changes, so don't need another full review. A future CL will remove
      that code from exp/ssh.
      
      R=bradfitz, r, dave, rsc
      CC=golang-dev
      https://golang.org/cl/5278049
      7bc4f8de
    • Dave Cheney's avatar
      exp/ssh: general cleanups for client support · ec158f77
      Dave Cheney authored
      common.go:
      * simplify findAgreedAlgorithms.
      * add channelExtendedData support.
      
      messages.go:
      * add clientExtendedData.
      
      server.go:
      *  use simplified findAgreedAlgorithms.
      
      server_shell.go:
      * fix shadowed err return value.
      
      transport.go:
      * introduce separate cipher, mac and compression for each direction.
      * added filteredConn and packetWriter interfaces.
      * newTransport requires a source of randomness.
      
      R=golang-dev, agl, rsc
      CC=golang-dev
      https://golang.org/cl/5285044
      ec158f77
  9. 17 Sep, 2011 1 commit
    • Adam Langley's avatar
      exp/ssh: new package. · 605e57d8
      Adam Langley authored
      The typical UNIX method for controlling long running process is to
      send the process signals. Since this doesn't get you very far, various
      ad-hoc, remote-control protocols have been used over time by programs
      like Apache and BIND.
      
      Implementing an SSH server means that Go code will have a standard,
      secure way to do this in the future.
      
      R=bradfitz, borman, dave, gustavo, dsymonds, r, adg, rsc, rogpeppe, lvd, kevlar, raul.san
      CC=golang-dev
      https://golang.org/cl/4962064
      605e57d8