You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
3.8 KiB
116 lines
3.8 KiB
extends layout
|
|
|
|
block headContent
|
|
title RPC Browser #{(method ? (" - " + method) : false)}
|
|
|
|
style.
|
|
pre {
|
|
white-space: pre-wrap; /* Since CSS 2.1 */
|
|
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
|
}
|
|
|
|
block content
|
|
h1(class="h3") RPC Browser
|
|
hr
|
|
|
|
if (gethelp)
|
|
div(class="row")
|
|
div(class="col-md-9")
|
|
if (methodhelp)
|
|
div(class="row")
|
|
div(class="col")
|
|
h4(style="display: inline-block;")
|
|
span Command:
|
|
span(class="font-weight-light") #{method}
|
|
div(class="col")
|
|
a(href=("https://bitcoin.org/en/developer-reference#" + method), class="btn btn-primary float-md-right") See developer docs »
|
|
|
|
|
|
hr
|
|
|
|
ul(class='nav nav-tabs mb-3')
|
|
li(class="nav-item")
|
|
a(data-toggle="tab", href="#tab-execute", class="nav-link active", role="tab") Execute
|
|
li(class="nav-item")
|
|
a(data-toggle="tab", href="#tab-help-content", class="nav-link", role="tab") Help Content
|
|
|
|
if (methodhelp.args && methodhelp.args.length > 0)
|
|
li(class="nav-item")
|
|
a(data-toggle="tab", href="#tab-parsed-args", class="nav-link", role="tab") Arguments Details
|
|
|
|
div(class="tab-content")
|
|
div(id="tab-execute", class="tab-pane active pb-3", role="tabpanel")
|
|
if (methodResult)
|
|
div(class="mt-4")
|
|
h5(class="mt-3") Result
|
|
|
|
pre(style="border: solid 1px #ccc;")
|
|
code(class="json bg-light", data-lang="json") #{JSON.stringify(methodResult, null, 4)}
|
|
|
|
hr
|
|
|
|
form(method="get")
|
|
input(type="hidden", name="_csrf", value=csrfToken)
|
|
input(type="hidden", name="method", value=method)
|
|
|
|
div(class="h5 mb-3") Arguments
|
|
|
|
div(class="ml-3")
|
|
each argX, index in methodhelp.args
|
|
div(class="form-group")
|
|
label(for=("arg_" + argX.name))
|
|
strong #{argX.name}
|
|
span (#{argX.properties.join(", ")})
|
|
if (argX.description)
|
|
span - #{argX.description}
|
|
if (false && argX.detailsLines && argX.detailsLines.length > 0)
|
|
- var detailsLines = "";
|
|
each detailsLine in argX.detailsLines
|
|
- detailsLines = (detailsLines + "<br/>" + detailsLine);
|
|
i(class="fas fa-info-circle", data-toggle="tooltip", title=detailsLines)
|
|
|
|
|
|
|
|
- var valX = false;
|
|
if (argValues != null)
|
|
if (argValues[index] != null)
|
|
if (("" + argValues[index]) != NaN)
|
|
- valX = argValues[index].toString();
|
|
|
|
input(id=("arg_" + argX.name), type="text", name=("args[" + index + "]"), placeholder=argX.name, class="form-control", value=valX)
|
|
|
|
if (!methodhelp.args || methodhelp.args.length == 0)
|
|
span(class="text-muted") None
|
|
|
|
hr
|
|
|
|
input(type="submit", name="execute", value="Execute", class="btn btn-primary btn-block")
|
|
|
|
div(id="tab-help-content", class="tab-pane", role="tabpanel")
|
|
pre
|
|
code(data-lang="txt", class="json bg-light") #{methodhelp.string}
|
|
|
|
if (methodhelp.args && methodhelp.args.length > 0)
|
|
div(id="tab-parsed-args", class="tab-pane", role="tabpanel")
|
|
pre
|
|
code(data-lang="json", class="json bg-light") #{JSON.stringify(methodhelp.args, null, 4)}
|
|
|
|
|
|
|
|
|
|
else
|
|
:markdown-it
|
|
Browse RPC commands from the list. The list is built from the results of the `help` command and organized into sections accordingly.
|
|
|
|
div(class="col-md-3")
|
|
each section, sectionIndex in gethelp
|
|
h4 #{section.name}
|
|
small (#{section.methods.length})
|
|
hr
|
|
|
|
div(class="mb-4")
|
|
ol(style="padding-left: 30px;")
|
|
each methodX, methodIndex in section.methods
|
|
li
|
|
a(href=("/rpc-browser?method=" + methodX.name), style=(methodX.name == method ? "font-weight: bold; font-style: italic;" : false), class="monospace") #{methodX.name}
|
|
|
|
|