]> Cypherpunks repositories - gostls13.git/commitdiff
godoc: fix codewalks
authorAndrew Gerrand <adg@golang.org>
Sun, 4 Mar 2012 00:53:07 +0000 (11:53 +1100)
committerAndrew Gerrand <adg@golang.org>
Sun, 4 Mar 2012 00:53:07 +0000 (11:53 +1100)
R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/5732056

src/cmd/godoc/codewalk.go

index 7edf324155414dde4b6679761c57cae9ceaf2512..018259f7dc07c90be61909ba61848c08c51d3f2f 100644 (file)
@@ -72,17 +72,17 @@ func codewalk(w http.ResponseWriter, r *http.Request) {
 
 // A Codewalk represents a single codewalk read from an XML file.
 type Codewalk struct {
-       Title string `xml:"attr"`
-       File  []string
-       Step  []*Codestep
+       Title string      `xml:"title,attr"`
+       File  []string    `xml:"file"`
+       Step  []*Codestep `xml:"step"`
 }
 
 // A Codestep is a single step in a codewalk.
 type Codestep struct {
        // Filled in from XML
-       Src   string `xml:"attr"`
-       Title string `xml:"attr"`
-       XML   string `xml:"innerxml"`
+       Src   string `xml:"src,attr"`
+       Title string `xml:"title,attr"`
+       XML   string `xml:",innerxml"`
 
        // Derived from Src; not in XML.
        Err    error