summaryrefslogtreecommitdiff
path: root/repoze/bfg/includes/meta.zcml
blob: 83fb48e87345cbd83999d19fd4a47258d36ed8bd (plain)
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
<configure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:meta="http://namespaces.zope.org/meta">

  <meta:directives namespace="http://namespaces.repoze.org/bfg">

    <meta:directive
        name="view"
        schema="repoze.bfg.zcml.IViewDirective"
        handler="repoze.bfg.zcml.view"
        />

    <meta:directive
        name="scan"
        schema="repoze.bfg.zcml.IScanDirective"
        handler="repoze.bfg.zcml.scan"
        />

  </meta:directives>

  <meta:groupingDirective
      namespace="http://namespaces.repoze.org/bfg"
      name="route"
      schema="repoze.bfg.zcml.IRouteDirective"
      handler="repoze.bfg.zcml.Route"
      />

  <meta:directive
      name="requirement"
      namespace="http://namespaces.repoze.org/bfg"
      usedIn="repoze.bfg.zcml.IRouteDirective"
      schema="repoze.bfg.zcml.IRouteRequirementDirective"
      handler="repoze.bfg.zcml.route_requirement"
      />

</configure>