Re: [Wicket-user] CSS background images

2006-08-07 Thread Johan Compagner
is it already in (haven't seen the commit i think)else do make a patch for it on sourceforge.johanOn 8/1/06, Al Maw [EMAIL PROTECTED] wrote:Igor Vaynberg wrote: i guess it is not something that we support right now, but something that is cleary needed. we need to build a resource that can load a

Re: [Wicket-user] CSS background images

2006-08-07 Thread Eelco Hillenius
It's with Al Maw's earlier mail. We should consider whether/ where we can integrate this functionality in existing parts instead of bluntly copying it though. I haven't looked into it yet. Eelco On 8/7/06, Johan Compagner [EMAIL PROTECTED] wrote: is it already in (haven't seen the commit i

Re: [Wicket-user] CSS background images

2006-08-01 Thread Al Maw
Igor Vaynberg wrote: i guess it is not something that we support right now, but something that is cleary needed. we need to build a resource that can load a css file, parse for images, replace them, and then serve the altered content. i know almaw has been working on something like this but

Re: [Wicket-user] CSS background images

2006-07-24 Thread Eelco Hillenius
As you don't have to pre-register packaged resources anymore, you can reference them if you know the URL, which for such resources always has the same form: /webapp/servletname/resources/some.package.SomeClass/theme.css and even

Re: [Wicket-user] CSS background images

2006-07-24 Thread Igor Vaynberg
i think in this case we are talking about a contextpathprepender but for the css, not just a variable interpolator.also while the texttemplate stuff works what it does is sinclude the css into the page, im talking about a resource so you can have all this stuff done once and served/cached through

Re: [Wicket-user] CSS background images

2006-07-24 Thread Eelco Hillenius
On 7/24/06, Igor Vaynberg [EMAIL PROTECTED] wrote: i think in this case we are talking about a contextpathprepender but for the css, not just a variable interpolator. Yes, that's pretty obvious. I wasn't proposing 'just variable interpolation', but just explaining what there is now to fix his

Re: [Wicket-user] CSS background images

2006-07-24 Thread Igor Vaynberg
we only need to parse css resources and we only need to parse them once for this to work i think.-IgorOn 7/24/06, Eelco Hillenius [EMAIL PROTECTED] wrote:On 7/24/06, Igor Vaynberg [EMAIL PROTECTED] wrote: i think in this case we are talking about a contextpathprepender but for the css, not just

Re: [Wicket-user] CSS background images

2006-07-24 Thread Eelco Hillenius
Only when we would cache the results. Eelco On 7/24/06, Igor Vaynberg [EMAIL PROTECTED] wrote: we only need to parse css resources and we only need to parse them once for this to work i think. -Igor On 7/24/06, Eelco Hillenius [EMAIL PROTECTED] wrote: On 7/24/06, Igor Vaynberg

Re: [Wicket-user] CSS background images

2006-07-23 Thread Igor Vaynberg
i guess it is not something that we support right now, but something that is cleary needed. we need to build a resource that can load a css file, parse for images, replace them, and then serve the altered content.i know almaw has been working on something like this but i dont know how far he got.