This file is indexed.

/usr/lib/python2.7/dist-packages/zope.pagetemplate-4.0.4.egg-info/PKG-INFO is in python-zope.pagetemplate 4.0.4-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
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
Metadata-Version: 1.1
Name: zope.pagetemplate
Version: 4.0.4
Summary: Zope Page Templates
Home-page: http://pypi.python.org/pypi/zope.pagetemplate
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: Page Templates provide an elegant templating mechanism that achieves a
        clean separation of presentation and application logic while allowing
        for designers to work with templates in their visual editing tools
        (FrontPage, Dreamweaver, GoLive, etc.).
        
        
        Detailed Documentation
        ----------------------
        
        =====================================
        ZPT (Zope Page-Template) Architecture
        =====================================
        
        There are a number of major components that make up the page-template
        architecture: 
        
        - The TAL *compiler* and *interpreter*.  This is responsible for
          compiling source files and for executing compiled templates.  See
          the `zope.tal` package for more information.
        
        - An *expression engine* is responsible for compiling expressions and
          for creating expression execution contexts.  It is common for
          applications to override expression engines to provide custom
          expression support or to change the way expressions are implemented.
          The `zope.app.pagetemplate` package uses this to implement trusted
          and untrusted evaluation; a different engine is used for each, with
          different implementations of the same type of expressions.
        
          Expression contexts support execution of expressions and provide
          APIs for setting up variable scopes and setting variables.  The
          expression contexts are passed to the TAL interpreter at execution
          time.
          
          The most commonly used expression implementation is that found in
          `zope.tales`.
        
        - Page templates tie everything together. They assemble an expression
          engine with the TAL interpreter and orchestrate management of source
          and compiled template data.  See `zope.pagetemplate.interfaces`.
        
          
        
        
        ==============
        Page Templates
        ==============
        
        Introduction
        ------------
        
        Page Templates provide an elegant templating mechanism that achieves a
        clean separation of presentation and application logic while allowing
        for designers to work with templates in their visual editing tools
        (FrontPage, Dreamweaver, GoLive, etc.).
        
        This document focuses on usage of Page Templates outside of a Zope
        context, it does *not* explain how to write page templates as there
        are several resources on the web which do so.
        
        Simple Usage
        ------------
        
        Using Page Templates outside of Zope3 is very easy and straight
        forward.  A quick example::
        
          >>> from zope.pagetemplate.pagetemplatefile import PageTemplateFile
          >>> my_pt = PageTemplateFile('hello_world.pt')
          >>> my_pt()
          u'<html><body>Hello World</body></html>'
        
        Subclassing PageTemplates
        -------------------------
        
        Lets say we want to alter page templates such that keyword arguments
        appear as top level items in the namespace.  We can subclass
        `PageTemplate` and alter the default behavior of `pt_getContext()` to
        add them in::
        
          from zope.pagetemplate.pagetemplate import PageTemplate
        
          class mypt(PageTemplate):
              def pt_getContext(self, args=(), options={}, **kw):
                 rval = PageTemplate.pt_getContext(self, args=args)
                 options.update(rval)
                 return options
        
          class foo:
              def getContents(self): return 'hi'
        
        So now we can bind objects in a more arbitrary fashion, like the
        following::
        
          template = """
          <html>
          <body>
          <b tal:replace="das_object/getContents">Good Stuff Here</b>
          </body>
          </html>
          """
        
          pt = mypt()
          pt.write(template)
          pt(das_object=foo())
        
        See `interfaces.py`.
        
        
        =======
        CHANGES
        =======
        
        4.0.4 (2013-03-15)
        ------------------
        
        - Make sure ``ZopePythonExpr`` and ``PythonExpr`` are separate classes even
          when ``zope.untrustedpython`` is not available.  Fixes a ZCML conflict error
          in ``zope.app.pagetemplate``.
        
        4.0.3 (2013-02-28)
        ------------------
        
        - Only allow ``zope.untrustedpython`` to be a dependency in Python 2.
        
        - Fix buildout to work properly.
        
        4.0.2 (2013-02-22)
        ------------------
        
        - Migrated from ``zope.security.untrustedpython`` to ``zope.untrustedpython``.
        
        - Made ``zope.untrustedpython`` an extra dependency.  Without it, python
          expressions are not protected, even though path expressions are still
          security wrapped.
        
        - Added support for Python 3.3.
        
        4.0.1 (2012-01-23)
        ------------------
        
        - LP#732972:  PageTemplateTracebackSupplement no longer passes
          ``check_macro_expansion=False`` to old templates which do not
          accept this argument.
        
        4.0.0 (2012-12-13)
        ------------------
        
        - Replaced deprecated ``zope.interface.classProvides`` usage with equivalent
          ``zope.interface.provider`` decorator.
        
        - Replaced deprecated ``zope.interface.implements`` usage with equivalent
          ``zope.interface.implementer`` decorator.
        
        - Dropped support for Python 2.4 and 2.5.
        
        - PageTemplate.pt_render() has a new argument, check_macro_expansion,
          defaulting to True.
        
        - PageTemplateTracebackSupplement passes check_macro_expansion=False, to
          avoid LP#732972.
        
        3.6.3 (2011-09-21)
        ------------------
        
        - Fixed test assertions to be compatible with zope.tal 3.6.
        
        3.6.2 (2011-09-21)
        ------------------
        
        - Change interface for engine and program such that the return type of
          the ``cook`` method is a tuple ``(program, macros)``. This follows
          the interface for the TAL parser's ``getCode`` method.
        
          This fixes a legacy compatibility issue where code would expect an
          ``_v_macros`` volatile attribute which was missing.
        
        3.6.1 (2011-08-23)
        ------------------
        
        - Fixed issue with missing default value for ``strictinsert``.
        
        3.6.0 (2011-08-20)
        ------------------
        
        - Replaced StringIO stream class with a faster list-based implementation.
        
        - Abstract out the template engine and program interfaces and allow
          implementation replacement via a utility registration.
        
        - Removed ancient copyright from test files (LP: #607228)
        
        3.5.2 (2010-07-08)
        ------------------
        
        - Fixed PTRuntimeError exception messages to be consistent across Python
          versions, and compatibile with the output under Python 2.4.  (More
          readable than the previous output under Python 2.6 as well.)
        
        3.5.1 (2010-04-30)
        ------------------
        
        - Removed use of 'zope.testing.doctestunit' in favor of stdlib's doctest.
        
        - Added dependency on "zope.security [untrustedpython]" because the 'engine'
          module uses it.
        
        3.5.0 (2009-05-25)
        ------------------
        
        - Added test coverage reporting support.
        
        - Moved 'engine' module and related test scaffolding here from
          ``zope.app.pagetemplate`` package.
        
        3.4.2 (2009-03-17)
        ------------------
        
        - Remove old zpkg-related DEPENDENCIES.cfg file.
        
        - Change package's mailing list address to zope-dev at zope.org, as
          zope3-dev at zope.org is now retired.
        
        - Change `cheeseshop` to `pypi` in the packages' homepage url.
        
        3.4.1 (2009-01-27)
        ------------------
        
        - Fix test due to recent changes in zope.tal.
        
        
        3.4.0 (2007-10-02)
        ------------------
        
        - Initial release independent of the Zope 3 tree.
        
        
        3.2.0 (2006-01-05)
        ------------------
        
        - Corresponds to the version of the zope.pagetemplate package shipped
          as part of the Zope 3.2.0 release.
        
        - ZPTPage macro expansion:  changed label text to match the corresponding
          label in Zope 2 and activated the name spaces for macro expansion
          in 'read'.  See http://www.zope.org/Collectors/Zope3-dev/199
        
        - Coding style cleanups.
        
        
        3.1.0 (2005-10-03)
        ------------------
        
        - Corresponds to the version of the zope.pagetemplate package shipped
          as part of the Zope 3.1.0 release.
        
        - Fixed apidoc and Cookie, which were using wrong descriptor class
          (changed to 'property').  See http://www.zope.org/Collectors/Zope3-dev/387
        
        - Documentation / style / testing cleanups.
        
        
        3.0.0 (2004-11-07)
        ------------------
        
        - Corresponds to the version of the zope.pagetemplate package shipped
          as part of the Zope X3.0.0 release.
        
Keywords: zope3 page template
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.3
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3