On Thu, 16 Jul 2009 15:04:06 -0300, Juanjo Conti <[email protected]> wrote: >I founded out that if I have <input type="radio" name="consignas" >value="1" checked /> in my HTML I get this error: ><class 'nevow._flat.FlattenerError'>: >/home/juanjo/python/twisted/teco/ter.html:21:63: not well-formed >(invalid token) > ><input type="radio" name="consignas" value="1" checked="checked" /> >fix it an works fine.
<input checked> is HTML. Most of Nevow expects XHTML. So you need the XHTML spelling, as you discovered. Jean-Paul _______________________________________________ Twisted-web mailing list [email protected] http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-web
