[Zope] WebDAV and Zope...

Joachim Werner joe@iuveno-net.de
Fri, 2 Nov 2001 23:15:36 +0100


> Since I never understood the difference between the WEBDAV port  and the
> normal http port i always use the http port
> Robert

The HTTP port works fine for uploading/downloading binaries or non-dynamic
HTML. But for anything dynamic, it will give you the RENDERED version. So if
you have a DTML Method

<standard_html_header>
<dtml-var title_or_id>
<standard_html_footer>

you will get exactly that from the WebDAV port, e.g. to edit it locally. But
the HTTP port will of course deliver you something like that:

<html>
<head>
...
</head>
<body>
This is the Document Title.
...
</body>
</html>

Not very useful for editing ...

Joachim