Re: [Wicket-user] What features do want to show in wicket demo

2007-04-22 Thread Zhang Hailong

I think a blog project which covers most common requirements will be fine.
About ORM, I prefer Hibernate.

// I have noticed your plan in Wicket Group of JavaEye. I'd like to take
part in this project, if you start pupa.


best,
Hailong Zhang


On 4/22/07, 王磊 <[EMAIL PROTECTED]> wrote:


 I will begin a open source project for wicket which name is pupa.
I hope it can be a best practice for wicket users.
 Wicket1.3 is the best choice to write the project,becuase i think
stateless page is very important feature.
But wicket2.0 is too far to use.
So ,i need more advices about the features in the demo.
I also want know which ORM framework is your favourite,Hibernate or
IBatis,maybe OJB is not bad.

One world, one dream.
I like it.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] IMPORTANT: your opinion on the constructor change in 2.0

2007-03-08 Thread Zhang Hailong

I have been using 1.2.4 for some days. I think the current construct works
well. If there is no overwhelming reason, I prefer preserve the old style.
Why wicket team choose SWT style construct for 2.0? To prevent mistakes like
forgetting to add component to component tree?


Hailong Zhang

On 3/7/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote:


Hi,

We (Wicket's developers) are having some discussion over 1.3 vs 2.0
and how difficult it is as a nun-funded project to spend so much time
synchronizing the branches.

A major issue in the discussion is that not everyone is convinced
anymore that the constructor change in 2.0 is for the better. There
are pros and cons for sure, but we want to get your opinion on this.

Please help us out giving your opinion. We want to know:

1) Who uses 2.0 for serious projects?

2) What do you think of the constructor change? Do you prefer 1.3's
add style or 2.0's style of passing in the parent construction time.

3) If we would ever backtrack on the constructor change (*if*, don't
panic for now) how much trouble would that give you?

Please don't be shy giving your opinion. This is an important issue in
the future development of Wicket.

Regards,

Eelco

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Question about Panel

2007-02-28 Thread Zhang Hailong

It looks good. I will try it. Thank you!

best,
hailong

On 3/1/07, Ryan Holmes <[EMAIL PROTECTED]> wrote:


Use a WebMarkupContainer component instead of a Panel.

You might also be interested in fragments:
http://wicket.sourceforge.net/ExampleUsingFragments.html
http://cwiki.apache.org/WICKET/fragments.html

-Ryan

On Feb 28, 2007, at 1:56 AM, Zhang Hailong wrote:

> Hi all,
>
> I found it is inconvenient to create a separate page and class for
> Panel every time. Sometimes, I just want keep things as simple as
> possible. For example, I just want to hide some components
> together, so I put them in a Panel.
> Is it possible to use Panel like this?Or add this feature in later
> version?(I'm using 1.2.4)
> HTML:
> 
>  
> You believe
> 
>
> 
> 
> text
> 
> 
> 
>
> Java:
> Panel myPanel = new Panel("myPanel");
> Label label = new Label("label", "test");
> myPanel.add(label);
> .
>
> Thanks.
>
>
> Regards,
> Hailong Zhang
>
> --
> ---
> 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 & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?
> page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Question about Panel

2007-02-28 Thread Zhang Hailong

Hi all,

I found it is inconvenient to create a separate page and class for Panel
every time. Sometimes, I just want keep things as simple as possible. For
example, I just want to hide some components together, so I put them in a
Panel.
Is it possible to use Panel like this?Or add this feature in later
version?(I'm using 1.2.4)
HTML:


   You believe
   

   
   
   text
   
   


Java:
Panel myPanel = new Panel("myPanel");
Label label = new Label("label", "test");
myPanel.add(label);
.

Thanks.


Regards,
Hailong Zhang
-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Question about DropDownChoice

2007-02-25 Thread Zhang Hailong

Thank you. That helps.

On 2/25/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote:


> Hi Iman,
>
> Thank you for your response.
> But How to set the default selection?
> My DropDownChoice defined as follows:
> DropDownChoice choices = new DropDownChoice("answerChoices", new
> PropertyModel(properties, "answer"), ANSWERS);

Drop down matches the current model value with the available
alternatives. In your case, the model comes from 'answer' on
'properties', so whatever properties.get("answer") returns will be
your current selection. Do keep in mind Wicket has to be able to match
that value with the available choices you provided (ANSWERS). For your
choices, use objects that have hashCode and equals implemented
properly, and for custom objects, consider using IChoiceRenderer.

Eelco

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Question about DropDownChoice

2007-02-25 Thread Zhang Hailong

Hi Iman,

Thank you for your response.
But How to set the default selection?
My DropDownChoice defined as follows:
DropDownChoice choices = new DropDownChoice("answerChoices", new
PropertyModel(properties, "answer"), ANSWERS);

Thank you!


Regards,
Hailong Zhang

On 2/25/07, Iman Rahmatizadeh <[EMAIL PROTECTED]> wrote:


   // Note that when the selection is null, Wicket will lookup a localized
string to
   // represent this null with key: "id + '.null'". In this case, this is
'site.null'
   // which can be found in DropDownChoicePage.properties

copied from the JavaDoc for DropDownChoice.

On 2/25/07, Zhang Hailong <[EMAIL PROTECTED] > wrote:

> Hi all,
>
> The default DropDownChoice always adds a "Choose One" option. How to
> disable this?
>
> Thank you!
>
>
> Regards,
> Hailong Zhang
>
>
> -
> 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 & business topics through brief surveys-and earn cash
>
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Question about DropDownChoice

2007-02-25 Thread Zhang Hailong

Hi all,

The default DropDownChoice always adds a "Choose One" option. How to disable
this?

Thank you!


Regards,
Hailong Zhang
-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] How to change the style of FeedbackPanel ?

2007-02-07 Thread Zhang Hailong

Thank you all~

That helps : )


Regards,
Hailong Zhang

On 2/8/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote:


On 2/7/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote:
> > Would you please give me an example of this? I have looked at the
source of
> > FeedbackPanel but I still don't know which method to overwrite and how
to
> > provide my own markup.
> > Thank you!
>
> You can always extend any panel (that is not final) or page and
> provide markup like you would normally do.
>
> public class MyFeedbackPanel extends FeedbackPanel {
>   public MyFeedbackPanel(final String id, IFeedbackMessageFilter filter)
{
> super(id, filter);
>   }
> }
>
> And your markup should look *like*:

For the sake of clarity, the markup file should be named
MyFeedbackPanel.html and be placed in the same directory as the
MyFeedbackPanel class is.

Eelco

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] How to change the style of FeedbackPanel ?

2007-02-07 Thread Zhang Hailong

Hi Igor,

Would you please give me an example of this? I have looked at the source of
FeedbackPanel but I still don't know which method to overwrite and how to
provide my own markup.
Thank you!


Regards,
Hailong Zhang

On 2/7/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:


yes, simply subclass and provide your own markup. just make sure the
hieararchy of wicket:ids matches in your markup.

-igor


On 2/6/07, Zhang Hailong <[EMAIL PROTECTED]> wrote:

> Hi all,
>
> Is it possible to change the style of FeedbackPanel? I don't like the
> list style of .
>
> Thanks.
>
>
> Regards,
> Hailong Zhang
>
>
> -
> Using Tomcat but need to do more? Need to support web services,
> security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier.
> Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] How to do redirect in wicket?

2007-02-06 Thread Zhang Hailong

Thanks. That's helpful!

Hailong Zhang

On 2/6/07, Carfield Yim <[EMAIL PROTECTED]> wrote:


This blog probably help -

http://spatula.net/blog/2006/11/adding-generic-authorization-to-wicket.html

If you prefer reading Chinese, may be this message help more :
http://www.javaworld.com.tw/jute/post/view?bid=42&id=169359&sty=3&age=0

On 2/6/07, Zhang Hailong <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> How to redirect to a wicket or non-wicket page in wicket? For example,
if a
> guest want to access a authorized page, I want to redirect it to the
login
> page.
> How to do this?
>
> Thanks in advance.
>
>
> Regards,
> Hailong Zhang
>
>
-
> Using Tomcat but need to do more? Need to support web services,
security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier.
> Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] How to change the style of FeedbackPanel ?

2007-02-06 Thread Zhang Hailong

Hi all,

Is it possible to change the style of FeedbackPanel? I don't like the list
style of .

Thanks.


Regards,
Hailong Zhang
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] How to do redirect in wicket?

2007-02-06 Thread Zhang Hailong

Hi all,

How to redirect to a wicket or non-wicket page in wicket? For example, if a
guest want to access a authorized page, I want to redirect it to the login
page.
How to do this?

Thanks in advance.


Regards,
Hailong Zhang
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] How to run wicket-quickstart?

2007-01-21 Thread Zhang Hailong

Hi ZedroS,

I think it's useful to add this topic to the wiki.

Hailong

On 1/22/07, ZedroS Schwart <[EMAIL PROTECTED]> wrote:


Hi Zhang

I did as you told. I even went further by removing the following library :
portlet-api-1.0.Jar
org.mortbay.jetty-4.2.24.jar
jasper-compiler-4.1.30.jar
jasper-runtime-4.1.30.jar

I'm quite surprised of the presence of this portlet api jar... Does
someone know why it's present ?

I did remove as well the package "wicket.quickstart" where the
Start.java class was located. It isn't required anymore :)

BTW, I'm using the sysdeo plugin and apparently everything is running fine
now.

FYI, the Quickstart project is a "basic" wicket app from which any one
can build one, something like an "empty skeleton".

Finally, do you think a wiki page could be usefull on this topic ? If
yes I'll do it.

Cheers,
ZedroS
On 1/21/07, Zhang Hailong <[EMAIL PROTECTED]> wrote:
> I use Tomcat 5.5.12 and Eclipse3.2.1(with WTP). After some
configuration, I
> imported wicket-examples as an Eclipse project and it works.
> Here are the steps to setup:
> 1. Create a empty Dynamic Web Project
> 2. import " wicket-examples-1.2.4\src\main\java" into src
> of the prject
> 3. import "wicket-examples-1.2.4\src\webapp" into
> WebContent of the project
> 4. import "wicket-examples-1.2.4\lib" into WebContent/WEB-INF/lib
> There may be some errors of the html files, just ignore them.(I think
this
> is a bug of WTP)
> Then, "Run As" -> "Run on Server"
>
> Could someone tell me what "wicket-examples-1.2.4\src\site " is used
for?
>
> //I think wicket-examples is more useful for starters like me. I don't
> understand "Quickstart". What is it //used for?
>
> Hailong
>
>
> On 1/21/07, ZedroS Schwart <[EMAIL PROTECTED]> wrote:
> >
> > Since I used the quickstart I've a new button in my Eclipse Java
> > perspective called "Jetty Laucnher Actions".
> >
> > However, when I click on it nothing happens. Is there something to be
done
> ?
> >
> > Thanks in advance
> > ZedroS
> >
> > On 1/21/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> > > there is a class called Start that comes with quickstart, just
launch
> that
> > > class as a java app and it will startup jetty, etc
> > >
> > > -igor
> > >
> > >
> > >
> > > On 1/20/07, Zhang Hailong <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Hi all,
> > > >
> > > > I'm new to Wicket. I have downloaded wicket-quickstart-1.2.4. I
tried
> to
> > > follow the Quickstart Guide (
> > >
> http://wicketframework.org/wicket-quickstart/eclipse.html
> > > ), but it's seems that the content of my package is different from
the
> > > guide.
> > > > So, how to use the Quickstart?
> > > >
> > > > Thanks in advance.
> > > >
> > > >
> > > > Regareds,
> > > > Hailong Zhang
> > > >
> > > >
> > >
>
-
> > > > 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 & business topics through brief surveys - and earn
cash
> > > >
> > >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > > >
> > > > ___
> > > > Wicket-user mailing list
> > > > Wicket-user@lists.sourceforge.net
> > > >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > >
> > > >
> > > >
> > >
> > >
> > >
>
-
> > > 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 & business topics through brief surveys - and earn
cash
> > >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > >
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> > >
> > >
> >
> >
>
-

Re: [Wicket-user] How to run wicket-quickstart?

2007-01-21 Thread Zhang Hailong

I use Tomcat 5.5.12 and Eclipse3.2.1(with WTP). After some configuration, I
imported wicket-examples as an Eclipse project and it works.
Here are the steps to setup:
1. Create a empty Dynamic Web Project
2. import "wicket-examples-1.2.4\src\main\java" into src of the prject
3. import "wicket-examples-1.2.4\src\webapp" into WebContent of the project
4. import "wicket-examples-1.2.4\lib" into WebContent/WEB-INF/lib
There may be some errors of the html files, just ignore them.(I think this
is a bug of WTP)
Then, "Run As" -> "Run on Server"

Could someone tell me what "wicket-examples-1.2.4\src\site" is used for?

//I think wicket-examples is more useful for starters like me. I don't
understand "Quickstart". What is it //used for?

Hailong

On 1/21/07, ZedroS Schwart <[EMAIL PROTECTED]> wrote:


Since I used the quickstart I've a new button in my Eclipse Java
perspective called "Jetty Laucnher Actions".

However, when I click on it nothing happens. Is there something to be done
?

Thanks in advance
ZedroS

On 1/21/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> there is a class called Start that comes with quickstart, just launch
that
> class as a java app and it will startup jetty, etc
>
> -igor
>
>
>
> On 1/20/07, Zhang Hailong <[EMAIL PROTECTED]> wrote:
> >
> > Hi all,
> >
> > I'm new to Wicket. I have downloaded wicket-quickstart-1.2.4. I tried
to
> follow the Quickstart Guide (
> http://wicketframework.org/wicket-quickstart/eclipse.html
> ), but it's seems that the content of my package is different from the
> guide.
> > So, how to use the Quickstart?
> >
> > Thanks in advance.
> >
> >
> > Regareds,
> > Hailong Zhang
> >
> >
>
-
> > 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 & business topics through brief surveys - and earn cash
> >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> >
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
> >
>
>
>
-
> 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 & business topics through brief surveys - and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>

-
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 & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Any more wicket articles?

2007-01-21 Thread Zhang Hailong

Is there anybody can translate this(
http://gfx.developpez.com/tutoriel/java/web/wicket/) to  English?
Thanks.

Hailong

On 1/21/07, ZedroS Schwart <[EMAIL PROTECTED]> wrote:


A french article about Wicket, written by Romain Guy (if you do some
swing stuff, you should know him ;)) :

http://gfx.developpez.com/tutoriel/java/web/wicket/

On 1/11/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
>
http://www.oreillynet.com/onjava/blog/2007/01/wicket_another_java_web_framew.html
>
>
>
>
>  On 1/9/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote:
> > > Hello,
> > >
> > > I just updated the wiki page
> > >
> http://cwiki.apache.org/confluence/display/WICKET/Articles+about+Wicket
> > > but there must surely be more articles on Wicket out there?!
> >
> > There should be a couple more, maybe we need to do a bit more
googling. :)
> >
> > But... let this be a call to all readers to write some more articles!
> >
> > Eelco
> >
> >
>
-
> > 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 & business topics through brief surveys - and earn cash
> >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>
>
>
-
> 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 & business topics through brief surveys - and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>

-
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 & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] How to run wicket-quickstart?

2007-01-20 Thread Zhang Hailong

Hi all,

I'm new to Wicket. I have downloaded wicket-quickstart-1.2.4. I tried to
follow the Quickstart Guide (
http://wicketframework.org/wicket-quickstart/eclipse.html), but it's seems
that the content of my package is different from the guide.
So, how to use the Quickstart?

Thanks in advance.


Regareds,
Hailong Zhang
-
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 & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user