[Zope] html space( ) in string

Passin, Tom tpassin@mitretek.org
Tue, 25 Mar 2003 10:28:02 -0500


[Jos van der Vleuten]

> The following code-snippet:=20
>        global space python:[' ;'];=20
>        global str_html_space python:space[0]*new_len_title;=20
> would be rendered in html as: ........... ........=20
> How can i solve this so that it will render a correct html space
( )?=20

use chr(38) for the ampersand -

chr(38) + 'nbsp;']

Cheers,

Tom P