summaryrefslogtreecommitdiff
path: root/gstudio/xmlrpc/rpc/templates/xmlrpc_get.html
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/xmlrpc/rpc/templates/xmlrpc_get.html')
-rw-r--r--gstudio/xmlrpc/rpc/templates/xmlrpc_get.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/gstudio/xmlrpc/rpc/templates/xmlrpc_get.html b/gstudio/xmlrpc/rpc/templates/xmlrpc_get.html
deleted file mode 100644
index 4c9fdfc6..00000000
--- a/gstudio/xmlrpc/rpc/templates/xmlrpc_get.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n %}
-
-{% block title %}{% trans "XML-RPC Service" %}{% endblock %}
-
-{% block content %}
-<h2>{% trans "XML-RPC Service" %}</h2>
-
-<p>{% trans "You need to invoke this service using an XML-RPC Client." %}</p>
-
-<h3>{% trans "The following methods are available :" %}</h3>
-
-{% for m in methods %}
-<div class="functions">
- <h4>{{ m.0 }}</h4>
- <div class="function_desc">
- <strong>{% trans "Types of argument" %}{{ m.1.args|length|pluralize }} :</strong> {{ m.1.args }}
- <br />
- <strong>{% trans "Type of return" %} :</strong> {{ m.1.returns }}
- <br />
- <pre class="function_doc">{{ m.2 }}</pre>
- </div>
-</div>
-{% endfor %}
-{% endblock %}
-