Re: ComponentClassResolverImpl

2007-05-30 Thread petros
That solved my problem Thanks, Petros Howard Lewis Ship wrote: > > url() references in a stylesheet a relative to the stylesheet. > url(images/bg.gif) will generate a proper URL to a real resource, and > Tapestry won't attempt to interpret it as an action request URL. > > On 5/30/07, petro

Re: ComponentClassResolverImpl

2007-05-30 Thread Jesse Kuhnert
That's a jetty configuration setting. I don't remember the exact place / config option but you can find it in the jetty confluence site somewhere. Something to do with windows file locking. On 5/30/07, Daniel Jue <[EMAIL PROTECTED]> wrote: hint: assuming your css is in webapp/css, url(images/

Re: ComponentClassResolverImpl

2007-05-30 Thread Daniel Jue
hint: assuming your css is in webapp/css, url(images/bg.gif) would point to webapp/css/images/bg.gif url(/images/bg.gif) would also point to webapp/css/images/bg.gif url(../images/bg.gif) would point to webapp/images/bg.gif I was just solving this issue with my code as well. BTW- I noticed that

Re: ComponentClassResolverImpl

2007-05-30 Thread Howard Lewis Ship
url() references in a stylesheet a relative to the stylesheet. url(images/bg.gif) will generate a proper URL to a real resource, and Tapestry won't attempt to interpret it as an action request URL. On 5/30/07, petros <[EMAIL PROTECTED]> wrote: I have the following error in my log file java.la