├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── MANIFEST.in ├── README.markdown ├── disqus ├── __init__.py ├── api.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── disqus_dumpdata.py │ │ └── disqus_export.py ├── models.py ├── templates │ └── disqus │ │ ├── disqus_dev.html │ │ ├── disqus_sso.html │ │ ├── num_replies.html │ │ ├── recent_comments.html │ │ └── show_comments.html ├── templatetags │ ├── __init__.py │ └── disqus_tags.py ├── tests.py └── wxr_feed.py ├── docs ├── Makefile ├── _build │ └── doctrees │ │ ├── commands.doctree │ │ ├── commonusecases.doctree │ │ ├── disqusapi.doctree │ │ ├── environment.pickle │ │ ├── exporting_wxr.doctree │ │ ├── index.doctree │ │ ├── installation.doctree │ │ ├── releasenotes.doctree │ │ ├── releasenotes │ │ ├── 0.3.1.doctree │ │ ├── 0.3.2.doctree │ │ ├── 0.3.3.doctree │ │ ├── 0.3.4.doctree │ │ ├── 0.3.doctree │ │ ├── 0.4.doctree │ │ └── index.doctree │ │ ├── templatetags.doctree │ │ └── tutorials.doctree ├── commands.rst ├── conf.py ├── exporting_wxr.rst ├── index.rst ├── installation.rst ├── releasenotes.rst └── templatetags.rst ├── runtests.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | *.egg-info 4 | dist/ 5 | build/ 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/README.markdown -------------------------------------------------------------------------------- /disqus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/__init__.py -------------------------------------------------------------------------------- /disqus/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/api.py -------------------------------------------------------------------------------- /disqus/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disqus/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disqus/management/commands/disqus_dumpdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/management/commands/disqus_dumpdata.py -------------------------------------------------------------------------------- /disqus/management/commands/disqus_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/management/commands/disqus_export.py -------------------------------------------------------------------------------- /disqus/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disqus/templates/disqus/disqus_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/templates/disqus/disqus_dev.html -------------------------------------------------------------------------------- /disqus/templates/disqus/disqus_sso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/templates/disqus/disqus_sso.html -------------------------------------------------------------------------------- /disqus/templates/disqus/num_replies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/templates/disqus/num_replies.html -------------------------------------------------------------------------------- /disqus/templates/disqus/recent_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/templates/disqus/recent_comments.html -------------------------------------------------------------------------------- /disqus/templates/disqus/show_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/templates/disqus/show_comments.html -------------------------------------------------------------------------------- /disqus/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disqus/templatetags/disqus_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/templatetags/disqus_tags.py -------------------------------------------------------------------------------- /disqus/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/tests.py -------------------------------------------------------------------------------- /disqus/wxr_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/disqus/wxr_feed.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_build/doctrees/commands.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/commands.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/commonusecases.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/commonusecases.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/disqusapi.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/disqusapi.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/exporting_wxr.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/exporting_wxr.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/installation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/installation.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/releasenotes.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/releasenotes.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/releasenotes/0.3.1.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/releasenotes/0.3.1.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/releasenotes/0.3.2.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/releasenotes/0.3.2.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/releasenotes/0.3.3.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/releasenotes/0.3.3.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/releasenotes/0.3.4.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/releasenotes/0.3.4.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/releasenotes/0.3.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/releasenotes/0.3.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/releasenotes/0.4.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/releasenotes/0.4.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/releasenotes/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/releasenotes/index.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/templatetags.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/templatetags.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/tutorials.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/_build/doctrees/tutorials.doctree -------------------------------------------------------------------------------- /docs/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/commands.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/exporting_wxr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/exporting_wxr.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/releasenotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/releasenotes.rst -------------------------------------------------------------------------------- /docs/templatetags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/docs/templatetags.rst -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurk/django-disqus/HEAD/setup.py --------------------------------------------------------------------------------