source: products/quintagroup.portlet.cumulus/trunk/quintagroup/portlet/cumulus/configure.zcml @ 1003

Last change on this file since 1003 was 1003, checked in by koval, 15 years ago

initial import

File size: 1.6 KB
Line 
1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:five="http://namespaces.zope.org/five"
4    xmlns:genericsetup="http://namespaces.zope.org/genericsetup"
5    xmlns:plone="http://namespaces.plone.org/plone"
6    xmlns:browser="http://namespaces.zope.org/browser"
7    i18n_domain="quintagroup.portlet.cumulus">
8
9    <five:registerPackage package="." initialize=".initialize" />
10
11    <include package="plone.app.portlets" />
12
13    <genericsetup:registerProfile
14        name="default"
15        title="Cumulus portlet"
16        directory="profiles/default"
17        description="This package allows you to display your site's tags using a Flash movie that rotates them in 3D. This is a ported to Plone WordPress WP-Cumulus plugin."
18        provides="Products.GenericSetup.interfaces.EXTENSION"
19        />
20
21    <!-- Register the portlet -->
22
23    <!-- If the portlet has no configurable parameters, you can remove
24        the EditForm declaration in cumulusportlet.py and delete
25        the 'editview' attribute from this statement.
26    -->
27
28    <plone:portlet
29        name="quintagroup.portlet.cumulus.CumulusPortlet"
30        interface=".cumulusportlet.ICumulusPortlet"
31        assignment=".cumulusportlet.Assignment"
32        view_permission="zope2.View"
33        edit_permission="cmf.ManagePortal"
34        renderer=".cumulusportlet.Renderer"
35        addview=".cumulusportlet.AddForm"
36        editview=".cumulusportlet.EditForm"
37        />
38
39    <browser:resource
40        name="tagcloud.swf"
41        file="tagcloud.swf"
42        />
43
44    <browser:resource
45        name="swfobject.js"
46        file="swfobject.js"
47        />
48
49</configure>
Note: See TracBrowser for help on using the repository browser.