summaryrefslogtreecommitdiff
path: root/gstudio/xmlrpc/rpc/README.rst
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/xmlrpc/rpc/README.rst')
-rw-r--r--gstudio/xmlrpc/rpc/README.rst36
1 files changed, 0 insertions, 36 deletions
diff --git a/gstudio/xmlrpc/rpc/README.rst b/gstudio/xmlrpc/rpc/README.rst
deleted file mode 100644
index bcf4ac0..0000000
--- a/gstudio/xmlrpc/rpc/README.rst
+++ /dev/null
@@ -1,36 +0,0 @@
-==============
-Django XML-RPC
-==============
-
-django_xmlrpc offers a means by which a Django developer can expose their views (or indeed any other function) using XML-RPC.
-
-This is a fork of the version hosted at : https://code.launchpad.net/~aartemenko/django-xmlrpc/svetlyak40wt compatible with Django > 1.1.
-
-.. contents::
-
-Installation
-============
-
-You could retrieve the last sources from http://github.com/Fantomas42/django-xmlrpc and run the installation script ::
-
- $> python setup.py install
-
-or use pip ::
-
- $> pip install -e git://github.com/Fantomas42/django-xmlrpc.git#egg=django-xmlrpc
-
-Usage
-=====
-
-Register **django_xmlrpc** in your INSTALLED_APPS section of your project' settings.
-
-Then register methods you want to handle like this in your project' settings. ::
-
- >>> XMLRPC_METHODS = (('path.to.your.method', 'Method name'),
- ... ('path.to.your.othermethod', 'Other Method name'),)
-
-Finally we need to register the url of the XML-RPC server.
-Insert something like this in your project's urls.py: ::
-
- >>> url(r'^xmlrpc/$', 'django_xmlrpc.views.handle_xmlrpc', name='xmlrpc'),
-