28 lines
939 B
HTML
28 lines
939 B
HTML
{% extends "base.html" %}
|
|
{% block title %}package{% endblock %}
|
|
{% block body %}
|
|
<h1><code>package</code></h1>
|
|
<h2 id="list"><code>package.list</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
<package method="list" pkgtype="??pkgtype" model*="" />
|
|
</call>{% endhighlight %}</pre>
|
|
<p><code>all</code> is the only currently observed value for <code>pkgtype</code></p>
|
|
<h3>Response:</h3>
|
|
<pre>{% highlight "cxml" %}<response>
|
|
<package status="??status">
|
|
<item[] url="" />
|
|
</package>
|
|
</response>{% endhighlight %}</pre>
|
|
<p>A list of all packages available for download.</p>
|
|
|
|
<h2 id="intend"><code>package.intend</code></h2>
|
|
<h3>Request:</h3>
|
|
<pre>{% highlight "cxml" %}<call ...>
|
|
<package method="intend" url="" model*="" />
|
|
</call>{% endhighlight %}</pre>
|
|
<h3>Response:</h3>
|
|
<pre>{% highlight "cxml" %}<response>
|
|
<package status="??status" />
|
|
</response>{% endhighlight %}</pre>
|
|
{% endblock %} |