Code

better error message
[roundup.git] / ZTUtils / __init__.py
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.
15 $Id: __init__.py,v 1.1 2002-08-30 08:25:34 richard Exp $'''
16 __version__='$Revision: 1.1 $'[11:-2]
18 from Batch import Batch
19 from Iterator import Iterator
20 from Tree import TreeMaker, encodeExpansion, decodeExpansion, a2b, b2a
21 from SimpleTree import SimpleTreeMaker
23 import sys
24 if sys.modules.has_key('Zope'):
25     del sys
26     __allow_access_to_unprotected_subobjects__ = 1
27     __roles__ = None
29     from Zope import Batch, TreeMaker, SimpleTreeMaker, LazyFilter
30     from Zope import url_query, make_query, make_hidden_input