Re: [tynamo-user] Status of codehaus repositories for tynamo

2011-06-21 Thread Kalle Korhonen
These are CI snapshots, my best guess is that ci. is cleaned up rather aggressively. All Tynamo releases are available via Maven central. Kalle On Tue, Jun 21, 2011 at 12:09 AM, Greg Pagendam-Turner wrote: > Hi, > > Does anyone know why the repositories on > http://ci.repository.codehaus.org/or

Re: Error while building 5.3

2011-06-21 Thread Taha Hafeez
Hi Howard, I am working on ubuntu 10, using a Sun JVM. The specifications are $ gradle -v Gradle build time: Friday, 8 April 2011 03:06:53 PM EST Groovy: 1.7.10 Ant: Apache Ant(TM) version 1.8.2 compiled on December 20 2010 Ivy: 2.2.0 JVM: 1.6.0_16 (Sun Microsystems Inc. 14.2-b01) OS: Linux 2.6.3

Re: Error while building 5.3

2011-06-21 Thread Howard Lewis Ship
Works for me :-( Tell us about your OS and JDK ... On Mon, Jun 20, 2011 at 7:05 PM, Taha Hafeez wrote: > Hi > > I got stuck with this error while using gradle javadoc. > > java.lang.NullPointerException > at com.sun.tools.javadoc.TypeMaker.getType(TypeMaker.java:67) > at com.sun.tools.javadoc.Ty

Re: Confirm through colorbox.

2011-06-21 Thread françois facon
perhaps you can try to locate you element with jQuery and listen to event with jquery shortcut. jQuery('#'+element).click(function(e) { e.preventDefault(); jQuery.colorbox({ inline:"true", href: "#modalD

Re: Select OnValueChanged event not triggered

2011-06-21 Thread RuralHunter
After some testing and investigating, I tend to ask this question: does the ajax function works in my own component without my own js file such as the ajax function of Select component? I tried the ajax select on jumpstart(http://jumpstart.doublenegative.com.au/jumpstart/examples/ajax/select1). It

Re: Confirm through colorbox.

2011-06-21 Thread Kado
Thanks for the hint! I find it very useful at first sight but I am not able to use stack because I am using Tapestry 5.1.0.5 and It seems that I can't Import stack. Juan On 06/19/2011 12:23 PM, françois facon wrote: Hi Juan, Did you have a look at IOKO contribution? It is a nice example th

Re: Tapestry5-JQuery Integration and tapestry-beanvalidator

2011-06-21 Thread Clément Uster
Hi Matias, Thanks for your feedback. Unfortunately bean validation doesn't work for the moment with got5 tapestry5-jquery. I've just opened an issue. https://github.com/got5/tapestry5-jquery/issues/42 Maybe you should try to disable client validation for the moment, until I (or someone) solve i

Re: Select component and Ajax (Tapestry version < 5.2.0)

2011-06-21 Thread Geoff Callender
You'll find an Ajax Select example that works with Tapestry 5.1.0.5 in jumpstart-4.12.2, downloadable from http://jumpstart.doublenegative.com.au/download.html . Also on that page is one that works with Tapestry 5.0.18. HTH, Geoff On 21/06/2011, at 9:59 PM, leandroaisp...@gmail.com wrote: >

Re: [ANN] JumpStart 5.3.2 released

2011-06-21 Thread Geoff Callender
Thanks, Peter. A lot of people have asked for it so I hope it helps. Cheers, Geoff On 21/06/2011, at 5:47 PM, Peter Stavrinides wrote: > Kudos on the web services implementation! nice :) > Peter > > - Original Message - > From: "Geoff Callender" > To: "Tapestry users" > Sent: Friday,

Re: [ANN] JumpStart 5.3.5 released

2011-06-21 Thread Geoff Callender
This one is definitely in my list of nice-to-haves. Probably not for a couple of months though, and even then only if it doesn't make the project too complicated for the newbie. Thanks for mentioning it. Geoff On 21/06/2011, at 9:07 AM, ael wrote: > Hi Geoff, > > My suggestion > > How about

Re: [ANN] JumpStart 5.3.5 released

2011-06-21 Thread Geoff Callender
Done. Released as version 5.3.7. On 21/06/2011, at 2:01 PM, Geoff Callender wrote: > On 21/06/2011, at 11:22 AM, Bob Harner wrote: > >> Geoff, >> >> JumpStart is the most valuable resource I know of for learning to use >> Tapestry. Thanks so much for providing it! > > Thanks! > >> One thing I

Re: Trigger component event context

2011-06-21 Thread Igor Drobiazko
This is how Trigger component is implemented. The original intention was to provide a way to trigger events e.g. for rendering of JavaScript using JavaScriptSupport service. What is your use case? Maybe there is another way to do it? On Tue, Jun 21, 2011 at 2:47 PM, Matias Blasi wrote: > Thanks

Re: Trigger component event context

2011-06-21 Thread Matias Blasi
Thanks Igor! Is this a "Trigger Component API" limitation or there is any technical limitation I am missing? If it is a API issue, it should be great to have a context parameter into the Trigger component, do you? Regards, Matías. >> Nope, it's not possible. An event *triggered* by *Trigger* *c

Re: Is it possible te 'replace' ClientDataEncoder

2011-06-21 Thread martijn.list
On 06/21/2011 01:49 PM, Thiago H. de Paula Figueiredo wrote: > On Tue, 21 Jun 2011 07:37:51 -0300, martijn.list > wrote: > >> It took me some time to get rid of the "tapestry Construction of service >> 'ServiceOverride' has failed due to recursion" error at startup but the >> following lines adde

Re: Select component and Ajax (Tapestry version < 5.2.0)

2011-06-21 Thread leandroaispuru
Hi again Luciano. I used a zoneupdater mixin in order to update an specific zone. Here is the page where you can see a zone being updated when you enter text to a textfield. The same can be used by you to update the zone when you select some option. http://jumpstart.doublenegative.com.au/jumpstar

Re: Is it possible te 'replace' ClientDataEncoder

2011-06-21 Thread Thiago H. de Paula Figueiredo
On Tue, 21 Jun 2011 07:37:51 -0300, martijn.list wrote: It took me some time to get rid of the "tapestry Construction of service 'ServiceOverride' has failed due to recursion" error at startup but the following lines added to the AppModule work public static void bind(ServiceBinder binder) {

Re: Is it possible te 'replace' ClientDataEncoder

2011-06-21 Thread martijn.list
It took me some time to get rid of the "tapestry Construction of service 'ServiceOverride' has failed due to recursion" error at startup but the following lines added to the AppModule work public static void bind(ServiceBinder binder) { binder.bind(ClientDataEncoder.class, HMACClientDataEncoder

Re: Unit testing mixins

2011-06-21 Thread P . Stavrinides
Hi Thiago, > Well, the idea of automated testing is to write the test before the tested > feature or at least just after you implemented the feature. > This quick outdating is quite strange: it seems the team is not writing tests > in a > more safe manner or the markup is changing very fast.

Re: [ANN] JumpStart 5.3.2 released

2011-06-21 Thread Peter Stavrinides
Kudos on the web services implementation! nice :) Peter - Original Message - From: "Geoff Callender" To: "Tapestry users" Sent: Friday, 17 June, 2011 14:43:00 GMT +02:00 Athens, Beirut, Bucharest, Istanbul Subject: [ANN] JumpStart 5.3.2 released Hi all, JumpStart 5.3.2 is up and runni

Status of codehaus repositories for tynamo

2011-06-21 Thread Greg Pagendam-Turner
Hi, Does anyone know why the repositories on http://ci.repository.codehaus.org/org/tynamo/ are empty? Regards, Greg. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h.

Re: Trigger component event context

2011-06-21 Thread Igor Drobiazko
Nope, it's not possible. An event triggered by Trigger component may only have MarkupWriter as context. On Tue, Jun 21, 2011 at 12:46 AM, Matias Blasi wrote: > Hi all! > > I am using the trigger component to fire an event. Is there any way to pass > a context for that event? As far as I understan