[EMAIL PROTECTED] schrieb: > Hi Sebastian, >> sounds quite good. I hope you have found all comparsions of tag names. >> There are also things like "DIV", "INPUT", "TEXTAREA" inside the qooxdoo >> code I think. >> >> > Yes, I also found DIV, INPUT, TEXTAREA, IMG, STYLE, HEAD... and converted > them. I already rebuilt and tested all demos and they work fine.
Ok, well. That sounds great. This was the missing information :) > >> "document.write" is bad style. And this is not a bug in Opera or >> Firefox. It is just that they officially do not support document.write >> anymore in XHTML documents. This follows the specification of XHTML. I >> think it is better to completely rewrite the "includer" script. I don't >> think we need to different ways to handle the include system. Could you >> modify your changes accordingly? >> > The reason I didn't replace document.write() entirely is that while > testing I found that > adding script elements using DOM methods doesn't work reliably in IE 6: > the script nodes > gets added, but it seems they are parsed in the wrong order (or not at > all): the result is that while > loading you get several errors and the application doesn't work: because > of this the includer first tries > document.write() and only if it fails it switches to using DOM. Maybe it does help to insert the scripts inside a parent first. E.g. put all script elements in a div element first. And after all these children are inside add this div to the document itself. > > Anyway, I agree with you: it's better having a single way of including > scripts and I consider this > a temporary solution until I find a way to avoid document.write() in all > supported browsers. Another way would be xmlhttp and eval... but to load ~300 files using xmlhttp is maybe not practicably. Sebastian > > Alessandro > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
