Markup other than HTML

2008-11-27 Thread Eyal Golan
Hi, I was asked today if it's possible to render a page to different format than HTML. I guess it is possible, but how one can do it? Eyal Golan [EMAIL PROTECTED] Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please don't print this e-mail

Re: Markup other than HTML

2008-11-27 Thread Jeremy Thomerson
@Override public String getMarkupType() { return xml; } -- Jeremy Thomerson http://www.wickettraining.com On Thu, Nov 27, 2008 at 2:30 PM, Eyal Golan [EMAIL PROTECTED] wrote: Hi, I was asked today if it's possible to render a page to different format than HTML. I

Re: Markup other than HTML

2008-11-27 Thread Jeremy Thomerson
Oops - sent early - override that in YourPage.java and then just make YourPage.xml - viola! On Thu, Nov 27, 2008 at 3:00 PM, Jeremy Thomerson [EMAIL PROTECTED] wrote: @Override public String getMarkupType() { return xml; } -- Jeremy Thomerson

Re: Markup other than HTML

2008-11-27 Thread Ernesto Reinaldo Barreiro
What else do you want to generate? For XML maybe this link give you a hint: http://www.jroller.com/wireframe/entry/wicket_feedpage As for generating other things (e.g. PDF)... One idea could be navigate the component hierarchy and produce some document out of it. Of course, for doing this you