Re: [Zope] Python 2.3 / Zope 2.7
Hi all I intend to do development on 2.7.0-2b for trying out. There was just one problem I faced with upgrade. I had to rewrite this portion to make it work ------------------------ <span tal:condition="python:request.form.has_key('submit'); isAnon"> <font color="red">Incorrect login or password</font> </span> ------------------------ to ------------------------ <span tal:condition="python:request.form.has_key('submit')"> <span tal:condition="python: isAnon"> <font color="red">Incorrect login or password</font> </span> </span> ------------------------ !!!!!!! No idea why. It just worked this way. Will research later. Chetan
Hi Chetan, Chetan Kumar wrote:
Hi all I intend to do development on 2.7.0-2b for trying out. There was just one problem I faced with upgrade. I had to rewrite this portion to make it work
------------------------ <span tal:condition="python:request.form.has_key('submit'); isAnon"> <font color="red">Incorrect login or password</font> </span> ------------------------
*snip* out of curiosity, whats that <font> tag? I cannot find it in my HTML reference .-) SCNR ;) You should really give CSS a try :) Regards Tino
Tino Wildenhain wrote:
out of curiosity, whats that <font> tag? I cannot find it in my HTML reference .-)
SCNR ;)
<font> is the addictive drug of HTML (from http://www.faqs.org/docs/htmltut/_FONT.html) ;-) Mozilla composer gives this to me free !! I do not mind as long as it works. As far as CCS is concerned I have one at the site-root. For this particular piece I did a quick and dirty job. Chetan
participants (2)
-
Chetan Kumar -
Tino Wildenhain