29 Jul
2002
29 Jul
'02
10:18 a.m.
Chris McDonough wrote:
No, if you want to use encodeURL, you'll need to encode "clickable" URLs by hand in your rendered pages. For example:
<a href="<dtml-var "browser_id_manager.encodeUrl('http://www.zope.org')">">Zope.org</a>
This will produce something like this when it's rendered:
<a href="http://www.zope.org?_ZopeId=78978612367812678">Zope.org</a>
A possible workaround would be to use javascript to let the client append this string to all links in a site, through manipulating the a.location.href values. cheers, oliver