Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Alvar Lumberg
Basically his problem seems to be this whole J2EE hell which has nothing to do with wicket - like creating a webapp directory with a valid structure, add web.xml and so on.. I suppose VGJ got the point and there most certainly is work to be done so building web apps in Java doesn't intimidate

Re: [Wicket-user] pagemap problem with late arriving ajax request

2006-05-23 Thread Ari Suutari
Hi, It is very important for us to get this fixed, preferably for 1.2. If any wicket committer is willing to help us, we will pay for the work (please contact me directly by e-mail for this). Ari S. - Original Message - From: Igor Vaynberg [EMAIL PROTECTED] To:

Re: [Wicket-user] pagemap problem with late arriving ajax request

2006-05-23 Thread Johan Compagner
best thing todo currently is to have that -1 check in the pagemap and make your own version of wicket 1.2 I guess to fix it for the AccessStackPageMap (2.0 name) is to have ajax request always check the active page first and only do its job when it is the right one. But this is i think pretty

Re: [Wicket-user] Collapsing Bar in Wicket

2006-05-23 Thread Ayodeji Aladejebi
standardizing dojo and Scriptaculous for the extension stuffs will be a great. and andrew pls can i get some documents on how yu implemented Scriptaculous for this accordion effect..thanksonce again igor..congrats On 5/22/06, Igor Vaynberg [EMAIL PROTECTED] wrote: do you know where in svn this

Re: [Wicket-user] WicketTester .properties file

2006-05-23 Thread Bram Buitendijk
Ingram Chen schreef: You can alter locale in webSession, for example: wicketTester.getWicketSession().setLocale(new Locale(fa_IR)); Thanks, but that wasn't really what i was looking for. I've now subclassed my own WicketTester: MyWicketTester, and i can have my own MyWicketTester.properties

Re: [Wicket-user] pagemap problem with late arriving ajax request

2006-05-23 Thread Ari Suutari
Hi, best thing todo currently is to have that -1 check in the pagemap and make your own version of wicket 1.2 We already decided to put my modified version to production and if there are no side effects from my change we can keep it for some time. in trunk (2.0) this is already fixed

Re: [Wicket-user] pagemap problem with late arriving ajax request

2006-05-23 Thread Johan Compagner
We will fix it in the 1.2 branch.I am currently a bit full of work for at least 2 days. So i can only look at it by the end of this week.johanOn 5/23/06, Ari Suutari [EMAIL PROTECTED] wrote: Hi,best thing todo currently is to have that -1 check in the pagemap and makeyour own version of wicket

Re: [Wicket-user] pagemap problem with late arriving ajax request

2006-05-23 Thread Ari Suutari
This is so great ! TIA, Ari S. - Original Message - From: Johan Compagner [EMAIL PROTECTED] To: wicket-user@lists.sourceforge.net Sent: Tuesday, May 23, 2006 11:37 AM Subject: Re: [Wicket-user] pagemap problem with late arriving ajax request We will fix it in the 1.2

Re: [Wicket-user] Collapsing Bar in Wicket

2006-05-23 Thread Martijn Dashorst
I'm not pro integrating them into extensions. Dojo and scriptaculous have very different release cycles. Having them inside the jar will cause a lot of headaches. For those dojo and scriptaculous we already have different projects on wicket-stuff. Perhaps we should move them into a core package

Re: [Wicket-user] WARNING: head/ trunk is highly experimental for a while

2006-05-23 Thread Mats Norén
Could you define a few months? We're about to start a new project that may or may not use wicket 2.0 depending on the timetable. The first release is scheduled in september. Is that to soon for a reasonably stable wicket 2.0? Are there any simple issues that a non wicket export could help out

Re: [Wicket-user] WARNING: head/ trunk is highly experimental for a while

2006-05-23 Thread Johan Compagner
that is a bit of a problem. Because currently my workspace i have done the constructor change.It is not completely finished yet. I hope to commit this by the end of the week.And this will have a big impact on everything. If the constructor change sits in cvs. I think we need 1 month to stabilize

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread VGJ
Before we moved to Java as our primary platform at work, I had done years of development w/ MS technologies and you can love or hate Microsoft, but the ease of which you're able to sit down and get to work is one thing they *have* gotten right. The fact that it takes four months to install

Re: [Wicket-user] pagemap problem with late arriving ajax request

2006-05-23 Thread Igor Vaynberg
i got up extra early to take care of this, so by the end of the day -igorOn 5/23/06, Ari Suutari [EMAIL PROTECTED] wrote: This is so great !TIA,Ari S.- Original Message -From: Johan Compagner [EMAIL PROTECTED]To: wicket-user@lists.sourceforge.netSent: Tuesday, May 23, 2006 11:37

Re: [Wicket-user] Collapsing Bar in Wicket

2006-05-23 Thread Andrew Berman
It's called Kabuki: http://wiki.apache.org/incubator/KabukiProposalThere's nothing in the SVN repo yet.On 5/23/06, Igor Vaynberg [EMAIL PROTECTED] wrote: do you know where in svn this donation lives? i would like to take a look.-IgorOn 5/22/06, Andrew Berman [EMAIL PROTECTED]

Re: [Wicket-user] Collapsing Bar in Wicket

2006-05-23 Thread Andrew Berman
I haven't put it in a Wicket component. I've only implemented it using plain ol' _javascript_. If you look in the email trail for this subject you'll see the _javascript_ I used. If I can find some time I'll try to write a component, but no promises as I've been swamped with work work. On 5/23/06,

Re: [Wicket-user] Collapsing Bar in Wicket

2006-05-23 Thread Igor Vaynberg
once again igor..congrats thanks :) -Igor

Re: [Wicket-user] ENABLING WAR: Celebrity Christians and the real Da vinci Code

2006-05-23 Thread Dorel Vaida
this is too long to read. they should split it. [EMAIL PROTECTED] wrote: Reply-To: cecarl http://straitgateministry.net/ 345-page ONE NATION UNDER ISRAEL Almost FREE (see end) Published by Truths Press ENABLING WAR: HOW A BIBLE PUBLISHER CORRUPTED CHRIST'S WORDS Why Celebrity leaders accept a

Re: [Wicket-user] write an entire tag?

2006-05-23 Thread Vincent Jenks
Igor, I got this all working correctly now, I was just missing one of the controls in the populateEmptyItem method. When we were going back and forth yesterday it didn't dawn on me immediately that the entire hierarchy of components had to be re-created in this method. I've now got it exactly

Re: [Wicket-user] write an entire tag?

2006-05-23 Thread Igor Vaynberg
yeah, thats the advantage of using panels or fragments - a single top level element, so in populate empty item you just stick an empty panel. anyways, glad to hear you got it working. -Igor On 5/23/06, Vincent Jenks [EMAIL PROTECTED] wrote: Igor, I got this all working correctly now, I was just

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Eelco Hillenius
Anyhow, I might blog-up a little setup guide for new users for Windows and Linux using Wicket as the web framework. I'll try to do that this weekend as crunch-time will be over and I can breathe once again. Maybe you want to share the URL to your blog? If you - or anyone reading this - plan

[Wicket-user] Any Free RSS Panel from Wicket Users

2006-05-23 Thread Ayodeji Aladejebi
Okay I am lazy again parsing RSSPlease does anyone have a free RSS panel to share :)Something i can simply input an RSS Link and then it will render out the Links?Thanks :)

Re: [Wicket-user] Any Free RSS Panel from Wicket Users

2006-05-23 Thread Martijn Dashorst
Check out the wicket-contrib-dojo-examplesThe students have built a dojo auto update RSS reader.MartijnOn 5/23/06, Ayodeji Aladejebi [EMAIL PROTECTED] wrote:Okay I am lazy again parsing RSSPlease does anyone have a free RSS panel to share :) Something i can simply input an RSS Link and then

Re: [Wicket-user] write an entire tag?

2006-05-23 Thread Vincent Jenks
Yeah, I understand what you were saying now...I was just a little burnt out last night. Thankfully there's only a link and two labels, not a big deal to just add them w/ blank values. So, if I don't set the number of rows, will it expand dynamically (automatically)?? On 5/23/06, Igor Vaynberg

Re: [Wicket-user] write an entire tag?

2006-05-23 Thread Igor Vaynberg
by default the number of rows is set to Integer.MAX_VALUE - so yes. -Igor On 5/23/06, Vincent Jenks [EMAIL PROTECTED] wrote: Yeah, I understand what you were saying now...I was just a littleburnt out last night.Thankfully there's only a link and two labels,not a big deal to just add them w/ blank

Re: [Wicket-user] WARNING: head/ trunk is highly experimental for a while

2006-05-23 Thread Timo Stamm
Johan Compagner schrieb: But if it does take longer you could use trunk. It is now a fast moving target. But many of those changes are java 5 related [...] Yay! Generics and Covariant Return Types!! No more Castings! !WOOOT --- Using

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Vincent Jenks
It's pretty ghetto at this point and it's hosted on a dell server in my home-office, so I've been reluctant to take it seriously: http://zambizzi.blogdns.com/ It's built w/ Wicket + EJB3 on JBoss 4.0.4. The cable connection will make it sub-optimal for speed/scalability ;) It's pretty basic

Re: [Wicket-user] WARNING: head/ trunk is highly experimental for a while

2006-05-23 Thread Eelco Hillenius
And as always, ideas/ contributions/ patches of the brave are welcome! Eelco On 5/23/06, Timo Stamm [EMAIL PROTECTED] wrote: Johan Compagner schrieb: But if it does take longer you could use trunk. It is now a fast moving target. But many of those changes are java 5 related [...] Yay!

Re: [Spam] Re: [Wicket-user] ENABLING WAR: Celebrity Christians and the realDa vinci Code

2006-05-23 Thread cowwoc
Why buy the book when I can summarize it for you for free? Executive summary: It's a conspiracy! (isn't everything?) Jews control the world! Join us in finding new creative ways to blame them for all our problems so we can murder more of them. Man, I'm tired of this sort

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Eelco Hillenius
Cool. A thing to consider is to use bookmarkable pages more, especially for the topics, but also for the blog details if you would implement that (one detail bookmarkable page, and a human readable parameter to the actual topic). Eelco On 5/23/06, Vincent Jenks [EMAIL PROTECTED] wrote: It's

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Potje rode kool
I think its more what you are used to(what you prefer), I am working for some few months with .Net 2.0 with vs.net 2005 but I never got the fealing that I got something with vs.net that I didn't have with Eclipse. But great things happening with Netbeans, with Matise and Jackpot. With .Net you

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Eelco Hillenius
Be glad you didn't have to work with VS 2003, that one sucked. VS 2005 is much better; one of the things I like is the integration of (integration) testing. I think they did a nice job on that. Of course easy for them as they just support Windows/ IE. One of the things I hate most of working

Re: [Wicket-user] pagemap problem with late arriving ajax request

2006-05-23 Thread Igor Vaynberg
yeah yeah, i get to do maintenance while you get to do all the fun stuff in the trunk you bastard!-IgorOn 5/23/06, Johan Compagner [EMAIL PROTECTED] wrote:Go Igor Go! On 5/23/06, Igor Vaynberg [EMAIL PROTECTED] wrote: i got up extra early to take care of this, so by the end of the day -igorOn

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Vincent Jenks
I worked w/ vs.net 2002/2003 since the day each of them was released, 2002 for a long while before it was final. I actually quite liked it compared to Visual Interdev and the old vs 6.0 stuff. Of course, you're right - It's Windows-centric and doesn't allow the freedom. Once I dove into the

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Vincent Jenks
You're probably right. This was the first thing I ever built w/ Wicket and I'll usually do a small project in-parallel, at home w/ a big project at work so I can more quickly iron out any problems I might have. I plan on building more features into it, like the detail page (single blog entry on

Re: [Wicket-user] pagemap problem with late arriving ajax request

2006-05-23 Thread Johan Compagner
Go Igor Go!On 5/23/06, Igor Vaynberg [EMAIL PROTECTED] wrote: i got up extra early to take care of this, so by the end of the day -igorOn 5/23/06, Ari Suutari [EMAIL PROTECTED] wrote: This is so great !TIA,Ari S.- Original Message -From: Johan Compagner [EMAIL PROTECTED]To:

Re: [Wicket-user] pagemap problem with late arriving ajax request

2006-05-23 Thread Igor Vaynberg
ok here is my first pass. i cannot reproduce the problem, so i am kinda flying blind here - all i know for sure is that it compilesit seems to me that as soon as you change the page the browser dumps the old _javascript_, in my case looks like it also dumps any running ajax requests. i tried both

Re: [Wicket-user] Any Free RSS Panel from Wicket Users

2006-05-23 Thread Ryan Sonnek
I'm also interested in a wicket RSS panel, but i'm finding it hard to understand the dojo example. personally, i think it would be easier to use a library like rome (https://rome.dev.java.net/) and just add each rss element to a wicket list view. it's really not that difficult to parse an

[Wicket-user] Audio in Wicket

2006-05-23 Thread Michael Welter
I have a requirement to provide a web site that allows the customer to drill down into database detail. At the lowest level, the web page contains the normal text presentation along with zero to many Play buttons. Each button plays a different audio file of previously recorded speech. The