Re: Please update the title "Get Tapestry 5.0.13" to 5.0.14 in Tapestry Home Page

2008-08-12 Thread Sven Homburg
no attachment, but mohammad is right 2008/8/13 Mohammad Shamsi <[EMAIL PROTECTED]> > hi, > > i did it, see attachment. > > > > On Wed, Aug 13, 2008 at 11:14 AM, Howard Lewis Ship <[EMAIL PROTECTED]>wrote: > >> Refresh your browser. >> >> On Tue, Aug 12, 2008 at 6:30 PM, Mohammad Shamsi <[EMAIL

Re: ApplicationStates semi bug..

2008-08-12 Thread Fernando Padilla
I was looking over the code, and I saw this: if (!_tracker.getHasErrors()) _tracker.clear(); and should be: if (!_tracker.getHasErrors()) { _tracker.clear(); ValidationTracker tmp = _tracker; _tracker = tmp; } Fernando Padilla wrote: Another nuance I see i

Re: Please update the title "Get Tapestry 5.0.13" to 5.0.14 in Tapestry Home Page

2008-08-12 Thread Mohammad Shamsi
hi, i did it, see attachment. On Wed, Aug 13, 2008 at 11:14 AM, Howard Lewis Ship <[EMAIL PROTECTED]>wrote: > Refresh your browser. > > On Tue, Aug 12, 2008 at 6:30 PM, Mohammad Shamsi <[EMAIL PROTECTED]> > wrote: > > Hi, > > > > it seems that the title above is forgotten in tapestry home pag

Re: ApplicationStates semi bug..

2008-08-12 Thread Fernando Padilla
Another nuance I see is that a form keeps displaying the old input values.. when normally those are cleared after a form submits. So I'm assuming that the ValidationTracker is not being properly cleared, so maybe some code that clears the validationTracker isn't "setting" it afterwards. that

ApplicationStates semi bug..

2008-08-12 Thread Fernando Padilla
So.. I need confirmation on an HttpSession expected behavior, to see if there is an annoyance with @ApplicationState and @Persist: a) Object value = session.getAttribute( key ); b) value.modifyMe(); c) session.setAttribute( key, value ); It was my understanding (maybe really old servlet spec),

Re: Please update the title "Get Tapestry 5.0.13" to 5.0.14 in Tapestry Home Page

2008-08-12 Thread Howard Lewis Ship
Refresh your browser. On Tue, Aug 12, 2008 at 6:30 PM, Mohammad Shamsi <[EMAIL PROTECTED]> wrote: > Hi, > > it seems that the title above is forgotten in tapestry home page. i don't > knew how to inform this to site developers then i write it here. > -- > sincerely yours > M. H. Shamsi > --

Please update the title "Get Tapestry 5.0.13" to 5.0.14 in Tapestry Home Page

2008-08-12 Thread Mohammad Shamsi
Hi, it seems that the title above is forgotten in tapestry home page. i don't knew how to inform this to site developers then i write it here. -- sincerely yours M. H. Shamsi

Re: tapestry 5.0.13 and hello world application

2008-08-12 Thread blueband
Original message. From: Sven Homburg <[EMAIL PROTECTED]> Sent: 27 Jul 2008 4:00am -07:00 To: Tapestry users Subject: Re: tapestry 5.0.13 and hello world application http://java.sun.com/dtd/web-app_2_3.dtd";> app Tapestry 5 Application tapestry.app-package

[T5] How to use email validator?

2008-08-12 Thread Dave Dombrosky
I'm trying to add the email validator to some of my TextFields, and I am running into an issue. I thought I just had to use validate="email" as the parameter, but I am getting this error: java.lang.IllegalArgumentException Validator 'email' requires a validation constraint (of type java.lang.Void

Re: Updating the roadmap on T5 main page

2008-08-12 Thread Howard Lewis Ship
My current priority is to stabilize Tapestry 5 for a release candidate. I agree things have gone on much longer than expected, but the product is much, much better than I expected it to be a year ago. Things slowed down in Q3-Q4 2007 as I was working for Feature50, a company with no real interest

Re: Cant get FromFragment to skip server side validation

2008-08-12 Thread devilabit
What I have is a large form with some sections visible and some sections hidden. The hidden sections are triggered visible by mixin. For example I have a mixin on an amount field that requires a hidden section to be made visible if the amount is above a certain threshold. This is done by having

Re: Custom translator broken in 5.0.14

2008-08-12 Thread Joachim Van der Auwera
In your .tml file change the translate="sqlDateTranslator" into translate="prop:sqlDateTranslator" The default binding prefix has changed in 5.0.14 which causes this exception. Kind regards, Joachim Andrew Court wrote: Hi, I've just upgraded to 5.0.14 and encountered an exception with a

Custom translator broken in 5.0.14

2008-08-12 Thread Andrew Court
Hi, I've just upgraded to 5.0.14 and encountered an exception with a previously working java.sql.Date translator bound to a textfield. Exception reads: Could not convert 'sqlDateTranslator' into a component parameter binding: Unknown translator type 'sqlDateTranslator'. Configured translators a

Updating the roadmap on T5 main page

2008-08-12 Thread Alex Kotchnev
Would it be possible to update the Tapestry 5 roadmap section of the main T5 site (http://tapestry.apache.org/tapestry5/) to reflect the most recent thinking / goals of when the project is expecting / targeting a GA release for 5.0 ? The page says that the target is Q1 2008 which in the past. Even

Re: Cant get FromFragment to skip server side validation

2008-08-12 Thread Robert Zeigler
Maybe telling us a bit more about your use case would help. Generally, if you have t:validate="required", it would be safe to assume that you /want/ server-side validation, since relying on client- side validation is insecure. But maybe you're trying to write a cancel button or something?

Cant get FromFragment to skip server side validation

2008-08-12 Thread devilabit
I am having trouble getting FormFragment to skip server side validation for a simple example I created. The FormFragment is not visible and it has one textfield that has a required validator. eg. test field Is there something simple im missing? I tired with both clientValida

Re: [T5]: Change in asset location?

2008-08-12 Thread Howard Lewis Ship
When these things crop up, I always start by listing the contents of the WAR (or exploded WAR directory). On Tue, Aug 12, 2008 at 5:00 AM, Andy Huhn <[EMAIL PROTECTED]> wrote: > > Thanks, Filip & Sven. I'll start digging around in Jetty. > > Thanks, > Andy > > On Tue, 12 Aug 2008 12:43:21 +0200,

Re: re-open a closed issue

2008-08-12 Thread Howard Lewis Ship
Create a new issue, linked to the old issue please. On Tue, Aug 12, 2008 at 7:06 AM, Martijn Brinkers (List) <[EMAIL PROTECTED]> wrote: > what is the correct (Jira) procedure if a bug is no longer fixed > (because of updates)? should the issue be re-opened or should I create a > new issue? I canno

re-open a closed issue

2008-08-12 Thread Martijn Brinkers (List)
what is the correct (Jira) procedure if a bug is no longer fixed (because of updates)? should the issue be re-opened or should I create a new issue? I cannot see how I can reopen the issue just comment on the closed issue. Martijn ---

Re: T5: Works in Jetty but not in Tomcat

2008-08-12 Thread wassila
Hello, thanks for your response. But I want to know wich is the correct version of Javassist and if tapestry-ioc-5.0.13 jar contains javassist jar, if this is the case do we need to add a separate jar of javassist in our classpath. Currently I have a separate javassist-3.7.ga jar on my classpath.

Re: [T5]: Change in asset location?

2008-08-12 Thread Andy Huhn
Thanks, Filip & Sven. I'll start digging around in Jetty. Thanks, Andy On Tue, 12 Aug 2008 12:43:21 +0200, "Sven Homburg" <[EMAIL PROTECTED]> wrote: > its look like taht you IDE dont move the resources in your war file or > servlet container directory at compile time > > 2008/8/12 Andy Huhn <[

Re: [T5]: Change in asset location?

2008-08-12 Thread Sven Homburg
its look like taht you IDE dont move the resources in your war file or servlet container directory at compile time 2008/8/12 Andy Huhn <[EMAIL PROTECTED]> > Hello, > > I just switched to 5.0.14, and now my app can't seem to find my CSS > file. Any ideas? > > Here is the .tml I've been using: > >

Re: [T5]: Change in asset location?

2008-08-12 Thread Filip S. Adamsen
Hi, Looks okay to me. Nothing broke when I updated from 5.0.13 to 5.0.14, so perhaps it's an issue not related to Tapestry? -Filip Andy Huhn skrev: Hello, I just switched to 5.0.14, and now my app can't seem to find my CSS file. Any ideas? Here is the .tml I've been using: Here is

[T5]: Change in asset location?

2008-08-12 Thread Andy Huhn
Hello, I just switched to 5.0.14, and now my app can't seem to find my CSS file. Any ideas? Here is the .tml I've been using: Here is the corresponding .java: @Inject @Path("context:assets/styles/hen_styles.css") private Asset _henStyleSheet; And here is the location of

Re: [T5][FAQ] How to configure a service that likely will be overriden by an AliasContribution?

2008-08-12 Thread Filip S. Adamsen
When you put @Local on a service injection Tapestry looks for a service match in the local (current) module only. That means you can override, say, RequestExceptionHandler without having to qualify your injection. Without @Local: public static void bind(ServiceBinder binder) { binder.bind(M

Re: [T5] setup logging

2008-08-12 Thread Andy Pahne
Lutz Hühnken schrieb: Hm... I had the same problem once, and I figured it was because Tapestry doesn't use the log level configured for the "org.apache.tapestry5" category, but the level you define for your components. > ... > That is something I find quite annoying and don't see much use in,

Re: [T5] setup logging

2008-08-12 Thread Lutz Hühnken
Hm... I had the same problem once, and I figured it was because Tapestry doesn't use the log level configured for the "org.apache.tapestry5" category, but the level you define for your components. As it is said on http://tapestry.apache.org/tapestry5/guide/logging.html : When a component's logger