Re: Dynamic Simple (html) Components

2008-12-21 Thread Nino Martinez

Hi Mito

Behaviors can also add stuff (like encapsulating your tag in to new 
tags) to the component,


Like I describe here:

http://ninomartinez.wordpress.com/2008/12/11/wicket-never-stops-to-impress-me/

mito wrote:

Hi,

I've been using Wicket at home for quite a while. The company I work for has
an old Swing application and we've been trying to figure out how to migrate
it and make it web based. 


Even though I've been pitching in for Wicket since day one, the team lead
decided to go with standard stack
(jsf,facelets,richfaces,webflow2...ughh). 


Anyways, the thing is that this Swing app generates panels dynamically based
on info that is retrieved from a back-end service. This data contains all
about which components to add to the panel, validations, drop-down data,
order, how they are grouped together, etc...
Our team is having a hard time figuring out how to add this same behaviour
with the technology stack THEY picked :-)

So my question is...Can I create dynamic components with Wicket that have no
assoicated html markup?

This would allow me to make a service call and retrieve all the data I need
to generate a page on the fly by iterating through all the data and creating
instances of Wicket components dynamically.

I know this functionality can be done more easily using Wicket, but have a
problem with it.

AFAIK Wicket always expects to have associated html markup for a simple html
component (DropDownChoice for example), so I searched around the forums and
found several solutions:

1. Wrap every single Wicket html component with a Panel. I think it's a
little bit overkill no?

2. Use a RepeatingView and when I want to add a specific Wicket html
component, override its onComponentTag() so that Wicket doesn't complain
about the actual html tag being missing in the html markup. Like this:

RepeatingView rv = new RepeatingView(dynamic);
add(rv);
for (int i = 0; i  5; i++) {
rv.add(new Label(String.valueOf(i), label_  + i));
rv.add(new DropDownChoiceString(dropDown_ + i,
categories) {
@Override
protected void onComponentTag(ComponentTag tag) {
tag.setName(select);
super.onComponentTag(tag);

}
});
}

Would this be a good approach? I've done an extensive search in this forum
but that's all I got. 
Does anybody have any other ideas?


I would be so happy if we ended up using Wicket where I work and in order to
do that it would definitely help if it were possible to generate these
dynamic panels. I'm sure it would be easier that doing it with jsf, for
sure!

Thanks!
  



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Turn off form validation

2008-12-21 Thread noon

I solved similar problem where I had some required TextField components and
an AJAX component which does a AJAX submit. During this AJAX submit I wanted
to prohibit all the form validations. I achieved this by setting the AJAX
components (an autocomplete TextField with custom AJAX behaviour) into its
own nested form... form which is inside another form.

I'm not sure does this solve your problem. I found my solution just by
trying differend solutions and it worked :)



hbf wrote:
 
 I have a custom component that allows the user to select one or more
 tags. For this, the component has a text field and an AjaxButton Add
 to add a tag.
 
 All works fine if I use the component in a form without validation
 errors. If, however, a text field has setRequired(true), the
 AjaxButton's onSubmit() method is not called (but onError() instead).
 
 In this case, I do not want this behaviour but want form validation
 to be disabled for the Add AjaxButton. (I still need to get the
 model values updated, though.)
 
 Is there an easy way to achieve this?
 
 I've read about conditional validation,
 
http://cwiki.apache.org/WICKET/conditional-validation.html
 
 but as my component does not know about the enclosing form, I am
 looking for another solution.
 
 Many thanks,
 Kaspar
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Turn-off-form-validation-tp21090395p21113545.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Is there any collapsible container ?

2008-12-21 Thread Per Newgro

miro schrieb:
Is there  any collapsible container?  
  

You want to hide a panel on button-click? Simply set it visible=false.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: code for DataGrid with vertical scrolling

2008-12-21 Thread Per Newgro

miro schrieb:

please point me for the code with data grid vertical scrolling component.

  

If i'm not completely wrong you have to do it by CSS property overflow.

Cheers
Per

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Deploy problem

2008-12-21 Thread Pierre Gilquin
Hi all,

I have a problem deploying a Wicket App. (Not Wicket app work fine).

Wicket 1.3.0 rc1 / Tomcat 5.5.20 / JDK 1.4.2

Thanks in advance for any help

Pierre

The trace is :


INFO: Manager: install: Installing web application at '/TestIso' from 
'TestIso.war'
java.io.FileNotFoundException: TestIso.war (null)
   at gnu.java.nio.channels.FileChannelImpl.open(libgcj.so.7rh)
   at gnu.java.nio.channels.FileChannelImpl.init(libgcj.so.7rh)
   at gnu.java.nio.channels.FileChannelImpl.create(libgcj.so.7rh)
   at java.io.FileInputStream.init(libgcj.so.7rh)
...

21-déc-08 1:05:25  org.apache.catalina.startup.HostConfig deployWAR
INFO: Déploiement de l'archive TestIso.war de l'application web

21-déc-08 1:05:26  org.apache.catalina.core.StandardContext filterStart
SEVERE: Exception au démarrage du filtre WicketFilter
java.lang.NoSuchMethodError: method 
java.lang.management.ManagementFactory.getPlatformMBeanServer with signature 
()Ljavax.management.MBeanServer; was not found.
   at org.apache.wicket.jmx.Initializer.init(Initializer.java:156)
   at org.apache.wicket.Application.callInitializers(Application.java:787)
   at org.apache.wicket.Application.initializeComponents(Application.java:625)
   at org.apache.wicket.protocol.http.WicketFilter.init(WicketFilter.java:509)
   at 
org.apache.catalina.core.ApplicationFilterConfig.getFilter(catalina-5.5.23.jar.so)
   at 
org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(catalina-5.5.23.jar.so)
   at 
org.apache.catalina.core.ApplicationFilterConfig.init(catalina-5.5.23.jar.so)
   at 
org.apache.catalina.core.StandardContext.filterStart(catalina-5.5.23.jar.so)
   at org.apache.catalina.core.StandardContext.start(catalina-5.5.23.jar.so)
   at 
org.apache.catalina.core.ContainerBase.addChildInternal(catalina-5.5.23.jar.so)
   at org.apache.catalina.core.ContainerBase.addChild(catalina-5.5.23.jar.so)
   at org.apache.catalina.core.StandardHost.addChild(catalina-5.5.23.jar.so)
   at org.apache.catalina.startup.HostConfig.deployWAR(catalina-5.5.23.jar.so)
   at org.apache.catalina.startup.HostConfig.deployApps(catalina-5.5.23.jar.so)
   at org.apache.catalina.startup.HostConfig.check(catalina-5.5.23.jar.so)
   at java.lang.reflect.Method.invoke(libgcj.so.7rh)
   at 
org.apache.commons.modeler.BaseModelMBean.invoke(jakarta-commons-modeler-1.1.jar.so)
   at 
mx4j.server.interceptor.InvokerMBeanServerInterceptor.invoke(mx4j-3.0.1.jar.so)
   at 
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(mx4j-3.0.1.jar.so)
   at 
mx4j.server.interceptor.SecurityMBeanServerInterceptor.invoke(mx4j-3.0.1.jar.so)
   at 
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(mx4j-3.0.1.jar.so)
   at 
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(mx4j-3.0.1.jar.so)
   at 
mx4j.server.interceptor.ContextClassLoaderMBeanServerInterceptor.invoke(mx4j-3.0.1.jar.so)
   at mx4j.server.MX4JMBeanServer.invoke(mx4j-3.0.1.jar.so)
   at 
org.apache.catalina.manager.ManagerServlet.check(catalina-manager-5.5.23.jar.so)
   at 
org.apache.catalina.manager.ManagerServlet.deploy(catalina-manager-5.5.23.jar.so)
   at 
org.apache.catalina.manager.ManagerServlet.doGet(catalina-manager-5.5.23.jar.so)
   at 
javax.servlet.http.HttpServlet.service(tomcat5-servlet-2.4-api-5.5.23.jar.so)
   at 
javax.servlet.http.HttpServlet.service(tomcat5-servlet-2.4-api-5.5.23.jar.so)
   at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(catalina-5.5.23.jar.so)
   at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(catalina-5.5.23.jar.so)
   at 
org.apache.catalina.core.StandardWrapperValve.invoke(catalina-5.5.23.jar.so)
   at 
org.apache.catalina.core.StandardContextValve.invoke(catalina-5.5.23.jar.so)
   at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(catalina-5.5.23.jar.so)
   at org.apache.catalina.core.StandardHostValve.invoke(catalina-5.5.23.jar.so)
   at org.apache.catalina.valves.ErrorReportValve.invoke(catalina-5.5.23.jar.so)
   at 
org.apache.catalina.core.StandardEngineValve.invoke(catalina-5.5.23.jar.so)
   at 
org.apache.catalina.connector.CoyoteAdapter.service(catalina-5.5.23.jar.so)
   at 
org.apache.coyote.http11.Http11Processor.process(tomcat-http-5.5.23.jar.so)
   at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(tomcat-http-5.5.23.jar.so)
   at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(tomcat-util-5.5.23.jar.so)
   at 
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(tomcat-util-5.5.23.jar.so)
   at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(tomcat-util-5.5.23.jar.so)
   at java.lang.Thread.run(libgcj.so.7rh)
21-déc-08 1:05:26  org.apache.catalina.core.StandardContext start
SEVERE: Error filterStart
21-déc-08 1:05:26  org.apache.catalina.core.StandardContext start
SEVERE: Erreur de démarrage du contexte [/TestIso] suite aux erreurs précédentes

Re: Dynamic Simple (html) Components

2008-12-21 Thread Ernesto Reinaldo Barreiro
Hi,

I see no contradiction in having your UI (declaratively) defined  by a
service and having panels (with associated HTML markup): that markup
could match what you wanted on your definition. As you also suggest,
you could use repeaters to create META-components that read your
definition and produce the UI. For instance, an field group component, a
grid, that reads the definition and generates a form and the form
components out of it. The same for tables, tabs, etc. I wouldn't try to
generate HTML directly (e.g using Labels), then what would be the
advantage of using wicket? If your abstract definition of the UI is
pure enough  then it shouldn't be a problem to produce similar UIs for
Wicket and a Swing application.

Ernesto

mito wrote:
 Hi,

 I've been using Wicket at home for quite a while. The company I work for has
 an old Swing application and we've been trying to figure out how to migrate
 it and make it web based. 

 Even though I've been pitching in for Wicket since day one, the team lead
 decided to go with standard stack
 (jsf,facelets,richfaces,webflow2...ughh). 

 Anyways, the thing is that this Swing app generates panels dynamically based
 on info that is retrieved from a back-end service. This data contains all
 about which components to add to the panel, validations, drop-down data,
 order, how they are grouped together, etc...
 Our team is having a hard time figuring out how to add this same behaviour
 with the technology stack THEY picked :-)

 So my question is...Can I create dynamic components with Wicket that have no
 assoicated html markup?

 This would allow me to make a service call and retrieve all the data I need
 to generate a page on the fly by iterating through all the data and creating
 instances of Wicket components dynamically.

 I know this functionality can be done more easily using Wicket, but have a
 problem with it.

 AFAIK Wicket always expects to have associated html markup for a simple html
 component (DropDownChoice for example), so I searched around the forums and
 found several solutions:

 1. Wrap every single Wicket html component with a Panel. I think it's a
 little bit overkill no?

 2. Use a RepeatingView and when I want to add a specific Wicket html
 component, override its onComponentTag() so that Wicket doesn't complain
 about the actual html tag being missing in the html markup. Like this:

 RepeatingView rv = new RepeatingView(dynamic);
 add(rv);
 for (int i = 0; i  5; i++) {
 rv.add(new Label(String.valueOf(i), label_  + i));
 rv.add(new DropDownChoiceString(dropDown_ + i,
 categories) {
 @Override
 protected void onComponentTag(ComponentTag tag) {
 tag.setName(select);
 super.onComponentTag(tag);

 }
 });
 }

 Would this be a good approach? I've done an extensive search in this forum
 but that's all I got. 
 Does anybody have any other ideas?

 I would be so happy if we ended up using Wicket where I work and in order to
 do that it would definitely help if it were possible to generate these
 dynamic panels. I'm sure it would be easier that doing it with jsf, for
 sure!

 Thanks!
   


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Is there any collapsible container ?

2008-12-21 Thread miro

not hide it but contract it to a line and click again expand it.

Newgro wrote:
 
 miro schrieb:
 Is there  any collapsible container?  
   
 You want to hide a panel on button-click? Simply set it visible=false.
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Is-there--any-collapsible-container---tp21112328p21115400.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Is there any collapsible container ?

2008-12-21 Thread Jeremy Thomerson
See the accordian in Wicket Stuff.  You might need to help Nino get it up to
date with Wicket 1.4.  I think it's still on 1.3

On Sun, Dec 21, 2008 at 8:13 AM, miro miroconn...@yahoo.com wrote:


 not hide it but contract it to a line and click again expand it.

 Newgro wrote:
 
  miro schrieb:
  Is there  any collapsible container?
 
  You want to hide a panel on button-click? Simply set it visible=false.
 
  -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 

 --
 View this message in context:
 http://www.nabble.com/Is-there--any-collapsible-container---tp21112328p21115400.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Jeremy Thomerson
http://www.wickettraining.com


Re: Is there any collapsible container ?

2008-12-21 Thread Martin Makundi
And there is an implementation using border whose quickstart is available here:

https://issues.apache.org/jira/browse/WICKET-1789

**
Martin


2008/12/21 Jeremy Thomerson jer...@wickettraining.com:
 See the accordian in Wicket Stuff.  You might need to help Nino get it up to
 date with Wicket 1.4.  I think it's still on 1.3

 On Sun, Dec 21, 2008 at 8:13 AM, miro miroconn...@yahoo.com wrote:


 not hide it but contract it to a line and click again expand it.

 Newgro wrote:
 
  miro schrieb:
  Is there  any collapsible container?
 
  You want to hide a panel on button-click? Simply set it visible=false.
 
  -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 

 --
 View this message in context:
 http://www.nabble.com/Is-there--any-collapsible-container---tp21112328p21115400.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 Jeremy Thomerson
 http://www.wickettraining.com


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Filtering data in DataTable

2008-12-21 Thread legen_dary

Is there a way to create filter for numeric types in DataTable column that
would allow user to enter/choose value for filter state object and choose if
values selected to be shown in DataTable should be bigger, lesser or equal
to the entered/chosen value?

I'd really appreciate any help
Best regards and merry x-mas :-)
-- 
View this message in context: 
http://www.nabble.com/Filtering-data-in-DataTable-tp21116854p21116854.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Is there any collapsible container ?

2008-12-21 Thread dtoffe

 Check this one:

  http://wicketwebbeans.sourceforge.net/wiki-html/NestedBeans.html

Daniel



miro wrote:
 
 Is there  any collapsible container?  
 

-- 
View this message in context: 
http://www.nabble.com/Is-there--any-collapsible-container---tp21112328p21117097.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Is there any collapsible container ?

2008-12-21 Thread Nino Martinez

I think I upgraded it for 1.4 at some point ...

Jeremy Thomerson wrote:

See the accordian in Wicket Stuff.  You might need to help Nino get it up to
date with Wicket 1.4.  I think it's still on 1.3

On Sun, Dec 21, 2008 at 8:13 AM, miro miroconn...@yahoo.com wrote:

  

not hide it but contract it to a line and click again expand it.

Newgro wrote:


miro schrieb:
  

Is there  any collapsible container?



You want to hide a panel on button-click? Simply set it visible=false.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



  

--
View this message in context:
http://www.nabble.com/Is-there--any-collapsible-container---tp21112328p21115400.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org






  



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Dynamic Simple (html) Components

2008-12-21 Thread mito

Thanks for the answers guys, getting some ideas here that might be helpful.
In a way what our backend allows us to do is define a (specific) form and
store it in our database. So, when you call the backend service, it returns
and array declaring all the components that will make up the final form. A
single entry on this array would be something like:

Component: TextField
Required: True
Type:  String
Length:30
Order:  2  (The order in which it needs to be displayed on the
form)
Defaul Value: some value
and so on.

An entry can also define a compound component (like a Wicket panel component
made up of simple components).

So for each entry in the array,the Swing app instantiates, configures, and
adds each component on a Swing Panel. 

So I'm sure this can be done in Wicket but I would need to wrap every
possible component (and compound component) on a Wicket panel in order to be
able to do that. (AFAIK WicketWebBeans does exactly that). 

I could also use a RepeatingView I guess, but a RepeatingView expects to
have a pre-defined html file with the html elements (or compound components)
that you're going to be repeating, no? Thing is that in my case we don't
know up ahead what kind of components we are goingt to get from the backend
service, nor the number of them, or the order for that matter.

I will keep on researching the ideas you guys have provided so far. 

Thanks again...and Happy Holidays!




-- 
View this message in context: 
http://www.nabble.com/Dynamic-Simple-%28html%29-Components-tp21108904p21119250.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Dynamic Simple (html) Components

2008-12-21 Thread Ernesto Reinaldo Barreiro
Hi,

 Component: TextField
 Required: True
 Type:  String
 Length:30
 Order:  2  (The order in which it needs to be displayed on the
 form)
 Defaul Value: some value
 and so on.

 An entry can also define a compound component (like a Wicket panel component
 made up of simple components).

 So for each entry in the array,the Swing app instantiates, configures, and
 adds each component on a Swing Panel. 

 So I'm sure this can be done in Wicket but I would need to wrap every
 possible component (and compound component) on a Wicket panel in order to be
 able to do that. (AFAIK WicketWebBeans does exactly that). 

   
Yes, there are a few projects out there you could use for a start. But 
providing your own solution  should be that difficult either.
 I could also use a RepeatingView I guess, but a RepeatingView expects to
 have a pre-defined html file with the html elements (or compound components)
 that you're going to be repeating, no? Thing is that in my case we don't
 know up ahead what kind of components we are goingt to get from the backend
 service, nor the number of them, or the order for that matter.
   
Use some repeater(s) combined with  your own compound panels,
DateFieldPanel, ComboPanel, etc.

If I were you I would try to define something abstract at the service
level and then bind these abstractions with some kind of component
factory that  knows how to read your abstractions. That way the same 
definitions could be used for swing. E.g. instead of

 Component: TextField

Type: simple-text| compund-text,...



That way you don't  bind your definition to a certain kind of component
but delegate this to the factory... So, you could replace it with
something different if need be. 
 I will keep on researching the ideas you guys have provided so far. 

 Thanks again...and Happy Holidays!
   
You are welcome

Best,

Ernesto



   


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Deploy problem

2008-12-21 Thread Timm Helbig
Hi Pierre,

firstoff, why don't you upgrade on Wicket 1.3.5, or at least to a released 
version. 

Could you please post your web.xml file.

Regards,
Timm

Am Sunday 21 December 2008 13:18:09 schrieb Pierre Gilquin:
 Hi all,

 I have a problem deploying a Wicket App. (Not Wicket app work fine).

 Wicket 1.3.0 rc1 / Tomcat 5.5.20 / JDK 1.4.2

 Thanks in advance for any help

 Pierre

 The trace is :


 INFO: Manager: install: Installing web application at '/TestIso' from
 'TestIso.war' java.io.FileNotFoundException: TestIso.war (null)
at gnu.java.nio.channels.FileChannelImpl.open(libgcj.so.7rh)
at gnu.java.nio.channels.FileChannelImpl.init(libgcj.so.7rh)
at gnu.java.nio.channels.FileChannelImpl.create(libgcj.so.7rh)
at java.io.FileInputStream.init(libgcj.so.7rh)
 ...

 21-déc-08 1:05:25  org.apache.catalina.startup.HostConfig deployWAR
 INFO: Déploiement de l'archive TestIso.war de l'application web

 21-déc-08 1:05:26  org.apache.catalina.core.StandardContext filterStart
 SEVERE: Exception au démarrage du filtre WicketFilter
 java.lang.NoSuchMethodError: method
 java.lang.management.ManagementFactory.getPlatformMBeanServer with
 signature ()Ljavax.management.MBeanServer; was not found. at
 org.apache.wicket.jmx.Initializer.init(Initializer.java:156) at
 org.apache.wicket.Application.callInitializers(Application.java:787) at
 org.apache.wicket.Application.initializeComponents(Application.java:625) at
 org.apache.wicket.protocol.http.WicketFilter.init(WicketFilter.java:509) at
 org.apache.catalina.core.ApplicationFilterConfig.getFilter(catalina-5.5.23.
jar.so) at
 org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(catalina-5.5.
23.jar.so) at
 org.apache.catalina.core.ApplicationFilterConfig.init(catalina-5.5.23.jar
.so) at
 org.apache.catalina.core.StandardContext.filterStart(catalina-5.5.23.jar.so
) at org.apache.catalina.core.StandardContext.start(catalina-5.5.23.jar.so)
 at
 org.apache.catalina.core.ContainerBase.addChildInternal(catalina-5.5.23.jar
.so) at
 org.apache.catalina.core.ContainerBase.addChild(catalina-5.5.23.jar.so) at
 org.apache.catalina.core.StandardHost.addChild(catalina-5.5.23.jar.so) at
 org.apache.catalina.startup.HostConfig.deployWAR(catalina-5.5.23.jar.so) at
 org.apache.catalina.startup.HostConfig.deployApps(catalina-5.5.23.jar.so)
 at org.apache.catalina.startup.HostConfig.check(catalina-5.5.23.jar.so) at
 java.lang.reflect.Method.invoke(libgcj.so.7rh)
at
 org.apache.commons.modeler.BaseModelMBean.invoke(jakarta-commons-modeler-1.
1.jar.so) at
 mx4j.server.interceptor.InvokerMBeanServerInterceptor.invoke(mx4j-3.0.1.jar
.so) at
 mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(mx4j-3.0.1.jar
.so) at
 mx4j.server.interceptor.SecurityMBeanServerInterceptor.invoke(mx4j-3.0.1.ja
r.so) at
 mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(mx4j-3.0.1.jar
.so) at
 mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(mx4j-3.0.1.jar
.so) at
 mx4j.server.interceptor.ContextClassLoaderMBeanServerInterceptor.invoke(mx4
j-3.0.1.jar.so) at mx4j.server.MX4JMBeanServer.invoke(mx4j-3.0.1.jar.so)
at
 org.apache.catalina.manager.ManagerServlet.check(catalina-manager-5.5.23.ja
r.so) at
 org.apache.catalina.manager.ManagerServlet.deploy(catalina-manager-5.5.23.j
ar.so) at
 org.apache.catalina.manager.ManagerServlet.doGet(catalina-manager-5.5.23.ja
r.so) at
 javax.servlet.http.HttpServlet.service(tomcat5-servlet-2.4-api-5.5.23.jar.s
o) at
 javax.servlet.http.HttpServlet.service(tomcat5-servlet-2.4-api-5.5.23.jar.s
o) at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(catalina-5
.5.23.jar.so) at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(catalina-5.5.23.ja
r.so) at
 org.apache.catalina.core.StandardWrapperValve.invoke(catalina-5.5.23.jar.so
) at
 org.apache.catalina.core.StandardContextValve.invoke(catalina-5.5.23.jar.so
) at
 org.apache.catalina.authenticator.AuthenticatorBase.invoke(catalina-5.5.23.
jar.so) at
 org.apache.catalina.core.StandardHostValve.invoke(catalina-5.5.23.jar.so)
 at
 org.apache.catalina.valves.ErrorReportValve.invoke(catalina-5.5.23.jar.so)
 at
 org.apache.catalina.core.StandardEngineValve.invoke(catalina-5.5.23.jar.so)
 at
 org.apache.catalina.connector.CoyoteAdapter.service(catalina-5.5.23.jar.so)
 at
 org.apache.coyote.http11.Http11Processor.process(tomcat-http-5.5.23.jar.so)
 at
 org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.process
Connection(tomcat-http-5.5.23.jar.so) at
 org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(tomcat-util-5.5.23
.jar.so) at
 org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(tomcat-util-5.5
.23.jar.so) at
 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(tomcat-util-5
.5.23.jar.so) at java.lang.Thread.run(libgcj.so.7rh)
 21-déc-08 1:05:26  org.apache.catalina.core.StandardContext start
 SEVERE: Error filterStart
 21-déc-08 1:05:26  org.apache.catalina.core.StandardContext start
 SEVERE: Erreur de 

Re: Round corners n' stuff? Possible Contribution?

2008-12-21 Thread Ned Collyer

FYI, I cannot see the liquid stuff with the latest firefox on osx leopard -
its borked.

Also looks like crap in safari :)

Soo bring on the nifty - but I wouldn't waste your time on liquid canvas
because I do not believe the browser support (currently) warrants your
effort.

I think it would be valuable to add support AFTER nifty corners - but if the
browsers never play nice, you will have wasted a bit of time.  Sure you
might have learned something cool, so perhaps thats not so bad, but if the
Liquid Canvas becomes defunct - then you're carrying baggage that will never
reach its potential of awesome - and it could be a deterrent from using your
lib.

I hope I have conveyed my thoughts adequately - and not quelled passionate
development :)


Nino Martinez-2 wrote:
 
 Ok cool.. I heard that nifty corners require less cpu and are smaller 
 than liquid... Thats why I want to support the two...
 
 I'll go ahead and hack something together :)
 

-- 
View this message in context: 
http://www.nabble.com/Round-corners-n%27-stuff--Possible-Contribution--tp21097913p21122955.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Round corners n' stuff? Possible Contribution?

2008-12-21 Thread Nino Martinez

Ned Collyer wrote:

FYI, I cannot see the liquid stuff with the latest firefox on osx leopard -
its borked.
  
Hmm, I tried browsershots 
http://browsershots.org/http://www.ruzee.com/files/liquid-canvas/demo.html 
, but could'nt get any ugly or broken pages...? Click the link and see 
the screens.

Also looks like crap in safari :)
  
Seems the same as the others on windows and mac and the same as the rest 
of the browsers at least on browser shots aswell...

Soo bring on the nifty - but I wouldn't waste your time on liquid canvas
because I do not believe the browser support (currently) warrants your
effort.

I think it would be valuable to add support AFTER nifty corners - but if the
browsers never play nice, you will have wasted a bit of time.  Sure you
might have learned something cool, so perhaps thats not so bad, but if the
Liquid Canvas becomes defunct - then you're carrying baggage that will never
reach its potential of awesome - and it could be a deterrent from using your
lib.

I hope I have conveyed my thoughts adequately - and not quelled passionate
development :)
  
Sure, we just need to figure out if liquid canvas are working or not. 
Although a quick reply would be nicer next time, im only a hour or two 
away from the first release of Wicketstuff Artwork, which brings liquid 
canvas. Integrating a new thing like this usually takes me something 
like 7 hours or so..


Thanks for the input :)


Nino Martinez-2 wrote:
  
Ok cool.. I heard that nifty corners require less cpu and are smaller 
than liquid... Thats why I want to support the two...


I'll go ahead and hack something together :)




  



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org