RE: [T5] CSS

2008-07-14 Thread Joe Trewin
Hi, We had this problem too - it's because Jetty by default using NIO, and there's a problem with that under windows. The solution we use is (in development) to configure Jetty to use just plain old io: So instead of using: 8081 Try: 8081 However, in writing this reply I'v

RE: IE6 issue with dropdowns

2008-03-18 Thread Joe Trewin
Another (nasty) way to work round this is to dynamically create an IFrame containing a document with the popup content - the IE dropdown controls are then correctly hidden. I've done this before (a long time ago) so that some JS dynamically builds the IFrame and attaches the content nodes to it

RE: [T4] Shell and Border ok but ...

2007-07-20 Thread Joe Trewin
Try changing the to a ... (Tapestry doesn't care what it is, and spans have inline layout meaning that they can only contain other inline tags - div is a block element, so it can). > -Original Message- > From: #Cyrille37# [mailto:[EMAIL PROTECTED] > Sent: 20 July 2007 17:14 > To: Tapest

RE: OutOfMemoryError after serving N pages

2007-02-22 Thread Joe Trewin
If you're using Tomcat and have access to the startup scripts, I'd suggest turning on JMX so that you can have a look inside the memory heaps using jconsole. To do this add a line to tomcat/bin/startup.sh just before the exec at the end: export CATALINA_OPTS="-Dcom.sun.management.jmxremote -Dcom.

RE: My crap development environment

2007-02-16 Thread Joe Trewin
plugin in > combination with > > Maven > > > > > > because maven uses 2 output directories by default (one for > > > > > > the > > test > > > > > > classes) and AJDT didn't handle this properly triggering a > > complet

RE: My crap development environment

2007-02-15 Thread Joe Trewin
If you want to use the JettyLauncher plugin for Eclipse - I think it only works with Jetty 5, not Jetty 6. If you want to use Jetty 6 then you can't use the plugin, but you can launch from Eclipse easily enough just by making your own little launcher class - for example: import org.mortbay.jetty.