Mercurial > p > roundup > code
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ZTUtils/__init__.py Fri Aug 30 08:25:34 2002 +0000 @@ -0,0 +1,31 @@ +############################################################################## +# +# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved. +# +# This software is subject to the provisions of the Zope Public License, +# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution. +# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED +# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS +# FOR A PARTICULAR PURPOSE +# +############################################################################## +__doc__='''Package of template utility classes and functions. + +$Id: __init__.py,v 1.1 2002-08-30 08:25:34 richard Exp $''' +__version__='$Revision: 1.1 $'[11:-2] + +from Batch import Batch +from Iterator import Iterator +from Tree import TreeMaker, encodeExpansion, decodeExpansion, a2b, b2a +from SimpleTree import SimpleTreeMaker + +import sys +if sys.modules.has_key('Zope'): + del sys + __allow_access_to_unprotected_subobjects__ = 1 + __roles__ = None + + from Zope import Batch, TreeMaker, SimpleTreeMaker, LazyFilter + from Zope import url_query, make_query, make_hidden_input +
