summaryrefslogtreecommitdiff
path: root/src/lib/xml.go
AgeCommit message (Collapse)AuthorFilesLines
2009-05-05directory-per-package step 1: move files from lib/X.go to lib/X/X.goRob Pike1-426/+0
no substantive changes except: - new Makefiles, all auto-generated - go/src/lib/Makefile has been extensively edited R=rsc OCL=28310 CL=28310
2009-04-17Step 1 of the Big Error Shift: make os.Error an interface and replace ↵Rob Pike1-17/+17
*os.Errors with os.Errors. lib/template updated to use new setup; its clients also updated. Step 2 will make os's error support internally much cleaner. R=rsc OCL=27586 CL=27586
2009-02-16proposed XML parser design.Russ Cox1-0/+426
inspired by expat's callback interface, but a bit simpler thanks to go interfaces. also serves as reference notes about XML. the parser itself is unimplemented. not in Makefiles, though it does build. R=r DELTA=425 (425 added, 0 deleted, 0 changed) OCL=25077 CL=25080