Re: [Wicket-user] Joost uses Wicket

2007-03-13 Thread Rüdiger Schulz
Hello, the Filter is not in Wicket 1.2.x, only 1.3 and 2.0. ZedroS Schwart schrieb: > Hi all > > On 3/13/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: >> it is ok to do that (use /* mapping) if you use WicketFilter instead of >> WicketServlet > > I'm sorry but I didn't a WicketFilter class in th

Re: [Wicket-user] Joost uses Wicket

2007-03-13 Thread ZedroS Schwart
Danke schön Rüdiger ! I understand better now. Have a good day ++ ZedroS - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & bus

[Wicket-user] AJAX completely broken in current wicket 2.0 trunk?

2007-03-13 Thread Stefan Lindner
I built wicket 2.0 from current trunk and my application that worked well with last week#s wicket trunk no lnger works at all. No AJAX functionality at all. AjaxSelfUpdatingTimerBehavior, AjaxFormComponentUpdatingBehavior no longer work. The AJAX debug window shows no activity at all. Any genera

Re: [Wicket-user] Wicket for Bog Projects

2007-03-13 Thread Gwyn Evans
The problem is that without some idea of the context, 'big' doesn't mean anything - Are we talking about something like Amazon, Google, MSN or Yahoo, for instance? I doubt Wicket would be a good match for that sort of "big", but for lesser values of "big", then it's probably as suitable as any oth

Re: [Wicket-user] IMPORTANT: your opinion on the constructor change in2.0

2007-03-13 Thread Robert .
Considering that the hierarchy is specified in the template, isn't there some way to use this to construct the hierarchy automatically? Robert - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techs

Re: [Wicket-user] IMPORTANT: your opinion on the constructor change in2.0

2007-03-13 Thread Martijn Dashorst
No that is not possible. Consider: add(new WebMarkupContainer("foo").add(new Label("bar", "bar"))); add(new WebMarkupContainer("bar").add(new Label("bar", "bar"))); How could Wicket automatically know where to add the nested bar? Is it a child of foo or of bar? or isn't it a child? Martijn

Re: [Wicket-user] Joost uses Wicket

2007-03-13 Thread Xavier Hanin
On 3/12/07, Brian Topping <[EMAIL PROTECTED]> wrote: Here I thought they were cool, then they use Ant?!? Yes, with Ivy. Maybe not "cool", but works very well :-) - Xavier :b On Mar 12, 2007, at 8:45 AM, mraible wrote: > > Thought y'all might be interested: > > http://opensource.joost.com

[Wicket-user] Build failure

2007-03-13 Thread John Patterson
Hi, I get this error message when trying to build wicket: ERROR] BUILD FAILURE [INFO] [INFO] Compilation failure error: error reading /Users/john/.m2/repository/org/apache/wicket/ wicket/1.3.0-incubating-SNAPSHOT/wicket-

Re: [Wicket-user] Build failure

2007-03-13 Thread Martijn Dashorst
Probably you have remove the jars from your local repository and build again. Martijn On 3/13/07, John Patterson <[EMAIL PROTECTED]> wrote: > Hi, > > I get this error message when trying to build wicket: > > ERROR] BUILD FAILURE > [INFO] > -

Re: [Wicket-user] Build failure

2007-03-13 Thread Frank Bille
I get the same error and have tried to remove local jar files. I'll look into it tonight (can't get workspace setup using new "al" structure) Frank P.s. Ubuntu linux On 3/13/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: Probably you have remove the jars from your local repository and build

Re: [Wicket-user] Build failure

2007-03-13 Thread John Patterson
I removed all wicket jars from my maven repo and also from the target folders of the source folders. The file wicket-1.3.0-incubating- SNAPSHOT.jar was recreated but a similar error was shown: Loading source file /Users/John/Development/wicket-1.x/jdk-1.4/wicket- extensions/src/main/java/wick

[Wicket-user] config file on classpath

2007-03-13 Thread Udora
Hi all, I have the following spring configuration in my web.xml: contextConfigLocation classpath*:applicationContext-service.xml The applicationContext-service.xml references a hibernate-cfg.xml file. However on container startup I get the error: Invocation of init method faile

Re: [Wicket-user] config file on classpath

2007-03-13 Thread Udora
Ok, again I solved my own problem. I inserted a classpath:hibernate-cfg.xml and it now works in the applicationContext.xml file. Regards On 3/13/07, Udora <[EMAIL PROTECTED]> wrote: Hi all, I have the following spring configuration in my web.xml: contextConfigLocation clas

Re: [Wicket-user] When you have tabs and forms, is it ok to have the tabs all inside one form,

2007-03-13 Thread Al Maw
Thomas R. Corbin wrote: > or do you need to have each tab have it's own form? > > And if each tab has it's own form, does the user need to save their data > before switching tabs? > > Would the submit button be on each form, on each tab, or outside the tabs > entirely? You can do this however

Re: [Wicket-user] Build failure

2007-03-13 Thread John Patterson
On 13 Mar 2007, at 12:31, Frank Bille wrote: > I get the same error and have tried to remove local jar files. I'll > look into it tonight (can't get workspace setup using new "al" > structure) > Great, cheers. Until then I have checked out the last revision before the restructuring. -

Re: [Wicket-user] Build failure

2007-03-13 Thread Martijn Dashorst
I just did a clean checkout of our 1.x branch, removed my local repository, and it 'just worked'. I do use maven 2.0.5, perhaps that is the deciding factor? Martijn On 3/13/07, John Patterson <[EMAIL PROTECTED]> wrote: > On 13 Mar 2007, at 12:31, Frank Bille wrote: > > > I get the same error and

[Wicket-user] Wicket's questions

2007-03-13 Thread ZedroS Schwart
Hi * serialVersionUID and anonymous inner classes Quite often in my code, I've got some warning due to non define serialVersionUID. I usually tell Eclipse to generate them for me. However, for the anonymous inner classes, which are quite commun, I'm not sure it's ok. Is it ? Furthermore, I'm w

Re: [Wicket-user] Wicket's questions

2007-03-13 Thread Erik van Oosten
ZedroS Schwart wrote: > * serialVersionUID and anonymous inner classes > Another option is turn of the warning (this is the first thing I do in new Eclipse workspace). > * Best practices for working with Hibernate and Spring, especialy > regarding DAO handling and session ? > http://www.da

Re: [Wicket-user] Build failure

2007-03-13 Thread Frank Bille
2.0.5, you say... hmm, I'll try later Frank On 3/13/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: I just did a clean checkout of our 1.x branch, removed my local repository, and it 'just worked'. I do use maven 2.0.5, perhaps that is the deciding factor? Martijn On 3/13/07, John Patterso

Re: [Wicket-user] Build failure

2007-03-13 Thread John Patterson
Strange, I just deleted the entire .m2/repository/org/apache/wicket/ directory and checked out a fresh copy of http://svn.apache.org/repos/ asf/incubator/wicket/branches/wicket-1.x into a new directory, updated mvn to 2.0.5 (using darwin ports) and ran: mvn -Dmaven.test.skip=true install Bu

Re: [Wicket-user] onFailure AjaxCallDecorators and modal windows

2007-03-13 Thread Apaar Trivedi
Does no one have an answer to this question? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Apaar Trivedi Sent: Monday, March 12, 2007 4:50 PM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] onFailure AjaxCallDecorators and mo

Re: [Wicket-user] Wicket for Bog Projects

2007-03-13 Thread Eelco Hillenius
Also: when I think about 'big' projects, I think about projects that run for long time, have complex requirements and have a medium to large sized team working collaborating on it. For such projects Wicket is an excellent match due to reusability, separation of concerns, etc. Eelco On 3/13/07, Gw

Re: [Wicket-user] Reverting the constructor change of 2.0

2007-03-13 Thread Eelco Hillenius
Can I have the opinions of all committers please? Johan is on a skiing trip but opts for c). Eelco - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share

Re: [Wicket-user] Reverting the constructor change of 2.0

2007-03-13 Thread Philip A. Chapman
I'm not a committer, but I opt for c. On Tue, 2007-03-13 at 09:38 -0700, Eelco Hillenius wrote: > Can I have the opinions of all committers please? Johan is on a skiing > trip but opts for c). > > Eelco > > - > Take Surveys

Re: [Wicket-user] Reverting the constructor change of 2.0

2007-03-13 Thread Igor Vaynberg
i would opt for (b) but seems im in a minority :) -igor On 3/13/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: Can I have the opinions of all committers please? Johan is on a skiing trip but opts for c). Eelco - Take Su

Re: [Wicket-user] Reverting the constructor change of 2.0

2007-03-13 Thread Matej Knopp
I go with crowd, C. On 3/13/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > i would opt for (b) but seems im in a minority :) > > -igor > > > > On 3/13/07, Eelco Hillenius <[EMAIL PROTECTED] > wrote: > > Can I have the opinions of all committers please? Johan is on a skiing > > trip but opts for c)

Re: [Wicket-user] AJAX completely broken in current wicket 2.0 trunk?

2007-03-13 Thread Eelco Hillenius
I just checked out the core 2.0 projects and they work fine for me. Also, as there haven't been any changes for 2.0 the last few weeks, I can't imagine out broke out of the blue. Could you check your installation Stefan? Eelco On 3/13/07, Stefan Lindner <[EMAIL PROTECTED]> wrote: > > > > I buil

Re: [Wicket-user] When you have tabs and forms, is it ok to have the tabs all inside one form,

2007-03-13 Thread Thomas R. Corbin
On Monday, 12 March 2007 04:37 pm, Jean-Baptiste Quenot escreveu: > * Thomas R. Corbin: > > or do you need to have each tab have it's own form? > > > > And if each tab has it's own form, does the user need to save > > their data before switching tabs? > > > > Would the submit button be on each f

Re: [Wicket-user] When you have tabs and forms, is it ok to have the tabs all inside one form,

2007-03-13 Thread Igor Vaynberg
if elements are not visible they are not validated so what you have to do is not allow the user to switch between tabs unless everything on that tab has validated. you can do this by overriding the linkfactory on the tabbed panel, using a submitlink, and only calling setactivetab on the panel if

Re: [Wicket-user] Reverting the constructor change of 2.0

2007-03-13 Thread Al Maw
Eelco Hillenius wrote: > Can I have the opinions of all committers please? Johan is on a skiing > trip but opts for c). I don't want to do any of A, B or C. What I /really/ think we should try to achieve: 1. Have long-term JDK 1.4 and JDK 1.5 branches that are easy to sync/backport from. The

Re: [Wicket-user] When you have tabs and forms, is it ok to have the tabs all inside one form,

2007-03-13 Thread Thomas R. Corbin
On Tuesday, 13 March 2007 07:54 am, Al Maw escreveu: > Thomas R. Corbin wrote: > > or do you need to have each tab have it's own form? > > > > And if each tab has it's own form, does the user need to save their data > > before switching tabs? > > > > Would the submit button be on each form, on each

Re: [Wicket-user] Wicket for Bog Projects

2007-03-13 Thread Upayavira
But, what if 'big' means Ebay, yahoo, etc? If they came to you saying they wanted to build major public facing portions of their site in Wicket, would you warn them away? Upayavira Eelco Hillenius wrote: > Also: when I think about 'big' projects, I think about projects that > run for long time,

Re: [Wicket-user] Wicket for Bog Projects

2007-03-13 Thread Eelco Hillenius
I wouldn't, but sites on that scale would require you to do some serious planning for scalability - whatever the technology you use. There are many ways to scale up and out, but Wicket's reliance on server side memory limits the options somewhat. There are stateless pages, forms and links nowadays

Re: [Wicket-user] Wicket for Bog Projects

2007-03-13 Thread Eelco Hillenius
I wouldn't == no I would not warn them away. :) On 3/13/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > I wouldn't, but sites on that scale would require you to do some > serious planning for scalability - whatever the technology you use. > There are many ways to scale up and out, but Wicket's re

Re: [Wicket-user] When you have tabs and forms, is it ok to have the tabs all inside one form,

2007-03-13 Thread Jean-Baptiste Quenot
* Igor Vaynberg: > a better option for these situations imho is to not to use a > serverside tabpanel, but a clientside one. that way your > entire form is written out and the submit button submits > the entire thing. a js lib like this makes it trivial: > http://www.

[Wicket-user] Apache Con Amsterdam: wicket presence

2007-03-13 Thread Martijn Dashorst
Who is going to attend Apache Con in Amsterdam? We are planning to host an evening session, but we would like to know how many would be interested/attend. You can see the schedule here: http://wiki.apache.org/apachecon/BirdsOfaFeatherEu07 Other presentations featuring Wicket: - A tutorial on Wic

Re: [Wicket-user] Apache Con Amsterdam: wicket presence

2007-03-13 Thread Eelco Hillenius
I'll be there! Also, even if you are not going to Apache Con but happen to be near Amsterdam in that week, let us know so maybe we can do some informal hookup in a cafe or something. Maybe we could start a WIKI page about it? Eelco On 3/13/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Who

Re: [Wicket-user] Wicket for Bog Projects

2007-03-13 Thread Jonathan Locke
Warn them away? No. I think it really comes down to doing a realistic scaling test to estimate hardware resource usage and then using that to estimate fixed and variable costs over the life of the project. Wicket has costs, but I think people tend to underestimate the cost of creating and main

Re: [Wicket-user] Build failure

2007-03-13 Thread Frank Bille
I have upgraded to 2.0.5 and also updated to latest svn version of 1.3, and I now get a different error: http://www.nabble.com/Al%27s-repository-restructure-tf3386729.html#a9469179 Frank On 3/13/07, John Patterson <[EMAIL PROTECTED]> wrote: Strange, I just deleted the entire .m2/repository/o

[Wicket-user] Setting up directories to make CSS available

2007-03-13 Thread Chris Colman
I'm using wicket and trying to work out how to set up my directories so that while editing HTML markups my HTML editor has access to the same CSS files that will be used as run time. The HTML markups are in my project/src/com/sas/ui/wicket directory with my wicket component classes but being in th

Re: [Wicket-user] Setting up directories to make CSS available

2007-03-13 Thread Martijn Dashorst
Are you using eclipse + wicket bench? Then you can tell the wicket bench where your css files live. Martijn On 3/14/07, Chris Colman <[EMAIL PROTECTED]> wrote: > I'm using wicket and trying to work out how to set up my directories so > that while editing HTML markups my HTML editor has access to

Re: [Wicket-user] Apache Con Amsterdam: wicket presence

2007-03-13 Thread Xavier Hanin
On 3/13/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: Who is going to attend Apache Con in Amsterdam? We are planning to host an evening session, but we would like to know how many would be interested/attend. I'll be there, and I'd be interested. I've incremented the counter on the wiki pag

Re: [Wicket-user] Setting up directories to make CSS available

2007-03-13 Thread Dirk Markert
You can include in your html head. 2007/3/14, Chris Colman <[EMAIL PROTECTED]>: I'm using wicket and trying to work out how to set up my directories so that while editing HTML markups my HTML editor has access to the same CSS files that will be used as run time. The HTML markups are in m