Re: [Wicket-user] there is no way to preprocess raw markup in wicket 1.1?

2007-02-21 Thread James McLaughlin
Unfortunately, it would be a pain to separate out the examples I have, but there are some unit tests under wicket.markup.outputTransformer that I'm pretty sure will get you going. hth, jim On 2/20/07, Carfield Yim [EMAIL PROTECTED] wrote: Could you give me an example to show how it work? On

Re: [Wicket-user] there is no way to preprocess raw markup in wicket 1.1?

2007-02-21 Thread Carfield Yim
That would be great On 2/22/07, James McLaughlin [EMAIL PROTECTED] wrote: Unfortunately, it would be a pain to separate out the examples I have, but there are some unit tests under wicket.markup.outputTransformer that I'm pretty sure will get you going. hth, jim On 2/20/07, Carfield Yim

Re: [Wicket-user] there is no way to preprocess raw markup in wicket 1.1?

2007-02-20 Thread James McLaughlin
There is also XsltTransformerBehavior (in wicket.markup.transformer) hth, jim On 2/20/07, Juergen Donnerstag [EMAIL PROTECTED] wrote: search for IMarkupFilter Juergen On 2/19/07, wouvlfe [EMAIL PROTECTED] wrote: oops, should have been more clear about what i want to do i want to be

Re: [Wicket-user] there is no way to preprocess raw markup in wicket 1.1?

2007-02-20 Thread Carfield Yim
Not really related to the original question, I try to use it before but fail as I cannot find any example show how to work with this, could you point some resource to me to take a look? On 2/21/07, James McLaughlin [EMAIL PROTECTED] wrote: There is also XsltTransformerBehavior (in

Re: [Wicket-user] there is no way to preprocess raw markup in wicket 1.1?

2007-02-20 Thread James McLaughlin
Probably the thing that makes it difficult to use is that by default it looks for an xsl in the package of the component the XsltTransformerBehavior is being applied to, with the name of its componentId. So if you have a component foo.bar.MyComp.java you want to transform, and it is added to the

Re: [Wicket-user] there is no way to preprocess raw markup in wicket 1.1?

2007-02-20 Thread Carfield Yim
Could you give me an example to show how it work? On 2/21/07, James McLaughlin [EMAIL PROTECTED] wrote: Probably the thing that makes it difficult to use is that by default it looks for an xsl in the package of the component the XsltTransformerBehavior is being applied to, with the name of its

Re: [Wicket-user] there is no way to preprocess raw markup in wicket 1.1?

2007-02-19 Thread Timo Rantalaiho
On Mon, 19 Feb 2007, wouvlfe wrote: I simply want to be able to modify the values of some static paths in the raw html markup it seems that there is no way to do it in wicket 1.1 ?? i started by looking into markup filters when i wrote my own markup parser, i couldnt find a way to replace

Re: [Wicket-user] there is no way to preprocess raw markup in wicket 1.1?

2007-02-19 Thread wouvlfe
oops, should have been more clear about what i want to do i want to be able to preprocess some of the tags (that do not have wicket ids) in the markup and modify them if necessary example: modify the original tag: /a/b/c to the tag: /e/f that is, change the static paths in certain scenarios

Re: [Wicket-user] there is no way to preprocess raw markup in wicket 1.1?

2007-02-19 Thread Juergen Donnerstag
search for IMarkupFilter Juergen On 2/19/07, wouvlfe [EMAIL PROTECTED] wrote: oops, should have been more clear about what i want to do i want to be able to preprocess some of the tags (that do not have wicket ids) in the markup and modify them if necessary example: modify the original