docs/templates/pages/proto/dlstatus.html

35 lines
964 B
HTML
Raw Normal View History

2021-12-28 21:54:12 +01:00
{% extends "base.html" %}
2021-12-29 02:41:21 +01:00
{% block title %}dlstatus{% endblock %}
2021-12-28 21:54:12 +01:00
{% block body %}
<h1><code>dlstatus</code></h1>
<h2 id="done"><code>dlstatus.done</code></h2>
<h3>Request:</h3>
2021-12-28 23:29:33 +01:00
<pre>{% highlight "cxml" %}<call ...>
<dlstatus method="done">
<url>
<param __type="str" />
</url>
<name __type="str" />
<size __type="s32" />
</dlstatus>
</call>{% endhighlight %}</pre>
2021-12-28 21:54:12 +01:00
<h3>Response:</h3>
2021-12-28 23:29:33 +01:00
<pre>{% highlight "cxml" %}<response>
<dlstatus status="??status">
<progress __type="s32" />
</dlstatus>
</response>{% endhighlight %}</pre>
2021-12-28 21:54:12 +01:00
<h2 id="progress"><code>dlstatus.progress</code></h2>
<h3>Request:</h3>
2021-12-28 23:29:33 +01:00
<pre>{% highlight "cxml" %}<call ...>
<dlstatus method="progress" />
<progress __type="s32" />
</dlstatus>
</call>{% endhighlight %}</pre>
2021-12-28 21:54:12 +01:00
<h3>Response:</h3>
2021-12-28 23:29:33 +01:00
<pre>{% highlight "cxml" %}<response>
<dlstatus status="??status" />
</response>{% endhighlight %}</pre>
2021-12-28 21:54:12 +01:00
{% endblock %}