Metadata-Version: 1.0
Name: DjangoRpc
Version: 0.1.0
Summary: Django RPC for jQuery
Home-page: https://github.com/Alerion/Django-RPC
Author: Dmitriy Kostochko
Author-email: alerion.um@gmail.com
License: Apache License 2.0
Description: *********
        DjangoRpc
        *********
        
        Django RPC for jQuery. Allows execute some server-side class methods with Javascript in your browser.
        
        Also you can submit forms with jQuery Form Plugin.
        
        It also supports call batching. Django RPC batches together calls which are received within a configurable time frame and sends them in a single request.
        
        You can easy move you current views to RPC methods and use Django RPC instead of mess of AJAX requests.
        
        Inspired by Ext.Direct from ExtJs 3.
        
        `Package Documentation <https://django-rpc.readthedocs.org/>`_
        
        Installation
        ============
        
        Install using pip::
        
            pip install DjangoRpc
        
        ...or clone the project from github::
        
            https://github.com/Alerion/Django-RPC.git
        
        1. Add ``djangorpc`` application to ``INSTALLED_APPS`` settings::
        
            INSTALLED_APPS = (
                ...
                'djangorpc',
            )
        
        Now all required JS files are accessible via Django ``staticfiles`` application.
        
        2. In your base templates add required JS scripts::
        
            <script src="{% static 'djangorpc/js/jquery-1.7.2.min.js' %}"></script>
            <script src="{% static 'djangorpc/js/jquery.util.js' %}"></script>
            <script src="{% static 'djangorpc/js/jquery.rpc.js' %}"></script>
            <script src="{% static 'djangorpc/js/jquery.form.js' %}"></script>
        
        3. You can handle all errors in one place and show some message to user::
        
            //Show error message for RPC exceptions
            jQuery.Rpc.on('exception', function(event){
                alert('Error during RPC request: '+event.message);
            });
        
        4. Do not forget about CSRF for Ajax requests.
        
        Example
        =======
        
        Let's take a look at a quick example how to use Django RPC application.
        
        We'll create a page with button, which calls server-side method using Django RPC.
        
        Create ``actions.py`` in ``someapp`` application of our ``someproject`` project with following code::
        
            from djangorpc import RpcRouter, Error, Msg
        
        
            class MainApiClass(object):
        
                def hello(self, username, user):
                    return Msg(u'Hello, %s!' % username)
        
        Add this to ``urls.py``::
        
            from django.conf.urls import patterns, include, url
            from .actions import router
        
        
            urlpatterns = patterns('someproject.someapp.views',
                url(r'^router/$', router, name='router'),
                url(r'^router/api/$', router.api, name='api'),
            )
        
        Add following code to page template::
        
            <script src="{% url 'main:api' %}"></script>
            <script>
                MainApi.hello('username', function(resp, sb){
                    alert(resp.msg);
                });
            </script>
        
        Reload page and you will see alert with message "Hello, username!".
        
        Contributing
        ============
        
        Development for this software happend on github, and the main fork is currently at https://github.com/chrisglass/xhtml2pdf
        
        Contributions are welcome in any format, but using github's pull request system is very highly preferred since it makes review and integration much easier.
        
Keywords: Django,RPC,API,jQuery
Platform: UNKNOWN
