Mercurial > p > roundup > code
view ZTUtils/__init__.py @ 1028:16498e77e3ff
allow overiding of the index args roundup/cgi/templating.py
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 03 Sep 2002 07:33:01 +0000 |
| parents | 7fe79c67aaa9 |
| children |
line wrap: on
line source
############################################################################## # # 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
