summaryrefslogtreecommitdiff
path: root/src/pkg/xml/read_test.go
AgeCommit message (Collapse)AuthorFilesLines
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-17/+61
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-5/+3
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-2/+2
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-5/+5
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-0/+97
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-8/+8
2010-04-28xml: allow text segments to end at EOFRuss Cox1-1/+1
Fixes issue 674. R=adg CC=golang-dev http://codereview.appspot.com/1018042
2010-04-26xml: fix innerxml handling of & escapesRuss Cox1-3/+3
R=r CC=golang-dev http://codereview.appspot.com/1009041
2010-04-21xml: new "innerxml" tag to collect inner XMLRuss Cox1-7/+11
R=r CC=golang-dev http://codereview.appspot.com/971041
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-2/+2
- gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev http://codereview.appspot.com/223076
2009-12-151) Change default gofmt default settings forRobert Griesemer1-25/+25
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 5th and last set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180050
2009-12-11bytes, strings: allow -1 in Map to mean "drop this character".Kei Son1-2/+20
xml: drop invalid characters in attribute names when constructing struct field names. R=rsc CC=r http://codereview.appspot.com/157104 Committer: Russ Cox <rsc@golang.org>
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-2/+2
R=rsc, r http://go/go-review/1025029
2009-11-05gofmt-ify parts of xmlRobert Griesemer1-27/+27
R=rsc http://go/go-review/1017049
2009-10-05XML parserRuss Cox1-0/+210
R=r DELTA=546 (545 added, 0 deleted, 1 changed) OCL=35318 CL=35341