Am Montag, den 02.05.2005, 09:43 +0200 schrieb [EMAIL PROTECTED]:
> Hello everybody,
>    I change the file "manage.dtml" in ..\python\app\dtml. This is the change
> I've done:
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
> "http://www.w3.org/TR/REC-html40/loose.dtd";>
> <html>
> <head>
> <meta http-equiv="content-type" content="text/html;charset=utf-8" />
> <title>Zope on &dtml-BASE0;</title>

Yes, thats a common problem - true HTTP-headers always
override these meta headers. Unfortunately file based 
approach leaves you and most tools with the meta tags
to transport encoding accross different file based
tools. In Zope you should simply:

<dtml-call expr="RESPONSE.setHeader('content-type','text/html;
charset=utf-8')"> 

somewhere in the header and probably skipp the meta
tag (or have it at least the same content)

HTH
Tino

_______________________________________________
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )

Reply via email to