|
@@ -16,12 +16,14 @@ package driver
|
16
|
16
|
|
17
|
17
|
import "html/template"
|
18
|
18
|
|
19
|
|
-var graphTemplate = template.Must(template.New("graph").Parse(
|
20
|
|
- `<!DOCTYPE html>
|
21
|
|
-<html>
|
22
|
|
-<head>
|
23
|
|
-<meta charset="utf-8">
|
24
|
|
-<title>{{.Title}}</title>
|
|
19
|
+// webTemplate defines a collection of related templates:
|
|
20
|
+// css
|
|
21
|
+// header
|
|
22
|
+// script
|
|
23
|
+// graph
|
|
24
|
+// top
|
|
25
|
+var webTemplate = template.Must(template.New("web").Parse(`
|
|
26
|
+{{define "css"}}
|
25
|
27
|
<style type="text/css">
|
26
|
28
|
html, body {
|
27
|
29
|
height: 100%;
|
|
@@ -30,9 +32,11 @@ html, body {
|
30
|
32
|
}
|
31
|
33
|
body {
|
32
|
34
|
width: 100%;
|
|
35
|
+ height: 100%;
|
|
36
|
+ min-height: 100%;
|
33
|
37
|
overflow: hidden;
|
34
|
38
|
}
|
35
|
|
-#page {
|
|
39
|
+#graphcontainer {
|
36
|
40
|
display: flex;
|
37
|
41
|
flex-direction: column;
|
38
|
42
|
height: 100%;
|
|
@@ -53,90 +57,185 @@ button {
|
53
|
57
|
margin-top: 5px;
|
54
|
58
|
margin-bottom: 5px;
|
55
|
59
|
}
|
56
|
|
-#reset {
|
57
|
|
- margin-left: 10px;
|
58
|
|
-}
|
59
|
60
|
#detailtext {
|
60
|
61
|
display: none;
|
61
|
|
- position: absolute;
|
|
62
|
+ position: fixed;
|
|
63
|
+ top: 20px;
|
|
64
|
+ right: 10px;
|
62
|
65
|
background-color: #ffffff;
|
63
|
66
|
min-width: 160px;
|
64
|
|
- border-top: 1px solid black;
|
65
|
|
- box-shadow: 2px 2px 2px 0px #aaa;
|
|
67
|
+ border: 1px solid #888;
|
|
68
|
+ box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.2);
|
66
|
69
|
z-index: 1;
|
67
|
70
|
}
|
68
|
|
-#actionbox {
|
69
|
|
- display: none;
|
70
|
|
- position: fixed;
|
71
|
|
- background-color: #ffffff;
|
72
|
|
- border: 1px solid black;
|
73
|
|
- box-shadow: 2px 2px 2px 0px #aaa;
|
74
|
|
- top: 20px;
|
75
|
|
- right: 20px;
|
76
|
|
- z-index: 1;
|
|
71
|
+#closedetails {
|
|
72
|
+ float: right;
|
|
73
|
+ margin: 2px;
|
|
74
|
+}
|
|
75
|
+#home {
|
|
76
|
+ font-size: 14pt;
|
|
77
|
+ padding-left: 0.5em;
|
|
78
|
+ padding-right: 0.5em;
|
|
79
|
+ float: right;
|
77
|
80
|
}
|
78
|
|
-.actionhdr {
|
79
|
|
- background-color: #ddd;
|
|
81
|
+.menubar {
|
|
82
|
+ display: inline-block;
|
|
83
|
+ background-color: #f8f8f8;
|
|
84
|
+ border: 1px solid #ccc;
|
80
|
85
|
width: 100%;
|
81
|
|
- border-bottom: 1px solid black;
|
82
|
|
- border-top: 1px solid black;
|
|
86
|
+}
|
|
87
|
+.menu-header {
|
|
88
|
+ position: relative;
|
|
89
|
+ display: inline-block;
|
|
90
|
+ padding: 2px 2px;
|
|
91
|
+ cursor: default;
|
83
|
92
|
font-size: 14pt;
|
84
|
93
|
}
|
85
|
|
-#actionbox > button {
|
|
94
|
+.menu {
|
|
95
|
+ display: none;
|
|
96
|
+ position: absolute;
|
|
97
|
+ background-color: #f8f8f8;
|
|
98
|
+ border: 1px solid #888;
|
|
99
|
+ box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.2);
|
|
100
|
+ z-index: 1;
|
|
101
|
+ margin-top: 2px;
|
|
102
|
+ left: 0px;
|
|
103
|
+ min-width: 5em;
|
|
104
|
+}
|
|
105
|
+.menu hr {
|
|
106
|
+ background-color: #fff;
|
|
107
|
+ margin-top: 0px;
|
|
108
|
+ margin-bottom: 0px;
|
|
109
|
+}
|
|
110
|
+.menu button {
|
86
|
111
|
display: block;
|
87
|
112
|
width: 100%;
|
88
|
113
|
margin: 0px;
|
89
|
114
|
text-align: left;
|
90
|
|
- padding-left: 0.5em;
|
|
115
|
+ padding-left: 2px;
|
91
|
116
|
background-color: #fff;
|
92
|
|
- border: none;
|
93
|
117
|
font-size: 12pt;
|
|
118
|
+ border: none;
|
94
|
119
|
}
|
95
|
|
-#actionbox > button:hover {
|
96
|
|
- background-color: #ddd;
|
|
120
|
+.menu-header:hover {
|
|
121
|
+ background-color: #ccc;
|
97
|
122
|
}
|
98
|
|
-#home {
|
99
|
|
- font-size: 20pt;
|
100
|
|
- padding-left: 0.5em;
|
101
|
|
- padding-right: 0.5em;
|
|
123
|
+.menu-header:hover .menu {
|
|
124
|
+ display: block;
|
|
125
|
+}
|
|
126
|
+.menu button:hover {
|
|
127
|
+ background-color: #ccc;
|
|
128
|
+}
|
|
129
|
+#searchbox {
|
|
130
|
+ margin-left: 10pt;
|
|
131
|
+}
|
|
132
|
+#topcontainer {
|
|
133
|
+ width: 100%;
|
|
134
|
+ height: 100%;
|
|
135
|
+ max-height: 100%;
|
|
136
|
+ overflow: scroll;
|
|
137
|
+}
|
|
138
|
+#toptable {
|
|
139
|
+ border-spacing: 0px;
|
|
140
|
+}
|
|
141
|
+#toptable tr th {
|
|
142
|
+ border-bottom: 1px solid black;
|
|
143
|
+ text-align: right;
|
|
144
|
+ padding-left: 1em;
|
|
145
|
+}
|
|
146
|
+#toptable tr th:nth-child(6) { text-align: left; }
|
|
147
|
+#toptable tr th:nth-child(7) { text-align: left; }
|
|
148
|
+#toptable tr td {
|
|
149
|
+ padding-left: 1em;
|
|
150
|
+ font: monospace;
|
|
151
|
+ text-align: right;
|
|
152
|
+ white-space: nowrap;
|
|
153
|
+ cursor: default;
|
|
154
|
+}
|
|
155
|
+#toptable tr td:nth-child(6) { text-align: left; }
|
|
156
|
+#toptable tr td:nth-child(7) { text-align: left; }
|
|
157
|
+.hilite {
|
|
158
|
+ background-color: #ccf;
|
102
|
159
|
}
|
103
|
160
|
</style>
|
104
|
|
-</head>
|
105
|
|
-<body>
|
|
161
|
+{{end}}
|
106
|
162
|
|
107
|
|
-<button id="details">▷ Details</button>
|
|
163
|
+{{define "header"}}
|
108
|
164
|
<div id="detailtext">
|
|
165
|
+<button id="closedetails">Close</button>
|
109
|
166
|
{{range .Legend}}<div>{{.}}</div>{{end}}
|
110
|
167
|
</div>
|
111
|
168
|
|
112
|
|
-<button id="reset">Reset</button>
|
113
|
|
-
|
114
|
|
-<span id="home">{{.Title}}</span>
|
115
|
|
-
|
116
|
|
-<input id="searchbox" type="text" placeholder="Search regexp" autocomplete="off" autocapitalize="none" size=40>
|
117
|
|
-
|
118
|
|
-<div id="page">
|
119
|
|
-
|
120
|
|
-<div id="errors">{{range .Errors}}<div>{{.}}</div>{{end}}</div>
|
|
169
|
+<div class="menubar">
|
|
170
|
+
|
|
171
|
+<div class="menu-header">
|
|
172
|
+View
|
|
173
|
+<div class="menu">
|
|
174
|
+{{if (ne .Type "top")}}
|
|
175
|
+ <button title="{{.Help.top}}" id="topbtn">Top</button>
|
|
176
|
+{{end}}
|
|
177
|
+{{if (ne .Type "dot")}}
|
|
178
|
+ <button title="{{.Help.graph}}" id="graphbtn">Graph</button>
|
|
179
|
+{{end}}
|
|
180
|
+<hr>
|
|
181
|
+<button title="{{.Help.details}}" id="details">Details</button>
|
|
182
|
+</div>
|
|
183
|
+</div>
|
121
|
184
|
|
122
|
|
-<div id="graph">
|
|
185
|
+<div class="menu-header">
|
|
186
|
+Functions
|
|
187
|
+<div class="menu">
|
|
188
|
+<button title="{{.Help.peek}}" id="peek">Peek</button>
|
|
189
|
+<button title="{{.Help.list}}" id="list">List</button>
|
|
190
|
+<button title="{{.Help.disasm}}" id="disasm">Disassemble</button>
|
|
191
|
+</div>
|
|
192
|
+</div>
|
123
|
193
|
|
124
|
|
-<div id="actionbox">
|
125
|
|
-<div class="actionhdr">Refine graph</div>
|
|
194
|
+<div class="menu-header">
|
|
195
|
+Refine
|
|
196
|
+<div class="menu">
|
126
|
197
|
<button title="{{.Help.focus}}" id="focus">Focus</button>
|
127
|
198
|
<button title="{{.Help.ignore}}" id="ignore">Ignore</button>
|
128
|
199
|
<button title="{{.Help.hide}}" id="hide">Hide</button>
|
129
|
200
|
<button title="{{.Help.show}}" id="show">Show</button>
|
130
|
|
-<div class="actionhdr">Show Functions</div>
|
131
|
|
-<button title="{{.Help.peek}}" id="peek">Peek</button>
|
132
|
|
-<button title="{{.Help.list}}" id="list">List</button>
|
133
|
|
-<button title="{{.Help.disasm}}" id="disasm">Disassemble</button>
|
|
201
|
+<hr>
|
|
202
|
+<button title="{{.Help.reset}}" id="reset">Reset</button>
|
|
203
|
+</div>
|
134
|
204
|
</div>
|
135
|
205
|
|
|
206
|
+<input id="searchbox" type="text" placeholder="Search regexp" autocomplete="off" autocapitalize="none" size=40>
|
|
207
|
+
|
|
208
|
+<span id="home">{{.Title}}</span>
|
|
209
|
+
|
|
210
|
+</div> <!-- menubar -->
|
|
211
|
+
|
|
212
|
+<div id="errors">{{range .Errors}}<div>{{.}}</div>{{end}}</div>
|
|
213
|
+{{end}}
|
|
214
|
+
|
|
215
|
+{{define "graph" -}}
|
|
216
|
+<!DOCTYPE html>
|
|
217
|
+<html>
|
|
218
|
+<head>
|
|
219
|
+<meta charset="utf-8">
|
|
220
|
+<title>{{.Title}}</title>
|
|
221
|
+{{template "css" .}}
|
|
222
|
+</head>
|
|
223
|
+<body>
|
|
224
|
+
|
|
225
|
+{{template "header" .}}
|
|
226
|
+<div id="graphcontainer">
|
|
227
|
+<div id="graph">
|
136
|
228
|
{{.Svg}}
|
137
|
229
|
</div>
|
138
|
230
|
|
139
|
231
|
</div>
|
|
232
|
+{{template "script" .}}
|
|
233
|
+<script>viewer({{.BaseURL}}, {{.Nodes}})</script>
|
|
234
|
+</body>
|
|
235
|
+</html>
|
|
236
|
+{{end}}
|
|
237
|
+
|
|
238
|
+{{define "script"}}
|
140
|
239
|
<script>
|
141
|
240
|
// Make svg pannable and zoomable.
|
142
|
241
|
// Call clickHandler(t) if a click event is caught by the pan event handlers.
|
|
@@ -354,24 +453,14 @@ function initPanAndZoom(svg, clickHandler) {
|
354
|
453
|
svg.addEventListener("wheel", handleWheel, true)
|
355
|
454
|
}
|
356
|
455
|
|
357
|
|
-function dotviewer(nodes) {
|
|
456
|
+function viewer(baseUrl, nodes) {
|
358
|
457
|
'use strict';
|
359
|
458
|
|
360
|
459
|
// Elements
|
361
|
|
- const detailsButton = document.getElementById("details")
|
362
|
|
- const detailsText = document.getElementById("detailtext")
|
363
|
|
- const actionBox = document.getElementById("actionbox")
|
364
|
|
- const listButton = document.getElementById("list")
|
365
|
|
- const disasmButton = document.getElementById("disasm")
|
366
|
|
- const resetButton = document.getElementById("reset")
|
367
|
|
- const peekButton = document.getElementById("peek")
|
368
|
|
- const focusButton = document.getElementById("focus")
|
369
|
|
- const showButton = document.getElementById("show")
|
370
|
|
- const ignoreButton = document.getElementById("ignore")
|
371
|
|
- const hideButton = document.getElementById("hide")
|
372
|
460
|
const search = document.getElementById("searchbox")
|
373
|
461
|
const graph0 = document.getElementById("graph0")
|
374
|
|
- const svg = graph0.parentElement
|
|
462
|
+ const svg = (graph0 == null ? null : graph0.parentElement)
|
|
463
|
+ const toptable = document.getElementById("toptable")
|
375
|
464
|
|
376
|
465
|
let regexpActive = false
|
377
|
466
|
let selected = new Map()
|
|
@@ -380,23 +469,25 @@ function dotviewer(nodes) {
|
380
|
469
|
let buttonsEnabled = true
|
381
|
470
|
|
382
|
471
|
function handleDetails() {
|
383
|
|
- if (detailtext.style.display == "block") {
|
384
|
|
- detailtext.style.display = "none"
|
385
|
|
- detailsButton.innerText = "\u25b7 Details"
|
386
|
|
- } else {
|
387
|
|
- detailtext.style.display = "block"
|
388
|
|
- detailsButton.innerText = "\u25bd Details"
|
389
|
|
- }
|
|
472
|
+ const detailsText = document.getElementById("detailtext")
|
|
473
|
+ if (detailsText != null) detailsText.style.display = "block"
|
|
474
|
+ }
|
|
475
|
+
|
|
476
|
+ function handleCloseDetails() {
|
|
477
|
+ const detailsText = document.getElementById("detailtext")
|
|
478
|
+ if (detailsText != null) detailsText.style.display = "none"
|
390
|
479
|
}
|
391
|
480
|
|
392
|
|
- function handleReset() { window.location.href = "/" }
|
|
481
|
+ function handleReset() { window.location.href = baseUrl }
|
|
482
|
+ function handleTop() { navigate("/top", "f", false) }
|
|
483
|
+ function handleGraph() { navigate("/", "f", false) }
|
393
|
484
|
function handleList() { navigate("/weblist", "f", true) }
|
394
|
485
|
function handleDisasm() { navigate("/disasm", "f", true) }
|
395
|
486
|
function handlePeek() { navigate("/peek", "f", true) }
|
396
|
|
- function handleFocus() { navigate("/", "f", false) }
|
397
|
|
- function handleShow() { navigate("/", "s", false) }
|
398
|
|
- function handleIgnore() { navigate("/", "i", false) }
|
399
|
|
- function handleHide() { navigate("/", "h", false) }
|
|
487
|
+ function handleFocus() { navigate(baseUrl, "f", false) }
|
|
488
|
+ function handleShow() { navigate(baseUrl, "s", false) }
|
|
489
|
+ function handleIgnore() { navigate(baseUrl, "i", false) }
|
|
490
|
+ function handleHide() { navigate(baseUrl, "h", false) }
|
400
|
491
|
|
401
|
492
|
function handleKey(e) {
|
402
|
493
|
if (e.keyCode != 13) return
|
|
@@ -448,7 +539,7 @@ function dotviewer(nodes) {
|
448
|
539
|
updateButtons()
|
449
|
540
|
}
|
450
|
541
|
|
451
|
|
- function toggleSelect(elem) {
|
|
542
|
+ function toggleSvgSelect(elem) {
|
452
|
543
|
// Walk up to immediate child of graph0
|
453
|
544
|
while (elem != null && elem.parentElement != graph0) {
|
454
|
545
|
elem = elem.parentElement
|
|
@@ -491,6 +582,13 @@ function dotviewer(nodes) {
|
491
|
582
|
}
|
492
|
583
|
|
493
|
584
|
function setBackground(elem, set) {
|
|
585
|
+ // Handle table row highlighting.
|
|
586
|
+ if (elem.nodeName == "TR") {
|
|
587
|
+ elem.classList.toggle("hilite", set)
|
|
588
|
+ return
|
|
589
|
+ }
|
|
590
|
+
|
|
591
|
+ // Handle svg element highlighting.
|
494
|
592
|
const p = findPolygon(elem)
|
495
|
593
|
if (p != null) {
|
496
|
594
|
if (set) {
|
|
@@ -511,6 +609,11 @@ function dotviewer(nodes) {
|
511
|
609
|
return null
|
512
|
610
|
}
|
513
|
611
|
|
|
612
|
+ // convert a string to a regexp that matches that string.
|
|
613
|
+ function quotemeta(str) {
|
|
614
|
+ return str.replace(/([\\\.?+*\[\](){}|^$])/g, '\\$1')
|
|
615
|
+ }
|
|
616
|
+
|
514
|
617
|
// Navigate to specified path with current selection reflected
|
515
|
618
|
// in the named parameter.
|
516
|
619
|
function navigate(path, param, newWindow) {
|
|
@@ -520,7 +623,7 @@ function dotviewer(nodes) {
|
520
|
623
|
if (!regexpActive) {
|
521
|
624
|
selected.forEach(function(v, key) {
|
522
|
625
|
if (re != "") re += "|"
|
523
|
|
- re += nodes[key]
|
|
626
|
+ re += quotemeta(nodes[key])
|
524
|
627
|
})
|
525
|
628
|
}
|
526
|
629
|
|
|
@@ -547,38 +650,109 @@ function dotviewer(nodes) {
|
547
|
650
|
}
|
548
|
651
|
}
|
549
|
652
|
|
|
653
|
+ function handleTopClick(e) {
|
|
654
|
+ // Walk back until we find TR and then get the Name column (index 5)
|
|
655
|
+ let elem = e.target
|
|
656
|
+ while (elem != null && elem.nodeName != "TR") {
|
|
657
|
+ elem = elem.parentElement
|
|
658
|
+ }
|
|
659
|
+ if (elem == null || elem.children.length < 6) return
|
|
660
|
+
|
|
661
|
+ e.preventDefault()
|
|
662
|
+ const tr = elem
|
|
663
|
+ const td = elem.children[5]
|
|
664
|
+ if (td.nodeName != "TD") return
|
|
665
|
+ const name = td.innerText
|
|
666
|
+ const index = nodes.indexOf(name)
|
|
667
|
+ if (index < 0) return
|
|
668
|
+
|
|
669
|
+ // Disable regexp mode.
|
|
670
|
+ regexpActive = false
|
|
671
|
+
|
|
672
|
+ if (selected.has(index)) {
|
|
673
|
+ unselect(index, elem)
|
|
674
|
+ } else {
|
|
675
|
+ select(index, elem)
|
|
676
|
+ }
|
|
677
|
+ updateButtons()
|
|
678
|
+ }
|
|
679
|
+
|
550
|
680
|
function updateButtons() {
|
551
|
681
|
const enable = (search.value != "" || selected.size != 0)
|
552
|
682
|
if (buttonsEnabled == enable) return
|
553
|
683
|
buttonsEnabled = enable
|
554
|
|
- actionBox.style.display = enable ? "block" : "none"
|
|
684
|
+ for (const id of ["peek", "list", "disasm", "focus", "ignore", "hide", "show"]) {
|
|
685
|
+ const btn = document.getElementById(id)
|
|
686
|
+ if (btn != null) {
|
|
687
|
+ btn.disabled = !enable
|
|
688
|
+ }
|
|
689
|
+ }
|
555
|
690
|
}
|
556
|
691
|
|
557
|
692
|
// Initialize button states
|
558
|
693
|
updateButtons()
|
559
|
694
|
|
560
|
695
|
// Setup event handlers
|
561
|
|
- initPanAndZoom(svg, toggleSelect)
|
562
|
|
-
|
563
|
|
- function bindButtons(evt) {
|
564
|
|
- detailsButton.addEventListener(evt, handleDetails)
|
565
|
|
- resetButton.addEventListener(evt, handleReset)
|
566
|
|
- listButton.addEventListener(evt, handleList)
|
567
|
|
- disasmButton.addEventListener(evt, handleDisasm)
|
568
|
|
- peekButton.addEventListener(evt, handlePeek)
|
569
|
|
- focusButton.addEventListener(evt, handleFocus)
|
570
|
|
- showButton.addEventListener(evt, handleShow)
|
571
|
|
- ignoreButton.addEventListener(evt, handleIgnore)
|
572
|
|
- hideButton.addEventListener(evt, handleHide)
|
573
|
|
- }
|
574
|
|
- bindButtons("click")
|
575
|
|
- bindButtons("touchstart")
|
|
696
|
+ if (svg != null) {
|
|
697
|
+ initPanAndZoom(svg, toggleSvgSelect)
|
|
698
|
+ }
|
|
699
|
+ if (toptable != null) {
|
|
700
|
+ toptable.addEventListener("mousedown", handleTopClick)
|
|
701
|
+ toptable.addEventListener("touchstart", handleTopClick)
|
|
702
|
+ }
|
|
703
|
+
|
|
704
|
+ // Bind action to button with specified id.
|
|
705
|
+ function addAction(id, action) {
|
|
706
|
+ const btn = document.getElementById(id)
|
|
707
|
+ if (btn != null) {
|
|
708
|
+ btn.addEventListener("click", action)
|
|
709
|
+ btn.addEventListener("touchstart", action)
|
|
710
|
+ }
|
|
711
|
+ }
|
|
712
|
+
|
|
713
|
+ addAction("details", handleDetails)
|
|
714
|
+ addAction("closedetails", handleCloseDetails)
|
|
715
|
+ addAction("topbtn", handleTop)
|
|
716
|
+ addAction("graphbtn", handleGraph)
|
|
717
|
+ addAction("reset", handleReset)
|
|
718
|
+ addAction("peek", handlePeek)
|
|
719
|
+ addAction("list", handleList)
|
|
720
|
+ addAction("disasm", handleDisasm)
|
|
721
|
+ addAction("focus", handleFocus)
|
|
722
|
+ addAction("ignore", handleIgnore)
|
|
723
|
+ addAction("hide", handleHide)
|
|
724
|
+ addAction("show", handleShow)
|
|
725
|
+
|
576
|
726
|
search.addEventListener("input", handleSearch)
|
577
|
727
|
search.addEventListener("keydown", handleKey)
|
578
|
728
|
}
|
579
|
|
-
|
580
|
|
-dotviewer({{.Nodes}})
|
581
|
729
|
</script>
|
|
730
|
+{{end}}
|
|
731
|
+
|
|
732
|
+{{define "top" -}}
|
|
733
|
+<!DOCTYPE html>
|
|
734
|
+<html>
|
|
735
|
+<head>
|
|
736
|
+<meta charset="utf-8">
|
|
737
|
+<title>{{.Title}}</title>
|
|
738
|
+{{template "css" .}}
|
|
739
|
+</head>
|
|
740
|
+<body>
|
|
741
|
+
|
|
742
|
+{{template "header" .}}
|
|
743
|
+
|
|
744
|
+<div id="topcontainer">
|
|
745
|
+<table id="toptable">
|
|
746
|
+<tr><th>Flat<th>Flat%<th>Sum%<th>Cum<th>Cum%<th>Name<th>Inlined?</tr>
|
|
747
|
+{{range $i,$e := .Top}}
|
|
748
|
+ <tr id="node{{$i}}"><td>{{$e.Flat}}<td>{{$e.FlatPercent}}<td>{{$e.SumPercent}}<td>{{$e.Cum}}<td>{{$e.CumPercent}}<td>{{$e.Name}}<td>{{$e.InlineLabel}}</tr>
|
|
749
|
+{{end}}
|
|
750
|
+</table>
|
|
751
|
+</div>
|
|
752
|
+
|
|
753
|
+{{template "script" .}}
|
|
754
|
+<script>viewer({{.BaseURL}}, {{.Nodes}})</script>
|
582
|
755
|
</body>
|
583
|
756
|
</html>
|
|
757
|
+{{end}}
|
584
|
758
|
`))
|