Commit 7e1101d4 authored by Rob Pike's avatar Rob Pike

rpc: convert /debug/rpc handler to exp/template

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/4819048
parent e21f6933
......@@ -10,33 +10,33 @@ package rpc
*/
import (
"exp/template"
"fmt"
"http"
"sort"
"template"
)
const debugText = `<html>
<body>
<title>Services</title>
{.repeated section @}
{{range .}}
<hr>
Service {Name}
Service {{.Name}}
<hr>
<table>
<th align=center>Method</th><th align=center>Calls</th>
{.repeated section Method}
{{range .Method}}
<tr>
<td align=left font=fixed>{Name}({Type.ArgType}, {Type.ReplyType}) os.Error</td>
<td align=center>{Type.NumCalls}</td>
<td align=left font=fixed>{{.Name}}({{.Type.ArgType}}, {{.Type.ReplyType}}) os.Error</td>
<td align=center>{{.Type.NumCalls}}</td>
</tr>
{.end}
{{end}}
</table>
{.end}
{{end}}
</body>
</html>`
var debug = template.MustParse(debugText, nil)
var debug = template.New("RPC debug").MustParse(debugText)
type debugMethod struct {
Type *methodType
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment