[Zope-CMF] Re: Our CMF-CMS Demo
Jon Edwards
jon@pcgs.freeserve.co.uk
Tue, 3 Jul 2001 20:55:49 +0100
> -----Original Message-----
> From: Norman Khine [mailto:khine@btinternet.com]
> Sent: 03 July 2001 19:38
> I have Netscape 6.1 installed, and upon loading of the item to edit I get
> the title, summary, BUT then I only get a blank area where the actual body
> text should be. The browser is not locked though.
errrrr....!
The code I used is as follows (gratuitously stolen from a post in the Zope
mailinglist archives) -
---------------------------------------------------------------------
<dtml-call "REQUEST.set('ua',HTTP_USER_AGENT)">
<dtml-if "_.string.find(ua,'MSIE')">
blahblah
<dtml-var Title>
blah
<dtml-var description>
...WYSIWYG form
<dtml-else>
blahblah
<dtml-var Title>
blah
<dtml-var description>
...normal CMF form
</dtml-if>
------------------------------------------------------------------
So it's odd that the <dtml-var title> and description are showing up with
Netscape, but not the rest of the normal CMF form
Can anyone enlighten a poor sinner?
Cheers, Jon