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

2006-05-21 Thread Eelco Hillenius

Hi all,

We made a branch about two days ago for Wicket 1.2, which we'll use
for maintaining 1.2. Trunk/ Head will be used for Wicket 2.0, and will
be highly experimental for a while. What's currently in there can't
even be used at all until we finish converting to generics.

So, if you were working on head/ trunk, it's probably a good idea to
either start working with distributions or on the 1.2. branch from now
on. Sorry we didn't communicate this earlier.

Regards,

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=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Anyone has a master-detail form example?

2006-05-21 Thread Eelco Hillenius

What is your question exactly? Do you want to know how to deal with
nested model objects (the address property), do you want to be able to
'batch edit' multiple customers (use a ListView, with property
replaceItems == false) or do you want to have a detail form for your
address (use either a new page for this a la the cdapp example of
wicket-contrib-examples, or use panel replacements).

Eelco


On 5/20/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

Customer has address and both customer name as well as the address need to be
edited in one form. I found examples with nested components such as lists, but
I cannot figure out how to get this right. Any ideas? It seems such as basic
use case I'm surprised there's no example on the site.

Thanks.



---
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=lnkkid=120709bid=263057dat=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=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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

2006-05-21 Thread Johan Compagner
we did communicate this... See Martijns mails and my replies on it over branching..And if develop now something to get it into production in a few months you should stick to 1.2But 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 and that is no behaviour change.. So that shouldn't affect at all.as far as i can see now there is only one big code change: Converters that would affect the compile of code.
For the rest only the default change of another kind of pagemap/session store is what needs to be testedbut there are people that already tested that when it was in a branch (the clientsidestate branch)
So currently the changes looks big, but when we do the constructor change the effect will be much bigger.Who is going to do that?johanOn 5/21/06, 
Eelco Hillenius [EMAIL PROTECTED] wrote:
Hi all,We made a branch about two days ago for Wicket 1.2, which we'll usefor maintaining 1.2. Trunk/ Head will be used for Wicket 2.0, and willbe highly experimental for a while. What's currently in there can't
even be used at all until we finish converting to generics.So, if you were working on head/ trunk, it's probably a good idea toeither start working with distributions or on the 1.2. branch from nowon. Sorry we didn't communicate this earlier.
Regards,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 Geronimohttp://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket behind apache, using ProxyPass?

2006-05-21 Thread Chris M

Dave,

thanks for the slash hint, but it did not help. Maybe you are using 
some other config directives for apache to get it running?


I am now successfully using mod_jk as suggested by Aaron. Thanks for 
this hint!


Chris

David Leangen wrote:


I also use Wicket behind a firewall and use ProxyPass.

Personally, I've never had any problems. I use this type of config on the
firewall machine:


 ProxyPass /contextRoot/ http://localserver:8080/contextRoot/
 ProxyPassReverse /contextRoot/ http://localserver:8080/contextRoot/


Maybe the missing ending slash is the problem?


Cheers,
Dave




 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chris M
Sent: 20 May 2006 18:15
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] Wicket behind apache, using ProxyPass?


Thanks, sounds like a better fit to what I need.

Aaron Hiniker wrote:

   


I usually use mod_jk for apache + tomcat.. you may try that if you
can't get this to work


On Sat, 2006-05-20 at 10:46 +0200, Chris M wrote:

 


The following setup I'd like to get up and running:

- apache 2 listening on port 80, serving some static pages to
   


the internet
   


- tomcat (running on port 8080), serving applications where some of
which (but not all) are intended to be used via the internet as well.
- in order to not have to open any other port than port 80, apache is
configured via ProxyPass (see
http://httpd.apache.org/docs/2.0/mod/mod_proxy.html) to forward
   


requests
   


to tomcat like this:

ProxyPass /my-app http://my.domain.com:8080/my-app
ProxyPassReverse /my-app http://my.domain.com:8080/my-app

For an application built with webwork for the view this works
   


nicely, but:
   


For an application built with wicket this does not work, I get e.g. an
URL like:

http://my.domain.com/my-app;jsessionid=CF5B5B15DAA865DB9920B71CF
   


6E28496?wicket:interface=:1::
 


and apache giving me error 404.

Any ideas? Any help appreciated!

Regards,
Chris



---
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=lnkkid=120709bid=263057dat=121642
 


http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 


___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
 


mailto: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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


RE: [Wicket-user] Anyone has a master-detail form example?

2006-05-21 Thread Florin Gheorghies
Eelco,

Thanks for the answer. Need to know how to deal with nested model objects
(the address property) with forms.

Thanks.




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eelco
Hillenius
Sent: Sunday, May 21, 2006 2:32 AM
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] Anyone has a master-detail form example?

What is your question exactly? Do you want to know how to deal with
nested model objects (the address property), do you want to be able to
'batch edit' multiple customers (use a ListView, with property
replaceItems == false) or do you want to have a detail form for your
address (use either a new page for this a la the cdapp example of
wicket-contrib-examples, or use panel replacements).

Eelco


On 5/20/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Customer has address and both customer name as well as the address need to
be
 edited in one form. I found examples with nested components such as lists,
but
 I cannot figure out how to get this right. Any ideas? It seems such as
basic
 use case I'm surprised there's no example on the site.

 Thanks.



 ---
 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=lnkkid=120709bid=263057dat=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=kkid0709bid3057dat1642
___
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=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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

2006-05-21 Thread Eelco Hillenius

On 5/20/06, Johan Compagner [EMAIL PROTECTED] wrote:

we did communicate this... See Martijns mails and my replies on it over
branching..



Ok, my email was explicitly about it though, AND additionally to
wicket-user. Doesn't matter, it is communicated now for sure :)


And if develop now something to get it into production in a few months you
should stick to 1.2
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 and that is no behaviour
change.. So that shouldn't affect at all.
as far as i can see now there is only one big code change: Converters that
would affect the compile of code.


Well, even the Java 5 stuff breaks code, and as we're also just half
way implementing that, I suspect there will be a lot of bugs in it
currently. And wicket-extensions and wicket-examples don't even
compile currently. But that's hopefully fixed in a couple of days?


For the rest only the default change of another kind of pagemap/session
store is what needs to be tested
but there are people that already tested that when it was in a branch (the
clientsidestate branch)


Also, I'd like to get rid of the pre-registration of package
resources. And maybe backport that if that is done.

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=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


RE: [Wicket-user] Wicket behind apache, using ProxyPass?

2006-05-21 Thread David Leangen

As far as I know, only these should be necessary:

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_html_module modules/mod_proxy_html.so

But I could be wrong...


Cheers,
Dave




 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Chris M
 Sent: 21 May 2006 20:39
 To: wicket-user@lists.sourceforge.net
 Subject: Re: [Wicket-user] Wicket behind apache, using ProxyPass?


 Dave,

 thanks for the slash hint, but it did not help. Maybe you are using
 some other config directives for apache to get it running?

 I am now successfully using mod_jk as suggested by Aaron. Thanks for
 this hint!

 Chris

 David Leangen wrote:

 I also use Wicket behind a firewall and use ProxyPass.
 
 Personally, I've never had any problems. I use this type of config on the
 firewall machine:
 
 
   ProxyPass /contextRoot/ http://localserver:8080/contextRoot/
   ProxyPassReverse /contextRoot/ http://localserver:8080/contextRoot/
 
 
 Maybe the missing ending slash is the problem?
 
 
 Cheers,
 Dave
 
 
 
 
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Chris M
 Sent: 20 May 2006 18:15
 To: wicket-user@lists.sourceforge.net
 Subject: Re: [Wicket-user] Wicket behind apache, using ProxyPass?
 
 
 Thanks, sounds like a better fit to what I need.
 
 Aaron Hiniker wrote:
 
 
 
 I usually use mod_jk for apache + tomcat.. you may try that if you
 can't get this to work
 
 
 On Sat, 2006-05-20 at 10:46 +0200, Chris M wrote:
 
 
 
 The following setup I'd like to get up and running:
 
 - apache 2 listening on port 80, serving some static pages to
 
 
 the internet
 
 
 - tomcat (running on port 8080), serving applications where some of
 which (but not all) are intended to be used via the internet as well.
 - in order to not have to open any other port than port 80, apache is
 configured via ProxyPass (see
 http://httpd.apache.org/docs/2.0/mod/mod_proxy.html) to forward
 
 
 requests
 
 
 to tomcat like this:
 
 ProxyPass /my-app http://my.domain.com:8080/my-app
 ProxyPassReverse /my-app http://my.domain.com:8080/my-app
 
 For an application built with webwork for the view this works
 
 
 nicely, but:
 
 
 For an application built with wicket this does not work, I get e.g. an
 URL like:
 
 http://my.domain.com/my-app;jsessionid=CF5B5B15DAA865DB9920B71CF
 
 
 6E28496?wicket:interface=:1::
 
 
 and apache giving me error 404.
 
 Any ideas? Any help appreciated!
 
 Regards,
 Chris
 
 
 
 ---
 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=lnkkid=120709bid=263057d
at=121642


http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642


___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net


mailto: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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=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 

[Wicket-user] write an entire tag?

2006-05-21 Thread Vincent Jenks

I'm having an issue trying to display things a certain way.  I want to
display 3 thumbnails per-row and wrap on the third.  In the HTML this
is made up of a table tag w/ a single cell.  The thumbnails are
wrapped in their own table so it's something like this:

table wicket:id=masterListView
 tr
   td
 !-- want this to happen 3x then break! --
 table wicket:id=thumbnailListView
   tr
 tdimg src=# //td
 tddescription.../td
   /tr
 /table
   /td
 /tr
/table

Could I maybe print a br / tag after the third thumbnail table?
Can someone suggest a better approach?  I thought if I put a static
pixel width on the master table they would wrap automatically...but
they don't and the table stretches indefinitely.


---
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=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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

2006-05-21 Thread Igor Vaynberg
why not use a gridview from extensions? it will do the wrapping for you.-IgorOn 5/21/06, Vincent Jenks 
[EMAIL PROTECTED] wrote:I'm having an issue trying to display things a certain way.I want to
display 3 thumbnails per-row and wrap on the third.In the HTML thisis made up of a table tag w/ a single cell.The thumbnails arewrapped in their own table so it's something like this:table wicket:id=masterListView
trtd!-- want this to happen 3x then break! --table wicket:id=thumbnailListViewtrtdimg src="" //td
tddescription.../td/tr/table/td/tr/tableCould I maybe print a br / tag after the third thumbnail table?
Can someone suggest a better approach?I thought if I put a staticpixel width on the master table they would wrap automatically...butthey don't and the table stretches indefinitely.---
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 easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



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

2006-05-21 Thread Vincent Jenks

I guess I've avoided anything but ListView because the other
Grid/layout table controls are more complicated and I'm in a time
crunch.  I can pass a List into a ListView but I have to write extra
glue-code to use the others in extensionsand I'm just not familiar
w/ them.

Is it the public Iterator iterator(int arg0, int arg1) method that
provides the data in the overridden IDataProvider class?  I guess it's
not obvious or intuitive to me how you get data *into* the GridView.

I need to pass a object as a parameter into this data prodivder since
the master table determines what is shown in the child table.

On 5/21/06, Igor Vaynberg [EMAIL PROTECTED] wrote:

why not use a gridview from extensions? it will do the wrapping for you.
-Igor



On 5/21/06, Vincent Jenks  [EMAIL PROTECTED] wrote:

I'm having an issue trying to display things a certain way.  I want to
display 3 thumbnails per-row and wrap on the third.  In the HTML this
is made up of a table tag w/ a single cell.  The thumbnails are
wrapped in their own table so it's something like this:

table wicket:id=masterListView
  tr
td
  !-- want this to happen 3x then break! --
  table wicket:id=thumbnailListView
tr
  tdimg src=# //td
  tddescription.../td
/tr
  /table
/td
  /tr
/table

Could I maybe print a br / tag after the third thumbnail table?
Can someone suggest a better approach?  I thought if I put a static
pixel width on the master table they would wrap automatically...but
they don't and the table stretches indefinitely.


---
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?cmdlnkkid0709bid3057dat1642
___
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=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user