This file is indexed.

/usr/share/pyshared/zope.app.http-3.10.2.egg-info/PKG-INFO is in python-zope.app.http 3.10.2-0ubuntu2.

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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
Metadata-Version: 1.1
Name: zope.app.http
Version: 3.10.2
Summary: HTTP Behavior for the Zope Publisher
Home-page: http://pypi.python.org/pypi/zope.app.http
Author: Zope Corporation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: zope.app.http
        *************
        
        This package implements the simplest HTTP behavior within the Zope
        Publisher. It implements all HTTP verbs as views and defines the necessary
        HTTP exceptions.
        
        
        =======
        CHANGES
        =======
        
        3.10.2 (2011-08-09)
        -------------------
        
        - Fixing brown bag release 3.10.1, failing tests.
        
        
        3.10.1 (2011-08-04)
        -------------------
        
        - Replaced an undeclared test dependency on ``zope.app.authentication`` with
          ``zope.password``.
        
        - Replaced the testing dependency on ``zope.app.zcmlfiles`` with explicit
          dependencies of a minimal set of packages.
        
        
        3.10.0 (2011-01-25)
        -------------------
        
        - PUT raises ``405 MethodNotAllowed`` when the context cannot be adapted to
          ``zope.filerepresentation.interfaces.IWriteFile`` for existing objects
          resp. ``zope.filerepresentation.interfaces.IFileFactory`` for not existing
          ones.
        
        
        3.9.0 (2010-09-17)
        ------------------
        
        - Replaced a testing dependency on `zope.app.securitypolicy` with one on
          `zope.securitypolicy`.
        
        - Removed test dependency on `zope.app.file` by moving the test which needs
          this package to `zope.app.file`.
        
        
        3.8 (2010-04-19)
        ----------------
        
        - Remove dependency on `zope.app.testing` by using the
          `zope.app.wsgi.testlayer` support instead.
        
          At the time of this writing the test dependency on
          `zope.app.zcmlfiles` cannot be removed however, because there is a
          dependency on `zope.app.file` for testing, which pulls in the world.
        
        3.7 (2010-04-13)
        ----------------
        
        - Remove unnecessary dependency on `zope.app.publisher`.
        
        - Fix for an edge case:
          If someone does a ``defaultView`` for the context object and someone comes with
          a not allowed method, the exception view fails on ``getAdapters``.
        
        3.6.1 (2010-01-08)
        ------------------
        
        - Replaced the dependency on `zope.deprecation` with BBB imports
        
        - Made the dependency on `zope.app.publisher` explicit
        
        - Fix tests using a newer `zope.publisher` that requires `zope.login`.
        
        3.6.0 (2009-05-23)
        ------------------
        
        - Moved ``IHTTPException``, ``IMethodNotAllowed``, and ``MethodNotAllowed`` from
          `zope.app.http` to `zope.publisher.interfaces.http`, fixing dependency
          cycles involving `zope.app.http`.
        
        3.5.2 (2009-04-01)
        ------------------
        
        - Replaced deprecated ``zope:defaultView`` directive with
          ``browser:defaultView``.
        
        3.5.1 (2009-03-12)
        ------------------
        
        - If the 'CONTENT_LENGTH' header is provided, provide this length as
          argument to the ``read`` method of the input stream object.
        
        3.5.0 (2009-02-01)
        ------------------
        
        - Change dependency on `zope.app.container` to `zope.container`.
        
        3.4.5 (2010-01-28)
        ------------------
        
        - Backport r108613 from trunk:
          Fix for an edge case:
          If someone does a ``defaultView`` for the context object and someone comes with
          a not allowed method, the exception view fails on ``getAdapters``.
        
        3.4.4 (2009-01-29)
        ------------------
        
        - Make tests compatible with new `zope.traversing` release.
        
        3.4.3 (2009-01-27)
        ------------------
        
        - Added missing depencendy: `zope.app.zcmlfiles`.
        
        3.4.2 (2009-01-26)
        ------------------
        
        - Add a couple of tests to the OPTIONS verb.
        
        - Substitute `zope.app.zapi` by direct calls to its wrapped APIs and get
          rid of `zope.app.zapi` as a dependency. See bug #LP219302.
        
        
        3.4.1 (2007-10-31)
        ------------------
        
        - Resolved ``ZopeSecurityPolicy`` deprecation warning.
        
        
        3.4.0 (2007-10-24)
        ------------------
        
        - Initial release independent of the main Zope tree.
        
Keywords: zope3 http publisher view
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3