source: products/quintagroup.mobileextender/trunk/quintagroup/mobileextender/browser/configure.zcml @ 3467

Last change on this file since 3467 was 3467, checked in by kroman0, 12 years ago

Fixed quintagroup.mobileextender package

File size: 1.2 KB
Line 
1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:browser="http://namespaces.zope.org/browser"
4    xmlns:five="http://namespaces.zope.org/five"
5    i18n_domain="Products.qPloneGoogleSitemaps">
6
7    <!-- -*- extra stuff goes here -*- -->
8
9    <browser:page
10        for="Products.CMFPlone.interfaces.IPloneSiteRoot"
11        name="mobile_control"
12        class=".mobilecontrol.MobileControlView"
13        permission="cmf.ManagePortal"
14        allowed_attributes="currentlyMarked"
15        />
16
17    <browser:resource
18        name="mobile.png"
19        file="mobile.png"
20        />
21
22    <utility
23        name="quintagroup.mobileextender.ptypes"
24        component=".vocabularies.getPortalTypes"
25        provides="zope.schema.interfaces.IVocabularyFactory"
26        />
27
28    <utility
29        name="quintagroup.mobileextender.sortindices"
30        component=".vocabularies.getSortIndices"
31        provides="zope.schema.interfaces.IVocabularyFactory"
32        />
33
34    <utility
35        name="quintagroup.mobileextender.wfstates"
36        component=".vocabularies.getWFStates"
37        provides="zope.schema.interfaces.IVocabularyFactory"
38        />
39
40    <adapter factory=".mobilecontrol.MobileControl" />
41
42</configure>
Note: See TracBrowser for help on using the repository browser.