1. 26 Jan, 2012 7 commits
  2. 25 Jan, 2012 31 commits
  3. 24 Jan, 2012 2 commits
    • Nigel Tao's avatar
      html: move the HTML parser to an exp/html package. The parser is a · 324513bc
      Nigel Tao authored
      work in progress, and we are not ready to freeze its API for Go 1.
      
      Package html still exists, containing just two functions: EscapeString
      and UnescapeString.
      
      Both the packages at exp/html and html are "package html". The former
      is a superset of the latter.
      
      At some point in the future, the exp/html code will move back into
      html, once we have finalized the parser API.
      
      R=rsc, dsymonds
      CC=golang-dev
      https://golang.org/cl/5571059
      324513bc
    • Gustavo Niemeyer's avatar
      encoding/xml: remove Marshaler support · 66599c40
      Gustavo Niemeyer authored
      Marshaler has a number of open areas that need
      further thought (e.g. it doesn't handle attributes,
      it's supposed to handle tag names internally but has
      no information to do so, etc).
      
      We're removing it now and will bring it back with an
      interface that covers these aspects, after Go 1.
      
      Related to issue 2771, but doesn't fix it.
      
      R=golang-dev, rsc
      CC=golang-dev
      https://golang.org/cl/5574057
      66599c40