Bummer. Well, I'm trying to call a script that will render content to the Web, like this:
<a tal:attributes="href python:here.a_script(str(x))">
which calls a script that does this:
return "<html><body>" + x + "</body></html>"
but of course it delivers this to the browser:
<html><body>x</body></html>
Any way to work around this problem?
TIA,
Tony
-----Original Message-----
From: Andreas Jung <lists@zopyx.com>
To: tonylabarbara@aol.com; zope@zope.org
Sent: Wed, 15 Aug 2007 10:20 am
Subject: Re: [Zope] How Do I "Structure" This?