├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin ├── travis-build.bash └── travis-run.sh ├── ckanext ├── __init__.py └── discourse │ ├── __init__.py │ ├── fanstatic │ └── discourse.css │ ├── interfaces.py │ ├── plugin.py │ ├── public │ └── img │ │ └── noun-comment-white.png │ ├── templates │ ├── datarequests │ │ └── snippets │ │ │ ├── datarequest_item.html │ │ │ └── datarequest_list.html │ ├── discourse_comments.html │ ├── discourse_comments_debug.html │ ├── discourse_latest.html │ ├── group │ │ ├── about.html │ │ ├── group_item.html │ │ └── snippets │ │ │ ├── group_item.html │ │ │ └── group_list.html │ ├── home │ │ └── snippets │ │ │ ├── package_item.html │ │ │ └── stats.html │ ├── organization │ │ ├── about.html │ │ └── snippets │ │ │ ├── organization_item.html │ │ │ └── organization_list.html │ ├── package │ │ └── read.html │ ├── showcase │ │ ├── read.html │ │ └── snippets │ │ │ ├── showcase_item.html │ │ │ └── showcase_list.html │ └── snippets │ │ ├── datarequest_list.html │ │ ├── package_item.html │ │ └── package_list.html │ └── tests │ ├── __init__.py │ └── test_plugin.py ├── dev-requirements.txt ├── setup.py └── test.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/README.md -------------------------------------------------------------------------------- /bin/travis-build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/bin/travis-build.bash -------------------------------------------------------------------------------- /bin/travis-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/bin/travis-run.sh -------------------------------------------------------------------------------- /ckanext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/__init__.py -------------------------------------------------------------------------------- /ckanext/discourse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/discourse/fanstatic/discourse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/fanstatic/discourse.css -------------------------------------------------------------------------------- /ckanext/discourse/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/interfaces.py -------------------------------------------------------------------------------- /ckanext/discourse/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/plugin.py -------------------------------------------------------------------------------- /ckanext/discourse/public/img/noun-comment-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/public/img/noun-comment-white.png -------------------------------------------------------------------------------- /ckanext/discourse/templates/datarequests/snippets/datarequest_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/datarequests/snippets/datarequest_item.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/datarequests/snippets/datarequest_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/datarequests/snippets/datarequest_list.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/discourse_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/discourse_comments.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/discourse_comments_debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/discourse_comments_debug.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/discourse_latest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/discourse_latest.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/group/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/group/about.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/group/group_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/group/group_item.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/group/snippets/group_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/group/snippets/group_item.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/group/snippets/group_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/group/snippets/group_list.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/home/snippets/package_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/home/snippets/package_item.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/home/snippets/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/home/snippets/stats.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/organization/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/organization/about.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/organization/snippets/organization_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/organization/snippets/organization_item.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/organization/snippets/organization_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/organization/snippets/organization_list.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/package/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/package/read.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/showcase/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/showcase/read.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/showcase/snippets/showcase_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/showcase/snippets/showcase_item.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/showcase/snippets/showcase_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/showcase/snippets/showcase_list.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/snippets/datarequest_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/snippets/datarequest_list.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/snippets/package_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/snippets/package_item.html -------------------------------------------------------------------------------- /ckanext/discourse/templates/snippets/package_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/templates/snippets/package_list.html -------------------------------------------------------------------------------- /ckanext/discourse/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/discourse/tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/ckanext/discourse/tests/test_plugin.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/setup.py -------------------------------------------------------------------------------- /test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGov-OpenData/ckanext-discourse/HEAD/test.ini --------------------------------------------------------------------------------