Re: [Wicket-user] Issue of having a webpage return binary content

2006-11-21 Thread Carfield Yim
Thanks, in fact I get a even nicer way generate image, which is just use Image() object from wicket, thanks everyone On 11/22/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > You can always do RequestCycle.get() (or > ((WebRequest)RequestCycle.get())) to get the current request cycle, on > which y

Re: [Wicket-user] Issue of BufferedWebResponse Not Serializable

2006-11-21 Thread Carfield Yim
Thanks for the source, especially that introducing a nice way to put dynamic generated image to HTML On 11/22/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > On 11/21/06, Carfield Yim <[EMAIL PROTECTED]> wrote: > > When I try to use jcaptcha with wicket, I get the following problem, > > look like

Re: [Wicket-user] Issue of BufferedWebResponse Not Serializable

2006-11-21 Thread Carfield Yim
On 11/22/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > thats a bug somewhere in the code > Response object shouldn't be kept in the session. > Can you figure out where it is being hold on to? > I don't know why jcaptcha need to put something in the session even. And the strange thing is even I

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Gwyn Evans
On 22/11/06, James McLaughlin <[EMAIL PROTECTED]> wrote: > done! > > http://wicket-stuff.sourceforge.net/wiki Well done, though I'd be surprised if you don't need to disable anonymous edits very quickly! /Gwyn -- Download Wicket 1.2.3 now! - http://wicketframework.org --

[Wicket-user] 代开发票

2006-11-21 Thread 刘先生
你好! 本公司属于有限责任公司,现因公司在税务局领取发票指标有余: (商品销售,运输.海关代征增值税发票等)可以优惠外开.(另)有 多家企业委托我公司可以向外开放.欢迎来电咨询!我公司以最真诚,最优 惠的价格为贵企业公司服务.

Re: [Wicket-user] Different type of components in wicket.extensions.markup.html.tree.Tree

2006-11-21 Thread Eelco Hillenius
If you look at the Tree and DefaultAbstractTree classes, you can see a bunch of overidable, protected methods. Usually in Wicket, if there is a non-final protected method, it is there for you to override if you need to (we'd either make it final or private if not). Now, I'm not sure what you want

Re: [Wicket-user] how can I get a tag embed for a audio resource

2006-11-21 Thread Eelco Hillenius
It's comparable to a reply I gave earlier today, which was: WebResource export = new WebResource() { @Override public IResourceStream getResourceStream() { CharSequence discounts = DataBase.getInstance() .exportDiscounts(); return new StringResourceStream(dis

Re: [Wicket-user] Issue of having a webpage return binary content

2006-11-21 Thread Eelco Hillenius
You can always do RequestCycle.get() (or ((WebRequest)RequestCycle.get())) to get the current request cycle, on which you can then call get(Web)Request and get(Web)Response Eelco On 11/21/06, Carfield Yim <[EMAIL PROTECTED]> wrote: > Thanks for introducting the class to me, however look like this

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-21 Thread Eelco Hillenius
On 11/21/06, Alexei Sokolov <[EMAIL PROTECTED]> wrote: > Actually, > > There is a sysdeo tomcat plugin for eclipse which can be configured with a > special 'devloader' classloader. With this config you'll see changes right > after you saved your java source. But it won't help with nice urls ;) Tha

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-21 Thread Alexei Sokolov
Actually, There is a sysdeo tomcat plugin for eclipse which can be configured with a special 'devloader' classloader. With this config you'll see changes right after you saved your java source. But it won't help with nice urls ;) Alex On 11/21/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: Th

Re: [Wicket-user] who wants to be in charge ofdoingwicket-stuffreleases

2006-11-21 Thread Korbinian Bachl
im in GMT + 1 - and really need sleep now :) @maciej: when i look at your email, youre from germany, too? aren't you? as long as i now have we are 4: James McLaughlin (jim) ? Maciej Filippo Diotalevi and me seems a good base :) best Regards _ Von: [EMAIL PROTECTED] [mailto:[EM

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-21 Thread Korbinian Bachl
well, you should ask howard lewis-ship about the first one, the 2nd one lies in the way it works - tapestry manages everything while wicket doesnt the downside is more work to make a component compared to wicket, the upside are goodies like easier URLs... and even in tapestry a real-nice URL is

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Eelco Hillenius
On 11/21/06, cowwoc <[EMAIL PROTECTED]> wrote: > > I'd much prefer JPA integration. I don't see one as part of > databinder. > I know Cheeser was working on one. I bet you can contribute a patch for DataBinder too. Open source etc. Eelco -

Re: [Wicket-user] Issue of having a webpage return binary content

2006-11-21 Thread Carfield Yim
Thanks for introducting the class to me, however look like this missing some object like session and request which I need In fact I am going to output captcha according to jCaptcha example, it need request and session as follow. But can I do the same at WebResource? public ImageCaptcha() thro

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Ryan Sonnek
+1 for wicket-stuff using the main wicket wiki On 11/21/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: Let's let the new maintainers decide on that then :) I agree with Martijn that it might be nice to have everything in one WIKI - if that would be ok with Apache policy etc - though otoh, it co

[Wicket-user] authentication depending on parameters

2006-11-21 Thread Flemming Seerup
When using the AuthenticatedWebApplication and AuthenticatedWebSession, how do you implement authentication for MyPage, where MyPage/page/1 is allowed for UserX, but not MyPage/page/2. The page is right now protected, so only users with role USER is allowed, but how/where should I implement the da

Re: [Wicket-user] who wants to be in charge of doingwicket-stuffreleases

2006-11-21 Thread Eelco Hillenius
If you give me the sourceforge ids you want to use for this, I'll be happy to add you guys. Eelco On 11/21/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > > Hi Jim, > > sounds good - what time zone you are in? > > Regards > > > > Von: [EMAIL PROTECTED] > [ma

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Gwyn Evans
Not saying don't, but if it's just to track this sort of discussion, then the main wiki's as good as anywhere for the moment. /Gwyn On 21/11/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > i think if its easy it should be on sf.net > > so i would say go ahead > > -igor > > > On 11/21/06, James McL

Re: [Wicket-user] who wants to be in charge of doingwicket-stuffreleases

2006-11-21 Thread Filippo Diotalevi
On 11/21/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > If you give me the sourceforge ids you want to use for this, I'll be > happy to add you guys. > My sourceforge id is fdiotalevi -- Filippo Diotalevi http://www.diotalevi.com

Re: [Wicket-user] DropdownChoice Ajax : Page Setparameter doesn't work

2006-11-21 Thread Igor Vaynberg
you want to specify a page parameter in an ajax request? what exactly is the point? the page doesnt render, only the component does. -igor On 11/21/06, Vincent Renaville <[EMAIL PROTECTED]> wrote: Dear, I use Ajax with my dropdownchoice and I don't want to refresh the page after a change. so

Re: [Wicket-user] who wants to be in charge of doingwicket-stuffreleases

2006-11-21 Thread Eelco Hillenius
You're all in. Good luck and thanks! Eelco On 11/21/06, Filippo Diotalevi <[EMAIL PROTECTED]> wrote: > On 11/21/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > If you give me the sourceforge ids you want to use for this, I'll be > > happy to add you guys. > > > > My sourceforge id is fdiotale

[Wicket-user] Issue of having a webpage return binary content

2006-11-21 Thread Carfield Yim
I need to create a webpage output captcha image to user, actually that is done and work for me to output binary to outputstream. However there is MarkupNotFoundException appear at my log file. I guess I can put a dummy HTML at the classpath, however, can I not doing that but tell wicket don't looku

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Eelco Hillenius
Let's let the new maintainers decide on that then :) I agree with Martijn that it might be nice to have everything in one WIKI - if that would be ok with Apache policy etc - though otoh, it could be good for the wicket-stuff project to give it it's own feel and dynamics. Eelco On 11/21/06, Gwyn

Re: [Wicket-user] who wants to be in charge of doingw icket-stuffreleases

2006-11-21 Thread bednarz-hannover
My sourceforge id is printx. Would it te possible to join this project as small scale contributor ? Maciej > -Ursprüngliche Nachricht- > Von: wicket-user@lists.sourceforge.net > Gesendet: 21.11.06 18:30:30 > An: wicket-user@lists.sourceforge.net > Betreff: Re: [Wicket-user] who wants to b

[Wicket-user] 代开发票

2006-11-21 Thread 刘先生
你好! 本公司属于有限责任公司,现因公司在税务局领取发票指标有余: (商品销售,运输.海关代征增值税发票等)可以优惠外开.(另)有 多家企业委托我公司可以向外开放.欢迎来电咨询!我公司以最真诚,最优 惠的价格为贵企业公司服务.

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Eelco Hillenius
> Well done. However, i think it will be difficult to keep track of this > discussion in the mailing list. > Can we use a wiki instead? For example, can we use the [EMAIL PROTECTED] > http://cwiki.apache.org/WICKET/ ? Good point. Eelco

[Wicket-user] Tapestry 5 instantaneous reloads

2006-11-21 Thread cowwoc
Two questions about: http://howardlewisship.com/blog/2006/10/tapestry-5-screencast-2.html 1) How did they get "instantaneous" page reloads working? 2) How did they get their URLs to remain "nice" even though the underlying state is changing? and what is the implications for Wicke

[Wicket-user] Abort Ajax Operation

2006-11-21 Thread samyem
When there is an ajax operation, if the operation takes too long, what would be the best way to abort the operation? The case right now is if there is any long operation as a result of ajax event, the app freezes till the even is over. -- View this message in context: http://www.nabble.com/Abor

Re: [Wicket-user] who wants to be in charge of doing wicket-stuff releases

2006-11-21 Thread Ryan Sonnek
I thought it was up to the individual wicket-stuff projects to release themselves. I know that I'm going to be putting some major rework into the wicket-contrib-scriptaculous project here soon and I'm planning on performing snapshot and major releases to get them out into the public. On 11/21/06

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 I've started work on JPA/toplink support in qwicket but we have a post-Thanksgiving deadline so everything else is taking a back seat. cowwoc wrote: > I'd much prefer JPA integration. I don't see one as part of databinder. > I know Cheeser

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Filippo Diotalevi
On 11/21/06, James McLaughlin <[EMAIL PROTECTED]> wrote: > I've take a brief look at all the wicket-stuff projects, and here are some > things I think need to be done. Well done. However, i think it will be difficult to keep track of this discussion in the mailing list. Can we use a wiki instead?

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Eelco Hillenius
You can consider me being the maintainer of wicket-contrib-examples and - with very luke-warm support - wicket-contrib-navmenu. Furthermore, I'm co-maintaining wicket-contrib-yui and wicket-contrib-yui examples together with Joshua Lim, who is the main guy for the project. As far as I am concerned

Re: [Wicket-user] how to maintain mounted url pages in session

2006-11-21 Thread Igor Vaynberg
no, its about how bookmarkable pages work. any time a bookmarkable url is accessed we create a new instance. sounds like what you need is to redirect a user to a non-bookmarkable url as soon as they access the bookmarkable one. matej was going to work on this, this usecase is useful for ajax and b

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread cowwoc
I'd much prefer JPA integration. I don't see one as part of databinder. I know Cheeser was working on one. Has anyone got a finished version we could use? Gili Igor Vaynberg wrote: > wicket-contrib-data-hibernate-3.0 can prob go to the glue factory now > that databinder.net

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread James McLaughlin
I can install moinmoin on sourceforge for wicket-stuff. Should I go ahead and do it? On 11/21/06, Filippo Diotalevi <[EMAIL PROTECTED]> wrote: On 11/22/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Can't we set up a space for wicket-stuff which content we don't > attribute to the ASF, but p

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Eelco Hillenius
On 11/21/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > wicket-contrib-data-hibernate-3.0 can prob go to the glue > factory now that databinder.net is around But then cdapp will stop working in wicket-contrib-examples. If Nathan or someone else wants to be so nice to rewrite it using DataBinder,

Re: [Wicket-user] who wants to be in charge of doing wicket-stuffreleases

2006-11-21 Thread Eelco Hillenius
> Ever heard the saying "if you want to get something done, ask a busy > person"? No, and I don't want to hear about it either! ;) Eelco - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay pa

Re: [Wicket-user] who wants to be in charge of doing wicket-stuffreleases

2006-11-21 Thread Igor Vaynberg
you need to cut down on those daily runs, that will free up an hour a day! and breakfeast, who needs breakfeast? -igor On 11/21/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > Ever heard the saying "if you want to get something done, ask a busy > person"? No, and I don't want to hear about

[Wicket-user] 代开发票

2006-11-21 Thread 刘先生
你好! 本公司属于有限责任公司,现因公司在税务局领取发票指标有余: (商品销售,运输.海关代征增值税发票等)可以优惠外开.(另)有 多家企业委托我公司可以向外开放.欢迎来电咨询!我公司以最真诚,最优 惠的价格为贵企业公司服务.

[Wicket-user] how to maintain mounted url pages in session

2006-11-21 Thread Wolfgang Gehner
Hi, I have a situation where a user, when he accesses a mounted page (WebApplication.mount(/url, class)) under that mounted url more than once, should retrieve the page instance from the user session on subsequent requests. It seems to me that default is to create a new page. How can I do this? I

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Upayavira
Eelco Hillenius wrote: > Let's let the new maintainers decide on that then :) I agree with > Martijn that it might be nice to have everything in one WIKI - if that > would be ok with Apache policy etc - though otoh, it could be good for > the wicket-stuff project to give it it's own feel and dynami

Re: [Wicket-user] who wants to be in charge ofdoing wicket-stuffreleases

2006-11-21 Thread Korbinian Bachl
Hi Justin, nice to see youre so on it, but wouldnt it be better to have it watched some days and digg in deeper first? I mean we first need some knowledge and overview about it, and then can do the releases in a stable manner... just releasing it would be some chaos IMHO... best regards and nic

Re: [Wicket-user] who wants to be in charge of doing wicket-stuffreleases

2006-11-21 Thread Filippo Diotalevi
On 11/21/06, James McLaughlin <[EMAIL PROTECTED]> wrote: > Hi Korbinian, > I'm a bit time constrained also, but if you take the lead I will help you > out. If you want to enlarge the team with a third person, you can count on me as well (as assistant, I am also quite busy...) -- Filippo Diotalev

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Eelco Hillenius
Oh, yeah. Hmmm, wicket-stuff stays at Sourceforge, so yes, something at sourceforge or somewhere else. Eelco On 11/21/06, James McLaughlin <[EMAIL PROTECTED]> wrote: > Good idea. Should we use the main wicket wiki on apache, or create a > wicket-stuff wiki on sourceforge? > > jim > > > On 11/21/

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Upayavira
Gwyn Evans wrote: > Not saying don't, but if it's just to track this sort of discussion, > then the main wiki's as good as anywhere for the moment. Well, yeah. If all that it is needed for is one page that will be thrown away afterwards, use what you like, including Apache one. If it is likely t

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Eelco Hillenius
On 11/21/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Can't we set up a space for wicket-stuff which content we don't > attribute to the ASF, but provide as a documentation ground for the > wicket-stuff project? That would be perfect if possible/ allowed. Eelco -

Re: [Wicket-user] default value (Choose One) lost in DropDownChoice selection

2006-11-21 Thread Igor Vaynberg
actually we think of this as a feature :) why would you want it to still be there? -igor On 11/21/06, Jaime De La Jara <[EMAIL PROTECTED]> wrote: Hi, I've noticed a strange behavior of the DropDownChoice component when one selects a value in the list, the message "Choose One" is lost and one

Re: [Wicket-user] wicket bug in page map?

2006-11-21 Thread jan_bar
Now it seems to me, that the problem is in my application. We have a page with Flash application that talks to the server via AJAX. When a link is pressed to continue to next page, the link is handled by javascript, javascript asks Flash to save data to the server and also passes the new URL to the

Re: [Wicket-user] Issue of having a webpage return binary content

2006-11-21 Thread Eelco Hillenius
For binary output, use a (web)resource. For instance, something like this: WebResource export = new WebResource() { @Override public IResourceStream getResourceStream() { CharSequence discounts = DataBase.getInstance() .exportDiscounts(); return new Str

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Eelco Hillenius
So that's a yes for installing a WIKI on SF James :) eElco On 11/21/06, Upayavira <[EMAIL PROTECTED]> wrote: > Gwyn Evans wrote: > > Not saying don't, but if it's just to track this sort of discussion, > > then the main wiki's as good as anywhere for the moment. > > Well, yeah. If all that it is

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Filippo Diotalevi
On 11/22/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Can't we set up a space for wicket-stuff which content we don't > attribute to the ASF, but provide as a documentation ground for the > wicket-stuff project? > I'd rather have the documentation together in one place than scattered > across

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread James McLaughlin
done! http://wicket-stuff.sourceforge.net/wiki Needs de-uglification if someone wants to volunteer for that. I followed the instructions at http://moinmoin.wikiwikiweb.de/SourceForge pretty much word for word, so this will show you the install paths. I've enabled the Anti Spam module, but suppo