~launchpad-pqm/launchpad/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!-- Copyright 2009 Canonical Ltd.  This software is licensed under the
     GNU Affero General Public License version 3 (see the file LICENSE).
-->

<configure xmlns="http://namespaces.zope.org/zope">

  <securedutility
      name="CountryName"
      component="lp.services.worlddata.vocabularies.CountryNameVocabulary"
      provides="zope.schema.interfaces.IVocabularyFactory"
    >
    <allow interface="zope.schema.interfaces.IVocabularyFactory"/>
  </securedutility>

  <class class="lp.services.worlddata.vocabularies.CountryNameVocabulary">
    <allow interface="canonical.launchpad.webapp.vocabulary.IHugeVocabulary"/>
  </class>


  <securedutility
    name="Language"
    component="lp.services.worlddata.vocabularies.LanguageVocabulary"
    provides="zope.schema.interfaces.IVocabularyFactory"
    >
    <allow interface="zope.schema.interfaces.IVocabularyFactory"/>
  </securedutility>

  <class class="lp.services.worlddata.vocabularies.LanguageVocabulary">
    <allow interface="canonical.launchpad.webapp.vocabulary.IHugeVocabulary"/>
  </class>


  <securedutility
    name="TimezoneName"
    component="lp.services.worlddata.vocabularies.TimezoneNameVocabulary"
    provides="zope.schema.interfaces.IVocabularyFactory"
    >
    <allow interface="zope.schema.interfaces.IVocabularyFactory"/>
  </securedutility>

</configure>