[Zope] Zope inserting base tag

Dieter Maurer dieter@handshake.de
Thu, 27 Feb 2003 20:50:19 +0100


Marc Burgauer wrote at 2003-2-27 11:14 +0000:
 > I have a problem creating valid HTML 4 with Zope. It seems that Zope inserts
 > a <base> tag when calling an index_html document without specifying the
 > file:
 > 
 > <base href="http://127.0.0.1:8080/" />

Zope does not insert a "base" tag when there is already one.

That may be an easy way for you to work around your problem.

As someone else suggested:

   <base href="&dtml-absolute_url;"> (DTML)
or
   <base tal:attributes="href here/absolute_url">
might be adequate.

More details: --> search mailing list archives.
Your problem is almost an FAQ.


Dieter