[Zope] Re: utf-8 problem in Zope when using Localizer

2007-09-04 Thread Josef Meile
Install a separate python that is used only by your zope instance. Use setdefaultencoding only there. This is nonense. A custom sitecustomize.py script does the job without installing a complete new Python. You need to read a previous reply: I set it global in sitecustomize.py under

Re: [Zope] SOAPMethod

2007-09-04 Thread Mark Baldry
Hi Tom to be honest i would much rather use DTML as i understand this but it doesn't seem to work it only returns the result of the SOAP query when i view the source code. The SOAPMethod product recommends DTML but I have followed the example they give and this is what is happening. Mark On

Re: [Zope] SOAPMethod

2007-09-04 Thread Jonathan
- Original Message - From: Mark Baldry [EMAIL PROTECTED] To: zope@zope.org Sent: Tuesday, September 04, 2007 4:48 AM Subject: Re: [Zope] SOAPMethod Hi Tom to be honest i would much rather use DTML as i understand this but it doesn't seem to work it only returns the result of the

Re: [Zope] SOAPMethod

2007-09-04 Thread Jonathan
- Original Message - From: Mark Baldry [EMAIL PROTECTED] To: Jonathan [EMAIL PROTECTED] Sent: Tuesday, September 04, 2007 8:00 AM Subject: Re: [Zope] SOAPMethod hi that was the first thing i tried and it makes no difference i still get a blank page with the response only viewable

Re: [Zope] SOAPMethod

2007-09-04 Thread Tom Von Lahndorff
See Johnathan's comment. It sounds like an html/css issue. If it renders in the source its working. On Sep 4, 2007, at 4:48 AM, Mark Baldry wrote: Hi Tom to be honest i would much rather use DTML as i understand this but it doesn't seem to work it only returns the result of the SOAP query

Re: [Zope] SOAPMethod

2007-09-04 Thread Jonathan
- Original Message - From: Mark Baldry [EMAIL PROTECTED] To: Jonathan [EMAIL PROTECTED] Sent: Tuesday, September 04, 2007 8:22 AM Subject: Re: [Zope] SOAPMethod hi source of page -- html headtitleTesting/title/head body ?xml

RE: [Zope] UTF encoding problem w/ ZPT's (No, not the usual :)

2007-09-04 Thread Doyon, Jean-Francois
Well it tries to call only because the varial ISN'T a str :) If it's a string it behaves one way, else, it behaves another, and tries to call what it got. I imagine there's circumstances where this is used. I'll put something in the collector then, and we'll see where it goes. J.F.

Re: [Zope] Stripping Quotes

2007-09-04 Thread Tom Von Lahndorff
doesn't work. the double quotes are not escaped and zope sees them as the end of the expression. From: Jaroslav Lukesh [EMAIL PROTECTED] Date: August 29, 2007 6:16:12 PM EDT To: Zope user list zope@zope.org, Tom Von Lahndorff [EMAIL PROTECTED] Subject: Re: [Zope] Stripping Quotes

Re: [Zope] Re: utf-8 problem in Zope when using Localizer

2007-09-04 Thread Dieter Maurer
Josef Meile wrote at 2007-9-4 09:31 +0200: Install a separate python that is used only by your zope instance. Use setdefaultencoding only there. This is nonense. A custom sitecustomize.py script does the job without installing a complete new Python. You need to read a previous reply: I