{% regroup methods|dictsort:"name"|dictsort:"namespace" by namespace as grouped %}
{% if selectedMethod %}
{{selectedMethod.description}}
Returns: {{selectedMethod.returns}}
Parameters:
{% for param in selectedMethod.params %}
{{param}}
{%empty%}
No parameters, just click the Execute button
{%endfor%}
Result:
{% else %}
{% if server %}
Pick a method from the left pane to see more information about the method.
{% endif %}
Connect to a server:
django example site using python interface to JSONAPI for Bukkit (Minecraft)
© 2011 Accalia.de.Elementia <Accalia.de.Elementia@gmail.com>
This work is licensed under a Creative Commons Attribution 3.0 Unported License <http://creativecommons.org/licenses/by/3.0/>
JSONAPI homepage:
http://ramblingwood.com/minecraft/jsonapi/
{% endif %}
Players online:
{% for player in server.players %}
{{player.name}}
{% endfor %}