Puppet Class: ckan::ext::pdfview
- Defined in:
- manifests/ext/pdfview.pp
Summary
Installs the "pdf_view" extensionOverview
If you want to enable pdf views of documents outside of the ckan instance, you will need to enable resource_proxy plugin.
| 8 9 10 11 12 13 14 15 | # File 'manifests/ext/pdfview.pp', line 8
class ckan::ext::pdfview {
  ckan::ext { 'pdfview':
    source   => 'https://github.com/ckan/ckanext-pdfview',
    revision => 'master',
    plugin   => ['pdf_view'],
    views    => ['pdf_view'],
  }
} |