Re: Hivemind startup error

2006-04-01 Thread James Carman
There's really no such thing as a "HiveMind DTD." Since HiveMind allows you to specify schemas for parameters/configurations, the format of the XML is pretty much up to you (aside from the standard stuff). > Sure. I'm missing XML schema declaration at the top. Could that be it? > I also don't hav

Re: Hivemind startup error

2006-04-01 Thread James Carman
Adam, Where do you have your hivemind/tapestry jar files? Are they in WEB-INF/lib? HiveMind will attempt to load all /META-INF/hivemodule.xml classpath resources. So, maybe it's not finding the tapestry jar file on the classpath, so it's not finding its hivemodule.xml file. Therefore, the tape

Re: Conditionally validating a field

2006-04-01 Thread Matt Raible
Thanks Ryan - this worked great. Matt Username Username On 4/1/06, Ryan Holmes <[EMAIL PROTECTED]> wrote: > The problem is that the @FieldLabel component is rendered even if > user.version is not null. This

Re: Tacos Autocompleter: returning another an ID other then the listed string

2006-04-01 Thread Pedro Viegas
Thanks! Been looking to the afterUpdate myself in the meantime and figuring out how to use it for this. I wil try to do it like you describe. No much to it, it seams. I will sure enter the request for the new component... and a few other ideas... :-D Thanks again, On 4/1/06, [EMAIL PROTECTED] <[

Re: Conditionally validating a field

2006-04-01 Thread Ryan Holmes
The problem is that the @FieldLabel component is rendered even if user.version is not null. This references the usernameField and causes it to be included in the validation delegate field tracking (or something along those lines). Try restructuring like this: field="ognl:components.userna

Re: [Announce] Release Tapestry 3.0.4 / Tapestry 4.0.1

2006-04-01 Thread Peter Svensson
OK. I get it :) Cheers, PS On 4/1/06, Peter Svensson <[EMAIL PROTECTED]> wrote: > > Perchance a small note on the webpage..? > > Cheers, > PS > > > On 4/1/06, Steve Motola <[EMAIL PROTECTED] > wrote: > > > > Awesome, great job all. > > > > Quoting Jesse Kuhnert < [EMAIL PROTECTED]>: > > > > > Clo

Re: [Announce] Release Tapestry 3.0.4 / Tapestry 4.0.1

2006-04-01 Thread Peter Svensson
Perchance a small note on the webpage..? Cheers, PS On 4/1/06, Steve Motola <[EMAIL PROTECTED]> wrote: > > Awesome, great job all. > > Quoting Jesse Kuhnert <[EMAIL PROTECTED]>: > > > Close to 100+ bug fixes and patches have been applied for the next > release > > of the the Tapestry web applicat

Re: [Announce] Release Tapestry 3.0.4 / Tapestry 4.0.1

2006-04-01 Thread Steve Motola
Awesome, great job all. Quoting Jesse Kuhnert <[EMAIL PROTECTED]>: > Close to 100+ bug fixes and patches have been applied for the next release > of the the Tapestry web application framework. This release provides more > stabilization and enhancements to the well known 3.X series tapestry > rele

Re: [Announce] Release Tapestry 3.0.4 / Tapestry 4.0.1

2006-04-01 Thread Peter Svensson
Thanks! Great work and a big Swedish cheers! /PS On 4/1/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: > > Close to 100+ bug fixes and patches have been applied for the next release > of the the Tapestry web application framework. This release provides more > stabilization and enhancements to the we

Re: Fwd: bug with localized numberTranslator and validators?

2006-04-01 Thread Ryan Holmes
This is working fine for me. I put the following field into a simple form: value="translator:number,pattern=0.0"/> The value property was declared as: public abstract Double getPrice(); I confirmed that the locale was Russian by submitting the form

[Announce] Release Tapestry 3.0.4 / Tapestry 4.0.1

2006-04-01 Thread Jesse Kuhnert
Close to 100+ bug fixes and patches have been applied for the next release of the the Tapestry web application framework. This release provides more stabilization and enhancements to the well known 3.X series tapestry releases, as well as the new 4.X series. Tapestry is an open-source framework fo

Re: Tacos + IE6: Stale Link Exception

2006-04-01 Thread Pedro Viegas
Same problem! Only mine happens in Firefox also! :-( Pedro Viegas -- View this message in context: http://www.nabble.com/Tacos-%2B-IE6%3A-Stale-Link-Exception-t1348195.html#a3706118 Sent from the Tapestry - User forum at Nabble.com. -

Re: Conditionally validating a field

2006-04-01 Thread Massimo Lusetti
On 3/30/06, Matt Raible <[EMAIL PROTECTED]> wrote: > However, when the field is hidden (the @Else logic executes), I get a > validation error: > > You must enter a value for Username. > > Is it possible to make the HTML in the @Else block have the same > componentId as usernameField? I cannot spe

RE: onChange server-side handler for Select

2006-04-01 Thread Yura.Tkachenko
Thanks, but as I see this is only Ajax approach by default tapestry doesn't supports this feature, right? -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Saturday, April 01, 2006 7:00 PM To: Tapestry users Subject: Re: onChange server-side handler for Select

Re: Tacos Autocompleter: returning another an ID other then the listed string

2006-04-01 Thread andyhot
Yea, the autocompleter is not really a replacement for but for But i think there are ways to make it work like a select... In your autocompleter, you'll need to use : - a custom listItemRenderer that also outputs ids for every entry (they could be hidden from the user, so instead of data1data

Re: Hivemind startup error

2006-04-01 Thread Adam Zimowski
I changed hivemodule declaration to: Is that what you meant? I'm still having same problem :-( The thing is, it worked just fine in Tomcat, it's just that I'm trying to use Resin for production.. Adam On 4/1/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: > This is your problem: > >

Re: Hivemind startup error

2006-04-01 Thread Jesse Kuhnert
This is your problem: You've specified org.opendating as your module id, instead of your package name. It won't resolve classes/packages to your module id. Change your module id to be something like "opendating" and then specify a package=" org.opendating" to see if that

Re: Hivemind startup error

2006-04-01 Thread Adam Zimowski
Okay... but I have all tapestry JARs in there. And because Resin kicked off my servlet, it obviously is seeing Tapestry libs.. Hmm there must be some small configuration bit I'm missing :-( On 4/1/06, Leonardo Quijano Vincenzi <[EMAIL PROTECTED]> wrote: > That would be a problem with T

Re: onChange server-side handler for Select

2006-04-01 Thread Jesse Kuhnert
Yes, but it's a little bit more generic in that you can do something on the server side in response to ~any~ client side event. http://tacos.sourceforge.net/components/AjaxEventSubmit.html On 4/1/06, Yura.Tkachenko <[EMAIL PROTECTED]> wrote: > > Hi, All > > > > Is it possible to handle onChange e

Re: Hivemind startup error

2006-04-01 Thread Leonardo Quijano Vincenzi
That would be a problem with Tapestry initialization, instead of Hivemind. -- Ing. Leonardo Quijano Vincenzi DTQ Software Adam Zimowski wrote: If I comment out "offending" contributions, I get another hivemind exception clearly stating something is wrong with hivemind setup. But Resin is seein

Re: Hivemind startup error

2006-04-01 Thread Adam Zimowski
If I comment out "offending" contributions, I get another hivemind exception clearly stating something is wrong with hivemind setup. But Resin is seeing hivemind JARs ! How weird...?? 500 Servlet Exception org.apache.hivemind.ApplicationRuntimeException: Service point tapestry.init.MasterInitiali

Re: Hivemind startup error

2006-04-01 Thread Adam Zimowski
Very weird, isn't it? I've been on it all night.. Resin 3.0.18, Tap 4.0, hivemind 1.1.1. JDK 1.5, Slackware Linux. Adam On 4/1/06, Leonardo Quijano Vincenzi <[EMAIL PROTECTED]> wrote: > Weird... which versions of Tapestry / Hivemind ? > > -- > Ing. Leonardo Quijano Vincenzi > DTQ Software > >

Re: Hivemind startup error

2006-04-01 Thread Leonardo Quijano Vincenzi
Weird... which versions of Tapestry / Hivemind ? -- Ing. Leonardo Quijano Vincenzi DTQ Software Adam Zimowski wrote: Sure. I'm missing XML schema declaration at the top. Could that be it? I also don't have a hivemind DTD. 500 Servlet Exception org.apache.hivemind.ApplicationRuntimeException:

Tacos Autocompleter: returning another an ID other then the listed string

2006-04-01 Thread Pedro Viegas
Hi all, I'm tying to use the Tacos Autocompleter component in a way I guess it isn't suposed to. I have to create an interface in with I search for a specific instance of... say a client by its name. I want to know witch client is selected by the user. If I search by the client name then that is w

Re: Hivemind startup error

2006-04-01 Thread Adam Zimowski
Sure. I'm missing XML schema declaration at the top. Could that be it? I also don't have a hivemind DTD. 500 Servlet Exception org.apache.hivemind.ApplicationRuntimeException: Error at file:/opt/opendating/webapps/WEB-INF/classes/META-INF/hivemodule.xml, line 12: Module org.opendating has contrib

Re: Hivemind startup error

2006-04-01 Thread Leonardo Quijano Vincenzi
Adam Zimowski wrote: Hi, I'm trying to deploy my app to Resin, but I'm getting exception from Hivemind on startup about unknown configuration point tapestry.services.ApplicationServices. When testing it under Tomcat the app works just fine, so I'm guessing something Hivemind wants is missing. I

Hivemind startup error

2006-04-01 Thread Adam Zimowski
Hi, I'm trying to deploy my app to Resin, but I'm getting exception from Hivemind on startup about unknown configuration point tapestry.services.ApplicationServices. When testing it under Tomcat the app works just fine, so I'm guessing something Hivemind wants is missing. I basically created lib-t

Re: Upgrading from 3.0.3 to 4.0.1 in AppFuse

2006-04-01 Thread Martin Strand
I haven't tried it myself, but perhaps you could use a custom ExceptionPresenter? http://jakarta.apache.org/tapestry/tapestry/apidocs/org/apache/tapestry/error/ExceptionPresenter.html http://jakarta.apache.org/tapestry/tapestry/hivedocs/service/tapestry.error.ExceptionPresenter.html On Sat, 01

Re: Upgrading from 3.0.3 to 4.0.1 in AppFuse

2006-04-01 Thread Leonardo Quijano Vincenzi
I really don't understand why a RedirectException is not allowed. We all know RedirectException is not really an exception (in the sense of an error condition), so why shouldn't it be allowed? This is problematic when creating a PageNotFound error page. Is there a property like "staleSessionPage

Re: Upgrading from 3.0.3 to 4.0.1 in AppFuse

2006-04-01 Thread andyhot
Yes, Leonardo is so correct here... One cannot throw exceptions (even redirectexception) in the exception page. So, perhaps use directly : >From Leonardo Quijano Vincenzi <[EMAIL PROTECTED]>: > [EMAIL PROTECTED] wrote: > > 1) Why not have a custom StaleSession.html page? > > Its pageBeginRende