source: products/quintagroup.portlet.map/trunk/quintagroup/portlet/map/configure.zcml @ 2188

Last change on this file since 2188 was 2188, checked in by mylan, 14 years ago

Initial import the package

File size: 1.2 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    i18n_domain="quintagroup.portlet.map">
7
8    <five:registerPackage package="." initialize=".initialize" />
9
10    <genericsetup:registerProfile
11       name="default"
12       title="Quintagroup Google Map portlet"
13       directory="profiles/default"
14       description="Quintagroup Google Map portlet"
15       provides="Products.GenericSetup.interfaces.EXTENSION"
16       />
17
18     <!-- Register the portlet -->
19
20     <!-- If the portlet has no configurable parameters, you can remove
21          the EditForm declaration in qgmapportlet.py and delete
22          the 'editview' attribute from this statement.
23       -->
24
25     <plone:portlet
26         name="quintagroup.portlet.map.QGMapPortlet"
27         interface=".qgmapportlet.IQGMapPortlet"
28         assignment=".qgmapportlet.Assignment"
29         view_permission="zope2.View"
30         edit_permission="cmf.ManagePortal"
31         renderer=".qgmapportlet.Renderer"
32         addview=".qgmapportlet.AddForm"
33         editview=".qgmapportlet.EditForm"
34         />
35
36</configure>
Note: See TracBrowser for help on using the repository browser.