Ivan Dyedov 4e7a4bd592 make the disqus_static plugin work for sites with over 25 comments 12 роки тому
..
README.rst 4e7a4bd592 make the disqus_static plugin work for sites with over 25 comments 12 роки тому
disqus_static.py 4e7a4bd592 make the disqus_static plugin work for sites with over 25 comments 12 роки тому

README.rst

Disqus static comment plugin for Pelican
====================================

This plugin adds a disqus_comments property to all articles.
Comments are fetched at generation time using disqus API.

Installation
------------
Because we use disqus API to retrieve the comments you need to create an application at
http://disqus.com/api/applications/ which will provide you with a secret and public keys for the API.

We use disqus-python package for communication with disqus API:
``pip install disqus-python``

Put ``disqus_static.py`` plugin in ``plugins`` folder in pelican installation
and use the following in your settings::

PLUGINS = [u"pelican.plugins.disqus_static"]

DISQUS_SITENAME = u'YOUR_SITENAME'
DISQUS_SECRET_KEY = u'YOUR_SECRET_KEY'
DISQUS_PUBLIC_KEY = u'YOUR_PUBLIC_KEY'

Usage
-----

.. code-block:: html+jinja

{% if article.disqus_comments %}

{{ article.disqus_comments|length }} comments



    {% for comment in article.disqus_comments %}



  • Avatar



    {{ comment.author.name }}
    {{ comment.createdAt }}




    {{ comment.message }}






  • {% endfor %}


{% endif %}

TODO
-----

- handle replies to comments properly and maintain parent-child relationships