Mercurial > p > roundup > code
annotate roundup/cgi/PageTemplates/__init__.py @ 4796:f61bd780892e 1.5.0
Release preparation
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Sat, 06 Jul 2013 12:50:52 +0200 |
| parents | 6e3e4f24c753 |
| children |
| rev | line source |
|---|---|
| 1049 | 1 ############################################################################## |
| 2 # | |
| 3 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved. | |
|
2349
b43efe461b3e
update PageTemplates to latest Zope codebase
Richard Jones <richard@users.sourceforge.net>
parents:
2005
diff
changeset
|
4 # |
| 1049 | 5 # This software is subject to the provisions of the Zope Public License, |
| 6 # Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution. | |
| 7 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED | |
| 8 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
| 9 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | |
| 10 # FOR A PARTICULAR PURPOSE | |
|
2349
b43efe461b3e
update PageTemplates to latest Zope codebase
Richard Jones <richard@users.sourceforge.net>
parents:
2005
diff
changeset
|
11 # |
| 1049 | 12 ############################################################################## |
| 13 __doc__='''Package wrapper for Page Templates | |
| 14 | |
| 15 This wrapper allows the Page Template modules to be segregated in a | |
| 16 separate package. | |
|
4570
6e3e4f24c753
Remove keyword expansions from CVS. All regression tests passed afterwards.
Eric S. Raymond <esr@thyrsus.com>
parents:
2349
diff
changeset
|
17 ''' |
| 1049 | 18 __version__='$$'[11:-2] |
| 19 | |
| 20 | |
| 21 # Placeholder for Zope Product data | |
| 22 misc_ = {} | |
| 23 | |
| 24 def initialize(context): | |
| 25 # Import lazily, and defer initialization to the module | |
| 26 import ZopePageTemplate | |
| 27 ZopePageTemplate.initialize(context) |
