This file is indexed.

/usr/share/pyshared/pyramid_zcml/meta.zcml is in python-pyramid-zcml 1.0.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<configure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:meta="http://namespaces.zope.org/meta">

  <meta:directives namespace="http://pylonshq.com/pyramid">

    <meta:directive
        name="view"
        schema="pyramid_zcml.IViewDirective"
        handler="pyramid_zcml.view"
        />

    <meta:directive
        name="scan"
        schema="pyramid_zcml.IScanDirective"
        handler="pyramid_zcml.scan"
        />

    <meta:directive
        name="notfound"
        schema="pyramid_zcml.ISystemViewDirective"
        handler="pyramid_zcml.notfound"
        />

    <meta:directive
        name="forbidden"
        schema="pyramid_zcml.ISystemViewDirective"
        handler="pyramid_zcml.forbidden"
        />

    <meta:directive
        name="route"
        schema="pyramid_zcml.IRouteDirective"
        handler="pyramid_zcml.route"
        />

    <meta:directive
        name="asset"
        schema="pyramid_zcml.IAssetDirective"
        handler="pyramid_zcml.asset"
        />

    <meta:directive
        name="resource"
        schema="pyramid_zcml.IAssetDirective"
        handler="pyramid_zcml.asset"
        />

    <meta:directive
        name="static"
        schema="pyramid_zcml.IStaticDirective"
        handler="pyramid_zcml.static"
        />

    <meta:directive
        name="renderer"
        schema="pyramid_zcml.IRendererDirective"
        handler="pyramid_zcml.renderer"
        />

    <meta:directive
        name="repozewho1authenticationpolicy"
        schema="pyramid_zcml.IRepozeWho1AuthenticationPolicyDirective"
        handler="pyramid_zcml.repozewho1authenticationpolicy"
        />

    <meta:directive
        name="remoteuserauthenticationpolicy"
        schema="pyramid_zcml.IRemoteUserAuthenticationPolicyDirective"
        handler="pyramid_zcml.remoteuserauthenticationpolicy"
        />

    <meta:directive
        name="authtktauthenticationpolicy"
        schema="pyramid_zcml.IAuthTktAuthenticationPolicyDirective"
        handler="pyramid_zcml.authtktauthenticationpolicy"
        />

    <meta:directive
        name="aclauthorizationpolicy"
        schema="pyramid_zcml.IACLAuthorizationPolicyDirective"
        handler="pyramid_zcml.aclauthorizationpolicy"
        />

    <meta:directive
        name="translationdir"
        schema="pyramid_zcml.ITranslationDirDirective"
        handler="pyramid_zcml.translationdir"
        />

    <meta:directive
        name="localenegotiator"
        schema="pyramid_zcml.ILocaleNegotiatorDirective"
        handler="pyramid_zcml.localenegotiator"
        />

    <meta:directive
        name="adapter"
        schema="pyramid_zcml.IAdapterDirective"
        handler="pyramid_zcml.adapter"
        />

    <meta:directive
        name="subscriber"
        schema="pyramid_zcml.ISubscriberDirective"
        handler="pyramid_zcml.subscriber"
        />

    <meta:directive
        name="utility"
        schema="pyramid_zcml.IUtilityDirective"
        handler="pyramid_zcml.utility"
        />

    <meta:directive
        name="default_permission"
        schema="pyramid_zcml.IDefaultPermissionDirective"
        handler="pyramid_zcml.default_permission"
        />

  </meta:directives>

</configure>