Metadata-Version: 1.1
Name: django-hyperadmin
Version: 0.8.1
Summary: A hypermedia API framework for Django.
Home-page: http://github.com/zbyte64/django-hyperadmin
Author: Jason Kraus
Author-email: zbyte64@gmail.com
License: New BSD License
Description: .. image:: https://secure.travis-ci.org/zbyte64/django-hyperadmin.png
           :target: http://travis-ci.org/zbyte64/django-hyperadmin
        
        ============
        Introduction
        ============
        
        django-hyperadmin is an API framework for building RESTful resources in Django. Resources tend to be anything you can manipulate with forms (including models) and configuration of an API resource is similar to an Admin Model. APIs support REST out of the box and clients may be installed seperately to provide additional functionality.
        
        This is BETA
        
        Documentation: http://django-hyperadmin.readthedocs.org/
        
        --------
        Features
        --------
        * ModelResource works like AdminModel
        * Data store agnostic
        * Media type agnostic
        * Index classes define search and filter capabilities through forms
        * Autoloads basic functionality from admin site
        * Internal resource representation based on hfactor, forms and endpoints
        * Clients packaged seperately
        
        Supported Media Formats:
        
        * application/text-html, text/html - provides HTML responses
        * application/json - plain json serialization
        * text/javascript - for jsonp
        * application/vnd.Collection+JSON
        * application/vnd.Collection.next+JSON
        * application/vnd.Collection.hyperadmin+JSON - for the emberjs client
        * TODO: xml, yaml, ???
        
        Headers control media type; "Accepts" and "Content-Type" control response and request format
        
        ------------
        Requirements
        ------------
        
        * Python 2.6 or later
        * Django 1.3 or later
        
        
        ============
        Installation
        ============
        
        Install hyperadmin into your python environment::
        
            pip install django-hyperadmin
        
        or::
        
            pip install -e git+git://github.com/zbyte64/django-hyperadmin.git#egg=django-hyperadmin
        
        
        Put 'hyperadmin' into your ``INSTALLED_APPS`` section of your settings file.
        
        Add to root url patterns::
        
            url(r'^hyperapi/', include('hyperadmin.urls')),
        
        
        =======
        Clients
        =======
        
        Visiting the api endpoint in a browser will let you browse the various hyberobjects made available through the resource. Clients may be installed on a different url.
        
        ----------------------
        Django Template Client
        ----------------------
        
        https://github.com/zbyte64/django-hyperadmin-client
        
        Uses django templates to render an admin interface. Responsive design out of the box.
        
        -----------------
        Ember REST Client
        -----------------
        
        https://github.com/zbyte64/django-hyperadmin-emberclient
        
        Uses REST calls and emberjs to render an admin interface.
        
        -----------------
        Backbone Bindings
        -----------------
        
        https://github.com/zbyte64/django-hyperadmin-backboneclient
        
        Provides basic bindings to the Backbone API.
        
        ----------
        Dockit CMS
        ----------
        
        https://github.com/zbyte64/django-dockitcms (endpoints branch)
        
        A dynamic API builder with a public HTML (template driven) client.
        
        
        =============
        Configuration
        =============
        
        -------------
        ModelResource
        -------------
        
        Registering models
        -------------------
        
        Registering a model with hyperadmin::
        
            import hyperadmin
            from hpyeradmin.resources.models import ModelResource, InlineModelResource
            from myapp.models import MyModel, ChildModel
            
            class ChildModelResource(InlineModelResource):
                model = ChildModel
            
            class MyModelResource(ModelResource):
                inlines = [ChildModelResource]
                list_display = ['name', 'number']
                list_filter = ['timestamp', 'category']
            
            hyperadmin.site.register(MyModel, MyModelResource)
        
        
        Autoloading from Django Admin
        -----------------------------
        
        The following registers the models from admin site (this is already done if you import from ``hyperadmin.urls``)::
        
            from django.contrib import admin
            hyperadmin.site.install_models_from_site(admin.site)
        
        
        API Endpoints
        -------------
        
        * "/" lists rows; POST to create
        * "/add/" POST to add
        * "/<id>/" displays a specific row; PUT/POST to update, DELETE to delete
        * "/<id>/delete/" POST to delete
        
        
        =============================
        Reading up on Hypermedia APIs
        =============================
        
        http://www.amundsen.com/hypermedia/hfactor/
        
        http://code.ge/media-types/collection-next-json/
        
        
Keywords: django hypermedia REST
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
