Metadata-Version: 1.1
Name: collective.stomach
Version: 0.2
Summary: This products is used to see which eggs are in Plone site.
Home-page: https://github.com/collective/collective.stomach
Author: Benoit Suttor
Author-email: bsuttor@cirb.irisnet.be
License: gpl
Description: .. contents::
        
        Introduction
        ============
        
        You can open a browser and call the ::
            
            @@stomach_view?token=my_secret_token
        
        Or make python script which call view url as ::
        
            url = "http://localhost:8080/Plone/stomach_view?token=my_secret_token
            request = urllib2.Request(url)
            request.add_header("Content-Type", "application/json")
            response = urllib2.urlopen(request)
            print response.read()
        
        A json with a list of all eggs will be return.
        
        Benoit Suttor, Author
        
        Changelog
        =========
        
        0.2 (2013-07-25)
        ----------------
        
        - Add little security with token and registry.
          [bsuttor]
        
        
        0.1 (2013-07-17)
        ----------------
        
        - Package created using templer
          [bsuttor]
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Operating System :: OS Independent
Classifier: Framework :: Zope2
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 4.2
Classifier: Framework :: Plone :: 4.3
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
