Commit | Line | Data |
---|---|---|
c638d827 CR |
1 | ############################################################################## |
2 | # | |
3 | # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved. | |
4 | # | |
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 | |
11 | # | |
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. | |
17 | ||
18 | $Id: __init__.py,v 1.3 2004-05-21 05:56:46 richard Exp $''' | |
19 | __version__='$$'[11:-2] | |
20 | ||
21 | ||
22 | # Placeholder for Zope Product data | |
23 | misc_ = {} | |
24 | ||
25 | def initialize(context): | |
26 | # Import lazily, and defer initialization to the module | |
27 | import ZopePageTemplate | |
28 | ZopePageTemplate.initialize(context) |