summaryrefslogtreecommitdiff
path: root/repoze/bfg/includes/meta.zcml
blob: 36129c5e3aa41aab286e3a80294e11f319b73269 (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
37
38
39
40
41
42
43
44
45
46
47
48
<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:directive
        name="notfound"
        schema="repoze.bfg.zcml.INotFoundViewDirective"
        handler="repoze.bfg.zcml.notfound"
        />

    <meta:directive
        name="forbidden"
        schema="repoze.bfg.zcml.IForbiddenViewDirective"
        handler="repoze.bfg.zcml.forbidden"
        />

  </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>