Re: [Wicket-user] Subversion available for test

2006-02-24 Thread Mark Derricutt
On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote: 
Please try to download the wicket sources from SVN, try a branch or atag as well. Report your experiences back to the mailinglists so thatwe can decide whether or not we should move our development tosubversion.
Where abouts is the svn repo? Is this something new that source forge is offering or elsewhere? -- i like my video games - mamma said they are gonna melt my brainsi like my video games - i don't care what daddy said; they're my reality
- henning pauly


[Wicket-user] java.lang.NoClassDefFoundError after deployment

2006-02-24 Thread Thomas Küchenthal

Dear all,

I have developed a Wicket-Application (wicket 1.1)on my Windows XP 
machine. In some Pages (Pages for editing data), I used the 
ImageButton.class and Image.class within the Form. Everything went fine.


But now, after I deployed the application on the server, all Pages that 
have editing functionality are causing the following NoClassDefFound 
Error.


(I'm unsing Java 1.4.2  Tomcat 5.0.28, same as on the Windows machine)


Could it be, that the getLocalGraphicsEnvironment method is causing 
the error because there is no X-Server running on the machine?


Thanks in advance
thomas



java.lang.NoClassDefFoundError
java.lang.Class.forName0(Native Method)
java.lang.Class.forName(Class.java:141)

java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:62)
java.awt.Font.initializeFont(Font.java:308)
java.awt.Font.init(Font.java:344)

wicket.markup.html.image.resource.DefaultButtonImageResource.init(DefaultButtonImageResource.java:55)

wicket.markup.html.image.resource.DefaultButtonImageResourceFactory.newResource(DefaultButtonImageResourceFactory.java:46)

wicket.markup.html.image.resource.LocalizedImageResource.newImage(LocalizedImageResource.java:368)

wicket.markup.html.image.resource.LocalizedImageResource.setSrcAttribute(LocalizedImageResource.java:255)
wicket.markup.html.form.ImageButton.onComponentTag(ImageButton.java:118)
wicket.Component.renderComponent(Component.java:1866)

wicket.markup.html.WebMarkupContainer.onRender(WebMarkupContainer.java:77)
wicket.Component.render(Component.java:1163)
wicket.MarkupContainer.renderNext(MarkupContainer.java:1136)
wicket.MarkupContainer.renderComponentTagBody(MarkupContainer.java:811)
wicket.MarkupContainer.onComponentTagBody(MarkupContainer.java:753)
wicket.Component.renderComponent(Component.java:1888)

wicket.markup.html.WebMarkupContainer.onRender(WebMarkupContainer.java:77)
wicket.markup.html.form.Form.onRender(Form.java:517)
wicket.Component.render(Component.java:1163)

wicket.markup.html.BodyOnLoadContainer.resolve(BodyOnLoadContainer.java:106)
wicket.MarkupContainer.renderNext(MarkupContainer.java:1159)
wicket.MarkupContainer.renderComponentTagBody(MarkupContainer.java:811)
wicket.MarkupContainer.onComponentTagBody(MarkupContainer.java:753)
wicket.Component.renderComponent(Component.java:1888)

wicket.markup.html.WebMarkupContainer.onRender(WebMarkupContainer.java:77)
wicket.Component.render(Component.java:1163)
wicket.MarkupContainer.autoAdd(MarkupContainer.java:170)

wicket.markup.html.BodyOnLoadResolver.resolve(BodyOnLoadResolver.java:60)
wicket.MarkupContainer.renderNext(MarkupContainer.java:1146)
wicket.MarkupContainer.renderAll(MarkupContainer.java:779)
wicket.Page.onRender(Page.java:788)
wicket.Component.render(Component.java:1163)
wicket.Page.doRender(Page.java:251)
wicket.RequestCycle.respond(RequestCycle.java:948)
wicket.RequestCycle.request(RequestCycle.java:411)
wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:208)
javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)




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


Re: [Wicket-user] Subversion available for test

2006-02-24 Thread Martijn Dashorst
I shouldn't post these messages right after waking up and before
having a coffee first.

Here's the sourceforge subversion page for wicket:
http://sourceforge.net/svn/?group_id=119783

I think that you can connect to subversion using:
https://svn.sourceforge.net/svnroot/wicket

I have enabled subversion developer access for all committers. PLEASE
NOTE THAT ALL CHANGES TO SUBVERSION WILL BE DISCARDED if we decide to
move to subversion.

Martijn

On 2/24/06, Mark Derricutt [EMAIL PROTECTED] wrote:
 On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:

  Please try to download the wicket sources from SVN, try a branch or a
  tag as well. Report your experiences back to the mailinglists so that
  we can decide whether or not we should move our development to
  subversion.

 Where abouts is the svn repo?  Is this something new that source forge is
 offering or elsewhere?


 --
 i like my video games - mamma said they are gonna melt my brains
 i like my video games - i don't care what daddy said; they're my reality
   - henning pauly


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


Re: [Wicket-user] wicket and ognl

2006-02-24 Thread Matej Knopp
20%? Maybe on simple properties, but I've been using ognl compound 
property model for list items, and with 20 list items on certain page 
the rendering took almost 300 milliseconds. Replacing it with new 
implementation the page was rendered in 30-50 milliseconds.


So in some cases, the ognl could be a real bottleneck. Mostly i think 
because the expression needs to be compiled every time.


-Matej

Eelco Hillenius wrote:

Yes. Or rather a limited subset of the functionality. When profiling
Wicket we (Johan) found out that OGNL had a much higher impact on the
performance than it should have had - from the top of my head, I think
it took about 20% of processing. For the sake of performance and
clarity we only implemented a subset of what OGNL does.

Eelco

On 2/23/06, Nick Heudecker [EMAIL PROTECTED] wrote:

The Wicket team wrote their own implementation.


On 2/23/06, karthik Guru [EMAIL PROTECTED] wrote:

I remember reading somewhere in the list that wicket does not use ognl
any longer. Is this true? If yes,  how is this being handled now ?

-- karthik --


---
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?cmdlnkkid0944bid$1720dat1642

___
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=kkid0944bid$1720dat1642
___
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=lnkkid=110944bid=241720dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Subversion available for test

2006-02-24 Thread Martijn Dashorst
Hmm...

I looked at the repository, and the last mutation dates are from 4 weeks ago.

Martijn

On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
 I shouldn't post these messages right after waking up and before
 having a coffee first.

 Here's the sourceforge subversion page for wicket:
 http://sourceforge.net/svn/?group_id=119783

 I think that you can connect to subversion using:
 https://svn.sourceforge.net/svnroot/wicket

 I have enabled subversion developer access for all committers. PLEASE
 NOTE THAT ALL CHANGES TO SUBVERSION WILL BE DISCARDED if we decide to
 move to subversion.

 Martijn

 On 2/24/06, Mark Derricutt [EMAIL PROTECTED] wrote:
  On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
 
   Please try to download the wicket sources from SVN, try a branch or a
   tag as well. Report your experiences back to the mailinglists so that
   we can decide whether or not we should move our development to
   subversion.
 
  Where abouts is the svn repo?  Is this something new that source forge is
  offering or elsewhere?
 
 
  --
  i like my video games - mamma said they are gonna melt my brains
  i like my video games - i don't care what daddy said; they're my reality
- henning pauly


 --
 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



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


Re: [Wicket-user] Subversion available for test

2006-02-24 Thread Martijn Dashorst
I added notification to the developer list as a temporary measure. IMO
autocvs mailing list should not be spammed with messages that aren't
part of the normal development cycle.

If we move to subversion, we can easily change the destination of the
messages. I expect low volume from the subversion repo.

Martijn

On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
 Hmm...

 I looked at the repository, and the last mutation dates are from 4 weeks ago.

 Martijn

 On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
  I shouldn't post these messages right after waking up and before
  having a coffee first.
 
  Here's the sourceforge subversion page for wicket:
  http://sourceforge.net/svn/?group_id=119783
 
  I think that you can connect to subversion using:
  https://svn.sourceforge.net/svnroot/wicket
 
  I have enabled subversion developer access for all committers. PLEASE
  NOTE THAT ALL CHANGES TO SUBVERSION WILL BE DISCARDED if we decide to
  move to subversion.
 
  Martijn
 
  On 2/24/06, Mark Derricutt [EMAIL PROTECTED] wrote:
   On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
  
Please try to download the wicket sources from SVN, try a branch or a
tag as well. Report your experiences back to the mailinglists so that
we can decide whether or not we should move our development to
subversion.
  
   Where abouts is the svn repo?  Is this something new that source forge is
   offering or elsewhere?
  
  
   --
   i like my video games - mamma said they are gonna melt my brains
   i like my video games - i don't care what daddy said; they're my reality
 - henning pauly
 
 
  --
  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
 


 --
 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



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


Re: [Wicket-user] java.lang.NoClassDefFoundError after deployment

2006-02-24 Thread Dirk Markert
Hi Thomas,

I think your assumption is right. Youhave to run java headless or install xvfb. 

Dirk
2006/2/24, Thomas Küchenthal [EMAIL PROTECTED]:
Dear all,I have developed a Wicket-Application (wicket 1.1)on my Windows XPmachine. In some Pages (Pages for editing data), I used the
ImageButton.class and Image.class within the Form. Everything went fine.But now, after I deployed the application on the server, all Pages thathave editing functionality are causing the following NoClassDefFound
Error.(I'm unsing Java 1.4.2  Tomcat 5.0.28, same as on the Windows machine)Could it be, that the getLocalGraphicsEnvironment method is causingthe error because there is no X-Server running on the machine?
Thanks in advancethomasjava.lang.NoClassDefFoundError java.lang.Class.forName0(Native Method) java.lang.Class.forName(Class.java:141) java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment
(GraphicsEnvironment.java:62) java.awt.Font.initializeFont(Font.java:308) java.awt.Font.init(Font.java:344) wicket.markup.html.image.resource.DefaultButtonImageResource.init(DefaultButtonImageResource.java
:55) wicket.markup.html.image.resource.DefaultButtonImageResourceFactory.newResource(DefaultButtonImageResourceFactory.java:46) wicket.markup.html.image.resource.LocalizedImageResource.newImage(LocalizedImageResource.java
:368) wicket.markup.html.image.resource.LocalizedImageResource.setSrcAttribute(LocalizedImageResource.java:255) wicket.markup.html.form.ImageButton.onComponentTag(ImageButton.java:118) wicket.Component.renderComponent
(Component.java:1866) wicket.markup.html.WebMarkupContainer.onRender(WebMarkupContainer.java:77) wicket.Component.render(Component.java:1163) wicket.MarkupContainer.renderNext(MarkupContainer.java
:1136) wicket.MarkupContainer.renderComponentTagBody(MarkupContainer.java:811) wicket.MarkupContainer.onComponentTagBody(MarkupContainer.java:753) wicket.Component.renderComponent(Component.java
:1888) wicket.markup.html.WebMarkupContainer.onRender(WebMarkupContainer.java:77) wicket.markup.html.form.Form.onRender(Form.java:517) wicket.Component.render(Component.java:1163) wicket.markup.html.BodyOnLoadContainer.resolve
(BodyOnLoadContainer.java:106) wicket.MarkupContainer.renderNext(MarkupContainer.java:1159) wicket.MarkupContainer.renderComponentTagBody(MarkupContainer.java:811) wicket.MarkupContainer.onComponentTagBody
(MarkupContainer.java:753) wicket.Component.renderComponent(Component.java:1888) wicket.markup.html.WebMarkupContainer.onRender(WebMarkupContainer.java:77) wicket.Component.render(Component.java
:1163) wicket.MarkupContainer.autoAdd(MarkupContainer.java:170) wicket.markup.html.BodyOnLoadResolver.resolve(BodyOnLoadResolver.java:60) wicket.MarkupContainer.renderNext(MarkupContainer.java
:1146) wicket.MarkupContainer.renderAll(MarkupContainer.java:779) wicket.Page.onRender(Page.java:788) wicket.Component.render(Component.java:1163) wicket.Page.doRender(Page.java:251)
 wicket.RequestCycle.respond(RequestCycle.java:948) wicket.RequestCycle.request(RequestCycle.java:411) wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:208) javax.servlet.http.HttpServlet.service
(HttpServlet.java:689) javax.servlet.http.HttpServlet.service(HttpServlet.java:802)---This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcastand join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] New to Wicket.

2006-02-24 Thread Singh, Varun








Hi All,

Im new to Wicket and Im put into developing a
web-application using Wicket. I tried searching various examples, but couldnt
find any help regarding deploying the application on Tomcat. Ive made a
small .war file in accordance to the examples given at the Wicket website but Im
not able to get it working with Tomcat. 



Can someone please point me to the point-by-point procedure
of deploying a Wicket Application on Tomcat?



Cheerio,

- Varun Singh








Re: [Wicket-user] New to Wicket.

2006-02-24 Thread Dipu



Can you please check what is tomcat complaining 
about from the log files. 
I dont see any problem deploying the weicket 
application in tomcat. As i develop my application in jetty and deploy in tomcat 
after building a war.

Cheers 
Dipu



  - Original Message - 
  From: 
  Singh, Varun 
  To: wicket-user@lists.sourceforge.net 
  
  Sent: Friday, February 24, 2006 10:43 
  AM
  Subject: [Wicket-user] New to 
  Wicket.
  
  
  Hi 
  All,
  I’m new to Wicket and I’m put into 
  developing a web-application using Wicket. I tried searching various examples, 
  but couldn’t find any help regarding deploying the application on Tomcat. I’ve 
  made a small .war file in accordance to the examples given at the Wicket 
  website but I’m not able to get it working with Tomcat. 
  
  
  Can someone please point me to the 
  point-by-point procedure of deploying a Wicket Application on 
  Tomcat?
  
  Cheerio,
  - Varun 
  Singh


Re: [Wicket-user] New to Wicket.

2006-02-24 Thread Martijn Dashorst
How do you create your war file?

What doesn't work when you deploy your war file in tomcat?

have you downloaded the wicket-examples, and deployed the included war
file into your tomcat installation?

Did that work?

Have you downloaded the wicket-quickstart distribution, created a war
file (see the http://wicket.sf.net/wicket-quickstart website for docs
on working with the quickstart distribution), and deployed that into
your tomcat installation?

Martijn


On 2/24/06, Singh, Varun [EMAIL PROTECTED] wrote:



 Hi All,

 I'm new to Wicket and I'm put into developing a web-application using
 Wicket. I tried searching various examples, but couldn't find any help
 regarding deploying the application on Tomcat. I've made a small .war file
 in accordance to the examples given at the Wicket website but I'm not able
 to get it working with Tomcat.



 Can someone please point me to the point-by-point procedure of deploying a
 Wicket Application on Tomcat?



 Cheerio,

 - Varun Singh


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


Re: [Wicket-user] New to Wicket

2006-02-24 Thread Singh, Varun








Hi,

I've tried deploying the wicket-examples war file. Tomcat expands the WAR
file into proper directory structure but I couldn't access it through my
browser. The error given was - 

HTTP Status 404 - /BizCalendar/



type Status report



message / BizCalendar /



description The requested resource (/BizCalendar/) is
not available.

Apache Tomcat/5.5.15



I checked the logs and it seems Tomcat cant get the wicket libs.
The error in the log file read  

Feb 24, 2006 5:31:11 PM
org.apache.catalina.core.ApplicationContext log

INFO: Marking servlet BizCalendarApplication as
unavailable

Feb 24, 2006 5:31:11 PM
org.apache.catalina.core.ApplicationContext log

SEVERE: Error loading WebappClassLoader

 delegate: false

 repositories:

-- Parent Classloader:

[EMAIL PROTECTED]

wicket.protocol.http.WicketServlet

java.lang.ClassNotFoundException:
wicket.protocol.http.WicketServlet



Ive copied the wicket-1.1.1.jar in
TOMCAT/shared/classes directory  added it to classpath.



Please to help,

Cheers.

-
Varun







Message: 3

From: Dipu [EMAIL PROTECTED]

To: wicket-user@lists.sourceforge.net

Subject: Re: [Wicket-user] New to Wicket.

Date: Fri, 24 Feb 2006 10:51:59 -

Reply-To: wicket-user@lists.sourceforge.net



This is a multi-part message in MIME format.



--=_NextPart_000_00D0_01C63930.565BD470

Content-Type: text/plain;

 charset=iso-8859-1

Content-Transfer-Encoding: quoted-printable



Can you please check what is tomcat complaining about from the log =

files.=20

I dont see any problem deploying the weicket application in tomcat. As
i =

develop my application in jetty and deploy in tomcat after building a =

war.



Cheers=20

Dipu





 - Original Message -=20

 From: Singh, Varun=20

 To: [EMAIL PROTECTED]

 Sent: Friday, February 24, 2006 10:43 AM

 Subject: [Wicket-user] New to Wicket.





 Hi All,



 I'm new to Wicket and I'm put into developing a web-application
using =

Wicket. I tried searching various examples, but couldn't find any help
=

regarding deploying the application on Tomcat. I've made a small .war =

file in accordance to the examples given at the Wicket website but I'm
=

not able to get it working with Tomcat.=20



 =20



 Can someone please point me to the point-by-point procedure of =

deploying a Wicket Application on Tomcat?



 =20



 Cheerio,



 - Varun Singh



--__--__--



Message: 4

Date: Fri, 24 Feb 2006 11:56:28 +0100

From: Martijn Dashorst [EMAIL PROTECTED]

To: wicket-user@lists.sourceforge.net

Subject: Re: [Wicket-user] New to Wicket.

Reply-To: wicket-user@lists.sourceforge.net



How do you create your war file?



What doesn't work when you deploy your war file in tomcat?



have you downloaded the wicket-examples, and deployed the included war

file into your tomcat installation?



Did that work?



Have you downloaded the wicket-quickstart distribution, created a war

file (see the http://wicket.sf.net/wicket-quickstart website for docs

on working with the quickstart distribution), and deployed that into

your tomcat installation?



Martijn





On 2/24/06, Singh, Varun [EMAIL PROTECTED] wrote:







 Hi All,



 I'm new to Wicket and I'm put into developing a web-application
using

 Wicket. I tried searching various examples, but couldn't find any
help

 regarding deploying the application on Tomcat. I've made a small
.war fil=

e

 in accordance to the examples given at the Wicket website but I'm
not abl=

e

 to get it working with Tomcat.







 Can someone please point me to the point-by-point procedure of
deploying =

a

 Wicket Application on Tomcat?







 Cheerio,



 - Varun Singh





--

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





--__--__--










Re: [Wicket-user] New to Wicket

2006-02-24 Thread Dipu



I am using theolder version of wicketm 
mine is wicket 1.1b4. 
I have not come accroos the BizCalendar object 
before, can please check if the jar file for the Wicket Extension is there in 
the lib folder.

Cheers 
Dipu

  - Original Message - 
  From: 
  Singh, Varun 
  To: wicket-user@lists.sourceforge.net 
  
  Sent: Friday, February 24, 2006 12:19 
  PM
  Subject: Re: [Wicket-user] New to 
  Wicket
  
  
  Hi,
  I've tried deploying the wicket-examples war file. 
  Tomcat expands the WAR file into proper directory structure but I couldn't 
  access it through my browser. The error given was - 
  
  HTTP Status 404 - 
  /BizCalendar/
  
  type Status 
  report
  
  message / BizCalendar 
  /
  
  description The requested resource 
  (/BizCalendar/) is not available.
  Apache 
  Tomcat/5.5.15
  
  I checked the logs and it seems Tomcat can’t get the 
  wicket libs. The error in the log file read – 
  Feb 24, 2006 5:31:11 PM 
  org.apache.catalina.core.ApplicationContext log
  INFO: Marking servlet 
  BizCalendarApplication as unavailable
  Feb 24, 2006 5:31:11 PM 
  org.apache.catalina.core.ApplicationContext log
  SEVERE: Error loading 
  WebappClassLoader
   delegate: 
  false
   
  repositories:
  -- Parent 
  Classloader:
  [EMAIL PROTECTED]
  wicket.protocol.http.WicketServlet
  java.lang.ClassNotFoundException: 
  wicket.protocol.http.WicketServlet
  
  I’ve copied the wicket-1.1.1.jar in 
  TOMCAT/shared/classes directory  added it to 
  classpath.
  
  Please to 
  help,
  Cheers.
  - 
  Varun
  
  
  
  Message: 3
  From: "Dipu" 
  [EMAIL PROTECTED]
  To: 
  wicket-user@lists.sourceforge.net
  Subject: Re: [Wicket-user] New to 
  Wicket.
  Date: Fri, 24 Feb 2006 10:51:59 
  -
  Reply-To: 
  wicket-user@lists.sourceforge.net
  
  This is a multi-part message in MIME 
  format.
  
  --=_NextPart_000_00D0_01C63930.565BD470
  Content-Type: text/plain;
   
  charset="iso-8859-1"
  Content-Transfer-Encoding: 
  quoted-printable
  
  Can you please check what is tomcat complaining about 
  from the log =
  files.=20
  I dont see any problem deploying the weicket 
  application in tomcat. As i =
  develop my application in jetty and deploy in tomcat 
  after building a =
  war.
  
  Cheers=20
  Dipu
  
  
   - Original Message 
  -=20
   From: Singh, 
  Varun=20
   To: 
  [EMAIL PROTECTED]
   Sent: Friday, February 24, 2006 10:43 
  AM
   Subject: [Wicket-user] New to 
  Wicket.
  
  
   Hi All,
  
   I'm new to Wicket and I'm put into developing a 
  web-application using =
  Wicket. I tried searching various examples, but 
  couldn't find any help =
  regarding deploying the application on Tomcat. I've 
  made a small .war =
  file in accordance to the examples given at the Wicket 
  website but I'm =
  not able to get it working with 
  Tomcat.=20
  
   =20
  
   Can someone please point me to the 
  point-by-point procedure of =
  deploying a Wicket Application on 
  Tomcat?
  
   =20
  
   Cheerio,
  
   - Varun Singh
  
  --__--__--
  
  Message: 4
  Date: Fri, 24 Feb 2006 11:56:28 
  +0100
  From: "Martijn Dashorst" 
  [EMAIL PROTECTED]
  To: 
  wicket-user@lists.sourceforge.net
  Subject: Re: [Wicket-user] New to 
  Wicket.
  Reply-To: 
  wicket-user@lists.sourceforge.net
  
  How do you create your war 
  file?
  
  What doesn't work when you deploy your war file in 
  tomcat?
  
  have you downloaded the wicket-examples, and deployed 
  the included war
  file into your tomcat 
  installation?
  
  Did that work?
  
  Have you downloaded the wicket-quickstart 
  distribution, created a war
  file (see the http://wicket.sf.net/wicket-quickstart 
  website for docs
  on working with the quickstart distribution), and 
  deployed that into
  your tomcat installation?
  
  Martijn
  
  
  On 2/24/06, Singh, Varun 
  [EMAIL PROTECTED] wrote:
  
  
  
   Hi All,
  
   I'm new to Wicket and I'm put into developing a 
  web-application using
   Wicket. I tried searching various examples, but 
  couldn't find any help
   regarding deploying the application on Tomcat. 
  I've made a small .war fil=
  e
   in accordance to the examples given at the Wicket 
  website but I'm not abl=
  e
   to get it working with 
  Tomcat.
  
  
  
   Can someone please point me to the point-by-point 
  procedure of deploying =
  a
   Wicket Application on 
  Tomcat?
  
  
  
   Cheerio,
  
   - Varun Singh
  
  
  --
  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
  
  
  --__--__--
  


Re: [Wicket-user] New to Wicket

2006-02-24 Thread Singh, Varun
Hi Dipu,
BizCalendar is my application. But I've tried deploying the
wicket-examples.war file too and when I try to access their URLs
(/guestbook, /template etc.) I get the same error. I'm not sure where is
the error happening.

Thanks,
- varun

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, February 24, 2006 6:07 PM
To: wicket-user@lists.sourceforge.net
Subject: Wicket-user digest, Vol 1 #1792 - 1 msg

Send Wicket-user mailing list submissions to
wicket-user@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/wicket-user
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than Re: Contents of Wicket-user digest...


Today's Topics:

   1. Re: New to Wicket (Dipu)

--__--__--

Message: 1
From: Dipu [EMAIL PROTECTED]
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] New to Wicket
Date: Fri, 24 Feb 2006 12:31:50 -
Reply-To: wicket-user@lists.sourceforge.net

This is a multi-part message in MIME format.

--=_NextPart_000_0104_01C6393E.48FE78B0
Content-Type: text/plain;
charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable

I am using the older version  of wicketm mine is wicket 1.1b4.=20
I have not come accroos the BizCalendar object before, can please check
=
if the jar file for the Wicket Extension is there in the lib folder.

Cheers=20
Dipu
  - Original Message -=20
  From: Singh, Varun=20
  To: [EMAIL PROTECTED]
  Sent: Friday, February 24, 2006 12:19 PM
  Subject: Re: [Wicket-user] New to Wicket


  Hi,

  I've tried deploying the wicket-examples war file. Tomcat expands the
=
WAR file into proper directory structure but I couldn't access it =
through my browser. The error given was -=20

  HTTP Status 404 - /BizCalendar/

  =20

  type Status report

  =20

  message / BizCalendar /

  =20

  description The requested resource (/BizCalendar/) is not available.

  Apache Tomcat/5.5.15

  =20

  I checked the logs and it seems Tomcat can't get the wicket libs. The
=
error in the log file read -=20

  Feb 24, 2006 5:31:11 PM org.apache.catalina.core.ApplicationContext =
log

  INFO: Marking servlet BizCalendarApplication as unavailable

  Feb 24, 2006 5:31:11 PM org.apache.catalina.core.ApplicationContext =
log

  SEVERE: Error loading WebappClassLoader

delegate: false

repositories:

  -- Parent Classloader:

  [EMAIL PROTECTED]

   wicket.protocol.http.WicketServlet

  java.lang.ClassNotFoundException: wicket.protocol.http.WicketServlet

  =20

  I've copied the wicket-1.1.1.jar in TOMCAT/shared/classes directory
=
 added it to classpath.

  =20

  Please to help,

  Cheers.

  -Varun

  =20

  =20

  =20

  Message: 3

  From: Dipu [EMAIL PROTECTED]

  To: wicket-user@lists.sourceforge.net

  Subject: Re: [Wicket-user] New to Wicket.

  Date: Fri, 24 Feb 2006 10:51:59 -

  Reply-To: wicket-user@lists.sourceforge.net

  =20

  This is a multi-part message in MIME format.

  =20

  --=3D_NextPart_000_00D0_01C63930.565BD470

  Content-Type: text/plain;

charset=3Diso-8859-1

  Content-Transfer-Encoding: quoted-printable

  =20

  Can you please check what is tomcat complaining about from the log =3D

  files.=3D20

  I dont see any problem deploying the weicket application in tomcat. As
=
i =3D

  develop my application in jetty and deploy in tomcat after building a
=
=3D

  war.

  =20

  Cheers=3D20

  Dipu

  =20

  =20

- Original Message -=3D20

From: Singh, Varun=3D20

To: [EMAIL PROTECTED]

Sent: Friday, February 24, 2006 10:43 AM

Subject: [Wicket-user] New to Wicket.

  =20

  =20

Hi All,

  =20

I'm new to Wicket and I'm put into developing a web-application =
using =3D

  Wicket. I tried searching various examples, but couldn't find any help
=
=3D

  regarding deploying the application on Tomcat. I've made a small .war
=
=3D

  file in accordance to the examples given at the Wicket website but I'm
=
=3D

  not able to get it working with Tomcat.=3D20

  =20

=3D20

  =20

Can someone please point me to the point-by-point procedure of =3D

  deploying a Wicket Application on Tomcat?

  =20

=3D20

  =20

Cheerio,

  =20

- Varun Singh

  =20

  -- __--__-- 

  =20

  Message: 4

  Date: Fri, 24 Feb 2006 11:56:28 +0100

  From: Martijn Dashorst [EMAIL PROTECTED]

  To: wicket-user@lists.sourceforge.net

  Subject: Re: [Wicket-user] New to Wicket.

  Reply-To: wicket-user@lists.sourceforge.net

  =20

  How do you create your war file?

  =20

  What doesn't work when you deploy your war file in tomcat?

  =20

  have you downloaded the wicket-examples, and deployed the included war

  file into your tomcat 

Re: [Wicket-user] Subversion available for test

2006-02-24 Thread Gwyn Evans
Hmm indeed - I just pulled the current CVS tarball  the last changes
in that are from the 24/01/2006 - There doesn't seem to be any general
issue that I could see being raised against SF, so it could be
project-specific...

/Gwyn

On 24/02/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
 Hmm...

 I looked at the repository, and the last mutation dates are from 4 weeks ago.

 Martijn

 On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
  I shouldn't post these messages right after waking up and before
  having a coffee first.
 
  Here's the sourceforge subversion page for wicket:
  http://sourceforge.net/svn/?group_id=119783
 
  I think that you can connect to subversion using:
  https://svn.sourceforge.net/svnroot/wicket
 
  I have enabled subversion developer access for all committers. PLEASE
  NOTE THAT ALL CHANGES TO SUBVERSION WILL BE DISCARDED if we decide to
  move to subversion.
 
  Martijn
 
  On 2/24/06, Mark Derricutt [EMAIL PROTECTED] wrote:
   On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
  
Please try to download the wicket sources from SVN, try a branch or a
tag as well. Report your experiences back to the mailinglists so that
we can decide whether or not we should move our development to
subversion.
  
   Where abouts is the svn repo?  Is this something new that source forge is
   offering or elsewhere?
  
  
   --
   i like my video games - mamma said they are gonna melt my brains
   i like my video games - i don't care what daddy said; they're my reality
 - henning pauly
 
 
  --
  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
 


 --
 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?cmdlnkkid0944bid$1720dat1642
 ___
 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=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] java.lang.NoClassDefFoundError after deployment

2006-02-24 Thread Thomas Küchenthal

headless=true works perfect.

Great help,
Thanks!

Dirk Markert wrote:

Hi Thomas,
 
I think your assumption is right. You have to run java headless or 
install xvfb.
 
Dirk


 
2006/2/24, Thomas Küchenthal [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]:


Dear all,

I have developed a Wicket-Application (wicket 1.1)on my Windows XP
machine. In some Pages (Pages for editing data), I used the
ImageButton.class and Image.class within the Form. Everything
went fine.

But now, after I deployed the application on the server, all Pages that
have editing functionality are causing the following NoClassDefFound
Error.

(I'm unsing Java 1.4.2  Tomcat 5.0.28, same as on the Windows machine)


Could it be, that the getLocalGraphicsEnvironment method is causing
the error because there is no X-Server running on the machine?

Thanks in advance
thomas



java.lang.NoClassDefFoundError
   java.lang.Class.forName0(Native Method)
   java.lang.Class.forName(Class.java:141)
   java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment
(GraphicsEnvironment.java:62)
   java.awt.Font.initializeFont(Font.java:308)
   java.awt.Font.init(Font.java:344)
  
wicket.markup.html.image.resource.DefaultButtonImageResource.init(DefaultButtonImageResource.java

:55)
  
wicket.markup.html.image.resource.DefaultButtonImageResourceFactory.newResource(DefaultButtonImageResourceFactory.java:46)
  
wicket.markup.html.image.resource.LocalizedImageResource.newImage(LocalizedImageResource.java

:368)
  
wicket.markup.html.image.resource.LocalizedImageResource.setSrcAttribute(LocalizedImageResource.java:255)
  
wicket.markup.html.form.ImageButton.onComponentTag(ImageButton.java:118)

   wicket.Component.renderComponent (Component.java:1866)
  
wicket.markup.html.WebMarkupContainer.onRender(WebMarkupContainer.java:77)

   wicket.Component.render(Component.java:1163)
   wicket.MarkupContainer.renderNext(MarkupContainer.java :1136)
  
wicket.MarkupContainer.renderComponentTagBody(MarkupContainer.java:811)
  
wicket.MarkupContainer.onComponentTagBody(MarkupContainer.java:753)

   wicket.Component.renderComponent(Component.java :1888)
  
wicket.markup.html.WebMarkupContainer.onRender(WebMarkupContainer.java:77)

   wicket.markup.html.form.Form.onRender(Form.java:517)
   wicket.Component.render(Component.java:1163)
   wicket.markup.html.BodyOnLoadContainer.resolve
(BodyOnLoadContainer.java:106)
   wicket.MarkupContainer.renderNext(MarkupContainer.java:1159)
  
wicket.MarkupContainer.renderComponentTagBody(MarkupContainer.java:811)

   wicket.MarkupContainer.onComponentTagBody
(MarkupContainer.java:753)
   wicket.Component.renderComponent(Component.java:1888)
  
wicket.markup.html.WebMarkupContainer.onRender(WebMarkupContainer.java:77)

   wicket.Component.render(Component.java :1163)
   wicket.MarkupContainer.autoAdd(MarkupContainer.java:170)
  
wicket.markup.html.BodyOnLoadResolver.resolve(BodyOnLoadResolver.java:60)

   wicket.MarkupContainer.renderNext(MarkupContainer.java :1146)
   wicket.MarkupContainer.renderAll(MarkupContainer.java:779)
   wicket.Page.onRender(Page.java:788)
   wicket.Component.render(Component.java:1163)
   wicket.Page.doRender(Page.java:251)
   wicket.RequestCycle.respond(RequestCycle.java:948)
   wicket.RequestCycle.request(RequestCycle.java:411)
   wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:208)
   javax.servlet.http.HttpServlet.service (HttpServlet.java:689)
   javax.servlet.http.HttpServlet.service(HttpServlet.java:802)




---
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=lnkkid=110944bid=241720dat=121642
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
mailto: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=lnkkid=110944bid=241720dat=121642

Re: [Wicket-user] Too many open files problem

2006-02-24 Thread Martijn Dashorst
Hmm this discussion has not ended in a good way.

The problem isn't the way we configure things. Eelco asked whether or
not we could check and drill down what is causing this.

At topicus we run into this problem as well (and for the well
informed: KJB also voted on the sun bug :)

Martijn

On 2/20/06, Johan Compagner [EMAIL PROTECTED] wrote:
 the polling thread is not started in configure.
 It is started then the first markup is being loaded.

 So you can override the polling frequenty in youre init method again if you
 want to



  On 2/19/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
  We can't start the resource polling thread /after/ the init method? Or
  am I way out of the box here?
 
  Martijn
 
  On 2/19/06, Igor Vaynberg [EMAIL PROTECTED]  wrote:
   fine, lets just have an overriddable String getDeploymentMode() on the
 app.
   that will solve the current issue and allow the user to fetch that value
   from anywhere. by default we can try a sys prop and servlet init
   param/context param whatever.
  
   does that sound ok?
  
   -Igor
  
  
  
   On 2/19/06, Martijn Dashorst [EMAIL PROTECTED]  wrote:
   
Hmm,
   
The setting could also come from a JNDI lookup, or some other
programmatic way. Perhaps we should take that into account as well.
   
Martijn
   
   
On 2/19/06, Igor Vaynberg [EMAIL PROTECTED] wrote:
 because in this situation it makes sense to have this particular
 setting
 configued externally outside of code so that you can deploy your app
 and
   not
 have to recompile it just because now you are running in production!

 -Igor


 On 2/19/06, Gili  [EMAIL PROTECTED] wrote:
 
  I'd expect to be able to stick all my configuration stuff
 in
 init().
  Why is it alright to move configure() into XML configuration and
 leave
  the rest of the settings in init()? All I'm saying is that there
   should
  be consistency.
 
  Is there no way for us to make configure() work in init()?
 I
 understand
  it is more work than simply removing configure(), but in my view
   that's
  like fixing a bug by removing the feature. Just my 2 cents...
 
  Gili
 
  Andrew Lombardi wrote:
   +1 on this.  To make the programmatic configure() work just
 seems
   like a
   lot of fluff, don't see why you'd ever need to call this during
 the
   app's lifecycle, only at the beginning.
 
 
 
 
   ---
  This SF.net email is sponsored by: Splunk Inc. Do you grep through
 log
 files
  for problems?  Stop!  Download the new AJAX search engine that
 makes
  searching your log files as easy as surfing the  web.  DOWNLOAD
   SPLUNK!
 

  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=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: Splunk Inc. Do you grep through log
   files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD
 SPLUNK!
   
  
 http://sel.as-us.falkag.net/sel?cmdlnkkid3432bid#0486dat1642
___
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: Splunk Inc. Do you grep through log
 files
  for problems?  Stop!  Download the new AJAX search engine that makes
  searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
 
 http://sel.as-us.falkag.net/sel?cmdlnkkid3432bid#0486dat1642
  ___
  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!

[Wicket-user] New to Wicket/J2EE but wants to Try Wicket?

2006-02-24 Thread Ayodeji Aladejebi
For those java/j2eebeginnerswho want to give Wicket a try and are having problems in getting the examples to work either in tomcat or jetty. We are not all Maven experts anyway.I have tried to make the examples suitable for Netbeans 
5.0 but zipping up the one i personally converted to Netbeans project. Netbeans can be downloaded at www.netbeans.org .
Download Wicket-1.2-SNAPSHOT Examples forNetbeans 5.0(zipped). Open with Netbeans 5.0 and Right Click on OpenProjects. Open it and then simply Build from Netbeans andrun the StartExample class. You wont need to configure anything or even have to worry about dependencies. 


Just my tiny contribution



thanks
Visit my blog: Ayodeji Aladejebi's Blog | http://dabar.cowblock.netCommunity: Visit Cowblock.net


Re: [Wicket-user] Subversion available for test

2006-02-24 Thread Igor Vaynberg
i cant check out trunk/wicket, subclipse dies with Attempted to beginRule: R/, does not match outer scope rule: P/wicket-trunk i can check out other https projects just fine.i am not logged in so this is an anonymous attempt.
-IgorOn 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
I'll report it to sf.net staffOn 2/24/06, Gwyn Evans [EMAIL PROTECTED] wrote: Hmm indeed - I just pulled the current CVS tarball  the last changes
 in that are from the 24/01/2006 - There doesn't seem to be any general issue that I could see being raised against SF, so it could be project-specific... /Gwyn On 24/02/06, Martijn Dashorst 
[EMAIL PROTECTED] wrote:  Hmm...   I looked at the repository, and the last mutation dates are from 4 weeks ago. 
  Martijn   On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:   I shouldn't post these messages right after waking up and before
   having a coffee first. Here's the sourceforge subversion page for wicket:   http://sourceforge.net/svn/?group_id=119783
 I think that you can connect to subversion using:   https://svn.sourceforge.net/svnroot/wicket  
   I have enabled subversion developer access for all committers. PLEASE   NOTE THAT ALL CHANGES TO SUBVERSION WILL BE DISCARDED if we decide to   move to subversion.  
   Martijn On 2/24/06, Mark Derricutt [EMAIL PROTECTED] wrote:On 2/24/06, Martijn Dashorst 
[EMAIL PROTECTED] wrote:Please try to download the wicket sources from SVN, try a branch or a tag as well. Report your experiences back to the mailinglists so that
 we can decide whether or not we should move our development to subversion.   Where abouts is the svn repo?Is this something new that source forge is
offering or elsewhere?  --i like my video games - mamma said they are gonna melt my brainsi like my video games - i don't care what daddy said; they're my reality
- henning pauly   --   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   
   --  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?cmdlnkkid0944bid$1720dat1642  ___
  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?cmdlnkkid0944bid$1720dat1642 ___ 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/dashorstWicket 1.1.1 is out: http://wicket.sourceforge.net/wicket-1.1
---This SF.Net email is sponsored by xPML, a groundbreaking scripting languagethat 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?cmdlnkkid0944bid$1720dat1642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Subversion available for test

2006-02-24 Thread Igor Vaynberg
ok, that doesnt help me in any way though.-IgorOn 2/24/06, Martijn Dashorst [EMAIL PROTECTED]
 wrote:You don't need to log in. only when committing you'll be queried for a
username/password.MartijnOn 2/24/06, Igor Vaynberg [EMAIL PROTECTED] wrote: i cant check out trunk/wicket, subclipse dies with Attempted to beginRule:
 R/, does not match outer scope rule: P/wicket-trunk i can check out other https projects just fine. i am not logged in so this is an anonymous attempt. -Igor
 On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:  I'll report it to sf.net staff 
   On 2/24/06, Gwyn Evans [EMAIL PROTECTED] wrote:   Hmm indeed - I just pulled the current CVS tarball  the last changes
   in that are from the 24/01/2006 - There doesn't seem to be any general   issue that I could see being raised against SF, so it could be   project-specific...  
   /Gwyn On 24/02/06, Martijn Dashorst  [EMAIL PROTECTED] wrote:Hmm...   
I looked at the repository, and the last mutation dates are from 4 weeks ago.   Martijn   On 2/24/06, Martijn Dashorst 
[EMAIL PROTECTED] wrote: I shouldn't post these messages right after waking up and before having a coffee first.
 Here's the sourceforge subversion page for wicket: http://sourceforge.net/svn/?group_id=119783
 I think that you can connect to subversion using: https://svn.sourceforge.net/svnroot/wicket
 I have enabled subversion developer access for all committers. PLEASE NOTE THAT ALL CHANGES TO SUBVERSION WILL BE DISCARDED if we decide
 to move to subversion. Martijn On 2/24/06, Mark Derricutt 
[EMAIL PROTECTED] wrote:  On 2/24/06, Martijn Dashorst  [EMAIL PROTECTED] wrote:Please try to download the wicket sources from SVN, try a branch
 or a   tag as well. Report your experiences back to the mailinglists so that   we can decide whether or not we should move our development to
   subversion.   Where abouts is the svn repo?Is this something new that source forge is  offering or elsewhere?
--  i like my video games - mamma said they are gonna melt my brains  i like my video games - i don't care what daddy said; they're my
 reality  - henning pauly -- 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  --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 languagethat extends applications into web and mobile media. Attend the live webcastand join the prime developer group breaking into this new coding
 territory!http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642
___Wicket-user mailing listWicket-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?cmdlnkkid0944bid$1720dat1642   ___   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?cmdlnkkid0944bid$1720dat1642  ___
  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 webcastand join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642___Wicket-user mailing listWicket-user@lists.sourceforge.net

Re: [Wicket-user] wicket and ognl

2006-02-24 Thread Eelco Hillenius
Wow. Proofs that we didn't just do it because of a not invented here syndrom.

Eelco


On 2/24/06, Matej Knopp [EMAIL PROTECTED] wrote:
 20%? Maybe on simple properties, but I've been using ognl compound
 property model for list items, and with 20 list items on certain page
 the rendering took almost 300 milliseconds. Replacing it with new
 implementation the page was rendered in 30-50 milliseconds.

 So in some cases, the ognl could be a real bottleneck. Mostly i think
 because the expression needs to be compiled every time.

 -Matej

 Eelco Hillenius wrote:
  Yes. Or rather a limited subset of the functionality. When profiling
  Wicket we (Johan) found out that OGNL had a much higher impact on the
  performance than it should have had - from the top of my head, I think
  it took about 20% of processing. For the sake of performance and
  clarity we only implemented a subset of what OGNL does.
 
  Eelco
 
  On 2/23/06, Nick Heudecker [EMAIL PROTECTED] wrote:
  The Wicket team wrote their own implementation.
 
 
  On 2/23/06, karthik Guru [EMAIL PROTECTED] wrote:
  I remember reading somewhere in the list that wicket does not use ognl
  any longer. Is this true? If yes,  how is this being handled now ?
 
  -- karthik --
 
 
  ---
  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?cmdlnkkid0944bid$1720dat1642
  ___
  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=kkid0944bid$1720dat1642
  ___
  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=lnkkid=110944bid=241720dat=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=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-24 Thread Martijn Dashorst
Hmm

If this is the case, I should update the quickstart for 1.1.1

Martijn


On 2/24/06, Nino Wael [EMAIL PROTECTED] wrote:



 Hmm the APIdoc state that the current version is 1.1.1, but the jar file to
 the quickstart project is 1.0.1, so I guess herein lies the problem, I'll
 try to rebuilt and see if it dosent fix it. Again thanks for your help, its
 much appreciated from at new comer to wicket(me).




 -Nino
  


 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf
 Of Igor Vaynberg
  Sent: Friday, February 24, 2006 5:02 PM
  To: wicket-user@lists.sourceforge.net
  Subject: Re: [Wicket-user] Listview: cannot instantiate the type



 all i can tell you isto  make sure wicket.jar is on your buildpath under
 project properties.

  -Igor





 On 2/24/06, Nino Wael  [EMAIL PROTECTED] wrote:


 Hi Igor



 Im using eclipse with myEclipse ontop, im pretty sure it should tell if
 constructors are not available. Could I have done something wrong In setting
 wicket up?



 BTW: the new propersition on coding you suggested gave me a similar error(it
 claims that wicket.markup.html.form.Radio does not exist im not able to find
 it browsing trough the packages). Looking at the documentation(apidocs)
 however it clearly states that it does. Which make be belive that Eclipse is
 setup wrongfully?



 I've followed the Quickstart tutorial and just copied the project and
 changed the naming, however I tried copying my code into the quickstart
 project, code is below.



 Am I completely of the rail here?



   public Index(final PageParameters parameters)

 {

 // TODO Add your page's components here


 wicket.markup.html.list.ListView myList;

 List maalinger
 = Arrays.asList(new String[][] { {Aktuelle forløb fordelt på
 varighed,description}, {antal forløb,description}, {Forløb pr.
 berørt,description}});

 myList
   = new
 wicket.markup.html.list.ListView(maaling2,maalinger)



 {

   public void
 populateItem(wicket.markup.html.list.ListItem item)

   {

 String[]
 myItem=(String[]) item.getModelObject();

 String radio=
 myItem[0];

 String info=
 myItem[1];



 Model
 myModel=new Model(radio);




 wicket.markup.html.form.Radio myRadio=new
 wicket.markup.html.form.Radio(d, myModel);




item.add(myRadio);


item.add(new
 Label(info,info));

 }

   };



   }



 Have a great weekend J


 -Regards Nino


  


 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf
 Of Igor Vaynberg
  Sent: Thursday, February 23, 2006 4:59 PM



  To: wicket-user@lists.sourceforge.net
  Subject: Re: [Wicket-user] Listview: cannot instantiate the type




 there is no constructor Radio(String,String)

  are you not using an IDE that can tell you which constructors are
 available?

  to fix you need to do new Radio(radio, new Model(radio));

  -Igor


 On 2/23/06, Nino Wael  [EMAIL PROTECTED] wrote:



 Can any of you see whats wrong with the code? Or can't I use the Radio class
 directly?



 Do I need to implement a similar method like populateItem for my ListView?



 -regards Nino




  


 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf
 Of Nino Wael
  Sent: Thursday, February 23, 2006 11:57 AM



  To: wicket-user@lists.sourceforge.net
  Subject: RE: [Wicket-user] Listview: cannot instantiate the type





 So Now im trying to expand my previous code however I get this message
 Radio cannot be resolved to a type. My code is below:



   public void
 populateItem(wicket.markup.html.list.ListItem item)

   {

 String[]
 myItem=(String[]) item.getModelObject();

 String radio=
 myItem[0];

 String info=
 myItem[1];



 item.add(new
 Radio(radio,radio));

 item.add(new
 Label(info,info));

 }



 And the symbiose markup

  table 

   tr wicket:id = maaling2 

  td  wicket:id = id  /

 td 

  td  input type = radio name = RadioMaaling  / td 

  td wicket:id = info  / td 

   / tr 

 / table 



 I feel that im so close to a solution that I almost can taste itJ



 -regards Nino


  


 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf
 Of Nino Wael
  Sent: Thursday, February 23, 2006 11:17 AM
  To: wicket-user@lists.sourceforge.net
  Subject: RE: [Wicket-user] Listview: cannot instantiate the type





Re: [Wicket-user] New to Wicket

2006-02-24 Thread Andrew Lombardi
you do know that you have to prepend the url with the context (i.e.  
usually the name of the war file), so for wicket-examples it would be  
http://localhost/wicket-examples/guestbook



On Feb 24, 2006, at 4:41 AM, Singh, Varun wrote:


Hi Dipu,
BizCalendar is my application. But I've tried deploying the
wicket-examples.war file too and when I try to access their URLs
(/guestbook, /template etc.) I get the same error. I'm not sure  
where is

the error happening.

Thanks,
- varun

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, February 24, 2006 6:07 PM
To: wicket-user@lists.sourceforge.net
Subject: Wicket-user digest, Vol 1 #1792 - 1 msg

Send Wicket-user mailing list submissions to
wicket-user@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/wicket-user
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than Re: Contents of Wicket-user digest...


Today's Topics:

   1. Re: New to Wicket (Dipu)

--__--__--

Message: 1
From: Dipu [EMAIL PROTECTED]
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] New to Wicket
Date: Fri, 24 Feb 2006 12:31:50 -
Reply-To: wicket-user@lists.sourceforge.net

This is a multi-part message in MIME format.

--=_NextPart_000_0104_01C6393E.48FE78B0
Content-Type: text/plain;
charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable

I am using the older version  of wicketm mine is wicket 1.1b4.=20
I have not come accroos the BizCalendar object before, can please  
check

=
if the jar file for the Wicket Extension is there in the lib folder.

Cheers=20
Dipu
  - Original Message -=20
  From: Singh, Varun=20
  To: [EMAIL PROTECTED]
  Sent: Friday, February 24, 2006 12:19 PM
  Subject: Re: [Wicket-user] New to Wicket


  Hi,

  I've tried deploying the wicket-examples war file. Tomcat expands  
the

=
WAR file into proper directory structure but I couldn't access it =
through my browser. The error given was -=20

  HTTP Status 404 - /BizCalendar/

  =20

  type Status report

  =20

  message / BizCalendar /

  =20

  description The requested resource (/BizCalendar/) is not available.

  Apache Tomcat/5.5.15

  =20

  I checked the logs and it seems Tomcat can't get the wicket libs.  
The

=
error in the log file read -=20

  Feb 24, 2006 5:31:11 PM  
org.apache.catalina.core.ApplicationContext =

log

  INFO: Marking servlet BizCalendarApplication as unavailable

  Feb 24, 2006 5:31:11 PM  
org.apache.catalina.core.ApplicationContext =

log

  SEVERE: Error loading WebappClassLoader

delegate: false

repositories:

  -- Parent Classloader:

  [EMAIL PROTECTED]

   wicket.protocol.http.WicketServlet

  java.lang.ClassNotFoundException: wicket.protocol.http.WicketServlet

  =20

  I've copied the wicket-1.1.1.jar in TOMCAT/shared/classes  
directory

=
 added it to classpath.

  =20

  Please to help,

  Cheers.

  -Varun

  =20

  =20

  =20

  Message: 3

  From: Dipu [EMAIL PROTECTED]

  To: wicket-user@lists.sourceforge.net

  Subject: Re: [Wicket-user] New to Wicket.

  Date: Fri, 24 Feb 2006 10:51:59 -

  Reply-To: wicket-user@lists.sourceforge.net

  =20

  This is a multi-part message in MIME format.

  =20

  --=3D_NextPart_000_00D0_01C63930.565BD470

  Content-Type: text/plain;

charset=3Diso-8859-1

  Content-Transfer-Encoding: quoted-printable

  =20

  Can you please check what is tomcat complaining about from the  
log =3D


  files.=3D20

  I dont see any problem deploying the weicket application in  
tomcat. As

=
i =3D

  develop my application in jetty and deploy in tomcat after  
building a

=
=3D

  war.

  =20

  Cheers=3D20

  Dipu

  =20

  =20

- Original Message -=3D20

From: Singh, Varun=3D20

To: [EMAIL PROTECTED]

Sent: Friday, February 24, 2006 10:43 AM

Subject: [Wicket-user] New to Wicket.

  =20

  =20

Hi All,

  =20

I'm new to Wicket and I'm put into developing a web-application =
using =3D

  Wicket. I tried searching various examples, but couldn't find any  
help

=
=3D

  regarding deploying the application on Tomcat. I've made a  
small .war

=
=3D

  file in accordance to the examples given at the Wicket website  
but I'm

=
=3D

  not able to get it working with Tomcat.=3D20

  =20

=3D20

  =20

Can someone please point me to the point-by-point procedure of =3D

  deploying a Wicket Application on Tomcat?

  =20

=3D20

  =20

Cheerio,

  =20

- Varun Singh

  =20

  -- __--__--

  =20

  Message: 4

  Date: Fri, 24 Feb 2006 11:56:28 +0100

  From: Martijn Dashorst [EMAIL PROTECTED]

  To: wicket-user@lists.sourceforge.net

  Subject: Re: [Wicket-user] New to Wicket.

Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-24 Thread Martijn Dashorst
The wicket quickstart project I just downloaded contains wicket 1.1.1

I vaguely remember that this was the case, and that I updated the release.

The current download for wicket-quickstart 1.1.1 does include the
correct jar file.

Martijn


On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
 Hmm

 If this is the case, I should update the quickstart for 1.1.1

 Martijn


 On 2/24/06, Nino Wael [EMAIL PROTECTED] wrote:
 
 
 
  Hmm the APIdoc state that the current version is 1.1.1, but the jar file to
  the quickstart project is 1.0.1, so I guess herein lies the problem, I'll
  try to rebuilt and see if it dosent fix it. Again thanks for your help, its
  much appreciated from at new comer to wicket(me).
 
 
 
 
  -Nino
   
 
 
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf
  Of Igor Vaynberg
   Sent: Friday, February 24, 2006 5:02 PM
   To: wicket-user@lists.sourceforge.net
   Subject: Re: [Wicket-user] Listview: cannot instantiate the type
 
 
 
  all i can tell you isto  make sure wicket.jar is on your buildpath under
  project properties.
 
   -Igor
 
 
 
 
 
  On 2/24/06, Nino Wael  [EMAIL PROTECTED] wrote:
 
 
  Hi Igor
 
 
 
  Im using eclipse with myEclipse ontop, im pretty sure it should tell if
  constructors are not available. Could I have done something wrong In setting
  wicket up?
 
 
 
  BTW: the new propersition on coding you suggested gave me a similar error(it
  claims that wicket.markup.html.form.Radio does not exist im not able to find
  it browsing trough the packages). Looking at the documentation(apidocs)
  however it clearly states that it does. Which make be belive that Eclipse is
  setup wrongfully?
 
 
 
  I've followed the Quickstart tutorial and just copied the project and
  changed the naming, however I tried copying my code into the quickstart
  project, code is below.
 
 
 
  Am I completely of the rail here?
 
 
 
public Index(final PageParameters parameters)
 
  {
 
  // TODO Add your page's components here
 
 
  wicket.markup.html.list.ListView myList;
 
  List maalinger
  = Arrays.asList(new String[][] { {Aktuelle forløb fordelt på
  varighed,description}, {antal forløb,description}, {Forløb pr.
  berørt,description}});
 
  myList
= new
  wicket.markup.html.list.ListView(maaling2,maalinger)
 
 
 
  {
 
public void
  populateItem(wicket.markup.html.list.ListItem item)
 
{
 
  String[]
  myItem=(String[]) item.getModelObject();
 
  String radio=
  myItem[0];
 
  String info=
  myItem[1];
 
 
 
  Model
  myModel=new Model(radio);
 
 
 
 
  wicket.markup.html.form.Radio myRadio=new
  wicket.markup.html.form.Radio(d, myModel);
 
 
 
 
 item.add(myRadio);
 
 
 item.add(new
  Label(info,info));
 
  }
 
};
 
 
 
}
 
 
 
  Have a great weekend J
 
 
  -Regards Nino
 
 
   
 
 
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf
  Of Igor Vaynberg
   Sent: Thursday, February 23, 2006 4:59 PM
 
 
 
   To: wicket-user@lists.sourceforge.net
   Subject: Re: [Wicket-user] Listview: cannot instantiate the type
 
 
 
 
  there is no constructor Radio(String,String)
 
   are you not using an IDE that can tell you which constructors are
  available?
 
   to fix you need to do new Radio(radio, new Model(radio));
 
   -Igor
 
 
  On 2/23/06, Nino Wael  [EMAIL PROTECTED] wrote:
 
 
 
  Can any of you see whats wrong with the code? Or can't I use the Radio class
  directly?
 
 
 
  Do I need to implement a similar method like populateItem for my ListView?
 
 
 
  -regards Nino
 
 
 
 
   
 
 
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf
  Of Nino Wael
   Sent: Thursday, February 23, 2006 11:57 AM
 
 
 
   To: wicket-user@lists.sourceforge.net
   Subject: RE: [Wicket-user] Listview: cannot instantiate the type
 
 
 
 
 
  So Now im trying to expand my previous code however I get this message
  Radio cannot be resolved to a type. My code is below:
 
 
 
public void
  populateItem(wicket.markup.html.list.ListItem item)
 
{
 
  String[]
  myItem=(String[]) item.getModelObject();
 
  String radio=
  myItem[0];
 
  String info=
  myItem[1];
 
 
 
  item.add(new
  Radio(radio,radio));
 
  item.add(new
  Label(info,info));
 
  }
 
 
 
  And the symbiose markup
 
  

Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-24 Thread deshmol-lists
Martijn,
 
 I navigated to quickstart (kickstart?) from: 
http://wicket.sourceforge.net/wicket-quickstart/index.html
 and followed the link to my IDE (eclipse) and then clicked on the download' 
link. 
 The sourceforge download page that appears shows   
wicket-kickstart-1.0.1-src.zip
 
 But I'm new to Wicket, so maybe I was looking at the wrong place?
 
 ~ amol
 

- Original Message 
From: Martijn Dashorst [EMAIL PROTECTED]
To: wicket-user@lists.sourceforge.net
Sent: Friday, February 24, 2006 11:37:17 AM
Subject: Re: [Wicket-user] Listview: cannot instantiate the type

The wicket quickstart project I just downloaded contains wicket 1.1.1

I vaguely remember that this was the case, and that I updated the release.

The current download for wicket-quickstart 1.1.1 does include the
correct jar file.

Martijn


On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:
 Hmm

 If this is the case, I should update the quickstart for 1.1.1

 Martijn


 On 2/24/06, Nino Wael [EMAIL PROTECTED] wrote:
 
 
 
  Hmm the APIdoc state that the current version is 1.1.1, but the jar file to
  the quickstart project is 1.0.1, so I guess herein lies the problem, I'll
  try to rebuilt and see if it dosent fix it. Again thanks for your help, its
  much appreciated from at new comer to wicket(me).
 
 
 
 
  -Nino
   
 
 
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf
  Of Igor Vaynberg
   Sent: Friday, February 24, 2006 5:02 PM
   To: wicket-user@lists.sourceforge.net
   Subject: Re: [Wicket-user] Listview: cannot instantiate the type
 
 
 
  all i can tell you isto  make sure wicket.jar is on your buildpath under
  project properties.
 
   -Igor
 
 
 
 
 
  On 2/24/06, Nino Wael  [EMAIL PROTECTED] wrote:
 
 
  Hi Igor
 
 
 
  Im using eclipse with myEclipse ontop, im pretty sure it should tell if
  constructors are not available. Could I have done something wrong In setting
  wicket up?
 
 
 
  BTW: the new propersition on coding you suggested gave me a similar error(it
  claims that wicket.markup.html.form.Radio does not exist im not able to find
  it browsing trough the packages). Looking at the documentation(apidocs)
  however it clearly states that it does. Which make be belive that Eclipse is
  setup wrongfully?
 
 
 
  I've followed the Quickstart tutorial and just copied the project and
  changed the naming, however I tried copying my code into the quickstart
  project, code is below.
 
 
 
  Am I completely of the rail here?
 
 
 
public Index(final PageParameters parameters)
 
  {
 
  // TODO Add your page's components here
 
 
  wicket.markup.html.list.ListView myList;
 
  List maalinger
  = Arrays.asList(new String[][] { {Aktuelle forløb fordelt på
  varighed,description}, {antal forløb,description}, {Forløb pr.
  berørt,description}});
 
  myList
= new
  wicket.markup.html.list.ListView(maaling2,maalinger)
 
 
 
  {
 
public void
  populateItem(wicket.markup.html.list.ListItem item)
 
{
 
  String[]
  myItem=(String[]) item.getModelObject();
 
  String radio=
  myItem[0];
 
  String info=
  myItem[1];
 
 
 
  Model
  myModel=new Model(radio);
 
 
 
 
  wicket.markup.html.form.Radio myRadio=new
  wicket.markup.html.form.Radio(d, myModel);
 
 
 
 
 item.add(myRadio);
 
 
 item.add(new
  Label(info,info));
 
  }
 
};
 
 
 
}
 
 
 
  Have a great weekend J
 
 
  -Regards Nino
 
 
   
 
 
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf
  Of Igor Vaynberg
   Sent: Thursday, February 23, 2006 4:59 PM
 
 
 
   To: wicket-user@lists.sourceforge.net
   Subject: Re: [Wicket-user] Listview: cannot instantiate the type
 
 
 
 
  there is no constructor Radio(String,String)
 
   are you not using an IDE that can tell you which constructors are
  available?
 
   to fix you need to do new Radio(radio, new Model(radio));
 
   -Igor
 
 
  On 2/23/06, Nino Wael  [EMAIL PROTECTED] wrote:
 
 
 
  Can any of you see whats wrong with the code? Or can't I use the Radio class
  directly?
 
 
 
  Do I need to implement a similar method like populateItem for my ListView?
 
 
 
  -regards Nino
 
 
 
 
   
 
 
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf
  Of Nino Wael
   Sent: Thursday, February 23, 2006 11:57 AM
 
 
 
   To: wicket-user@lists.sourceforge.net
   Subject: RE: [Wicket-user] Listview: cannot instantiate the type
 
 
 
 
 
  So Now im trying to expand my previous code however I get this message
  Radio cannot be resolved to 

Re: [Wicket-user] Listview: cannot instantiate the type

2006-02-24 Thread Martijn Dashorst
Ah,yes.The link shown in that document is pointing to a very old release. In the mean time, click on the download link in the navigation menu. This one will bring you to the following page:
http://sourceforge.net/project/showfiles.php?group_id=119783package_id=166850With the correct version.I'll update the document.MartijnOn 2/24/06, 
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
Martijn, I navigated to quickstart (kickstart?) from: http://wicket.sourceforge.net/wicket-quickstart/index.html and followed the link to my IDE (eclipse) and then clicked on the download' link.
 The sourceforge download page that appears shows wicket-kickstart-1.0.1-src.zip But I'm new to Wicket, so maybe I was looking at the wrong place? ~ amol- Original Message 
From: Martijn Dashorst [EMAIL PROTECTED]To: wicket-user@lists.sourceforge.netSent: Friday, February 24, 2006 11:37:17 AM
Subject: Re: [Wicket-user] Listview: cannot instantiate the typeThe wicket quickstart project I just downloaded contains wicket 1.1.1I vaguely remember that this was the case, and that I updated the release.
The current download for wicket-quickstart 1.1.1 does include thecorrect jar file.MartijnOn 2/24/06, Martijn Dashorst [EMAIL PROTECTED]
 wrote: Hmm If this is the case, I should update the quickstart for 1.1.1 Martijn On 2/24/06, Nino Wael [EMAIL PROTECTED]
 wrote: Hmm the APIdoc state that the current version is 1.1.1, but the jar file to  the quickstart project is 1.0.1, so I guess herein lies the problem, I'll
  try to rebuilt and see if it dosent fix it. Again thanks for your help, its  much appreciated from at new comer to wicket(me).  -Nino
 From: [EMAIL PROTECTED]  [mailto:
[EMAIL PROTECTED]] On Behalf  Of Igor Vaynberg Sent: Friday, February 24, 2006 5:02 PM To: wicket-user@lists.sourceforge.net
 Subject: Re: [Wicket-user] Listview: cannot instantiate the type all i can tell you istomake sure wicket.jar is on your buildpath under  project properties.
  -Igor   On 2/24/06, Nino Wael  [EMAIL PROTECTED] wrote: 
   Hi Igor Im using eclipse with myEclipse ontop, im pretty sure it should tell if  constructors are not available. Could I have done something wrong In setting
  wicket up? BTW: the new propersition on coding you suggested gave me a similar error(it  claims that wicket.markup.html.form.Radio does not exist im not able to find
  it browsing trough the packages). Looking at the documentation(apidocs)  however it clearly states that it does. Which make be belive that Eclipse is  setup wrongfully? 
I've followed the Quickstart tutorial and just copied the project and  changed the naming, however I tried copying my code into the quickstart  project, code is below.
 Am I completely of the rail here? public Index(final PageParameters parameters) 
  {   // TODO Add your page's components herewicket.markup.html.list.ListView myList;   List maalinger
  = Arrays.asList(new String[][] { {Aktuelle forløb fordelt på  varighed,description}, {antal forløb,description}, {Forløb pr.  berørt,description}});
   myList  = new  wicket.markup.html.list.ListView(maaling2,maalinger) {   public void
  populateItem(wicket.markup.html.list.ListItem item)   {   String[]  myItem=(String[]) 
item.getModelObject();   String radio=  myItem[0];   String info=  myItem[1];
 Model  myModel=new Model(radio);  wicket.markup.html.form.Radio
 myRadio=new  wicket.markup.html.form.Radio(d, myModel); item.add(myRadio);  
 item.add(new  Label(info,info));   }   };   
  } Have a great weekend J-Regards Nino   
From: [EMAIL PROTECTED]  [mailto:
[EMAIL PROTECTED]] On Behalf  Of Igor Vaynberg Sent: Thursday, February 23, 2006 4:59 PMTo: 
wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Listview: cannot instantiate the type  there is no constructor Radio(String,String)
  are you not using an IDE that can tell you which constructors are  available?  to fix you need to do new Radio(radio, new Model(radio)); 
 -IgorOn 2/23/06, Nino Wael  [EMAIL PROTECTED] wrote: Can any of you see whats wrong with the code? Or can't I use the Radio class
  directly? Do I need to implement a similar method like populateItem for my ListView? -regards Nino 
From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED]] On Behalf  Of Nino Wael Sent: Thursday, February 23, 2006 11:57 AM
To: wicket-user@lists.sourceforge.net Subject: RE: [Wicket-user] Listview: cannot instantiate the type
   So Now im trying to expand my previous code however I get this message  Radio cannot be resolved to a type. My code is below:
 public void  populateItem(wicket.markup.html.list.ListItem item)   {   String[]
  myItem=(String[]) item.getModelObject();   String radio=  myItem[0];   String info=
  myItem[1]; item.add(new  Radio(radio,radio));   
item.add(new  Label(info,info));   } And the 

[Wicket-user] Re: New to Wicket/J2EE but wants to Try Wicket?

2006-02-24 Thread Ayodeji Aladejebi
My machine has JDK 1.6 latest so u may have to right click on Project properties to set the JDK to use. Minimum is 1.5


On 2/24/06, Ayodeji Aladejebi [EMAIL PROTECTED] wrote:

For those java/j2eebeginnerswho want to give Wicket a try and are having problems in getting the examples to work either in tomcat or jetty. We are not all Maven experts anyway.I have tried to make the examples suitable for Netbeans 
5.0 but zipping up the one i personally converted to Netbeans project. Netbeans can be downloaded at www.netbeans.org
 .
 Download Wicket-1.2-SNAPSHOT Examples forNetbeans 5.0(zipped). Open with Netbeans 5.0 and Right Click on OpenProjects. Open it and then simply Build from Netbeans andrun the StartExample class. You wont need to configure anything or even have to worry about dependencies. 


Just my tiny contribution




thanks
Visit my blog: Ayodeji Aladejebi's Blog | http://dabar.cowblock.netCommunity: Visit 
Cowblock.net


Re: [Wicket-user] Re: New to Wicket/J2EE but wants to Try Wicket?

2006-02-24 Thread Igor Vaynberg
wicket's minimum is 1.4 not 1.5-IgorOn 2/24/06, Ayodeji Aladejebi [EMAIL PROTECTED] wrote:
My machine has JDK 1.6 latest so u may have to right click on Project properties to set the JDK to use. Minimum is 
1.5


On 2/24/06, Ayodeji Aladejebi [EMAIL PROTECTED]
 wrote:

For those java/j2eebeginnerswho want to give Wicket a try and are having problems in getting the examples to work either in tomcat or jetty. We are not all Maven experts anyway.I have tried to make the examples suitable for Netbeans 
5.0 but zipping up the one i personally converted to Netbeans project. Netbeans can be downloaded at www.netbeans.org
 .

 Download Wicket-1.2-SNAPSHOT Examples forNetbeans 5.0(zipped). Open with Netbeans 5.0 and Right Click on OpenProjects. Open it and then simply Build from Netbeans andrun the StartExample class. You wont need to configure anything or even have to worry about dependencies. 


Just my tiny contribution





thanks
Visit my blog: Ayodeji Aladejebi's Blog | http://dabar.cowblock.netCommunity: Visit 

Cowblock.net




Re: [Wicket-user] Re: New to Wicket/J2EE but wants to Try Wicket?

2006-02-24 Thread Ayodeji Aladejebi
aah ...i guess i am already anticipating the coming wicket for 1.5 :) . anyway thanks for the correction
On 2/24/06, Igor Vaynberg [EMAIL PROTECTED] wrote:
wicket's minimum is 1.4 not 1.5-Igor 

On 2/24/06, Ayodeji Aladejebi [EMAIL PROTECTED]
 wrote: 

My machine has JDK 1.6 latest so u may have to right click on Project properties to set the JDK to use. Minimum is 1.5


On 2/24/06, Ayodeji Aladejebi [EMAIL PROTECTED] 
 wrote: 

For those java/j2eebeginnerswho want to give Wicket a try and are having problems in getting the examples to work either in tomcat or jetty. We are not all Maven experts anyway.I have tried to make the examples suitable for Netbeans 
5.0 but zipping up the one i personally converted to Netbeans project. Netbeans can be downloaded at www.netbeans.org 
.
 Download Wicket-1.2-SNAPSHOT Examples forNetbeans 5.0(zipped). Open with Netbeans 5.0 and Right Click on OpenProjects. Open it and then simply Build from Netbeans andrun the StartExample class. You wont need to configure anything or even have to worry about dependencies. 


Just my tiny contribution




thanks
Visit my blog: Ayodeji Aladejebi's Blog | http://dabar.cowblock.netCommunity: Visit 
Cowblock.net


Re: [Wicket-user] Re: New to Wicket/J2EE but wants to Try Wicket?

2006-02-24 Thread Igor Vaynberg
arent we all :) those lazy wicket committers need to get off their asses and do it-IgorOn 2/24/06, Ayodeji Aladejebi 
[EMAIL PROTECTED] wrote:aah ...i guess i am already anticipating the coming wicket for 
1.5 :) . anyway thanks for the correction
On 2/24/06, Igor Vaynberg [EMAIL PROTECTED]
 wrote:
wicket's minimum is 1.4 not 1.5-Igor 

On 2/24/06, Ayodeji Aladejebi [EMAIL PROTECTED]
 wrote: 

My machine has JDK 1.6 latest so u may have to right click on Project properties to set the JDK to use. Minimum is 1.5


On 2/24/06, Ayodeji Aladejebi [EMAIL PROTECTED] 
 wrote: 

For those java/j2eebeginnerswho want to give Wicket a try and are having problems in getting the examples to work either in tomcat or jetty. We are not all Maven experts anyway.I have tried to make the examples suitable for Netbeans 
5.0 but zipping up the one i personally converted to Netbeans project. Netbeans can be downloaded at www.netbeans.org 
.

 Download Wicket-1.2-SNAPSHOT Examples forNetbeans 5.0(zipped). Open with Netbeans 5.0 and Right Click on OpenProjects. Open it and then simply Build from Netbeans andrun the StartExample class. You wont need to configure anything or even have to worry about dependencies. 


Just my tiny contribution





thanks
Visit my blog: Ayodeji Aladejebi's Blog | http://dabar.cowblock.netCommunity: Visit 

Cowblock.net




[Wicket-user] DataTable

2006-02-24 Thread Frank Silbermann
In Wicket-Examples, Repeaters, there's an example of a DataTable from
Wicket-Extensions.  The data provider supplies lists of javabeans, each
bean representing a row in the table.  The PropertyColumn object for
each column of the table gives information about the column title, its
sortability, and the non-OGNL string used for pulling a cell's data out
of the bean.

In this example, the column names are hardcoded as bean properties, but
what I want is to display any arbitrary JDBC ResultSet in a DataTable.
Has anyone written code to do that?  (And if so, could I see it?
ASP.NET has this feature, and I'm rewriting code that uses it.)

If not, I was thinking that I could implement IDataProvider to contain
information about the number and names of the columns taken from the
ResultSetMetaData.  

The data provider would hold a list of row objects, each of which would
be (or contain) an indexed sequence (an Array or ArrayList) of atomic
data objects, obtained by calling resultSet.getObject(index) varying
index within the column count.

My subclass of DataTable would be constructed with this data provider as
an argument.  A loop (indexed within the column count) would create a
list of PropertyColumn objects -- each with the display model based on
the column name recorded from the ResultSetMetaData, and a non-OGNL
property expression that makes use of List/Array indexing to access the
specific field in the row.

Does this sound like a good approach, or am I re-inventing the wheel
here?


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


Re: [Wicket-user] DataTable

2006-02-24 Thread Igor Vaynberg
this would be easier if you dont use the property columnjust create a subclass of abstract column that holds the index of the column and calls the appropriate getObject() on the result set.-Igor
On 2/24/06, Frank Silbermann [EMAIL PROTECTED] wrote:
In Wicket-Examples, Repeaters, there's an example of a DataTable fromWicket-Extensions.The data provider supplies lists of javabeans, eachbean representing a row in the table.The PropertyColumn object foreach column of the table gives information about the column title, its
sortability, and the non-OGNL string used for pulling a cell's data outof the bean.In this example, the column names are hardcoded as bean properties, butwhat I want is to display any arbitrary JDBC ResultSet in a DataTable.
Has anyone written code to do that?(And if so, could I see it?ASP.NET has this feature, and I'm rewriting code that uses it.)If not, I was thinking that I could implement IDataProvider to contain
information about the number and names of the columns taken from theResultSetMetaData.The data provider would hold a list of row objects, each of which wouldbe (or contain) an indexed sequence (an Array or ArrayList) of atomic
data objects, obtained by calling resultSet.getObject(index) varyingindex within the column count.My subclass of DataTable would be constructed with this data provider asan argument.A loop (indexed within the column count) would create a
list of PropertyColumn objects -- each with the display model based onthe column name recorded from the ResultSetMetaData, and a non-OGNLproperty _expression_ that makes use of List/Array indexing to access the
specific field in the row.Does this sound like a good approach, or am I re-inventing the wheelhere?---This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcastand join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] DatePicker problems

2006-02-24 Thread Eelco Hillenius
Hi all,

There's a bunch of problems with DatePicker poppin up. In fact, there
have been problems with it's localization support from the start, but
I hoped they would be fixed with a new version of jscalendar for which
the datepicker component is just a wrapper. However, the last release
of that thing was almost a year ago, and I don't feel confident there
will be any release soon.

I'd like to propose an alternative to jscalendar. One that has
robusteness over number of features, though I have no problem with
that thing looking nice.

One of the candidates that looks good to me is the yahoo calendar,
http://developer.yahoo.net/yui/calendar/index.html Anyone played
around with that? If that's good, and some other yahoo components are
too (they sure look good to me), we could create a couple of
Yahoo/Wicket components. My plan would be to deprecate the current
date picker - fix bugs if anyone can submit patches, but I'm too short
of time to go after that myself - and create a
wicket.extensions.markup.html.yahoo package for all yahoo components
(e.g. we would have wicket.extensions.markup.html.yahoo.calendar).
Also, my plan would be to make using these components super easy to
use. If I look at the current DatePicker implementation, I believe I
took it too far in trying to support a large part of the jscalendar
API. New implementations should be far simpler and more limited to
what it can do by default. If people want more fancy stuff, they could
extend such a component and learn from the implementation how to take
their component further.

Thoughts, suggestions?

Eelco


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


Re: [Wicket-user] DatePicker problems

2006-02-24 Thread Igor Vaynberg
sounds like a plan.there is also this one: http://www.webreference.com/dhtml/column67/index.html which is supposed to be pretty good in case you are looking for alternatives.
-IgorOn 2/24/06, Eelco Hillenius [EMAIL PROTECTED] wrote:
Hi all,There's a bunch of problems with DatePicker poppin up. In fact, therehave been problems with it's localization support from the start, butI hoped they would be fixed with a new version of jscalendar for which
the datepicker component is just a wrapper. However, the last releaseof that thing was almost a year ago, and I don't feel confident therewill be any release soon.I'd like to propose an alternative to jscalendar. One that has
robusteness over number of features, though I have no problem withthat thing looking nice.One of the candidates that looks good to me is the yahoo calendar,
http://developer.yahoo.net/yui/calendar/index.html Anyone playedaround with that? If that's good, and some other yahoo components aretoo (they sure look good to me), we could create a couple ofYahoo/Wicket components. My plan would be to deprecate the current
date picker - fix bugs if anyone can submit patches, but I'm too shortof time to go after that myself - and create awicket.extensions.markup.html.yahoo package for all yahoo components(e.g. we would have wicket.extensions.markup.html.yahoo.calendar
).Also, my plan would be to make using these components super easy touse. If I look at the current DatePicker implementation, I believe Itook it too far in trying to support a large part of the jscalendarAPI. New implementations should be far simpler and more limited to
what it can do by default. If people want more fancy stuff, they couldextend such a component and learn from the implementation how to taketheir component further.Thoughts, suggestions?Eelco
---This SF.Net email is sponsored by xPML, a groundbreaking scripting languagethat 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?cmdlnkkid0944bid$1720dat1642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker problems

2006-02-24 Thread Nick Heudecker
I'm all for it. All I really want to be able to do is localize dates and that's not critical.Let me know if I can help.On 2/24/06, Eelco Hillenius
 [EMAIL PROTECTED] wrote:
Hi all,There's a bunch of problems with DatePicker poppin up. In fact, therehave been problems with it's localization support from the start, butI hoped they would be fixed with a new version of jscalendar for which
the datepicker component is just a wrapper. However, the last releaseof that thing was almost a year ago, and I don't feel confident therewill be any release soon.I'd like to propose an alternative to jscalendar. One that has
robusteness over number of features, though I have no problem withthat thing looking nice.One of the candidates that looks good to me is the yahoo calendar,
http://developer.yahoo.net/yui/calendar/index.html Anyone playedaround with that? If that's good, and some other yahoo components aretoo (they sure look good to me), we could create a couple ofYahoo/Wicket components. My plan would be to deprecate the current
date picker - fix bugs if anyone can submit patches, but I'm too shortof time to go after that myself - and create awicket.extensions.markup.html.yahoo package for all yahoo components(e.g. we would have wicket.extensions.markup.html.yahoo.calendar
).Also, my plan would be to make using these components super easy touse. If I look at the current DatePicker implementation, I believe Itook it too far in trying to support a large part of the jscalendarAPI. New implementations should be far simpler and more limited to
what it can do by default. If people want more fancy stuff, they couldextend such a component and learn from the implementation how to taketheir component further.Thoughts, suggestions?Eelco
---This SF.Net email is sponsored by xPML, a groundbreaking scripting languagethat 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?cmdlnkkid0944bid$1720dat1642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker problems

2006-02-24 Thread Eelco Hillenius
Why's that? Wicket should work with Safari. If not we have something
to fix. Is there something I/ we missed?

Eelco

On 2/24/06, Nick Heudecker [EMAIL PROTECTED] wrote:
 I can't get Safari to login to my Wicket apps anyway, so the calendar
 working with it isn't relevant. :)


 On 2/24/06, Jason Essington  [EMAIL PROTECTED] wrote:
  After taking a look at the two prospects, the yahoo calendar looks
  fine, but the webreference one doesn't seem to work in safari. In
  fact, their web page says:
 
   This first version of the DHTML Lab Popup Calendar works only in a
   Windows environment in Internet Explorer, Netscape, Mozilla and
   Opera, in the versions listed below
 
  So I'd be inclined to go with either finding a js wizard (I don't
  qualify) to fix the existing implementation, or jump to the yahoo one.
 
  -jason
 
 
  On Feb 24, 2006, at 12:46 PM, Igor Vaynberg wrote:
 
   sounds like a plan.
  
   there is also this one:
 http://www.webreference.com/dhtml/column67/
   index.html which is supposed to be pretty good in case you are
   looking for alternatives.
  
   -Igor
  
  
   On 2/24/06, Eelco Hillenius  [EMAIL PROTECTED] wrote: Hi all,
  
   There's a bunch of problems with DatePicker poppin up. In fact, there
   have been problems with it's localization support from the start, but
   I hoped they would be fixed with a new version of jscalendar for which
   the datepicker component is just a wrapper. However, the last release
   of that thing was almost a year ago, and I don't feel confident there
   will be any release soon.
  
   I'd like to propose an alternative to jscalendar. One that has
   robusteness over number of features, though I have no problem with
   that thing looking nice.
  
   One of the candidates that looks good to me is the yahoo calendar,
   http://developer.yahoo.net/yui/calendar/index.html
 Anyone played
   around with that? If that's good, and some other yahoo components are
   too (they sure look good to me), we could create a couple of
   Yahoo/Wicket components. My plan would be to deprecate the current
   date picker - fix bugs if anyone can submit patches, but I'm too short
   of time to go after that myself - and create a
   wicket.extensions.markup.html.yahoo package for all
 yahoo components
   ( e.g. we would have
 wicket.extensions.markup.html.yahoo.calendar ).
   Also, my plan would be to make using these components super easy to
   use. If I look at the current DatePicker implementation, I believe I
   took it too far in trying to support a large part of the jscalendar
   API. New implementations should be far simpler and more limited to
   what it can do by default. If people want more fancy stuff, they could
   extend such a component and learn from the implementation how to take
   their component further.
  
   Thoughts, suggestions?
  
   Eelco
  
  
   ---
   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?cmdlnkkid0944bid$1720dat1642
   ___
   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?cmdlnkkid0944bid$1720dat1642
  ___
  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=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Subversion available for test

2006-02-24 Thread Johan Compagner
Seems to work fine at my placeI can check out and commit again.On 2/24/06, Igor Vaynberg [EMAIL PROTECTED]
 wrote:ok, that doesnt help me in any way though.
-IgorOn 2/24/06, Martijn Dashorst 
[EMAIL PROTECTED]
 wrote:You don't need to log in. only when committing you'll be queried for a
username/password.MartijnOn 2/24/06, Igor Vaynberg [EMAIL PROTECTED] wrote:
 i cant check out trunk/wicket, subclipse dies with Attempted to beginRule:
 R/, does not match outer scope rule: P/wicket-trunk i can check out other https projects just fine. i am not logged in so this is an anonymous attempt. -Igor

 On 2/24/06, Martijn Dashorst [EMAIL PROTECTED] wrote:  I'll report it to 
sf.net staff 
   On 2/24/06, Gwyn Evans [EMAIL PROTECTED] wrote:   Hmm indeed - I just pulled the current CVS tarball  the last changes

   in that are from the 24/01/2006 - There doesn't seem to be any general   issue that I could see being raised against SF, so it could be   project-specific...  
   /Gwyn On 24/02/06, Martijn Dashorst  [EMAIL PROTECTED]
 wrote:Hmm...   
I looked at the repository, and the last mutation dates are from 4 weeks ago.   Martijn   On 2/24/06, Martijn Dashorst 
[EMAIL PROTECTED] wrote: I shouldn't post these messages right after waking up and before
 having a coffee first.
 Here's the sourceforge subversion page for wicket: 
http://sourceforge.net/svn/?group_id=119783
 I think that you can connect to subversion using: 
https://svn.sourceforge.net/svnroot/wicket
 I have enabled subversion developer access for all committers. PLEASE NOTE THAT ALL CHANGES TO SUBVERSION WILL BE DISCARDED if we decide
 to move to subversion. Martijn On 2/24/06, Mark Derricutt 

[EMAIL PROTECTED] wrote:  On 2/24/06, Martijn Dashorst  [EMAIL PROTECTED]
 wrote:Please try to download the wicket sources from SVN, try a branch
 or a   tag as well. Report your experiences back to the mailinglists so that   we can decide whether or not we should move our development to
   subversion.   Where abouts is the svn repo?Is this something new that source forge is  offering or elsewhere?
--  i like my video games - mamma said they are gonna melt my brains  i like my video games - i don't care what daddy said; they're my
 reality  - henning pauly -- 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   
   --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 languagethat extends applications into web and mobile media. Attend the live webcastand join the prime developer group breaking into this new coding
 territory!http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642

___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?cmdlnkkid0944bid$1720dat1642   ___   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?cmdlnkkid0944bid$1720dat1642
  ___
  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 webcastand join the prime developer group breaking into this new coding territory!


Re: [Wicket-user] DatePicker problems

2006-02-24 Thread Jason Essington
That can't be a wicket problem, wicket and authentication works fine  
on safari here.


On Feb 24, 2006, at 1:30 PM, Nick Heudecker wrote:

I can't get Safari to login to my Wicket apps anyway, so the  
calendar working with it isn't relevant. :)


On 2/24/06, Jason Essington  [EMAIL PROTECTED]  
wrote:After taking a look at the two prospects, the yahoo calendar  
looks

fine, but the webreference one doesn't seem to work in safari. In
fact, their web page says:

 This first version of the DHTML Lab Popup Calendar works only in a
 Windows environment in Internet Explorer, Netscape, Mozilla and
 Opera, in the versions listed below

So I'd be inclined to go with either finding a js wizard (I don't
qualify) to fix the existing implementation, or jump to the yahoo one.

-jason


On Feb 24, 2006, at 12:46 PM, Igor Vaynberg wrote:

 sounds like a plan.

 there is also this one: http://www.webreference.com/dhtml/column67/
 index.html which is supposed to be pretty good in case you are
 looking for alternatives.

 -Igor


 On 2/24/06, Eelco Hillenius  [EMAIL PROTECTED] wrote:  
Hi all,


 There's a bunch of problems with DatePicker poppin up. In fact,  
there
 have been problems with it's localization support from the start,  
but
 I hoped they would be fixed with a new version of jscalendar for  
which
 the datepicker component is just a wrapper. However, the last  
release
 of that thing was almost a year ago, and I don't feel confident  
there

 will be any release soon.

 I'd like to propose an alternative to jscalendar. One that has
 robusteness over number of features, though I have no problem with
 that thing looking nice.

 One of the candidates that looks good to me is the yahoo calendar,
 http://developer.yahoo.net/yui/calendar/index.html Anyone played
 around with that? If that's good, and some other yahoo components  
are

 too (they sure look good to me), we could create a couple of
 Yahoo/Wicket components. My plan would be to deprecate the current
 date picker - fix bugs if anyone can submit patches, but I'm too  
short

 of time to go after that myself - and create a
 wicket.extensions.markup.html.yahoo package for all yahoo components
 ( e.g. we would have wicket.extensions.markup.html.yahoo.calendar ).
 Also, my plan would be to make using these components super easy to
 use. If I look at the current DatePicker implementation, I believe I
 took it too far in trying to support a large part of the jscalendar
 API. New implementations should be far simpler and more limited to
 what it can do by default. If people want more fancy stuff, they  
could
 extend such a component and learn from the implementation how to  
take

 their component further.

 Thoughts, suggestions?

 Eelco


 ---
 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?cmdlnkkid0944bid$1720dat1642
 ___
 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?cmdlnkkid0944bid$1720dat1642
___
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=lnkkid0944bid$1720dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] New to Wicket

2006-02-24 Thread Johan Compagner
Looking at the WEB-INF/lib dir inside the War/extracted dirDo you have there a servlet.jar?If so remove it.johanOn 2/24/06, Singh, Varun
 [EMAIL PROTECTED] wrote:













Hi,

I've tried deploying the wicket-examples war file. Tomcat expands the WAR
file into proper directory structure but I couldn't access it through my
browser. The error given was - 

HTTP Status 404 - /BizCalendar/



type Status report



message / BizCalendar /



description The requested resource (/BizCalendar/) is
not available.

Apache Tomcat/5.5.15



I checked the logs and it seems Tomcat can't get the wicket libs.
The error in the log file read – 

Feb 24, 2006 5:31:11 PM
org.apache.catalina.core.ApplicationContext log

INFO: Marking servlet BizCalendarApplication as
unavailable

Feb 24, 2006 5:31:11 PM
org.apache.catalina.core.ApplicationContext log

SEVERE: Error loading WebappClassLoader

 delegate: false

 repositories:

-- Parent Classloader:

[EMAIL PROTECTED]

wicket.protocol.http.WicketServlet

java.lang.ClassNotFoundException:
wicket.protocol.http.WicketServlet



I've copied the wicket-1.1.1.jar in
TOMCAT/shared/classes directory  added it to classpath.



Please to help,

Cheers.

-
Varun







Message: 3

From: Dipu [EMAIL PROTECTED]


To: wicket-user@lists.sourceforge.net


Subject: Re: [Wicket-user] New to Wicket.

Date: Fri, 24 Feb 2006 10:51:59 -

Reply-To: wicket-user@lists.sourceforge.net




This is a multi-part message in MIME format.



--=_NextPart_000_00D0_01C63930.565BD470

Content-Type: text/plain;

 charset=iso-8859-1

Content-Transfer-Encoding: quoted-printable



Can you please check what is tomcat complaining about from the log =

files.=20

I dont see any problem deploying the weicket application in tomcat. As
i =

develop my application in jetty and deploy in tomcat after building a =

war.



Cheers=20

Dipu





 - Original Message -=20

 From: Singh, Varun=20

 To: [EMAIL PROTECTED]

 Sent: Friday, February 24, 2006 10:43 AM

 Subject: [Wicket-user] New to Wicket.





 Hi All,



 I'm new to Wicket and I'm put into developing a web-application
using =

Wicket. I tried searching various examples, but couldn't find any help
=

regarding deploying the application on Tomcat. I've made a small .war =

file in accordance to the examples given at the Wicket website but I'm
=

not able to get it working with Tomcat.=20



 =20



 Can someone please point me to the point-by-point procedure of =

deploying a Wicket Application on Tomcat?



 =20



 Cheerio,



 - Varun Singh



--__--__--



Message: 4

Date: Fri, 24 Feb 2006 11:56:28 +0100

From: Martijn Dashorst 
[EMAIL PROTECTED]

To: wicket-user@lists.sourceforge.net


Subject: Re: [Wicket-user] New to Wicket.

Reply-To: wicket-user@lists.sourceforge.net




How do you create your war file?



What doesn't work when you deploy your war file in tomcat?



have you downloaded the wicket-examples, and deployed the included war

file into your tomcat installation?



Did that work?



Have you downloaded the wicket-quickstart distribution, created a war

file (see the http://wicket.sf.net/wicket-quickstart
 website for docs

on working with the quickstart distribution), and deployed that into

your tomcat installation?



Martijn





On 2/24/06, Singh, Varun [EMAIL PROTECTED]
 wrote:







 Hi All,



 I'm new to Wicket and I'm put into developing a web-application
using

 Wicket. I tried searching various examples, but couldn't find any
help

 regarding deploying the application on Tomcat. I've made a small
.war fil=

e

 in accordance to the examples given at the Wicket website but I'm
not abl=

e

 to get it working with Tomcat.







 Can someone please point me to the point-by-point procedure of
deploying =

a

 Wicket Application on Tomcat?







 Cheerio,



 - Varun Singh





--

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






--__--__--