Mercurial > p > roundup > code
comparison ZTUtils/__init__.py @ 983:7fe79c67aaa9
Adding ZTUtils to the dist
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 30 Aug 2002 08:25:34 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 982:bfd348432420 | 983:7fe79c67aaa9 |
|---|---|
| 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 of template utility classes and functions. | |
| 14 | |
| 15 $Id: __init__.py,v 1.1 2002-08-30 08:25:34 richard Exp $''' | |
| 16 __version__='$Revision: 1.1 $'[11:-2] | |
| 17 | |
| 18 from Batch import Batch | |
| 19 from Iterator import Iterator | |
| 20 from Tree import TreeMaker, encodeExpansion, decodeExpansion, a2b, b2a | |
| 21 from SimpleTree import SimpleTreeMaker | |
| 22 | |
| 23 import sys | |
| 24 if sys.modules.has_key('Zope'): | |
| 25 del sys | |
| 26 __allow_access_to_unprotected_subobjects__ = 1 | |
| 27 __roles__ = None | |
| 28 | |
| 29 from Zope import Batch, TreeMaker, SimpleTreeMaker, LazyFilter | |
| 30 from Zope import url_query, make_query, make_hidden_input | |
| 31 |
