This file is indexed.

/usr/lib/python2.7/dist-packages/zope.i18nmessageid-4.0.3.egg-info/PKG-INFO is in python-zope.i18nmessageid 4.0.3-2build4.

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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
Metadata-Version: 1.1
Name: zope.i18nmessageid
Version: 4.0.3
Summary: Message Identifiers for internationalization
Home-page: http://pypi.python.org/pypi/zope.i18nmessageid
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: To translate any text, we must be able to discover the source domain
        of the text.  A source domain is an identifier that identifies a
        project that produces program source strings.  Source strings occur as
        literals in python programs, text in templates, and some text in XML
        data.  The project implies a source language and an application
        context.
        
        We can think of a source domain as a collection of messages and
        associated translation strings.
        
        We often need to create unicode strings that will be displayed by
        separate views.  The view cannot translate the string without knowing
        its source domain.  A string or unicode literal carries no domain
        information, therefore we use messages.  Messages are unicode strings
        which carry a translation source domain and possibly a default
        translation.  They are created by a message factory. The message
        factory is created by calling ``MessageFactory`` with the source
        domain.
        
        This package provides facilities for *declaring* such messages within
        program source text;  translation of the messages is the responsiblitiy
        of the 'zope.i18n' package.
        
        Please see http://docs.zope.org/zope.i18nmessageid/ for the documentation.
        
        
        =======
        CHANGES
        =======
        
        
        4.0.3 (2014-03-19)
        ------------------
        
        - Added support for Python 3.4.
        
        - Updated ``boostrap.py`` to version 2.2.
        
        
        4.0.2 (2012-12-31)
        ------------------
        
        - Fleshed out PyPI Trove classifiers.
        
        4.0.1 (2012-11-21)
        ------------------
        
        - Added support for Python 3.3.
        
        4.0.0 (2012-05-16)
        ------------------
        
        - Automated build of Sphinx HTML docs and running doctest snippets via tox.
        
        - Removed use of '2to3' and associated fixers when installing under Py3k.
          The code is now in a "compatible subset" which supports Python 2.6, 2.7,
          and 3.2, including PyPy 1.8 (the version compatible with the 2.7 language
          spec).
        
        - 100% unit test coverage.
        
        - Move doctest examples into Sphinx documentation.
        
        - Dropped explicit support for Python 2.4 / 2.5 / 3.1.
        
        - Added explicit support for PyPy.
        
        - Added 'setup.py dev' alias (runs ``setup.py develop`` plus installs
          ``nose`` and ``coverage``).
        
        - Added 'setup.py docs' alias (installs ``Sphinx`` and dependencies).
        
        
        3.6.1 (2011-07-20)
        ------------------
        
        - Correct metadata in this file for release date.
        
        3.6.0 (2011-07-20)
        ------------------
        
        - Python 3 support.
        
        - Don't attempt to compile C extensions on PyPy or Jython.
        
        - Add a tox.ini (see http://tox.readthedocs.org/en/latest/) for easier
          automated testing.
        
        3.5.3 (2010-08-10)
        ------------------
        
        - Made compilation of C extension optional again; 3.5.1 broke this
          inasmuch as this package become unusable on non-CPython platforms.
          Making the compilation of the C extension optional again implied
          removing ``setup.py`` code added in 3.5.1 which made the C extension
          a setuptools "Feature" and readding code from 3.5.0 which overrides
          the distutils ``build_ext`` command.
        
        - Move pickle equality tests into a unittest.TestCase test to make it
          easier to condition the tests on whether the C extension has been
          compiled.  This also makes the tests pass on Jython.
        
        3.5.2 (2010-04-30)
        ------------------
        
        - Removed use of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.
        
        3.5.1 (2010-04-10)
        ------------------
        
        - LP #257657 / 489529:  Fix memory leak in C extension.
        
        - Fixed the compilation of the C extension with python 2.6: refactored it as a
          setuptools Feature.
        
        3.5.0 (2009-06-27)
        ------------------
        
        - Made compilation of C extension optional.
        
        - Added support to bootstrap on Jython.
        
        - Changed package's mailing list address from zope3-dev at zope.org to
          zope-dev at zope.org, because zope3-dev is now retired.
        
        - Reformatted change log to common formatting style.
        
        - Update package description and docs a little.
        
        - Remove old .cfg files for zpkg.
        
        3.4.3 (2007-09-26)
        ------------------
        
        - Make PyPI the home URL.
        
        3.4.2 (2007-09-25)
        ------------------
        
        - Moved the ``ZopeMessageFactory`` from ``zope.app.i18n`` to this package.
        
        3.4.0 (2007-07-19)
        ------------------
        
        - Remove incorrect dependency.
        
        - Create final release to reflect package status.
        
        3.2.0 (2006-01-05)
        ------------------
        
        - Corresponds to the verison of the zope.i18nmessageid package shipped as
          part of the Zope 3.2.0 release.
        
        - Implemented 'zope.i18nmessageid.message' as a C extension.
        
        - Deprecated 'zope.i18nmessageid.messageid' APIs ('MessageID',
          'MessageIDFactory') in favor of replacements in 'zope.i18nmessageid.message'
          ('Message', 'MessageFactory').  Deprecated items are scheduled for removal
          in Zope 3.3.
        
        3.0.0 (2004-11-07)
        ------------------
        
        - Corresponds to the verison of the zope.i18nmessageid package shipped as
          part of the Zope X3.0.0 release.
        
Keywords: zope i18n message factory
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: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3