[Zope] How to get the url without the domain part, using <dtml-in>?

Dieter Maurer dieter@handshake.de
Wed, 7 Mar 2001 22:36:16 +0100 (CET)


Ausum writes:
 > Is it possible to return the absolute url without the domain/IP part, while in
 > an iteration?
Did you try to set the optional "relative" argument of "absolute_url"
to "1"?

  <dtml-in ...>
    <dtml-var expr="absolute_url(1)">
  </dtml-in>


Dieter