[Wicket-user] Re: Source of application using Wicket

2006-02-28 Thread jan_bar
Building with 1.5.0_05 and 1.5.0_06 ends with internal compiler error in
UserDetailsPage.java at this line:

  public RolesListView(String id) {
   super(id, new LoadableDetachableModel() {
@Override
protected Object load() {
 return getUserDao().findRoles();// this line crashes javac
}
   });
  }

This compiles correctly:

  public RolesListView(String id) {
   super(id, new LoadableDetachableModel() {
@Override
protected Object load() {
 Object obj = getUserDao().findRoles();
 return obj;
}
   });
  }

Which javac do you use?

Jan

"jan_bar" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I tried with latest snapshot of wicket and wicket-extension (did not found
> latest dojo). It's better but I cannot compile either, with javac 1.5.0_05
I
> get compiler internal error (java.lang.AssertionError).
>
> Jan
>
>
> "jan_bar" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > Thanks Martijn,
> >
> > I have latest version of burgerweeshuis, but it doesn't compile. It
seems
> > that the wicket SNAPSHOT in the lib/wicket is out fo date. Which
snapshot
> > should I use?
> >
> > Jan
> >
> >
> >
> > "Martijn Dashorst" <[EMAIL PROTECTED]> wrote in message
> > news:[EMAIL PROTECTED]
> > wicket phonebook is a good example to start with.
> >
> > Under construction, and more specifically /NOT/ by wicket guru's is the
> > Burgerweeshuis project hosted at sourceforge.
> >
> > http://www.sourceforge.net/projects/burgerweeshuis
> >
> > It is a dutch project, but you might find some interesting things there.
> It
> > uses hibernate 3, annotations and wicket. It is a rewrite of a
previously
> > Model2 application (based on maverick).
> >
> > Martijn
> >
> >
> >
> > On 2/27/06, jan_bar <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > the Wicket samples is basic source of how to start with Wicket. But I
miss
> > some real world (more complex) applications. I like to learn from code
> > written by Wicket gurus. For instance Pet Store with Wicket. Can you
help
> > me?
> >
> > Thank you, Jan
> >
> >
> >
> >
> >
> > ---
> > This SF.Net email is sponsored by xPML, a groundbreaking scripting
> language
> > that extends applications into web and mobile media. Attend the live
> webcast
> > and join the prime developer group breaking into this new coding
> territory!
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
> >
> >
> > -- 
> > Living a wicket life...
> >
> > Martijn Dashorst - http://www.jroller.com/page/dashorst
> >
> > Wicket 1.1.1 is out: http://wicket.sourceforge.net/wicket-1.1
> >
> >
> >
> >
> >
> > ---
> > This SF.Net email is sponsored by xPML, a groundbreaking scripting
> language
> > that extends applications into web and mobile media. Attend the live
> webcast
> > and join the prime developer group breaking into this new coding
> territory!
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
>
>
>
>
>
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting
language
> that extends applications into web and mobile media. Attend the live
webcast
> and join the prime developer group breaking into this new coding
territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Re: Source of application using Wicket

2006-02-28 Thread Eelco Hillenius
Just get the latest or build a fresh one yourself.

Eelco

On 2/27/06, jan_bar <[EMAIL PROTECTED]> wrote:
> Thanks Martijn,
>
> I have latest version of burgerweeshuis, but it doesn't compile. It seems
> that the wicket SNAPSHOT in the lib/wicket is out fo date. Which snapshot
> should I use?
>
> Jan
>
>
>
> "Martijn Dashorst" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> wicket phonebook is a good example to start with.
>
> Under construction, and more specifically /NOT/ by wicket guru's is the
> Burgerweeshuis project hosted at sourceforge.
>
> http://www.sourceforge.net/projects/burgerweeshuis
>
> It is a dutch project, but you might find some interesting things there. It
> uses hibernate 3, annotations and wicket. It is a rewrite of a previously
> Model2 application (based on maverick).
>
> Martijn
>
>
>
> On 2/27/06, jan_bar <[EMAIL PROTECTED]> wrote:
> Hi,
>
> the Wicket samples is basic source of how to start with Wicket. But I miss
> some real world (more complex) applications. I like to learn from code
> written by Wicket gurus. For instance Pet Store with Wicket. Can you help
> me?
>
> Thank you, Jan
>
>
>
>
>
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting language
> that extends applications into web and mobile media. Attend the live webcast
> and join the prime developer group breaking into this new coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>
>
> --
> Living a wicket life...
>
> Martijn Dashorst - http://www.jroller.com/page/dashorst
>
> Wicket 1.1.1 is out: http://wicket.sourceforge.net/wicket-1.1
>
>
>
>
>
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting language
> that extends applications into web and mobile media. Attend the live webcast
> and join the prime developer group breaking into this new coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Re: Source of application using Wicket

2006-02-28 Thread jan_bar
I tried with latest snapshot of wicket and wicket-extension (did not found
latest dojo). It's better but I cannot compile either, with javac 1.5.0_05 I
get compiler internal error (java.lang.AssertionError).

Jan


"jan_bar" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Thanks Martijn,
>
> I have latest version of burgerweeshuis, but it doesn't compile. It seems
> that the wicket SNAPSHOT in the lib/wicket is out fo date. Which snapshot
> should I use?
>
> Jan
>
>
>
> "Martijn Dashorst" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> wicket phonebook is a good example to start with.
>
> Under construction, and more specifically /NOT/ by wicket guru's is the
> Burgerweeshuis project hosted at sourceforge.
>
> http://www.sourceforge.net/projects/burgerweeshuis
>
> It is a dutch project, but you might find some interesting things there.
It
> uses hibernate 3, annotations and wicket. It is a rewrite of a previously
> Model2 application (based on maverick).
>
> Martijn
>
>
>
> On 2/27/06, jan_bar <[EMAIL PROTECTED]> wrote:
> Hi,
>
> the Wicket samples is basic source of how to start with Wicket. But I miss
> some real world (more complex) applications. I like to learn from code
> written by Wicket gurus. For instance Pet Store with Wicket. Can you help
> me?
>
> Thank you, Jan
>
>
>
>
>
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting
language
> that extends applications into web and mobile media. Attend the live
webcast
> and join the prime developer group breaking into this new coding
territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>
>
> -- 
> Living a wicket life...
>
> Martijn Dashorst - http://www.jroller.com/page/dashorst
>
> Wicket 1.1.1 is out: http://wicket.sourceforge.net/wicket-1.1
>
>
>
>
>
> ---
> This SF.Net email is sponsored by xPML, a groundbreaking scripting
language
> that extends applications into web and mobile media. Attend the live
webcast
> and join the prime developer group breaking into this new coding
territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Re: Source of application using Wicket

2006-02-27 Thread jan_bar
Thanks Martijn,

I have latest version of burgerweeshuis, but it doesn't compile. It seems
that the wicket SNAPSHOT in the lib/wicket is out fo date. Which snapshot
should I use?

Jan



"Martijn Dashorst" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
wicket phonebook is a good example to start with.

Under construction, and more specifically /NOT/ by wicket guru's is the
Burgerweeshuis project hosted at sourceforge.

http://www.sourceforge.net/projects/burgerweeshuis

It is a dutch project, but you might find some interesting things there. It
uses hibernate 3, annotations and wicket. It is a rewrite of a previously
Model2 application (based on maverick).

Martijn



On 2/27/06, jan_bar <[EMAIL PROTECTED]> wrote:
Hi,

the Wicket samples is basic source of how to start with Wicket. But I miss
some real world (more complex) applications. I like to learn from code
written by Wicket gurus. For instance Pet Store with Wicket. Can you help
me?

Thank you, Jan





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user




-- 
Living a wicket life...

Martijn Dashorst - http://www.jroller.com/page/dashorst

Wicket 1.1.1 is out: http://wicket.sourceforge.net/wicket-1.1





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user