Re: [Wicket-user] page without markup file

2006-12-30 Thread Igor Vaynberg
you can use a shared resource (which can also be mounted) instead -igor On 12/30/06, Ryan Sonnek <[EMAIL PROTECTED]> wrote: I would like to use a page so that I can have bookmarkable urls to my rss feeds. On 12/30/06, Igor Vaynberg < [EMAIL PROTECTED]> wrote: > > instead of building a page w

Re: [Wicket-user] page without markup file

2006-12-30 Thread Ryan Sonnek
I would like to use a page so that I can have bookmarkable urls to my rss feeds. On 12/30/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: instead of building a page why not just build a link - like DownloadLink - but instead of streaming a file stream an output of your rss library. or a combinatio

Re: [Wicket-user] page without markup file

2006-12-30 Thread Igor Vaynberg
instead of building a page why not just build a link - like DownloadLink - but instead of streaming a file stream an output of your rss library. or a combination link/shared resource if you want mounting. -igor On 12/30/06, Ryan Sonnek <[EMAIL PROTECTED]> wrote: I'm building an rss page simil

Re: [Wicket-user] page without markup file

2006-12-30 Thread Igor Vaynberg
have your page implement IMarkupResourceStreamProvider -igor On 12/30/06, Ryan Sonnek <[EMAIL PROTECTED]> wrote: I'm building an rss page similar to the one on the wiki ( http://cwiki.apache.org/WICKET/rss-page.html), but I'd like to have the rss library i'm using write out the rss instead of

Re: [Wicket-user] page without markup file

2006-12-30 Thread Ryan Sonnek
I wrote up a quick blog to demonstrate this solution in case anyone is interested. I've built a "better" wicket RSS page that can handle any of the RSS formats along with Atom. if anyone's interested, this could probably go into wicket-stuff too. http://jroller.com/page/wireframe?entry=wicket_f

Re: [Wicket-user] page without markup file

2006-12-30 Thread Ryan Sonnek
As a followup, I was able to override the onRender() method to stream my content, but I still need an empty markup file or else wicket throws an exception. are any "risks" with going with this approach, and is there any way to get around the empty markup file? On 12/30/06, Ryan Sonnek <[EMAIL PR

[Wicket-user] page without markup file

2006-12-30 Thread Ryan Sonnek
I'm building an rss page similar to the one on the wiki ( http://cwiki.apache.org/WICKET/rss-page.html), but I'd like to have the rss library i'm using write out the rss instead of duplicating all the markup and components. Is it possible for a page to programatically write out to the stream with