This file is indexed.

/usr/lib/python2.7/dist-packages/zope.i18n-4.1.0.egg-info/PKG-INFO is in python-zope.i18n 4.1.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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
Metadata-Version: 1.1
Name: zope.i18n
Version: 4.1.0
Summary: Zope Internationalization Support
Home-page: https://github.com/zopefoundation/zope.i18n
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: ``zope.i18n``
        =============
        
        .. image:: https://pypip.in/version/zope.i18n/badge.svg?style=flat
            :target: https://pypi.python.org/pypi/zope.i18n/
            :alt: Latest Version
        
        .. image:: https://travis-ci.org/zopefoundation/zope.i18n.png?branch=master
                :target: https://travis-ci.org/zopefoundation/zope.i18n
        
        .. image:: https://readthedocs.org/projects/zopei18n/badge/?version=latest
                :target: http://zopei18n.readthedocs.org/en/latest/
                :alt: Documentation Status
        
        This package implements several APIs related to internationalization and
        localization.
        
        * Locale objects for all locales maintained by the ICU project.
        
        * Gettext-based message catalogs for message strings.
        
        * Locale discovery for Web-based requests.
        
        .. See ``docs/index.rst`` for the documentation.
        
        
        
        =======
        CHANGES
        =======
        
        4.1.0 (2015-11-06)
        ------------------
        
        - ``interpolate()`` now works recursively, if the mapping has a value which is
          a ``zope.i18nmessageid.Message`` itself.
        
        4.0.1 (2015-06-05)
        --------------------
        
        - Added support for Python 3.2 and PyPy3.
        
        
        4.0.0 (2014-12-20)
        --------------------
        
        - Added support for testing with Travis.
        
        - Added explicit support for Python 3.4 and PyPy.
        
        
        4.0.0a4 (2013-02-18)
        --------------------
        
        - Restore zope.i18n.testing.{setUp,PlacelessSetup} that got lost in 4.0.0a3.
          These require zope.publisher, which is not ported to Python 3 yet, so I
          haven't added it back to install_requires in setup.py.  User beware.
        
        
        4.0.0a3 (2013-02-15)
        --------------------
        
        - Added support for Python 3.3.
        
        - Log DEBUG when loading translations from directories.
        
        - Replaced deprecated ``zope.interface.implements`` usage with equivalent
          ``zope.interface.implementer`` decorator.
        
        - Dropped support for Python 2.4 and 2.5.
        
        
        3.8.0 (2012-03-15)
        ------------------
        
        - Added optional ``domain`` attribute to ``registerTranslations`` directive to
          only load the specified translation domain. Allows to move catalogs to
          `/usr/share/locale` and avoid loading hundreds of unrelated domains.
        
        - Include meta.zcml files in our own zcml configuration as needed, added a
          test for our configure.zcml.
        
        - Update zope.i18n.NAME_RE to be identical to zope.tal as required by the
          comment next to it. Fixes #611746.
        
        
        3.7.4 (2010-07-08)
        ------------------
        
        - Added missing test dependency on ``zope.testing``.
        
        
        3.7.3 (2010-04-30)
        ------------------
        
        - Removed use of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.
        
        3.7.2 (2009-12-14)
        ------------------
        
        - It's a critical error when the ``GetText`` library is unavailable
          and compilation is required.
        
        - Use getSiteManager rather than getGlobalSiteManager in ZCML (these
          should be one in the same in any non-fancy setup, however if you've
          hooked getSiteManager, you want the ZCML handler to use the hooked
          version).
        
        3.7.1 (2009-08-07)
        ------------------
        
        - Fixed the interpackage translation domain merging feature to actually work.
          We need to defer the merging into the ZCML handler execution phase, as the
          utilities don't exist yet during the ZCML parsing phase. Thx to Andreas
          Zeidler for finding and fixing the issue in PlacelessTranslationService in
          the first place.
        
        - Fix translation domains translating a message for a different domain. In the
          process, fix testMessageIDTranslateForDifferentDomain which seemed to work by
          mistake as the "other" and "default" domains used the same catalog. This is
          basically a reversion of 39991.
        
        
        3.7.0 (2009-03-18)
        ------------------
        
        - Updated locale data to CLDR 1.1. This introduces contextual month
          and day names and different month/day name widths. More CLDR updates
          are expected, see the "nadako-cldr" branch of zope.i18n.
        
        - Add `configure.zcml` that registers standard negotiator utility and includes
          ``zope.i18n.locales`` configuration. This was previously done by
          ``zope.app.i18n``.
        
        
        3.6.0 (2008-10-26)
        ------------------
        
        - Fixed a test failure in the compile mo file support.
        
        - Move the zcml support into an extra. This reduces the dependencies of a
          standard zope.i18n install by half a dozen packages.
        
        
        3.5.0 (2008-07-10)
        ------------------
        
        - Feature: Added new top-level negotiate function, which can be used to
          negotiate the language when the available languages are set globally via
          `zope_i18n_allowed_languages`.
        
        - Feature: Added support for restricting the available languages. We support
          an environment variable called `zope_i18n_allowed_languages` now, which is
          a list of comma or space separated language codes. If the environment
          variable is set, the ZCML registration will only process those folders
          which are in the allowed languages list.
        
        - Feature: Added optional automatic compilation of mo files from po files.
          You need to depend on the `zope.i18n [compile]` extra and set an environment
          variable called `zope_i18n_compile_mo_files` to any True value to enable
          this option.
        
        - Feature: Re-use existing translation domains when registering new ones.
          This allows multiple packages to register translations in the same domain.
          If the same message exists in multiple catalogs the one registered first
          will take precedence.
        
        - Feature: Recursive translations of message strings with mappings
          (https://bugs.launchpad.net/zope3/+bug/210177), thanks to Hermann
          Himmelbauer for the inital patch.
        
        - Bug: When parsing a date, the parsing pattern did not ensure that the line
          started and ended with the matching pattern, so that '1/1/2007' parsed into
          '1/1/20' for example.
        
        3.4.0 (2007-10-02)
        ------------------
        
        - Updated meta-data. No code changes.
        
        
        3.4.0b5 (2007-08-15)
        --------------------
        
        - Bug: Fixed dependency on ``zope.component`` to require it with the 'zcml'
          extra instead of requiring ``zope.security`` directly.
        
        
        3.4.0b4 (2007-07-19)
        --------------------
        
        - Bug: Number parsing was too forgiving, allowing non-numerical and/or
          formatting characters before, after and within the number. The parsing is
          more strict now.
        
        
        3.4.0b3 (2007-06-28)
        --------------------
        
        - Bug: There was a bug in the parser that if no decimal place is given
          you still had to type the decimal symbol. Corrected this problem (one
          character ;-) and provided a test.
        
        
        3.4.0b2 (2007-06-25)
        --------------------
        
        - Feature: Added ability to change the output type when parsing a
          number.
        
        
        3.4.0b1 (?)
        -----------
        
        - Bug: Fixed dependency on ``zope.security`` to require a version that
          does not have the hidden dependency on ``zope.testing``.
        
        
        Note: Releases between 3.2.0 and 3.4.0b1 were not tracked as individual
        packages. The changes can be reconstructed from the Zope 3 changelog.
        
        
        3.2.0 (2006-01-05)
        ------------------
        
        - Corresponds to the verison of the zope.i18n package shipped as part of the
          Zope 3.2.0 release.
        
        - Added a picklable offset-based timezone to 'pytz', a la
          zope.app.datetimeutils'.  Added tests in 'zope.i18n' to show that we need
          something like it, and then actually use it in 'zope.18n.format'.
        
        - Added support for parsing / formatting timezones using 'pytz' (new external
          dependency).
        
        - Implemented remaining date/time formatters, including adding week
          information to the calendar.
        
        
        3.0.0 (2004-11-07)
        ------------------
        
        - Corresponds to the version of the zope.i18n package shipped as part of
          the Zope X3.0.0 release.
        
Keywords: zope3 internationalization localization i18n l10n gettext ICU locale
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