1. 14 Nov, 2011 7 commits
  2. 13 Nov, 2011 4 commits
    • Dave Cheney's avatar
      exp/ssh: add client side support for publickey auth · 3ee171d1
      Dave Cheney authored
      client.go/client_auth.go:
      * add support for publickey key auth using the interface
        outlined by rsc in the previous auth CL
      
      client_auth_test.go:
      * password and publickey tests against server.go
      
      common.go/server.go:
      * move some helper methods from server.go into common.go
      * generalise serializeRSASignature
      
      R=rsc, agl, huin
      CC=cw, golang-dev, n13m3y3r
      https://golang.org/cl/5373055
      3ee171d1
    • Dave Cheney's avatar
      exp/ssh: ensure initial window advertisement is not lost · 90ec2033
      Dave Cheney authored
      Some remote servers send a 0 window size in the channel
      open confirm msg, others send a non zero window size. Make
      sure this initial advertisement is not lost.
      
      R=agl, rsc, cw
      CC=golang-dev
      https://golang.org/cl/5372083
      90ec2033
    • Andrew Balholm's avatar
      html: auto-close <dd> and <dt> elements · 06ef97e1
      Andrew Balholm authored
      Pass tests2.dat, test 8:
      <!DOCTYPE html><dt><div><dd>
      
      | <!DOCTYPE html>
      | <html>
      |   <head>
      |   <body>
      |     <dt>
      |       <div>
      |     <dd>
      
      Also pass tests through test 9:
      <script></x
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/5373083
      06ef97e1
    • Andrew Balholm's avatar
      html: store the current insertion mode in the parser · 631a575f
      Andrew Balholm authored
      Currently, the state transition functions in the HTML parser
      return the next insertion mode and whether the token is consumed.
      This works well except for when one insertion mode needs to use
      the rules for another insertion mode. Then the useTheRulesFor
      function needs to patch things up. This requires comparing functions
      for equality, which is going to stop working.
      
      Adding a field to the parser structure to store the current
      insertion mode eliminates the need for useTheRulesFor;
      one insertion mode function can now just call the other
      directly. The insertion mode will be changed only if it needs to be.
      
      This CL is an alternative to CL 5372078.
      
      R=nigeltao, rsc
      CC=golang-dev
      https://golang.org/cl/5372079
      631a575f
  3. 12 Nov, 2011 5 commits
  4. 11 Nov, 2011 16 commits
  5. 10 Nov, 2011 8 commits