[Zope] ZopeWeaver?
Dieter Maurer
dieter@handshake.de
Thu, 30 Nov 2000 00:05:30 +0100 (CET)
albert boulanger writes:
> One trick I use on my NT box is to use Dreamwaver for all the major
> html content which end in a .html extension and htmlkit for the
> index_html and like files.
Place a DTML method(!) "index_html" high in your Zope hierarchy
with the following code:
<dtml-var index.html>
From then on, you can happily create "index.html" below that
point in the hierarchy. It will be used as the default folder
view. In fact, "index_html" is used but that redirects
to "index.html".
Dieter