Metadata-Version: 1.1
Name: mezzanine-pubsubhubbub-pub
Version: 0.0.5
Summary: publisher of pubsubhubbub (PuSH) in Mezzanine.
Home-page: https://github.com/kemsakurai/mezzanine-pubsubhubbub-pub
Author: Ken Sakurai
Author-email: sakurai.kem@gmail.com
License: Apache license 2.0
Description: mezzanine_pubsubhubbub_pub
        ==========================
        
        [![Build Status](https://travis-ci.org/kemsakurai/mezzanine-pubsubhubbub-pub.svg?branch=master)](https://travis-ci.org/kemsakurai/mezzanine-pubsubhubbub-pub)
        
        Publisher support of pubsubhubbub for mezzanine's blog   
        Inspired by [brutasse/django-push: PubSubHubbub support for Django](https://github.com/brutasse/django-push), this package is created.  
        
        Requirements
        ------------
        
        * mezzanine
        * requests
        * mock (for test)
        
        Installation
        ------------
        
        ```console
        pip install mezzanine_pubsubhubbub_pub
        ```
        
        Usage
        ======================
        
        ### add aplication to settings.py  
        
        ```python
        INSTALLED_APPS = (
            "mezzanine_pubsubhubbub_pub",
            "mezzanine.boot",
            "mezzanine.conf",
            "mezzanine.generic",
        ......
        
        ```
        
        ### add feed urlpatterns to urls.py
        
        ```python
        from mezzanine_pubsubhubbub_pub import get_feed_url_patterns
        urlpatterns += get_feed_url_patterns()
        ```
        
        ### add PUSH_HUB to settings.py
        PUSH_HUB is hub server to be notified  
        There can be multiple URL set in the Taple.  
        Default : ```("https://pubsubhubbub.appspot.com/",)```  
        This setting will not be editable via the admin.
        
        ### add PUSH_URL_PROTOCOL to settings.py  
        Set the protocol of the Feed URL to be notified .  
        HTTP_ONLY, a HTTPS_ONLY, BOTH can be set ,  
        BOTH is done the notification in the HTTP / HTTPS both the Feed URL.  
        Default : ```HTTP_ONLY```  
        This setting will be editable via the admin.  
        
        TODO
        ====
        * Support for the lower version
        
        * Flexible feed URL setting
        
        * Create batch jobs
        
        
Keywords: d,j,a,n,g,o,,, ,m,e,z,z,a,n,i,n,e,,, ,p,u,b,s,u,b,h,u,b,b,u,b
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
