Dashboard visualises selected datasets on a single overview screen. You can add graphs, charts, and maps to give a quick summary of the data. For more information about orgdashboard extension follow this tutorial Data dashboards.
To install ckanext-orgdashboards:
Activate your CKAN virtual environment, for example:
. /usr/lib/ckan/default/bin/activate
Install the ckanext-orgdashboards Python package into your virtual environment:
pip install ckanext-orgdashboards
Add
orgdashboards
to theckan.plugins
setting in your CKAN config file (by default the config file is located at/etc/ckan/default/production.ini
).Add
ckanext.orgdashboards.datasets_per_page
as a setting in the config file:ckanext.orgdashboards.datasets_per_page = 5
Add
ckanext.orgdashboards.organization_entity_name
as a setting in the config file:ckanext.orgdashboards.organization_entity_name = organization
This setting can either be set to country
or organization
. If you set
it to country
it will use text references for "Country/Countries" instead of
"Organization/Organizations" throughout the web interface. Though, this only
applies to certain parts of the UI. For some, you have to manually override/extend
the templates.
6. Add ckanext.orgdashboards.group_entity_name
as a setting in the
config file:
ckanext.orgdashboards.group_entity_name = group
This setting can either be set to group
or theme
. If you set
it to theme
it will use text references for "Theme/Themes" instead of
"Group/Groups" throughout the web interface. Though, this only applies to
certain parts of the UI. For some, you have to manually override/extend the
templates.
7. Add ckanext.orgdashboards.custom_dns_active
as a setting in the
config file:
ckanext.orgdashboards.custom_dns_active = true
This setting enables functionality for adding custom domain for individual dashboards.
Restart CKAN. For example if you've deployed CKAN with Apache on Ubuntu:
sudo service apache2 reload
Document any optional config settings here. For example:
# The minimum number of hours to wait before re-checking a resource # (optional, default: 24). ckanext.orgdashboards.some_setting = some_default_value
To install ckanext-orgdashboards for development, activate your CKAN virtualenv and do:
git clone https://github.com/keitaroinc/ckanext-orgdashboards.git cd ckanext-orgdashboards python setup.py develop pip install -r dev-requirements.txt
In order to use languages that are not supported by CKAN, you have to install them manually. Open up a terminal inside the CKAN's source directory, and type the following command to initialize a new catalog for a language:
python setup.py init_catalog --locale YOUR_LANGUAGE
where YOUR_LANGUAGE
is the locale of the language. This command will
create a .po
file inside ckan/i18n/YOUR_LANGUAGE/LC_MESSAGES
which contains the strings for the language.
Next you have to compile tha language into a binary format with the following command:
python setup.py compile_catalog --locale YOUR_LANGUAGE
where YOUR_LANGUAGE
is the locale of the language. This command will
create a .mo
file, and the one which CKAN will read the strings from.
If you want to add additional strings for a certain language and translate them, then follow these instructions:
1. Switch to the extension's directory and add a directory to store your translations:
mkdir ckanext/orgdashboards/i18n
2. Extract the strings from the extension with this command:
python setup.py extract_messages
This will create a template .po
file named
ckanext/orgdashboards/i18n/ckanext-orgdashboards.pot
3. The next step is to create the translations. Let's say that you want to
translate strings for the de
locale. Create the translation .po
file
for the locale that you are translating for by running init_catalog
:
python setup.py init_catalog -l de
This will generate a file called i18n/de/LC_MESSAGES/ckanext-orgdashboards.po
.
It contains every string extracted from the extension. For example, if you want
to translate the string Groups
, locate it in the .po
file and type the
appropriate translation:
msgid "Groups" msgstr "Gruppen"
A .po
file can also be edited using a special program for translation called
Poedit.
4. Once you are done with translation, next step is to compile the catalog with
the compile_catalog
command:
python setup.py compile_catalog -l de
This will create a binary .mo
file named
ckanext/orgdashboards/i18n/ckanext-orgdashboards.mo
containing your
translations.
Once you have added the translated strings, you will need to inform CKAN that
your extension is translated by implementing the ITranslation
interface in
your extension. Edit your plugin.py
to contain the following:
from ckan.lib.plugins import DefaultTranslation class YourPlugin(plugins.SingletonPlugin, DefaultTranslation): plugins.implements(plugins.ITranslation)
Restart the server and you should find that switching to the de
locale in
the web interface should change the Groups
string.
More information on translating extensions can be found on the offical documentation on CKAN.
Additional flags for countries can be taken from http://flag-icon-css.lip.is
Some of the tests require that you run a CKAN server, the one where the orgdashboards extension is installed.
First create a new database called ckan_test
if you haven't already, and
in the config file for the server change the sqlalchemy.url
to point to the
database ckan_test
. This database will be used by the tests.
And second, set a storage path in the config file where uploaded resources will be stored.
ckan.storage_path = /path/to/storage
To run the tests, change the current working directory to the extension and do:
nosetests --ckan --with-pylons=test.ini
To run the tests and produce a coverage report, first make sure you have
coverage installed in your virtualenv (pip install coverage
) then run:
nosetests --nologcapture --with-pylons=test.ini --with-coverage --cover-package=ckanext.orgdashboards --cover-inclusive --cover-erase --cover-tests
ckanext-orgdashboards should be availabe on PyPI as https://pypi.python.org/pypi/ckanext-orgdashboards. If that link doesn't work, then you can register the project on PyPI for the first time by following these steps:
Create a source distribution of the project:
python setup.py sdist
Register the project:
python setup.py register
Upload the source distribution to PyPI:
python setup.py sdist upload
Tag the first release of the project on GitHub with the version number from the
setup.py
file. For example if the version number insetup.py
is 0.0.1 then do:git tag 0.0.1 git push --tags
ckanext-orgdashboards is availabe on PyPI as https://pypi.python.org/pypi/ckanext-orgdashboards. To publish a new version to PyPI follow these steps:
Update the version number in the
setup.py
file. See PEP 440 for how to choose version numbers.Create a source distribution of the new version:
python setup.py sdist
Upload the source distribution to PyPI:
python setup.py sdist upload
Tag the new release of the project on GitHub with the version number from the
setup.py
file. For example if the version number insetup.py
is 0.0.2 then do:git tag 0.0.2 git push --tags