Metadata-Version: 2.0
Name: collective.webhook
Version: 0.1
Summary: Webhook content rule action
Home-page: https://pypi.python.org/pypi/collective.webhook
Author: Asko Soukka
Author-email: asko.soukka@iki.fi
License: GPL version 2
Description-Content-Type: UNKNOWN
Keywords: Python Plone
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 5.0
Classifier: Framework :: Plone :: 5.1
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Requires-Dist: plone.api (>=1.8.4)
Requires-Dist: Products.GenericSetup (>=1.8.2)
Requires-Dist: requests
Requires-Dist: six
Requires-Dist: futures
Requires-Dist: setuptools
Provides-Extra: test
Requires-Dist: Pillow; extra == 'test'
Requires-Dist: plone.app.imaging; extra == 'test'
Requires-Dist: plone.app.testing; extra == 'test'
Requires-Dist: plone.testing (>=5.0.0); extra == 'test'
Requires-Dist: plone.app.contenttypes; extra == 'test'
Requires-Dist: plone.app.robotframework[debug]; extra == 'test'

.. This README is meant for consumption by humans and pypi. Pypi can render rst files so please do not use Sphinx features.
   If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html
   This text does not appear on pypi or github. It is a comment.

==================
collective.webhook
==================

A Plone content rule action for executing HTTP GET or POST with interpolated JSON payload on content event.


Features
--------

- Can be used to trigger webhooks from Plone content rules.
- Outgoing request are pooled through Plone instance local worker thread throttled by one request / second.


Examples
--------

- Can be used to trigger CI webhook for building GatsbyJS site from Plone after each time content is being modified.


.. Documentation
   -------------

.. Full documentation for end users can be found in the "docs" folder, and is also available online at http://docs.plone.org/foo/bar


.. Translations
.. ------------

.. This product has been translated into
..
.. - Klingon (thanks, K'Plai)


Installation
------------

Install collective.webhook by adding it to your buildout::

    [buildout]

    ...

    eggs =
        collective.webhook


and then running ``bin/buildout``


Contribute
----------

- Issue Tracker: https://github.com/collective/collective.webhook/issues
- Source Code: https://github.com/collective/collective.webhook


License
-------

The project is licensed under the GPLv2.


Contributors
============

- Asko Soukka, asko.soukka@iki.fi


Changelog
=========


0.1 (2018-05-27)
----------------

- Initial release.
  [datakurre]


