mirror of
https://gitea.tendokyu.moe/eamuse/docs.git
synced 2024-12-14 07:12:50 +01:00
34 lines
972 B
HTML
34 lines
972 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block body %}
|
||
|
<h1><code>dlstatus</code></h1>
|
||
|
<h2 id="done"><code>dlstatus.done</code></h2>
|
||
|
<h3>Request:</h3>
|
||
|
<pre><code><call <i>...</i>>
|
||
|
<dlstatus method="done">
|
||
|
<url>
|
||
|
<param __type="str" />
|
||
|
</url>
|
||
|
<name __type="str" />
|
||
|
<size __type="s32" />
|
||
|
</dlstatus>
|
||
|
</call></code></pre>
|
||
|
|
||
|
<h3>Response:</h3>
|
||
|
<pre><code><response>
|
||
|
<dlstatus status="<i>status</i>">
|
||
|
<progress __type="s32" />
|
||
|
</dlstatus>
|
||
|
</response></code></pre>
|
||
|
|
||
|
<h2 id="progress"><code>dlstatus.progress</code></h2>
|
||
|
<h3>Request:</h3>
|
||
|
<pre><code><call <i>...</i>>
|
||
|
<dlstatus method="progress" />
|
||
|
<progress __type="s32" />
|
||
|
</dlstatus>
|
||
|
</call></code></pre>
|
||
|
<h3>Response:</h3>
|
||
|
<pre><code><response>
|
||
|
<dlstatus status="<i>status</i>" />
|
||
|
</response></code></pre>
|
||
|
{% endblock %}
|