94e3d383a6
Add docstring for rating_package_get |
||
---|---|---|
.tx | ||
bin | ||
ckanext | ||
i18n | ||
.gitignore | ||
LICENSE | ||
MANIFEST.in | ||
README.rst | ||
dev-requirements.txt | ||
setup.cfg | ||
setup.py | ||
test.ini |
README.rst
CKAN Rating extension |
This is a simple rating extension for CKAN datasets (packages) and showcases. The extension adds a list of clickable stars to the side navigation in the dataset and showcacse templates similar to ckanext-qa. In showcase the stars are also displayed in the showcase listing, but are not clickable.
The stars can also be added to any desired view by adding the following code to the desired template:
{% snippet "rating/stars.html", package=<YOUR_PACKAGE> %}
The amount of ratings submitted can also be displayed with:
{{h.package_rating(None, {'package_id' : <YOUR_PACKAGE>.id} ).ratings_count}}
Rating is identified with client IP if the user is not authenticated. User ID is saved with the rating when authenticated.
Requirements
This extension works with CKAN version 2.5 or later.
Installation
To install ckanext-rating:
Activate your CKAN virtual environment, for example:
. /usr/lib/ckan/default/bin/activate
Install the ckanext-rating Python package into your virtual environment:
pip install ckanext-rating
Add
rating
to theckan.plugins
setting in your CKAN config file (by default the config file is located at/etc/ckan/default/production.ini
).Restart CKAN. For example if you've deployed CKAN with Apache on Ubuntu:
sudo service apache2 reload
Initialize database tables used by Rating:
paster --plugin=ckanext-rating rating init --config=production.ini
If you want to use this extension for ckanext-showcase, install it into your environment by following the instructions at https://github.com/ckan/ckanext-showcase
Development Installation
To install ckanext-rating for development, activate your CKAN virtualenv and do:
git clone https://github.com/6aika/ckanext-rating.git
cd ckanext-rating
python setup.py develop
pip install -r dev-requirements.txt