Mercurial > p > roundup > code
comparison PageTemplates/__init__.py @ 984:a3a8ac7b8c40
Adding PageTemplates to the dist
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 30 Aug 2002 08:27:34 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 983:7fe79c67aaa9 | 984:a3a8ac7b8c40 |
|---|---|
| 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.1 2002-08-30 08:27:34 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) |
