35 lines
966 B
HTML
35 lines
966 B
HTML
{% extends "konami.html" %}
|
|
{% block title %}dlstatus{% endblock %}
|
|
{% block body %}
|
|
<h1><code>dlstatus</code></h1>
|
|
<h2 id="done"><code>dlstatus.done</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
<dlstatus method="done">
|
|
<url>
|
|
<param __type="str" />
|
|
</url>
|
|
<name __type="str" />
|
|
<size __type="s32" />
|
|
</dlstatus>
|
|
</call>{% endhighlight %}</pre>
|
|
|
|
<h3>Response:</h3>
|
|
<pre>{% highlight "cxml" %}<response>
|
|
<dlstatus status="??status">
|
|
<progress __type="s32" />
|
|
</dlstatus>
|
|
</response>{% endhighlight %}</pre>
|
|
|
|
<h2 id="progress"><code>dlstatus.progress</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
<dlstatus method="progress" />
|
|
<progress __type="s32" />
|
|
</dlstatus>
|
|
</call>{% endhighlight %}</pre>
|
|
<h3>Response:</h3>
|
|
<pre>{% highlight "cxml" %}<response>
|
|
<dlstatus status="??status" />
|
|
</response>{% endhighlight %}</pre>
|
|
{% endblock %} |